diff --git a/lib/PHPExiftool/Driver/Tag/AC3/AudioBitrate.php b/lib/PHPExiftool/Driver/Tag/AC3/AudioBitrate.php deleted file mode 100644 index 4a43a05ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/AC3/AudioBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AC3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitrate extends AbstractTag -{ - - protected $Id = 'AudioBitrate'; - - protected $Name = 'AudioBitrate'; - - protected $FullName = 'M2TS::AC3'; - - protected $GroupName = 'AC3'; - - protected $g0 = 'M2TS'; - - protected $g1 = 'AC3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AC3/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/AC3/AudioChannels.php deleted file mode 100644 index 0faba1bc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/AC3/AudioChannels.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AC3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 'AudioChannels'; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'M2TS::AC3'; - - protected $GroupName = 'AC3'; - - protected $g0 = 'M2TS'; - - protected $g1 = 'AC3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1 + 1', - ), - 1 => array( - 'Id' => 1, - 'Label' => 1, - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 3, - ), - 4 => array( - 'Id' => 4, - 'Label' => '2/1', - ), - 5 => array( - 'Id' => 5, - 'Label' => '3/1', - ), - 6 => array( - 'Id' => 6, - 'Label' => '2/2', - ), - 7 => array( - 'Id' => 7, - 'Label' => '3/2', - ), - 8 => array( - 'Id' => 8, - 'Label' => 1, - ), - 9 => array( - 'Id' => 9, - 'Label' => '2 max', - ), - 10 => array( - 'Id' => 10, - 'Label' => '3 max', - ), - 11 => array( - 'Id' => 11, - 'Label' => '4 max', - ), - 12 => array( - 'Id' => 12, - 'Label' => '5 max', - ), - 13 => array( - 'Id' => 13, - 'Label' => '6 max', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/AC3/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/AC3/AudioSampleRate.php deleted file mode 100644 index d4b814a15..000000000 --- a/lib/PHPExiftool/Driver/Tag/AC3/AudioSampleRate.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AC3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 'AudioSampleRate'; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'M2TS::AC3'; - - protected $GroupName = 'AC3'; - - protected $g0 = 'M2TS'; - - protected $g1 = 'AC3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 48000, - ), - 1 => array( - 'Id' => 1, - 'Label' => 44100, - ), - 2 => array( - 'Id' => 2, - 'Label' => 32000, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/AC3/SurroundMode.php b/lib/PHPExiftool/Driver/Tag/AC3/SurroundMode.php deleted file mode 100644 index abb95d6c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/AC3/SurroundMode.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AC3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurroundMode extends AbstractTag -{ - - protected $Id = 'SurroundMode'; - - protected $Name = 'SurroundMode'; - - protected $FullName = 'M2TS::AC3'; - - protected $GroupName = 'AC3'; - - protected $g0 = 'M2TS'; - - protected $g1 = 'AC3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surround Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not indicated', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Not Dolby surround', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Dolby surround', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/AFCP/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/AFCP/PreviewImage.php deleted file mode 100644 index bf56b0b8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/AFCP/PreviewImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AFCP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'PrVw'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'AFCP::Main'; - - protected $GroupName = 'AFCP'; - - protected $g0 = 'AFCP'; - - protected $g1 = 'AFCP'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AFCP/Text.php b/lib/PHPExiftool/Driver/Tag/AFCP/Text.php deleted file mode 100644 index 9f82c081f..000000000 --- a/lib/PHPExiftool/Driver/Tag/AFCP/Text.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AFCP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Text extends AbstractTag -{ - - protected $Id = 'TEXT'; - - protected $Name = 'Text'; - - protected $FullName = 'AFCP::Main'; - - protected $GroupName = 'AFCP'; - - protected $g0 = 'AFCP'; - - protected $g1 = 'AFCP'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AFCP/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/AFCP/ThumbnailImage.php deleted file mode 100644 index f9bd84385..000000000 --- a/lib/PHPExiftool/Driver/Tag/AFCP/ThumbnailImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AFCP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'Nail'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'AFCP::Main'; - - protected $GroupName = 'AFCP'; - - protected $g0 = 'AFCP'; - - protected $g1 = 'AFCP'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/Annotation.php b/lib/PHPExiftool/Driver/Tag/AIFF/Annotation.php deleted file mode 100644 index a30988a9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/Annotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Annotation extends AbstractTag -{ - - protected $Id = 'ANNO'; - - protected $Name = 'Annotation'; - - protected $FullName = 'AIFF::Main'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/Author.php b/lib/PHPExiftool/Driver/Tag/AIFF/Author.php deleted file mode 100644 index 60391d361..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'AUTH'; - - protected $Name = 'Author'; - - protected $FullName = 'AIFF::Main'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/Comment.php b/lib/PHPExiftool/Driver/Tag/AIFF/Comment.php deleted file mode 100644 index eca482fd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Comment'; - - protected $FullName = 'AIFF::Comment'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/CommentTime.php b/lib/PHPExiftool/Driver/Tag/AIFF/CommentTime.php deleted file mode 100644 index 24231604d..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/CommentTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommentTime extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CommentTime'; - - protected $FullName = 'AIFF::Comment'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/CompressionType.php b/lib/PHPExiftool/Driver/Tag/AIFF/CompressionType.php deleted file mode 100644 index 4ba59263e..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/CompressionType.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionType extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'CompressionType'; - - protected $FullName = 'AIFF::Common'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Compression Type'; - - protected $MaxLength = 4; - - protected $Values = array( - 'ACE2' => array( - 'Id' => 'ACE2', - 'Label' => 'ACE 2-to-1', - ), - 'ACE8' => array( - 'Id' => 'ACE8', - 'Label' => 'ACE 8-to-3', - ), - 'MAC3' => array( - 'Id' => 'MAC3', - 'Label' => 'MAC 3-to-1', - ), - 'MAC6' => array( - 'Id' => 'MAC6', - 'Label' => 'MAC 6-to-1', - ), - 'NONE' => array( - 'Id' => 'NONE', - 'Label' => 'None', - ), - 'sowt' => array( - 'Id' => 'sowt', - 'Label' => 'Little-endian, no compression', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/CompressorName.php b/lib/PHPExiftool/Driver/Tag/AIFF/CompressorName.php deleted file mode 100644 index ff74adfb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/CompressorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressorName extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'CompressorName'; - - protected $FullName = 'AIFF::Common'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'pstring'; - - protected $Writable = false; - - protected $Description = 'Compressor Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/Copyright.php b/lib/PHPExiftool/Driver/Tag/AIFF/Copyright.php deleted file mode 100644 index 1c5200a30..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = '(c) '; - - protected $Name = 'Copyright'; - - protected $FullName = 'AIFF::Main'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/FormatVersionTime.php b/lib/PHPExiftool/Driver/Tag/AIFF/FormatVersionTime.php deleted file mode 100644 index 90a8cc21e..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/FormatVersionTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FormatVersionTime extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FormatVersionTime'; - - protected $FullName = 'AIFF::FormatVers'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Format Version Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/MarkerID.php b/lib/PHPExiftool/Driver/Tag/AIFF/MarkerID.php deleted file mode 100644 index e4e815c96..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/MarkerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkerID extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MarkerID'; - - protected $FullName = 'AIFF::Comment'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Marker ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/Name.php b/lib/PHPExiftool/Driver/Tag/AIFF/Name.php deleted file mode 100644 index cf8c81b4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/Name.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Name extends AbstractTag -{ - - protected $Id = 'NAME'; - - protected $Name = 'Name'; - - protected $FullName = 'AIFF::Main'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/NumChannels.php b/lib/PHPExiftool/Driver/Tag/AIFF/NumChannels.php deleted file mode 100644 index 898af8fed..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/NumChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumChannels extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'NumChannels'; - - protected $FullName = 'AIFF::Common'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Num Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/NumSampleFrames.php b/lib/PHPExiftool/Driver/Tag/AIFF/NumSampleFrames.php deleted file mode 100644 index 4f32641ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/NumSampleFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumSampleFrames extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'NumSampleFrames'; - - protected $FullName = 'AIFF::Common'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Num Sample Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/SampleRate.php b/lib/PHPExiftool/Driver/Tag/AIFF/SampleRate.php deleted file mode 100644 index bb6d29c76..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'SampleRate'; - - protected $FullName = 'AIFF::Common'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'extended'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AIFF/SampleSize.php b/lib/PHPExiftool/Driver/Tag/AIFF/SampleSize.php deleted file mode 100644 index 02211e3f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/AIFF/SampleSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'SampleSize'; - - protected $FullName = 'AIFF::Common'; - - protected $GroupName = 'AIFF'; - - protected $g0 = 'AIFF'; - - protected $g1 = 'AIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sample Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/Album.php b/lib/PHPExiftool/Driver/Tag/APE/Album.php deleted file mode 100644 index f6fce0167..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'Album'; - - protected $Name = 'Album'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/Artist.php b/lib/PHPExiftool/Driver/Tag/APE/Artist.php deleted file mode 100644 index 50a0d00ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/Artist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'Artist'; - - protected $Name = 'Artist'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/Genre.php b/lib/PHPExiftool/Driver/Tag/APE/Genre.php deleted file mode 100644 index bfdb8742a..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'Genre'; - - protected $Name = 'Genre'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/Title.php b/lib/PHPExiftool/Driver/Tag/APE/Title.php deleted file mode 100644 index 9f1cadb07..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'Title'; - - protected $Name = 'Title'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/ToolName.php b/lib/PHPExiftool/Driver/Tag/APE/ToolName.php deleted file mode 100644 index 7ec76c4b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/ToolName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToolName extends AbstractTag -{ - - protected $Id = 'Tool Name'; - - protected $Name = 'ToolName'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tool Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/ToolVersion.php b/lib/PHPExiftool/Driver/Tag/APE/ToolVersion.php deleted file mode 100644 index 5b2e94d04..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/ToolVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToolVersion extends AbstractTag -{ - - protected $Id = 'Tool Version'; - - protected $Name = 'ToolVersion'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tool Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/Track.php b/lib/PHPExiftool/Driver/Tag/APE/Track.php deleted file mode 100644 index 16cea7f46..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/Track.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Track extends AbstractTag -{ - - protected $Id = 'Track'; - - protected $Name = 'Track'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/APE/Year.php b/lib/PHPExiftool/Driver/Tag/APE/Year.php deleted file mode 100644 index 139d8c6b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/APE/Year.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\APE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'Year'; - - protected $Name = 'Year'; - - protected $FullName = 'APE::Main'; - - protected $GroupName = 'APE'; - - protected $g0 = 'APE'; - - protected $g1 = 'APE'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ASFLeakyBucketPairs.php b/lib/PHPExiftool/Driver/Tag/ASF/ASFLeakyBucketPairs.php deleted file mode 100644 index 8ca27183b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ASFLeakyBucketPairs.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASFLeakyBucketPairs extends AbstractTag -{ - - protected $Id = 'ASFLeakyBucketPairs'; - - protected $Name = 'ASFLeakyBucketPairs'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF Leaky Bucket Pairs'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ASFPacketCount.php b/lib/PHPExiftool/Driver/Tag/ASF/ASFPacketCount.php deleted file mode 100644 index ae7313626..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ASFPacketCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASFPacketCount extends AbstractTag -{ - - protected $Id = 'ASFPacketCount'; - - protected $Name = 'ASFPacketCount'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF Packet Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ASFSecurityObjectsSize.php b/lib/PHPExiftool/Driver/Tag/ASF/ASFSecurityObjectsSize.php deleted file mode 100644 index 5e85cff84..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ASFSecurityObjectsSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASFSecurityObjectsSize extends AbstractTag -{ - - protected $Id = 'ASFSecurityObjectsSize'; - - protected $Name = 'ASFSecurityObjectsSize'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF Security Objects Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AdvancedContentEncryption.php b/lib/PHPExiftool/Driver/Tag/ASF/AdvancedContentEncryption.php deleted file mode 100644 index a0e1a66de..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AdvancedContentEncryption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvancedContentEncryption extends AbstractTag -{ - - protected $Id = '43058533-6981-49E6-9B74-AD12CB86D58C'; - - protected $Name = 'AdvancedContentEncryption'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Advanced Content Encryption'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AdvancedMutualExcl.php b/lib/PHPExiftool/Driver/Tag/ASF/AdvancedMutualExcl.php deleted file mode 100644 index 07be7cc39..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AdvancedMutualExcl.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvancedMutualExcl extends AbstractTag -{ - - protected $Id = 'A08649CF-4775-4670-8A16-6E35357566CD'; - - protected $Name = 'AdvancedMutualExcl'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Advanced Mutual Excl'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AlbumArtist.php b/lib/PHPExiftool/Driver/Tag/ASF/AlbumArtist.php deleted file mode 100644 index 2724b3591..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AlbumArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumArtist extends AbstractTag -{ - - protected $Id = 'AlbumArtist'; - - protected $Name = 'AlbumArtist'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AlbumCoverURL.php b/lib/PHPExiftool/Driver/Tag/ASF/AlbumCoverURL.php deleted file mode 100644 index 6c8c933ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AlbumCoverURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumCoverURL extends AbstractTag -{ - - protected $Id = 'AlbumCoverURL'; - - protected $Name = 'AlbumCoverURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Cover URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AlbumTitle.php b/lib/PHPExiftool/Driver/Tag/ASF/AlbumTitle.php deleted file mode 100644 index d5dc2919e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AlbumTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumTitle extends AbstractTag -{ - - protected $Id = 'AlbumTitle'; - - protected $Name = 'AlbumTitle'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AspectRatioX.php b/lib/PHPExiftool/Driver/Tag/ASF/AspectRatioX.php deleted file mode 100644 index cc8e4eb9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AspectRatioX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatioX extends AbstractTag -{ - - protected $Id = 'AspectRatioX'; - - protected $Name = 'AspectRatioX'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aspect Ratio X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AspectRatioY.php b/lib/PHPExiftool/Driver/Tag/ASF/AspectRatioY.php deleted file mode 100644 index d04bd7874..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AspectRatioY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatioY extends AbstractTag -{ - - protected $Id = 'AspectRatioY'; - - protected $Name = 'AspectRatioY'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aspect Ratio Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/ASF/AudioChannels.php deleted file mode 100644 index 8968cea36..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AudioChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecDescription.php b/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecDescription.php deleted file mode 100644 index f7be67123..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecDescription extends AbstractTag -{ - - protected $Id = 'AudioCodecDescription'; - - protected $Name = 'AudioCodecDescription'; - - protected $FullName = 'ASF::CodecList'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Codec Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecID.php b/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecID.php deleted file mode 100644 index 190c0a637..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecID.php +++ /dev/null @@ -1,1018 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecID extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'AudioCodecID'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Audio Codec ID'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Microsoft PCM', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Microsoft ADPCM', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Microsoft IEEE float', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Compaq VSELP', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'IBM CVSD', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Microsoft a-Law', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Microsoft u-Law', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Microsoft DTS', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'DRM', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'WMA 9 Speech', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Microsoft Windows Media RT Voice', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'OKI-ADPCM', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Intel IMA/DVI-ADPCM', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Videologic Mediaspace ADPCM', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sierra ADPCM', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Antex G.723 ADPCM', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'DSP Solutions DIGISTD', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'DSP Solutions DIGIFIX', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Dialoic OKI ADPCM', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Media Vision ADPCM', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'HP CU', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'HP Dynamic Voice', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Yamaha ADPCM', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'SONARC Speech Compression', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'DSP Group True Speech', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Echo Speech Corp.', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Virtual Music Audiofile AF36', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Audio Processing Tech.', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Virtual Music Audiofile AF10', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Aculab Prosody 1612', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Merging Tech. LRC', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Dolby AC2', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Microsoft GSM610', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'MSN Audio', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Antex ADPCME', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Control Resources VQLPC', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'DSP Solutions DIGIREAL', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'DSP Solutions DIGIADPCM', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Control Resources CR10', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Natural MicroSystems VBX ADPCM', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Crystal Semiconductor IMA ADPCM', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Echo Speech ECHOSC3', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Rockwell ADPCM', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Rockwell DIGITALK', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Xebec Multimedia', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Antex G.721 ADPCM', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Antex G.728 CELP', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Microsoft MSG723', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'IBM AVC ADPCM', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'ITU-T G.726', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Microsoft MPEG', - ), - 81 => array( - 'Id' => 81, - 'Label' => 'RT23 or PAC', - ), - 82 => array( - 'Id' => 82, - 'Label' => 'InSoft RT24', - ), - 83 => array( - 'Id' => 83, - 'Label' => 'InSoft PAC', - ), - 85 => array( - 'Id' => 85, - 'Label' => 'MP3', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Cirrus', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Cirrus Logic', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'ESS Tech. PCM', - ), - 98 => array( - 'Id' => 98, - 'Label' => 'Voxware Inc.', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'Canopus ATRAC', - ), - 100 => array( - 'Id' => 100, - 'Label' => 'APICOM G.726 ADPCM', - ), - 101 => array( - 'Id' => 101, - 'Label' => 'APICOM G.722 ADPCM', - ), - 102 => array( - 'Id' => 102, - 'Label' => 'Microsoft DSAT', - ), - 103 => array( - 'Id' => 103, - 'Label' => 'Micorsoft DSAT DISPLAY', - ), - 105 => array( - 'Id' => 105, - 'Label' => 'Voxware Byte Aligned', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Voxware AC8', - ), - 113 => array( - 'Id' => 113, - 'Label' => 'Voxware AC10', - ), - 114 => array( - 'Id' => 114, - 'Label' => 'Voxware AC16', - ), - 115 => array( - 'Id' => 115, - 'Label' => 'Voxware AC20', - ), - 116 => array( - 'Id' => 116, - 'Label' => 'Voxware MetaVoice', - ), - 117 => array( - 'Id' => 117, - 'Label' => 'Voxware MetaSound', - ), - 118 => array( - 'Id' => 118, - 'Label' => 'Voxware RT29HW', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Voxware VR12', - ), - 120 => array( - 'Id' => 120, - 'Label' => 'Voxware VR18', - ), - 121 => array( - 'Id' => 121, - 'Label' => 'Voxware TQ40', - ), - 122 => array( - 'Id' => 122, - 'Label' => 'Voxware SC3', - ), - 123 => array( - 'Id' => 123, - 'Label' => 'Voxware SC3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Soundsoft', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Voxware TQ60', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Microsoft MSRT24', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'AT&T G.729A', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Motion Pixels MVI MV12', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'DataFusion G.726', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'DataFusion GSM610', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Iterated Systems Audio', - ), - 137 => array( - 'Id' => 137, - 'Label' => 'Onlive', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'Multitude, Inc. FT SX20', - ), - 139 => array( - 'Id' => 139, - 'Label' => 'Infocom ITS A/S G.721 ADPCM', - ), - 140 => array( - 'Id' => 140, - 'Label' => 'Convedia G729', - ), - 141 => array( - 'Id' => 141, - 'Label' => 'Not specified congruency, Inc.', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'Siemens SBC24', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'Sonic Foundry Dolby AC3 APDIF', - ), - 147 => array( - 'Id' => 147, - 'Label' => 'MediaSonic G.723', - ), - 148 => array( - 'Id' => 148, - 'Label' => 'Aculab Prosody 8kbps', - ), - 151 => array( - 'Id' => 151, - 'Label' => 'ZyXEL ADPCM', - ), - 152 => array( - 'Id' => 152, - 'Label' => 'Philips LPCBB', - ), - 153 => array( - 'Id' => 153, - 'Label' => 'Studer Professional Audio Packed', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Malden PhonyTalk', - ), - 161 => array( - 'Id' => 161, - 'Label' => 'Racal Recorder GSM', - ), - 162 => array( - 'Id' => 162, - 'Label' => 'Racal Recorder G720.a', - ), - 163 => array( - 'Id' => 163, - 'Label' => 'Racal G723.1', - ), - 164 => array( - 'Id' => 164, - 'Label' => 'Racal Tetra ACELP', - ), - 176 => array( - 'Id' => 176, - 'Label' => 'NEC AAC NEC Corporation', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'AAC', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Rhetorex ADPCM', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'IBM u-Law', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'IBM a-Law', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'IBM ADPCM', - ), - 273 => array( - 'Id' => 273, - 'Label' => 'Vivo G.723', - ), - 274 => array( - 'Id' => 274, - 'Label' => 'Vivo Siren', - ), - 288 => array( - 'Id' => 288, - 'Label' => 'Philips Speech Processing CELP', - ), - 289 => array( - 'Id' => 289, - 'Label' => 'Philips Speech Processing GRUNDIG', - ), - 291 => array( - 'Id' => 291, - 'Label' => 'Digital G.723', - ), - 293 => array( - 'Id' => 293, - 'Label' => 'Sanyo LD ADPCM', - ), - 304 => array( - 'Id' => 304, - 'Label' => 'Sipro Lab ACEPLNET', - ), - 305 => array( - 'Id' => 305, - 'Label' => 'Sipro Lab ACELP4800', - ), - 306 => array( - 'Id' => 306, - 'Label' => 'Sipro Lab ACELP8V3', - ), - 307 => array( - 'Id' => 307, - 'Label' => 'Sipro Lab G.729', - ), - 308 => array( - 'Id' => 308, - 'Label' => 'Sipro Lab G.729A', - ), - 309 => array( - 'Id' => 309, - 'Label' => 'Sipro Lab Kelvin', - ), - 310 => array( - 'Id' => 310, - 'Label' => 'VoiceAge AMR', - ), - 320 => array( - 'Id' => 320, - 'Label' => 'Dictaphone G.726 ADPCM', - ), - 336 => array( - 'Id' => 336, - 'Label' => 'Qualcomm PureVoice', - ), - 337 => array( - 'Id' => 337, - 'Label' => 'Qualcomm HalfRate', - ), - 341 => array( - 'Id' => 341, - 'Label' => 'Ring Zero Systems TUBGSM', - ), - 352 => array( - 'Id' => 352, - 'Label' => 'Microsoft Audio1', - ), - 353 => array( - 'Id' => 353, - 'Label' => 'Windows Media Audio V2 V7 V8 V9 / DivX audio (WMA) / Alex AC3 Audio', - ), - 354 => array( - 'Id' => 354, - 'Label' => 'Windows Media Audio Professional V9', - ), - 355 => array( - 'Id' => 355, - 'Label' => 'Windows Media Audio Lossless V9', - ), - 356 => array( - 'Id' => 356, - 'Label' => 'WMA Pro over S/PDIF', - ), - 368 => array( - 'Id' => 368, - 'Label' => 'UNISYS NAP ADPCM', - ), - 369 => array( - 'Id' => 369, - 'Label' => 'UNISYS NAP ULAW', - ), - 370 => array( - 'Id' => 370, - 'Label' => 'UNISYS NAP ALAW', - ), - 371 => array( - 'Id' => 371, - 'Label' => 'UNISYS NAP 16K', - ), - 372 => array( - 'Id' => 372, - 'Label' => 'MM SYCOM ACM SYC008 SyCom Technologies', - ), - 373 => array( - 'Id' => 373, - 'Label' => 'MM SYCOM ACM SYC701 G726L SyCom Technologies', - ), - 374 => array( - 'Id' => 374, - 'Label' => 'MM SYCOM ACM SYC701 CELP54 SyCom Technologies', - ), - 375 => array( - 'Id' => 375, - 'Label' => 'MM SYCOM ACM SYC701 CELP68 SyCom Technologies', - ), - 376 => array( - 'Id' => 376, - 'Label' => 'Knowledge Adventure ADPCM', - ), - 384 => array( - 'Id' => 384, - 'Label' => 'Fraunhofer IIS MPEG2AAC', - ), - 400 => array( - 'Id' => 400, - 'Label' => 'Digital Theater Systems DTS DS', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Creative Labs ADPCM', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'Creative Labs FASTSPEECH8', - ), - 515 => array( - 'Id' => 515, - 'Label' => 'Creative Labs FASTSPEECH10', - ), - 528 => array( - 'Id' => 528, - 'Label' => 'UHER ADPCM', - ), - 533 => array( - 'Id' => 533, - 'Label' => 'Ulead DV ACM', - ), - 534 => array( - 'Id' => 534, - 'Label' => 'Ulead DV ACM', - ), - 544 => array( - 'Id' => 544, - 'Label' => 'Quarterdeck Corp.', - ), - 560 => array( - 'Id' => 560, - 'Label' => 'I-Link VC', - ), - 576 => array( - 'Id' => 576, - 'Label' => 'Aureal Semiconductor Raw Sport', - ), - 577 => array( - 'Id' => 577, - 'Label' => 'ESST AC3', - ), - 592 => array( - 'Id' => 592, - 'Label' => 'Interactive Products HSX', - ), - 593 => array( - 'Id' => 593, - 'Label' => 'Interactive Products RPELP', - ), - 608 => array( - 'Id' => 608, - 'Label' => 'Consistent CS2', - ), - 624 => array( - 'Id' => 624, - 'Label' => 'Sony SCX', - ), - 625 => array( - 'Id' => 625, - 'Label' => 'Sony SCY', - ), - 626 => array( - 'Id' => 626, - 'Label' => 'Sony ATRAC3', - ), - 627 => array( - 'Id' => 627, - 'Label' => 'Sony SPC', - ), - 640 => array( - 'Id' => 640, - 'Label' => 'TELUM Telum Inc.', - ), - 641 => array( - 'Id' => 641, - 'Label' => 'TELUMIA Telum Inc.', - ), - 645 => array( - 'Id' => 645, - 'Label' => 'Norcom Voice Systems ADPCM', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'Fujitsu FM TOWNS SND', - ), - 769 => array( - 'Id' => 769, - 'Label' => 'Fujitsu (not specified)', - ), - 770 => array( - 'Id' => 770, - 'Label' => 'Fujitsu (not specified)', - ), - 771 => array( - 'Id' => 771, - 'Label' => 'Fujitsu (not specified)', - ), - 772 => array( - 'Id' => 772, - 'Label' => 'Fujitsu (not specified)', - ), - 773 => array( - 'Id' => 773, - 'Label' => 'Fujitsu (not specified)', - ), - 774 => array( - 'Id' => 774, - 'Label' => 'Fujitsu (not specified)', - ), - 775 => array( - 'Id' => 775, - 'Label' => 'Fujitsu (not specified)', - ), - 776 => array( - 'Id' => 776, - 'Label' => 'Fujitsu (not specified)', - ), - 848 => array( - 'Id' => 848, - 'Label' => 'Micronas Semiconductors, Inc. Development', - ), - 849 => array( - 'Id' => 849, - 'Label' => 'Micronas Semiconductors, Inc. CELP833', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Brooktree Digital', - ), - 1025 => array( - 'Id' => 1025, - 'Label' => 'Intel Music Coder (IMC)', - ), - 1026 => array( - 'Id' => 1026, - 'Label' => 'Ligos Indeo Audio', - ), - 1104 => array( - 'Id' => 1104, - 'Label' => 'QDesign Music', - ), - 1280 => array( - 'Id' => 1280, - 'Label' => 'On2 VP7 On2 Technologies', - ), - 1281 => array( - 'Id' => 1281, - 'Label' => 'On2 VP6 On2 Technologies', - ), - 1664 => array( - 'Id' => 1664, - 'Label' => 'AT&T VME VMPCM', - ), - 1665 => array( - 'Id' => 1665, - 'Label' => 'AT&T TCP', - ), - 1792 => array( - 'Id' => 1792, - 'Label' => 'YMPEG Alpha (dummy for MPEG-2 compressor)', - ), - 2222 => array( - 'Id' => 2222, - 'Label' => 'ClearJump LiteWave (lossless)', - ), - 4096 => array( - 'Id' => 4096, - 'Label' => 'Olivetti GSM', - ), - 4097 => array( - 'Id' => 4097, - 'Label' => 'Olivetti ADPCM', - ), - 4098 => array( - 'Id' => 4098, - 'Label' => 'Olivetti CELP', - ), - 4099 => array( - 'Id' => 4099, - 'Label' => 'Olivetti SBC', - ), - 4100 => array( - 'Id' => 4100, - 'Label' => 'Olivetti OPR', - ), - 4352 => array( - 'Id' => 4352, - 'Label' => 'Lernout & Hauspie', - ), - 4353 => array( - 'Id' => 4353, - 'Label' => 'Lernout & Hauspie CELP codec', - ), - 4354 => array( - 'Id' => 4354, - 'Label' => 'Lernout & Hauspie SBC codec', - ), - 4355 => array( - 'Id' => 4355, - 'Label' => 'Lernout & Hauspie SBC codec', - ), - 4356 => array( - 'Id' => 4356, - 'Label' => 'Lernout & Hauspie SBC codec', - ), - 5120 => array( - 'Id' => 5120, - 'Label' => 'Norris Comm. Inc.', - ), - 5121 => array( - 'Id' => 5121, - 'Label' => 'ISIAudio', - ), - 5376 => array( - 'Id' => 5376, - 'Label' => 'AT&T Soundspace Music Compression', - ), - 6172 => array( - 'Id' => 6172, - 'Label' => 'VoxWare RT24 speech codec', - ), - 6174 => array( - 'Id' => 6174, - 'Label' => 'Lucent elemedia AX24000P Music codec', - ), - 6513 => array( - 'Id' => 6513, - 'Label' => 'Sonic Foundry LOSSLESS', - ), - 6521 => array( - 'Id' => 6521, - 'Label' => 'Innings Telecom Inc. ADPCM', - ), - 7175 => array( - 'Id' => 7175, - 'Label' => 'Lucent SX8300P speech codec', - ), - 7180 => array( - 'Id' => 7180, - 'Label' => 'Lucent SX5363S G.723 compliant codec', - ), - 7939 => array( - 'Id' => 7939, - 'Label' => 'CUseeMe DigiTalk (ex-Rocwell)', - ), - 8132 => array( - 'Id' => 8132, - 'Label' => 'NCT Soft ALF2CD ACM', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'FAST Multimedia DVM', - ), - 8193 => array( - 'Id' => 8193, - 'Label' => 'Dolby DTS (Digital Theater System)', - ), - 8194 => array( - 'Id' => 8194, - 'Label' => 'RealAudio 1 / 2 14.4', - ), - 8195 => array( - 'Id' => 8195, - 'Label' => 'RealAudio 1 / 2 28.8', - ), - 8196 => array( - 'Id' => 8196, - 'Label' => 'RealAudio G2 / 8 Cook (low bitrate)', - ), - 8197 => array( - 'Id' => 8197, - 'Label' => 'RealAudio 3 / 4 / 5 Music (DNET)', - ), - 8198 => array( - 'Id' => 8198, - 'Label' => 'RealAudio 10 AAC (RAAC)', - ), - 8199 => array( - 'Id' => 8199, - 'Label' => 'RealAudio 10 AAC+ (RACP)', - ), - 9472 => array( - 'Id' => 9472, - 'Label' => 'Reserved range to 0x2600 Microsoft', - ), - 13075 => array( - 'Id' => 13075, - 'Label' => 'makeAVIS (ffvfw fake AVI sound from AviSynth scripts)', - ), - 16707 => array( - 'Id' => 16707, - 'Label' => 'Divio MPEG-4 AAC audio', - ), - 16897 => array( - 'Id' => 16897, - 'Label' => 'Nokia adaptive multirate', - ), - 16963 => array( - 'Id' => 16963, - 'Label' => 'Divio G726 Divio, Inc.', - ), - 17228 => array( - 'Id' => 17228, - 'Label' => 'LEAD Speech', - ), - 22092 => array( - 'Id' => 22092, - 'Label' => 'LEAD Vorbis', - ), - 22358 => array( - 'Id' => 22358, - 'Label' => 'WavPack Audio', - ), - 26447 => array( - 'Id' => 26447, - 'Label' => 'Ogg Vorbis (mode 1)', - ), - 26448 => array( - 'Id' => 26448, - 'Label' => 'Ogg Vorbis (mode 2)', - ), - 26449 => array( - 'Id' => 26449, - 'Label' => 'Ogg Vorbis (mode 3)', - ), - 26479 => array( - 'Id' => 26479, - 'Label' => 'Ogg Vorbis (mode 1+)', - ), - 26480 => array( - 'Id' => 26480, - 'Label' => 'Ogg Vorbis (mode 2+)', - ), - 26481 => array( - 'Id' => 26481, - 'Label' => 'Ogg Vorbis (mode 3+)', - ), - 28672 => array( - 'Id' => 28672, - 'Label' => '3COM NBX 3Com Corporation', - ), - 28781 => array( - 'Id' => 28781, - 'Label' => 'FAAD AAC', - ), - 31265 => array( - 'Id' => 31265, - 'Label' => 'GSM-AMR (CBR, no SID)', - ), - 31266 => array( - 'Id' => 31266, - 'Label' => 'GSM-AMR (VBR, including SID)', - ), - 41216 => array( - 'Id' => 41216, - 'Label' => 'Comverse Infosys Ltd. G723 1', - ), - 41217 => array( - 'Id' => 41217, - 'Label' => 'Comverse Infosys Ltd. AVQSBC', - ), - 41218 => array( - 'Id' => 41218, - 'Label' => 'Comverse Infosys Ltd. OLDSBC', - ), - 41219 => array( - 'Id' => 41219, - 'Label' => 'Symbol Technologies G729A', - ), - 41220 => array( - 'Id' => 41220, - 'Label' => 'VoiceAge AMR WB VoiceAge Corporation', - ), - 41221 => array( - 'Id' => 41221, - 'Label' => 'Ingenient Technologies Inc. G726', - ), - 41222 => array( - 'Id' => 41222, - 'Label' => 'ISO/MPEG-4 advanced audio Coding', - ), - 41223 => array( - 'Id' => 41223, - 'Label' => 'Encore Software Ltd G726', - ), - 41225 => array( - 'Id' => 41225, - 'Label' => 'Speex ACM Codec xiph.org', - ), - 57260 => array( - 'Id' => 57260, - 'Label' => 'DebugMode SonicFoundry Vegas FrameServer ACM Codec', - ), - 59144 => array( - 'Id' => 59144, - 'Label' => 'Unknown -', - ), - 61868 => array( - 'Id' => 61868, - 'Label' => 'Free Lossless Audio Codec FLAC', - ), - 65534 => array( - 'Id' => 65534, - 'Label' => 'Extensible', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Development', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecName.php b/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecName.php deleted file mode 100644 index 9b35ebdbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AudioCodecName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecName extends AbstractTag -{ - - protected $Id = 'AudioCodecName'; - - protected $Name = 'AudioCodecName'; - - protected $FullName = 'ASF::CodecList'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Codec Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AudioFileURL.php b/lib/PHPExiftool/Driver/Tag/ASF/AudioFileURL.php deleted file mode 100644 index c7d1f93f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AudioFileURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFileURL extends AbstractTag -{ - - protected $Id = 'AudioFileURL'; - - protected $Name = 'AudioFileURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio File URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/ASF/AudioSampleRate.php deleted file mode 100644 index b67c14a24..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AudioSampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AudioSourceURL.php b/lib/PHPExiftool/Driver/Tag/ASF/AudioSourceURL.php deleted file mode 100644 index ceb423a54..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AudioSourceURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSourceURL extends AbstractTag -{ - - protected $Id = 'AudioSourceURL'; - - protected $Name = 'AudioSourceURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Source URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Author.php b/lib/PHPExiftool/Driver/Tag/ASF/Author.php deleted file mode 100644 index c3b355c19..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Author'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AuthorURL.php b/lib/PHPExiftool/Driver/Tag/ASF/AuthorURL.php deleted file mode 100644 index eeb8a98ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AuthorURL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthorURL extends AbstractTag -{ - - protected $Id = 'AuthorURL'; - - protected $Name = 'AuthorURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author URL'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/AverageLevel.php b/lib/PHPExiftool/Driver/Tag/ASF/AverageLevel.php deleted file mode 100644 index 6cb3af115..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/AverageLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AverageLevel extends AbstractTag -{ - - protected $Id = 'AverageLevel'; - - protected $Name = 'AverageLevel'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Average Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BandwidthSharing.php b/lib/PHPExiftool/Driver/Tag/ASF/BandwidthSharing.php deleted file mode 100644 index 70413c432..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BandwidthSharing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BandwidthSharing extends AbstractTag -{ - - protected $Id = 'A69609E6-517B-11D2-B6AF-00C04FD908E9'; - - protected $Name = 'BandwidthSharing'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bandwidth Sharing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BannerImage.php b/lib/PHPExiftool/Driver/Tag/ASF/BannerImage.php deleted file mode 100644 index f9397b953..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BannerImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BannerImage extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'BannerImage'; - - protected $FullName = 'ASF::ContentBranding'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Author'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Banner Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BannerImageData.php b/lib/PHPExiftool/Driver/Tag/ASF/BannerImageData.php deleted file mode 100644 index 7d6d5ecdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BannerImageData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BannerImageData extends AbstractTag -{ - - protected $Id = 'BannerImageData'; - - protected $Name = 'BannerImageData'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Banner Image Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BannerImageType.php b/lib/PHPExiftool/Driver/Tag/ASF/BannerImageType.php deleted file mode 100644 index e1f22fb84..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BannerImageType.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BannerImageType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BannerImageType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Banner Image Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Bitmap', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'JPEG', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'GIF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BannerImageURL.php b/lib/PHPExiftool/Driver/Tag/ASF/BannerImageURL.php deleted file mode 100644 index 730a28e38..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BannerImageURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BannerImageURL extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BannerImageURL'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Banner Image URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BeatsPerMinute.php b/lib/PHPExiftool/Driver/Tag/ASF/BeatsPerMinute.php deleted file mode 100644 index c3dcb3f86..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BeatsPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatsPerMinute extends AbstractTag -{ - - protected $Id = 'BeatsPerMinute'; - - protected $Name = 'BeatsPerMinute'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beats Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Bitrate.php b/lib/PHPExiftool/Driver/Tag/ASF/Bitrate.php deleted file mode 100644 index 52ea04d59..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Bitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Bitrate extends AbstractTag -{ - - protected $Id = 'Bitrate'; - - protected $Name = 'Bitrate'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BitrateMutualExclusion.php b/lib/PHPExiftool/Driver/Tag/ASF/BitrateMutualExclusion.php deleted file mode 100644 index 105bf311f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BitrateMutualExclusion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitrateMutualExclusion extends AbstractTag -{ - - protected $Id = 'D6E229DC-35DA-11D1-9034-00A0C90349BE'; - - protected $Name = 'BitrateMutualExclusion'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bitrate Mutual Exclusion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Broadcast.php b/lib/PHPExiftool/Driver/Tag/ASF/Broadcast.php deleted file mode 100644 index 30bd7f780..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Broadcast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Broadcast extends AbstractTag -{ - - protected $Id = 'Broadcast'; - - protected $Name = 'Broadcast'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Broadcast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/BufferAverage.php b/lib/PHPExiftool/Driver/Tag/ASF/BufferAverage.php deleted file mode 100644 index 34d2a1c7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/BufferAverage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BufferAverage extends AbstractTag -{ - - protected $Id = 'BufferAverage'; - - protected $Name = 'BufferAverage'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Buffer Average'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/CanSkipBackward.php b/lib/PHPExiftool/Driver/Tag/ASF/CanSkipBackward.php deleted file mode 100644 index 563bb2c6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/CanSkipBackward.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanSkipBackward extends AbstractTag -{ - - protected $Id = 'Can_Skip_Backward'; - - protected $Name = 'Can_Skip_Backward'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Can Skip Backward'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/CanSkipForward.php b/lib/PHPExiftool/Driver/Tag/ASF/CanSkipForward.php deleted file mode 100644 index cb195dd49..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/CanSkipForward.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanSkipForward extends AbstractTag -{ - - protected $Id = 'Can_Skip_Forward'; - - protected $Name = 'Can_Skip_Forward'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Can Skip Forward'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Category.php b/lib/PHPExiftool/Driver/Tag/ASF/Category.php deleted file mode 100644 index 2accac2d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 'Category'; - - protected $Name = 'Category'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Codec.php b/lib/PHPExiftool/Driver/Tag/ASF/Codec.php deleted file mode 100644 index bf8537d2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Codec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Codec extends AbstractTag -{ - - protected $Id = 'Codec'; - - protected $Name = 'Codec'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Compatibility.php b/lib/PHPExiftool/Driver/Tag/ASF/Compatibility.php deleted file mode 100644 index 366949496..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Compatibility.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compatibility extends AbstractTag -{ - - protected $Id = '75B22630-668E-11CF-A6D9-00AA0062CE6C'; - - protected $Name = 'Compatibility'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compatibility'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Composer.php b/lib/PHPExiftool/Driver/Tag/ASF/Composer.php deleted file mode 100644 index ca8228b7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Composer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'Composer'; - - protected $Name = 'Composer'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Conductor.php b/lib/PHPExiftool/Driver/Tag/ASF/Conductor.php deleted file mode 100644 index 24e421119..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Conductor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Conductor extends AbstractTag -{ - - protected $Id = 'Conductor'; - - protected $Name = 'Conductor'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conductor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ContainerFormat.php b/lib/PHPExiftool/Driver/Tag/ASF/ContainerFormat.php deleted file mode 100644 index dca623a9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ContainerFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerFormat extends AbstractTag -{ - - protected $Id = 'ContainerFormat'; - - protected $Name = 'ContainerFormat'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ContentDistributor.php b/lib/PHPExiftool/Driver/Tag/ASF/ContentDistributor.php deleted file mode 100644 index 0d2d514e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ContentDistributor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDistributor extends AbstractTag -{ - - protected $Id = 'ContentDistributor'; - - protected $Name = 'ContentDistributor'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Distributor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ContentEncryption.php b/lib/PHPExiftool/Driver/Tag/ASF/ContentEncryption.php deleted file mode 100644 index 0df3b8fb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ContentEncryption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentEncryption extends AbstractTag -{ - - protected $Id = '2211B3FB-BD23-11D2-B4B7-00A0C955FC6E'; - - protected $Name = 'ContentEncryption'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Encryption'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ContentGroupDescription.php b/lib/PHPExiftool/Driver/Tag/ASF/ContentGroupDescription.php deleted file mode 100644 index 6fbb28fb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ContentGroupDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentGroupDescription extends AbstractTag -{ - - protected $Id = 'ContentGroupDescription'; - - protected $Name = 'ContentGroupDescription'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Group Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Copyright.php b/lib/PHPExiftool/Driver/Tag/ASF/Copyright.php deleted file mode 100644 index 2b4d69325..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Copyright'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/CopyrightURL.php b/lib/PHPExiftool/Driver/Tag/ASF/CopyrightURL.php deleted file mode 100644 index 4f14d5ae9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/CopyrightURL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightURL extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CopyrightURL'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright URL'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/CreationDate.php b/lib/PHPExiftool/Driver/Tag/ASF/CreationDate.php deleted file mode 100644 index e3971aef1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/CreationDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationDate extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'CreationDate'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Creation Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/CurrentBitrate.php b/lib/PHPExiftool/Driver/Tag/ASF/CurrentBitrate.php deleted file mode 100644 index 256da9e4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/CurrentBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentBitrate extends AbstractTag -{ - - protected $Id = 'CurrentBitrate'; - - protected $Name = 'CurrentBitrate'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRM.php b/lib/PHPExiftool/Driver/Tag/ASF/DRM.php deleted file mode 100644 index ff529864f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRM.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRM extends AbstractTag -{ - - protected $Id = 'DRM'; - - protected $Name = 'DRM'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMContentID.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMContentID.php deleted file mode 100644 index ace76ded8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMContentID extends AbstractTag -{ - - protected $Id = 'DRM_ContentID'; - - protected $Name = 'DRM_ContentID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeader.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeader.php deleted file mode 100644 index 165153ecc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeader.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMDRMHeader extends AbstractTag -{ - - protected $Id = 'DRM_DRMHeader'; - - protected $Name = 'DRM_DRMHeader'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM DRM Header'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderContentDistributor.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderContentDistributor.php deleted file mode 100644 index 29a4c89a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderContentDistributor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMDRMHeaderContentDistributor extends AbstractTag -{ - - protected $Id = 'DRM_DRMHeader_ContentDistributor'; - - protected $Name = 'DRM_DRMHeader_ContentDistributor'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM DRM Header Content Distributor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderContentID.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderContentID.php deleted file mode 100644 index 42fb0746f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMDRMHeaderContentID extends AbstractTag -{ - - protected $Id = 'DRM_DRMHeader_ContentID'; - - protected $Name = 'DRM_DRMHeader_ContentID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM DRM Header Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderIndividualizedVersion.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderIndividualizedVersion.php deleted file mode 100644 index 01e69b4f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderIndividualizedVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMDRMHeaderIndividualizedVersion extends AbstractTag -{ - - protected $Id = 'DRM_DRMHeader_IndividualizedVersion'; - - protected $Name = 'DRM_DRMHeader_IndividualizedVersion'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM DRM Header Individualized Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderKeyID.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderKeyID.php deleted file mode 100644 index 42b1ae15f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderKeyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMDRMHeaderKeyID extends AbstractTag -{ - - protected $Id = 'DRM_DRMHeader_KeyID'; - - protected $Name = 'DRM_DRMHeader_KeyID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM DRM Header Key ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderLicenseAcqURL.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderLicenseAcqURL.php deleted file mode 100644 index fcc7be62b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderLicenseAcqURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMDRMHeaderLicenseAcqURL extends AbstractTag -{ - - protected $Id = 'DRM_DRMHeader_LicenseAcqURL'; - - protected $Name = 'DRM_DRMHeader_LicenseAcqURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM DRM Header License Acq URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderSubscriptionContentID.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderSubscriptionContentID.php deleted file mode 100644 index 1575b2813..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMDRMHeaderSubscriptionContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMDRMHeaderSubscriptionContentID extends AbstractTag -{ - - protected $Id = 'DRM_DRMHeader_SubscriptionContentID'; - - protected $Name = 'DRM_DRMHeader_SubscriptionContentID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM DRM Header Subscription Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMIndividualizedVersion.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMIndividualizedVersion.php deleted file mode 100644 index b7de4082b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMIndividualizedVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMIndividualizedVersion extends AbstractTag -{ - - protected $Id = 'DRM_IndividualizedVersion'; - - protected $Name = 'DRM_IndividualizedVersion'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM Individualized Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMKeyID.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMKeyID.php deleted file mode 100644 index 1ab3ce467..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMKeyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMKeyID extends AbstractTag -{ - - protected $Id = 'DRM_KeyID'; - - protected $Name = 'DRM_KeyID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM Key ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureCert.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureCert.php deleted file mode 100644 index 50ecf1ac7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureCert.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMLASignatureCert extends AbstractTag -{ - - protected $Id = 'DRM_LASignatureCert'; - - protected $Name = 'DRM_LASignatureCert'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM LA Signature Cert'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureLicSrvCert.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureLicSrvCert.php deleted file mode 100644 index d41624347..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureLicSrvCert.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMLASignatureLicSrvCert extends AbstractTag -{ - - protected $Id = 'DRM_LASignatureLicSrvCert'; - - protected $Name = 'DRM_LASignatureLicSrvCert'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM LA Signature Lic Srv Cert'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignaturePrivKey.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignaturePrivKey.php deleted file mode 100644 index 2a9c90ccf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignaturePrivKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMLASignaturePrivKey extends AbstractTag -{ - - protected $Id = 'DRM_LASignaturePrivKey'; - - protected $Name = 'DRM_LASignaturePrivKey'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM LA Signature Priv Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureRootCert.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureRootCert.php deleted file mode 100644 index b31eeadf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMLASignatureRootCert.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMLASignatureRootCert extends AbstractTag -{ - - protected $Id = 'DRM_LASignatureRootCert'; - - protected $Name = 'DRM_LASignatureRootCert'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM LA Signature Root Cert'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMLicenseAcqURL.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMLicenseAcqURL.php deleted file mode 100644 index d634e4b27..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMLicenseAcqURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMLicenseAcqURL extends AbstractTag -{ - - protected $Id = 'DRM_LicenseAcqURL'; - - protected $Name = 'DRM_LicenseAcqURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM License Acq URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DRMV1LicenseAcqURL.php b/lib/PHPExiftool/Driver/Tag/ASF/DRMV1LicenseAcqURL.php deleted file mode 100644 index a82298d05..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DRMV1LicenseAcqURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMV1LicenseAcqURL extends AbstractTag -{ - - protected $Id = 'DRM_V1LicenseAcqURL'; - - protected $Name = 'DRM_V1LicenseAcqURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM V1 License Acq URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DVDID.php b/lib/PHPExiftool/Driver/Tag/ASF/DVDID.php deleted file mode 100644 index e262453d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DVDID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVDID extends AbstractTag -{ - - protected $Id = 'DVDID'; - - protected $Name = 'DVDID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVDID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Data.php b/lib/PHPExiftool/Driver/Tag/ASF/Data.php deleted file mode 100644 index dfa79adb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Data.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Data extends AbstractTag -{ - - protected $Id = '75B22636-668E-11CF-A6D9-00AA0062CE6C'; - - protected $Name = 'Data'; - - protected $FullName = 'ASF::Main'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DataPackets.php b/lib/PHPExiftool/Driver/Tag/ASF/DataPackets.php deleted file mode 100644 index 9686b403c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DataPackets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataPackets extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'DataPackets'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Data Packets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Description.php b/lib/PHPExiftool/Driver/Tag/ASF/Description.php deleted file mode 100644 index 0ac652239..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Description'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/DigitalSignature.php b/lib/PHPExiftool/Driver/Tag/ASF/DigitalSignature.php deleted file mode 100644 index a3ac8a8cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/DigitalSignature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSignature extends AbstractTag -{ - - protected $Id = '2211B3FC-BD23-11D2-B4B7-00A0C955FC6E'; - - protected $Name = 'DigitalSignature'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Signature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Director.php b/lib/PHPExiftool/Driver/Tag/ASF/Director.php deleted file mode 100644 index a2b2ba439..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Director.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Director extends AbstractTag -{ - - protected $Id = 'Director'; - - protected $Name = 'Director'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Director'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Duration.php b/lib/PHPExiftool/Driver/Tag/ASF/Duration.php deleted file mode 100644 index e2efed09b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'Duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/ASF/EncodedBy.php deleted file mode 100644 index 11b150186..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = 'EncodedBy'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/EncodingSettings.php b/lib/PHPExiftool/Driver/Tag/ASF/EncodingSettings.php deleted file mode 100644 index af53ec54a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/EncodingSettings.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodingSettings extends AbstractTag -{ - - protected $Id = 'EncodingSettings'; - - protected $Name = 'EncodingSettings'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoding Settings'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/EncodingTime.php b/lib/PHPExiftool/Driver/Tag/ASF/EncodingTime.php deleted file mode 100644 index a33b30f5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/EncodingTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodingTime extends AbstractTag -{ - - protected $Id = 'EncodingTime'; - - protected $Name = 'EncodingTime'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoding Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ErrorCorrection.php b/lib/PHPExiftool/Driver/Tag/ASF/ErrorCorrection.php deleted file mode 100644 index e99aee3cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ErrorCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ErrorCorrection extends AbstractTag -{ - - protected $Id = '75B22635-668E-11CF-A6D9-00AA0062CE6C'; - - protected $Name = 'ErrorCorrection'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Error Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ErrorCorrectionType.php b/lib/PHPExiftool/Driver/Tag/ASF/ErrorCorrectionType.php deleted file mode 100644 index 1088584c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ErrorCorrectionType.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ErrorCorrectionType extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'ErrorCorrectionType'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'binary'; - - protected $Writable = false; - - protected $Description = 'Error Correction Type'; - - protected $MaxLength = 16; - - protected $Values = array( - '20FB5700-5B55-11CF-A8FD-00805F5C442B' => array( - 'Id' => '20FB5700-5B55-11CF-A8FD-00805F5C442B', - 'Label' => 'No Error Correction', - ), - 'BFC3CD50-618F-11CF-8BB2-00AA00B4E220' => array( - 'Id' => 'BFC3CD50-618F-11CF-8BB2-00AA00B4E220', - 'Label' => 'Audio Spread', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ExtendedContentEncryption.php b/lib/PHPExiftool/Driver/Tag/ASF/ExtendedContentEncryption.php deleted file mode 100644 index ecbbe0230..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ExtendedContentEncryption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendedContentEncryption extends AbstractTag -{ - - protected $Id = '298AE614-2622-4C17-B935-DAE07EE9289C'; - - protected $Name = 'ExtendedContentEncryption'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extended Content Encryption'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ExtendedStreamProps.php b/lib/PHPExiftool/Driver/Tag/ASF/ExtendedStreamProps.php deleted file mode 100644 index e85387efd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ExtendedStreamProps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendedStreamProps extends AbstractTag -{ - - protected $Id = '14E6A5CB-C672-4332-8399-A96952065B5A'; - - protected $Name = 'ExtendedStreamProps'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extended Stream Props'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/FileID.php b/lib/PHPExiftool/Driver/Tag/ASF/FileID.php deleted file mode 100644 index 14660c14f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/FileID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FileID'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'binary'; - - protected $Writable = false; - - protected $Description = 'File ID'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/FileLength.php b/lib/PHPExiftool/Driver/Tag/ASF/FileLength.php deleted file mode 100644 index ab3af73ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/FileLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileLength extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'FileLength'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'File Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/FileSize.php b/lib/PHPExiftool/Driver/Tag/ASF/FileSize.php deleted file mode 100644 index 283e86e6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/FileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSize extends AbstractTag -{ - - protected $Id = 'FileSize'; - - protected $Name = 'FileSize'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Flags.php b/lib/PHPExiftool/Driver/Tag/ASF/Flags.php deleted file mode 100644 index 0a70cba4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Flags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flags extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'Flags'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Genre.php b/lib/PHPExiftool/Driver/Tag/ASF/Genre.php deleted file mode 100644 index 2feb771c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'Genre'; - - protected $Name = 'Genre'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/GenreID.php b/lib/PHPExiftool/Driver/Tag/ASF/GenreID.php deleted file mode 100644 index fe47ad201..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/GenreID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenreID extends AbstractTag -{ - - protected $Id = 'GenreID'; - - protected $Name = 'GenreID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/GroupMutualExclusion.php b/lib/PHPExiftool/Driver/Tag/ASF/GroupMutualExclusion.php deleted file mode 100644 index 6160a4579..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/GroupMutualExclusion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GroupMutualExclusion extends AbstractTag -{ - - protected $Id = 'D1465A40-5A79-4338-B71B-E36B8FD6C249'; - - protected $Name = 'GroupMutualExclusion'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Group Mutual Exclusion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/HasArbitraryDataStream.php b/lib/PHPExiftool/Driver/Tag/ASF/HasArbitraryDataStream.php deleted file mode 100644 index 3b3e3c673..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/HasArbitraryDataStream.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasArbitraryDataStream extends AbstractTag -{ - - protected $Id = 'HasArbitraryDataStream'; - - protected $Name = 'HasArbitraryDataStream'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Arbitrary Data Stream'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/HasAttachedImages.php b/lib/PHPExiftool/Driver/Tag/ASF/HasAttachedImages.php deleted file mode 100644 index 599362ac3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/HasAttachedImages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasAttachedImages extends AbstractTag -{ - - protected $Id = 'HasAttachedImages'; - - protected $Name = 'HasAttachedImages'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Attached Images'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/HasAudio.php b/lib/PHPExiftool/Driver/Tag/ASF/HasAudio.php deleted file mode 100644 index 443d0b999..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/HasAudio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasAudio extends AbstractTag -{ - - protected $Id = 'HasAudio'; - - protected $Name = 'HasAudio'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/HasFileTransferStream.php b/lib/PHPExiftool/Driver/Tag/ASF/HasFileTransferStream.php deleted file mode 100644 index 6573b6ee1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/HasFileTransferStream.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasFileTransferStream extends AbstractTag -{ - - protected $Id = 'HasFileTransferStream'; - - protected $Name = 'HasFileTransferStream'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has File Transfer Stream'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/HasImage.php b/lib/PHPExiftool/Driver/Tag/ASF/HasImage.php deleted file mode 100644 index 3f5b42b20..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/HasImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasImage extends AbstractTag -{ - - protected $Id = 'HasImage'; - - protected $Name = 'HasImage'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/HasScript.php b/lib/PHPExiftool/Driver/Tag/ASF/HasScript.php deleted file mode 100644 index 2a228d3ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/HasScript.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasScript extends AbstractTag -{ - - protected $Id = 'HasScript'; - - protected $Name = 'HasScript'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Script'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/HasVideo.php b/lib/PHPExiftool/Driver/Tag/ASF/HasVideo.php deleted file mode 100644 index 20aa5e158..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/HasVideo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasVideo extends AbstractTag -{ - - protected $Id = 'HasVideo'; - - protected $Name = 'HasVideo'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ISRC.php b/lib/PHPExiftool/Driver/Tag/ASF/ISRC.php deleted file mode 100644 index d1ba72ef6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ISRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRC extends AbstractTag -{ - - protected $Id = 'ISRC'; - - protected $Name = 'ISRC'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/ASF/ImageHeight.php deleted file mode 100644 index 044275557..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/ASF/ImageWidth.php deleted file mode 100644 index 88e2afd8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Index.php b/lib/PHPExiftool/Driver/Tag/ASF/Index.php deleted file mode 100644 index 654b45ef3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Index.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index extends AbstractTag -{ - - protected $Id = 'D6E229D3-35DA-11D1-9034-00A0C90349BE'; - - protected $Name = 'Index'; - - protected $FullName = 'ASF::Main'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/IndexParameters.php b/lib/PHPExiftool/Driver/Tag/ASF/IndexParameters.php deleted file mode 100644 index 99891b77e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/IndexParameters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexParameters extends AbstractTag -{ - - protected $Id = 'D6E229DF-35DA-11D1-9034-00A0C90349BE'; - - protected $Name = 'IndexParameters'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Index Parameters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/InitialKey.php b/lib/PHPExiftool/Driver/Tag/ASF/InitialKey.php deleted file mode 100644 index 13e7a3b6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/InitialKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialKey extends AbstractTag -{ - - protected $Id = 'InitialKey'; - - protected $Name = 'InitialKey'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/IsProtected.php b/lib/PHPExiftool/Driver/Tag/ASF/IsProtected.php deleted file mode 100644 index 75a9efb83..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/IsProtected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsProtected extends AbstractTag -{ - - protected $Id = 'Is_Protected'; - - protected $Name = 'Is_Protected'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Protected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/IsTrusted.php b/lib/PHPExiftool/Driver/Tag/ASF/IsTrusted.php deleted file mode 100644 index fd459c69b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/IsTrusted.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsTrusted extends AbstractTag -{ - - protected $Id = 'Is_Trusted'; - - protected $Name = 'Is_Trusted'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Trusted'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/IsVBR.php b/lib/PHPExiftool/Driver/Tag/ASF/IsVBR.php deleted file mode 100644 index 976468a64..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/IsVBR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsVBR extends AbstractTag -{ - - protected $Id = 'IsVBR'; - - protected $Name = 'IsVBR'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is VBR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Language.php b/lib/PHPExiftool/Driver/Tag/ASF/Language.php deleted file mode 100644 index 1951aacbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'Language'; - - protected $Name = 'Language'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/LanguageList.php b/lib/PHPExiftool/Driver/Tag/ASF/LanguageList.php deleted file mode 100644 index a36ce7635..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/LanguageList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LanguageList extends AbstractTag -{ - - protected $Id = '7C4346A9-EFE0-4BFC-B229-393EDE415C85'; - - protected $Name = 'LanguageList'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Lyrics.php b/lib/PHPExiftool/Driver/Tag/ASF/Lyrics.php deleted file mode 100644 index 552a6b4ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Lyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyrics extends AbstractTag -{ - - protected $Id = 'Lyrics'; - - protected $Name = 'Lyrics'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/LyricsSynchronised.php b/lib/PHPExiftool/Driver/Tag/ASF/LyricsSynchronised.php deleted file mode 100644 index 004e02067..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/LyricsSynchronised.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LyricsSynchronised extends AbstractTag -{ - - protected $Id = 'Lyrics_Synchronised'; - - protected $Name = 'Lyrics_Synchronised'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics Synchronised'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MCDI.php b/lib/PHPExiftool/Driver/Tag/ASF/MCDI.php deleted file mode 100644 index 401f4c7c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MCDI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MCDI extends AbstractTag -{ - - protected $Id = 'MCDI'; - - protected $Name = 'MCDI'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MCDI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Marker.php b/lib/PHPExiftool/Driver/Tag/ASF/Marker.php deleted file mode 100644 index 3295c88b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Marker.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Marker extends AbstractTag -{ - - protected $Id = 'F487CD01-A951-11CF-8EE6-00C00C205365'; - - protected $Name = 'Marker'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Marker'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MaxBitrate.php b/lib/PHPExiftool/Driver/Tag/ASF/MaxBitrate.php deleted file mode 100644 index b9bb3e0b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MaxBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxBitrate extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'MaxBitrate'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MaxPacketSize.php b/lib/PHPExiftool/Driver/Tag/ASF/MaxPacketSize.php deleted file mode 100644 index 5fb3ca2b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MaxPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPacketSize extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'MaxPacketSize'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaClassPrimaryID.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaClassPrimaryID.php deleted file mode 100644 index 9838ceee7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaClassPrimaryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaClassPrimaryID extends AbstractTag -{ - - protected $Id = 'MediaClassPrimaryID'; - - protected $Name = 'MediaClassPrimaryID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Class Primary ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaClassSecondaryID.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaClassSecondaryID.php deleted file mode 100644 index 21724548e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaClassSecondaryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaClassSecondaryID extends AbstractTag -{ - - protected $Id = 'MediaClassSecondaryID'; - - protected $Name = 'MediaClassSecondaryID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Class Secondary ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaCredits.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaCredits.php deleted file mode 100644 index 414edb52f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaCredits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaCredits extends AbstractTag -{ - - protected $Id = 'MediaCredits'; - - protected $Name = 'MediaCredits'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Credits'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIndex.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIndex.php deleted file mode 100644 index 213494fb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIndex extends AbstractTag -{ - - protected $Id = 'FEB103F8-12AD-4C64-840F-2A1D2F7AD48C'; - - protected $Name = 'MediaIndex'; - - protected $FullName = 'ASF::Main'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsDelay.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsDelay.php deleted file mode 100644 index 832f19961..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsDelay extends AbstractTag -{ - - protected $Id = 'MediaIsDelay'; - - protected $Name = 'MediaIsDelay'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsFinale.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsFinale.php deleted file mode 100644 index 7e686a473..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsFinale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsFinale extends AbstractTag -{ - - protected $Id = 'MediaIsFinale'; - - protected $Name = 'MediaIsFinale'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Finale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsLive.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsLive.php deleted file mode 100644 index e2b7c148e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsLive.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsLive extends AbstractTag -{ - - protected $Id = 'MediaIsLive'; - - protected $Name = 'MediaIsLive'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Live'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsPremiere.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsPremiere.php deleted file mode 100644 index 2cb3c3d04..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsPremiere.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsPremiere extends AbstractTag -{ - - protected $Id = 'MediaIsPremiere'; - - protected $Name = 'MediaIsPremiere'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Premiere'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsRepeat.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsRepeat.php deleted file mode 100644 index 6540ee96a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsRepeat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsRepeat extends AbstractTag -{ - - protected $Id = 'MediaIsRepeat'; - - protected $Name = 'MediaIsRepeat'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Repeat'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsSAP.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsSAP.php deleted file mode 100644 index 97aaf791b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsSAP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsSAP extends AbstractTag -{ - - protected $Id = 'MediaIsSAP'; - - protected $Name = 'MediaIsSAP'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is SAP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsStereo.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsStereo.php deleted file mode 100644 index a12a9eaa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsStereo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsStereo extends AbstractTag -{ - - protected $Id = 'MediaIsStereo'; - - protected $Name = 'MediaIsStereo'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Stereo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsSubtitled.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsSubtitled.php deleted file mode 100644 index e50f0334c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsSubtitled.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsSubtitled extends AbstractTag -{ - - protected $Id = 'MediaIsSubtitled'; - - protected $Name = 'MediaIsSubtitled'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Subtitled'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsTape.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaIsTape.php deleted file mode 100644 index 9ee73f59b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaIsTape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaIsTape extends AbstractTag -{ - - protected $Id = 'MediaIsTape'; - - protected $Name = 'MediaIsTape'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Is Tape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaNetworkAffiliation.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaNetworkAffiliation.php deleted file mode 100644 index fa46de0ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaNetworkAffiliation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaNetworkAffiliation extends AbstractTag -{ - - protected $Id = 'MediaNetworkAffiliation'; - - protected $Name = 'MediaNetworkAffiliation'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Network Affiliation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaOriginalBroadcastDateTime.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaOriginalBroadcastDateTime.php deleted file mode 100644 index 7bbe28f86..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaOriginalBroadcastDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaOriginalBroadcastDateTime extends AbstractTag -{ - - protected $Id = 'MediaOriginalBroadcastDateTime'; - - protected $Name = 'MediaOriginalBroadcastDateTime'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Original Broadcast Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaOriginalChannel.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaOriginalChannel.php deleted file mode 100644 index 893b4d075..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaOriginalChannel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaOriginalChannel extends AbstractTag -{ - - protected $Id = 'MediaOriginalChannel'; - - protected $Name = 'MediaOriginalChannel'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Original Channel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaStationCallSign.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaStationCallSign.php deleted file mode 100644 index 213ec5f30..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaStationCallSign.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaStationCallSign extends AbstractTag -{ - - protected $Id = 'MediaStationCallSign'; - - protected $Name = 'MediaStationCallSign'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Station Call Sign'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MediaStationName.php b/lib/PHPExiftool/Driver/Tag/ASF/MediaStationName.php deleted file mode 100644 index 2960c3b61..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MediaStationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaStationName extends AbstractTag -{ - - protected $Id = 'MediaStationName'; - - protected $Name = 'MediaStationName'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/MinPacketSize.php b/lib/PHPExiftool/Driver/Tag/ASF/MinPacketSize.php deleted file mode 100644 index d698cc1af..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/MinPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinPacketSize extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'MinPacketSize'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Min Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ModifiedBy.php b/lib/PHPExiftool/Driver/Tag/ASF/ModifiedBy.php deleted file mode 100644 index 984906f24..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ModifiedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedBy extends AbstractTag -{ - - protected $Id = 'ModifiedBy'; - - protected $Name = 'ModifiedBy'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Mood.php b/lib/PHPExiftool/Driver/Tag/ASF/Mood.php deleted file mode 100644 index 5fb0d82ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Mood.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Mood extends AbstractTag -{ - - protected $Id = 'Mood'; - - protected $Name = 'Mood'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mood'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/NSCAddress.php b/lib/PHPExiftool/Driver/Tag/ASF/NSCAddress.php deleted file mode 100644 index 8795e2650..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/NSCAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NSCAddress extends AbstractTag -{ - - protected $Id = 'NSC_Address'; - - protected $Name = 'NSC_Address'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'NSC Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/NSCDescription.php b/lib/PHPExiftool/Driver/Tag/ASF/NSCDescription.php deleted file mode 100644 index 5bf9a0650..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/NSCDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NSCDescription extends AbstractTag -{ - - protected $Id = 'NSC_Description'; - - protected $Name = 'NSC_Description'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'NSC Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/NSCEmail.php b/lib/PHPExiftool/Driver/Tag/ASF/NSCEmail.php deleted file mode 100644 index 064c666da..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/NSCEmail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NSCEmail extends AbstractTag -{ - - protected $Id = 'NSC_Email'; - - protected $Name = 'NSC_Email'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'NSC Email'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/NSCName.php b/lib/PHPExiftool/Driver/Tag/ASF/NSCName.php deleted file mode 100644 index 61cb4aba2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/NSCName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NSCName extends AbstractTag -{ - - protected $Id = 'NSC_Name'; - - protected $Name = 'NSC_Name'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'NSC Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/NSCPhone.php b/lib/PHPExiftool/Driver/Tag/ASF/NSCPhone.php deleted file mode 100644 index a83c238d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/NSCPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NSCPhone extends AbstractTag -{ - - protected $Id = 'NSC_Phone'; - - protected $Name = 'NSC_Phone'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'NSC Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/NumberOfFrames.php b/lib/PHPExiftool/Driver/Tag/ASF/NumberOfFrames.php deleted file mode 100644 index 181f0a5d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/NumberOfFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFrames extends AbstractTag -{ - - protected $Id = 'NumberOfFrames'; - - protected $Name = 'NumberOfFrames'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OptimalBitrate.php b/lib/PHPExiftool/Driver/Tag/ASF/OptimalBitrate.php deleted file mode 100644 index ff79ca4b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OptimalBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptimalBitrate extends AbstractTag -{ - - protected $Id = 'OptimalBitrate'; - - protected $Name = 'OptimalBitrate'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Optimal Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OriginalAlbumTitle.php b/lib/PHPExiftool/Driver/Tag/ASF/OriginalAlbumTitle.php deleted file mode 100644 index 50761bc17..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OriginalAlbumTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalAlbumTitle extends AbstractTag -{ - - protected $Id = 'OriginalAlbumTitle'; - - protected $Name = 'OriginalAlbumTitle'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Album Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OriginalArtist.php b/lib/PHPExiftool/Driver/Tag/ASF/OriginalArtist.php deleted file mode 100644 index db9838635..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OriginalArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalArtist extends AbstractTag -{ - - protected $Id = 'OriginalArtist'; - - protected $Name = 'OriginalArtist'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OriginalFilename.php b/lib/PHPExiftool/Driver/Tag/ASF/OriginalFilename.php deleted file mode 100644 index 2068f6f94..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OriginalFilename.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFilename extends AbstractTag -{ - - protected $Id = 'OriginalFilename'; - - protected $Name = 'OriginalFilename'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Filename'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OriginalLyricist.php b/lib/PHPExiftool/Driver/Tag/ASF/OriginalLyricist.php deleted file mode 100644 index 3266935cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OriginalLyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalLyricist extends AbstractTag -{ - - protected $Id = 'OriginalLyricist'; - - protected $Name = 'OriginalLyricist'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OriginalReleaseTime.php b/lib/PHPExiftool/Driver/Tag/ASF/OriginalReleaseTime.php deleted file mode 100644 index f2c6afc82..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OriginalReleaseTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalReleaseTime extends AbstractTag -{ - - protected $Id = 'OriginalReleaseTime'; - - protected $Name = 'OriginalReleaseTime'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Release Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OriginalReleaseYear.php b/lib/PHPExiftool/Driver/Tag/ASF/OriginalReleaseYear.php deleted file mode 100644 index 502f73a58..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OriginalReleaseYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalReleaseYear extends AbstractTag -{ - - protected $Id = 'OriginalReleaseYear'; - - protected $Name = 'OriginalReleaseYear'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Release Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OtherCodecDescription.php b/lib/PHPExiftool/Driver/Tag/ASF/OtherCodecDescription.php deleted file mode 100644 index 2bf2e64a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OtherCodecDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherCodecDescription extends AbstractTag -{ - - protected $Id = 'OtherCodecDescription'; - - protected $Name = 'OtherCodecDescription'; - - protected $FullName = 'ASF::CodecList'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Codec Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/OtherCodecName.php b/lib/PHPExiftool/Driver/Tag/ASF/OtherCodecName.php deleted file mode 100644 index a7e3b25d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/OtherCodecName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherCodecName extends AbstractTag -{ - - protected $Id = 'OtherCodecName'; - - protected $Name = 'OtherCodecName'; - - protected $FullName = 'ASF::CodecList'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Codec Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Padding.php b/lib/PHPExiftool/Driver/Tag/ASF/Padding.php deleted file mode 100644 index a8fe540c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Padding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Padding extends AbstractTag -{ - - protected $Id = '1806D474-CADF-4509-A4BA-9AABCB96AAE8'; - - protected $Name = 'Padding'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Padding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ParentalRating.php b/lib/PHPExiftool/Driver/Tag/ASF/ParentalRating.php deleted file mode 100644 index e9c5dc186..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ParentalRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentalRating extends AbstractTag -{ - - protected $Id = 'ParentalRating'; - - protected $Name = 'ParentalRating'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parental Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ParentalRatingReason.php b/lib/PHPExiftool/Driver/Tag/ASF/ParentalRatingReason.php deleted file mode 100644 index 6f9c8945d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ParentalRatingReason.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentalRatingReason extends AbstractTag -{ - - protected $Id = 'ParentalRatingReason'; - - protected $Name = 'ParentalRatingReason'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parental Rating Reason'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PartOfSet.php b/lib/PHPExiftool/Driver/Tag/ASF/PartOfSet.php deleted file mode 100644 index ced05380d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PartOfSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartOfSet extends AbstractTag -{ - - protected $Id = 'PartOfSet'; - - protected $Name = 'PartOfSet'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Part Of Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PeakBitrate.php b/lib/PHPExiftool/Driver/Tag/ASF/PeakBitrate.php deleted file mode 100644 index d4c8c26a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PeakBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakBitrate extends AbstractTag -{ - - protected $Id = 'PeakBitrate'; - - protected $Name = 'PeakBitrate'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PeakValue.php b/lib/PHPExiftool/Driver/Tag/ASF/PeakValue.php deleted file mode 100644 index 739c7d6a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PeakValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakValue extends AbstractTag -{ - - protected $Id = 'PeakValue'; - - protected $Name = 'PeakValue'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Period.php b/lib/PHPExiftool/Driver/Tag/ASF/Period.php deleted file mode 100644 index df547583a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Period.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Period extends AbstractTag -{ - - protected $Id = 'Period'; - - protected $Name = 'Period'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Period'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Picture.php b/lib/PHPExiftool/Driver/Tag/ASF/Picture.php deleted file mode 100644 index 7e449b2e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Picture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Picture extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Picture'; - - protected $FullName = 'ASF::Picture'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PictureDescription.php b/lib/PHPExiftool/Driver/Tag/ASF/PictureDescription.php deleted file mode 100644 index 1af2d0665..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PictureDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureDescription extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PictureDescription'; - - protected $FullName = 'ASF::Picture'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PictureMimeType.php b/lib/PHPExiftool/Driver/Tag/ASF/PictureMimeType.php deleted file mode 100644 index 1d1583578..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PictureMimeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMimeType extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PictureMimeType'; - - protected $FullName = 'ASF::Picture'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Mime Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PictureType.php b/lib/PHPExiftool/Driver/Tag/ASF/PictureType.php deleted file mode 100644 index 211d310af..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PictureType.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PictureType'; - - protected $FullName = 'ASF::Picture'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Other', - ), - 1 => array( - 'Id' => 1, - 'Label' => '32x32 PNG Icon', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Other Icon', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Front Cover', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Back Cover', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Leaflet', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Media', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lead Artist', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Artist', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Conductor', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Band', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Composer', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Lyricist', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Recording Studio or Location', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Recording Session', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Performance', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Capture from Movie or Video', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Bright(ly) Colored Fish', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Illustration', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Band Logo', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Publisher Logo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PlayDuration.php b/lib/PHPExiftool/Driver/Tag/ASF/PlayDuration.php deleted file mode 100644 index faca3ca5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PlayDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayDuration extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'PlayDuration'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Play Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PlaylistDelay.php b/lib/PHPExiftool/Driver/Tag/ASF/PlaylistDelay.php deleted file mode 100644 index 8be8a4c39..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PlaylistDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaylistDelay extends AbstractTag -{ - - protected $Id = 'PlaylistDelay'; - - protected $Name = 'PlaylistDelay'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Playlist Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Preroll.php b/lib/PHPExiftool/Driver/Tag/ASF/Preroll.php deleted file mode 100644 index b90768630..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Preroll.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Preroll extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'Preroll'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Preroll'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Producer.php b/lib/PHPExiftool/Driver/Tag/ASF/Producer.php deleted file mode 100644 index 0fe599905..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Producer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = 'Producer'; - - protected $Name = 'Producer'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/PromotionURL.php b/lib/PHPExiftool/Driver/Tag/ASF/PromotionURL.php deleted file mode 100644 index 50c978c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/PromotionURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PromotionURL extends AbstractTag -{ - - protected $Id = 'PromotionURL'; - - protected $Name = 'PromotionURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Promotion URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ProtectionType.php b/lib/PHPExiftool/Driver/Tag/ASF/ProtectionType.php deleted file mode 100644 index 8b604d206..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ProtectionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProtectionType extends AbstractTag -{ - - protected $Id = 'ProtectionType'; - - protected $Name = 'ProtectionType'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Protection Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Provider.php b/lib/PHPExiftool/Driver/Tag/ASF/Provider.php deleted file mode 100644 index 84098d5b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Provider.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Provider extends AbstractTag -{ - - protected $Id = 'Provider'; - - protected $Name = 'Provider'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ProviderCopyright.php b/lib/PHPExiftool/Driver/Tag/ASF/ProviderCopyright.php deleted file mode 100644 index f7a3e7e6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ProviderCopyright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProviderCopyright extends AbstractTag -{ - - protected $Id = 'ProviderCopyright'; - - protected $Name = 'ProviderCopyright'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider Copyright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ProviderRating.php b/lib/PHPExiftool/Driver/Tag/ASF/ProviderRating.php deleted file mode 100644 index 332f0ffd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ProviderRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProviderRating extends AbstractTag -{ - - protected $Id = 'ProviderRating'; - - protected $Name = 'ProviderRating'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ProviderStyle.php b/lib/PHPExiftool/Driver/Tag/ASF/ProviderStyle.php deleted file mode 100644 index c543c233f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ProviderStyle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProviderStyle extends AbstractTag -{ - - protected $Id = 'ProviderStyle'; - - protected $Name = 'ProviderStyle'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider Style'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Publisher.php b/lib/PHPExiftool/Driver/Tag/ASF/Publisher.php deleted file mode 100644 index 84847bed7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'Publisher'; - - protected $Name = 'Publisher'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/RadioStationName.php b/lib/PHPExiftool/Driver/Tag/ASF/RadioStationName.php deleted file mode 100644 index be7f4ac04..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/RadioStationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadioStationName extends AbstractTag -{ - - protected $Id = 'RadioStationName'; - - protected $Name = 'RadioStationName'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radio Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/RadioStationOwner.php b/lib/PHPExiftool/Driver/Tag/ASF/RadioStationOwner.php deleted file mode 100644 index ef2be351b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/RadioStationOwner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadioStationOwner extends AbstractTag -{ - - protected $Id = 'RadioStationOwner'; - - protected $Name = 'RadioStationOwner'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radio Station Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Rating.php b/lib/PHPExiftool/Driver/Tag/ASF/Rating.php deleted file mode 100644 index ab71d3c40..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Rating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Rating'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Reserved1.php b/lib/PHPExiftool/Driver/Tag/ASF/Reserved1.php deleted file mode 100644 index 41259b9fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Reserved1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reserved1 extends AbstractTag -{ - - protected $Id = 'ABD3D211-A9BA-11cf-8EE6-00C00C205365'; - - protected $Name = 'Reserved1'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reserved 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ScriptCommand.php b/lib/PHPExiftool/Driver/Tag/ASF/ScriptCommand.php deleted file mode 100644 index 18e2dea01..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ScriptCommand.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScriptCommand extends AbstractTag -{ - - protected $Id = '1EFB1A30-0B62-11D0-A39B-00A0C90348F6'; - - protected $Name = 'ScriptCommand'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Script Command'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Seekable.php b/lib/PHPExiftool/Driver/Tag/ASF/Seekable.php deleted file mode 100644 index 160d1d997..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Seekable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Seekable extends AbstractTag -{ - - protected $Id = 'Seekable'; - - protected $Name = 'Seekable'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Seekable'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/SendDuration.php b/lib/PHPExiftool/Driver/Tag/ASF/SendDuration.php deleted file mode 100644 index 4b93e9d83..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/SendDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SendDuration extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'SendDuration'; - - protected $FullName = 'ASF::FileProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Send Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/SharedUserRating.php b/lib/PHPExiftool/Driver/Tag/ASF/SharedUserRating.php deleted file mode 100644 index 9ebb23506..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/SharedUserRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharedUserRating extends AbstractTag -{ - - protected $Id = 'SharedUserRating'; - - protected $Name = 'SharedUserRating'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shared User Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/SignatureName.php b/lib/PHPExiftool/Driver/Tag/ASF/SignatureName.php deleted file mode 100644 index fe8a0d0af..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/SignatureName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignatureName extends AbstractTag -{ - - protected $Id = 'Signature_Name'; - - protected $Name = 'Signature_Name'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signature Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/SimpleIndex.php b/lib/PHPExiftool/Driver/Tag/ASF/SimpleIndex.php deleted file mode 100644 index d0887016c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/SimpleIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SimpleIndex extends AbstractTag -{ - - protected $Id = '33000890-E5B1-11CF-89F4-00A0C90349CB'; - - protected $Name = 'SimpleIndex'; - - protected $FullName = 'ASF::Main'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Simple Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/StreamBitrateProps.php b/lib/PHPExiftool/Driver/Tag/ASF/StreamBitrateProps.php deleted file mode 100644 index a54ac6766..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/StreamBitrateProps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamBitrateProps extends AbstractTag -{ - - protected $Id = '7BF875CE-468D-11D1-8D82-006097C9A2B2'; - - protected $Name = 'StreamBitrateProps'; - - protected $FullName = 'ASF::Header'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stream Bitrate Props'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/StreamNumber.php b/lib/PHPExiftool/Driver/Tag/ASF/StreamNumber.php deleted file mode 100644 index 6af3f145c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/StreamNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamNumber extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'StreamNumber'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Stream Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/StreamPrioritization.php b/lib/PHPExiftool/Driver/Tag/ASF/StreamPrioritization.php deleted file mode 100644 index 7285dc57c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/StreamPrioritization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamPrioritization extends AbstractTag -{ - - protected $Id = 'D4FED15B-88D3-454F-81F0-ED5C45999E24'; - - protected $Name = 'StreamPrioritization'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stream Prioritization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/StreamType.php b/lib/PHPExiftool/Driver/Tag/ASF/StreamType.php deleted file mode 100644 index 8eba3ce80..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/StreamType.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'StreamType'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'binary'; - - protected $Writable = false; - - protected $Description = 'Stream Type'; - - protected $MaxLength = 16; - - protected $Values = array( - '35907DE0-E415-11CF-A917-00805F5C442B' => array( - 'Id' => '35907DE0-E415-11CF-A917-00805F5C442B', - 'Label' => 'Degradable JPEG', - ), - '3AFB65E2-47EF-40F2-AC2C-70A90D71D343' => array( - 'Id' => '3AFB65E2-47EF-40F2-AC2C-70A90D71D343', - 'Label' => 'Binary', - ), - '59DACFC0-59E6-11D0-A3AC-00A0C90348F6' => array( - 'Id' => '59DACFC0-59E6-11D0-A3AC-00A0C90348F6', - 'Label' => 'Command', - ), - '91BD222C-F21C-497A-8B6D-5AA86BFC0185' => array( - 'Id' => '91BD222C-F21C-497A-8B6D-5AA86BFC0185', - 'Label' => 'File Transfer', - ), - 'B61BE100-5B4E-11CF-A8FD-00805F5C442B' => array( - 'Id' => 'B61BE100-5B4E-11CF-A8FD-00805F5C442B', - 'Label' => 'JFIF', - ), - 'BC19EFC0-5B4D-11CF-A8FD-00805F5C442B' => array( - 'Id' => 'BC19EFC0-5B4D-11CF-A8FD-00805F5C442B', - 'Label' => 'Video', - ), - 'F8699E40-5B4D-11CF-A8FD-00805F5C442B' => array( - 'Id' => 'F8699E40-5B4D-11CF-A8FD-00805F5C442B', - 'Label' => 'Audio', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/StreamTypeInfo.php b/lib/PHPExiftool/Driver/Tag/ASF/StreamTypeInfo.php deleted file mode 100644 index 3116f16b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/StreamTypeInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamTypeInfo extends AbstractTag -{ - - protected $Id = 'StreamTypeInfo'; - - protected $Name = 'StreamTypeInfo'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stream Type Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Stridable.php b/lib/PHPExiftool/Driver/Tag/ASF/Stridable.php deleted file mode 100644 index 1cf66bd6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Stridable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Stridable extends AbstractTag -{ - - protected $Id = 'Stridable'; - - protected $Name = 'Stridable'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stridable'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/SubTitle.php b/lib/PHPExiftool/Driver/Tag/ASF/SubTitle.php deleted file mode 100644 index c25e2bf91..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/SubTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubTitle extends AbstractTag -{ - - protected $Id = 'SubTitle'; - - protected $Name = 'SubTitle'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/SubTitleDescription.php b/lib/PHPExiftool/Driver/Tag/ASF/SubTitleDescription.php deleted file mode 100644 index 36f19c595..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/SubTitleDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubTitleDescription extends AbstractTag -{ - - protected $Id = 'SubTitleDescription'; - - protected $Name = 'SubTitleDescription'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub Title Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/SubscriptionContentID.php b/lib/PHPExiftool/Driver/Tag/ASF/SubscriptionContentID.php deleted file mode 100644 index 91c35d4fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/SubscriptionContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubscriptionContentID extends AbstractTag -{ - - protected $Id = 'SubscriptionContentID'; - - protected $Name = 'SubscriptionContentID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subscription Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Text.php b/lib/PHPExiftool/Driver/Tag/ASF/Text.php deleted file mode 100644 index b18dd9e64..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Text.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Text extends AbstractTag -{ - - protected $Id = 'Text'; - - protected $Name = 'Text'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/TimeOffset.php b/lib/PHPExiftool/Driver/Tag/ASF/TimeOffset.php deleted file mode 100644 index 91d7be27a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/TimeOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeOffset extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'TimeOffset'; - - protected $FullName = 'ASF::StreamProperties'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Time Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/TimecodeIndex.php b/lib/PHPExiftool/Driver/Tag/ASF/TimecodeIndex.php deleted file mode 100644 index bb7480092..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/TimecodeIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeIndex extends AbstractTag -{ - - protected $Id = '3CB73FD0-0C4A-4803-953D-EDF7B6228F0C'; - - protected $Name = 'TimecodeIndex'; - - protected $FullName = 'ASF::Main'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/TimecodeIndexParms.php b/lib/PHPExiftool/Driver/Tag/ASF/TimecodeIndexParms.php deleted file mode 100644 index ca185d247..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/TimecodeIndexParms.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeIndexParms extends AbstractTag -{ - - protected $Id = '6B203BAD-3F11-48E4-ACA8-D7613DE2CFA7'; - - protected $Name = 'TimecodeIndexParms'; - - protected $FullName = 'ASF::HeaderExtension'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Index Parms'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Title.php b/lib/PHPExiftool/Driver/Tag/ASF/Title.php deleted file mode 100644 index 00c34c1f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Title'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ToolName.php b/lib/PHPExiftool/Driver/Tag/ASF/ToolName.php deleted file mode 100644 index e62f287c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ToolName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToolName extends AbstractTag -{ - - protected $Id = 'ToolName'; - - protected $Name = 'ToolName'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tool Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/ToolVersion.php b/lib/PHPExiftool/Driver/Tag/ASF/ToolVersion.php deleted file mode 100644 index b1368135f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/ToolVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToolVersion extends AbstractTag -{ - - protected $Id = 'ToolVersion'; - - protected $Name = 'ToolVersion'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tool Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Track.php b/lib/PHPExiftool/Driver/Tag/ASF/Track.php deleted file mode 100644 index fe9dc9e81..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Track.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Track extends AbstractTag -{ - - protected $Id = 'Track'; - - protected $Name = 'Track'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/ASF/TrackNumber.php deleted file mode 100644 index d98cb2137..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = 'TrackNumber'; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/UniqueFileIdentifier.php b/lib/PHPExiftool/Driver/Tag/ASF/UniqueFileIdentifier.php deleted file mode 100644 index 6ecd5f9e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/UniqueFileIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniqueFileIdentifier extends AbstractTag -{ - - protected $Id = 'UniqueFileIdentifier'; - - protected $Name = 'UniqueFileIdentifier'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unique File Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/UserWebURL.php b/lib/PHPExiftool/Driver/Tag/ASF/UserWebURL.php deleted file mode 100644 index af3f55918..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/UserWebURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserWebURL extends AbstractTag -{ - - protected $Id = 'UserWebURL'; - - protected $Name = 'UserWebURL'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Web URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/VBRPeak.php b/lib/PHPExiftool/Driver/Tag/ASF/VBRPeak.php deleted file mode 100644 index 2e64e2e99..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/VBRPeak.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBRPeak extends AbstractTag -{ - - protected $Id = 'VBRPeak'; - - protected $Name = 'VBRPeak'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VBR Peak'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/VideoClosedCaptioning.php b/lib/PHPExiftool/Driver/Tag/ASF/VideoClosedCaptioning.php deleted file mode 100644 index 20b12fa3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/VideoClosedCaptioning.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoClosedCaptioning extends AbstractTag -{ - - protected $Id = 'VideoClosedCaptioning'; - - protected $Name = 'VideoClosedCaptioning'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Closed Captioning'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/VideoCodecDescription.php b/lib/PHPExiftool/Driver/Tag/ASF/VideoCodecDescription.php deleted file mode 100644 index 15a27eb92..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/VideoCodecDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodecDescription extends AbstractTag -{ - - protected $Id = 'VideoCodecDescription'; - - protected $Name = 'VideoCodecDescription'; - - protected $FullName = 'ASF::CodecList'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Codec Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/VideoCodecName.php b/lib/PHPExiftool/Driver/Tag/ASF/VideoCodecName.php deleted file mode 100644 index a89d6ac3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/VideoCodecName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodecName extends AbstractTag -{ - - protected $Id = 'VideoCodecName'; - - protected $Name = 'VideoCodecName'; - - protected $FullName = 'ASF::CodecList'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Codec Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/VideoFrameRate.php b/lib/PHPExiftool/Driver/Tag/ASF/VideoFrameRate.php deleted file mode 100644 index be21f3098..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/VideoFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameRate extends AbstractTag -{ - - protected $Id = 'VideoFrameRate'; - - protected $Name = 'VideoFrameRate'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/VideoHeight.php b/lib/PHPExiftool/Driver/Tag/ASF/VideoHeight.php deleted file mode 100644 index 338afe053..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/VideoHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoHeight extends AbstractTag -{ - - protected $Id = 'VideoHeight'; - - protected $Name = 'VideoHeight'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/VideoWidth.php b/lib/PHPExiftool/Driver/Tag/ASF/VideoWidth.php deleted file mode 100644 index 1276d6bae..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/VideoWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoWidth extends AbstractTag -{ - - protected $Id = 'VideoWidth'; - - protected $Name = 'VideoWidth'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCAverageReference.php b/lib/PHPExiftool/Driver/Tag/ASF/WMADRCAverageReference.php deleted file mode 100644 index f8e00409a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCAverageReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMADRCAverageReference extends AbstractTag -{ - - protected $Id = 'WMADRCAverageReference'; - - protected $Name = 'WMADRCAverageReference'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WMADRC Average Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCAverageTarget.php b/lib/PHPExiftool/Driver/Tag/ASF/WMADRCAverageTarget.php deleted file mode 100644 index 30a0826f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCAverageTarget.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMADRCAverageTarget extends AbstractTag -{ - - protected $Id = 'WMADRCAverageTarget'; - - protected $Name = 'WMADRCAverageTarget'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WMADRC Average Target'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCPeakReference.php b/lib/PHPExiftool/Driver/Tag/ASF/WMADRCPeakReference.php deleted file mode 100644 index d8d69e3cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCPeakReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMADRCPeakReference extends AbstractTag -{ - - protected $Id = 'WMADRCPeakReference'; - - protected $Name = 'WMADRCPeakReference'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WMADRC Peak Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCPeakTarget.php b/lib/PHPExiftool/Driver/Tag/ASF/WMADRCPeakTarget.php deleted file mode 100644 index 41e15f5ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/WMADRCPeakTarget.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMADRCPeakTarget extends AbstractTag -{ - - protected $Id = 'WMADRCPeakTarget'; - - protected $Name = 'WMADRCPeakTarget'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WMADRC Peak Target'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/WMCollectionGroupID.php b/lib/PHPExiftool/Driver/Tag/ASF/WMCollectionGroupID.php deleted file mode 100644 index 4eed70ed9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/WMCollectionGroupID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMCollectionGroupID extends AbstractTag -{ - - protected $Id = 'WMCollectionGroupID'; - - protected $Name = 'WMCollectionGroupID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Collection Group ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/WMCollectionID.php b/lib/PHPExiftool/Driver/Tag/ASF/WMCollectionID.php deleted file mode 100644 index aef299803..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/WMCollectionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMCollectionID extends AbstractTag -{ - - protected $Id = 'WMCollectionID'; - - protected $Name = 'WMCollectionID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Collection ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/WMContentID.php b/lib/PHPExiftool/Driver/Tag/ASF/WMContentID.php deleted file mode 100644 index 6597da1b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/WMContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMContentID extends AbstractTag -{ - - protected $Id = 'WMContentID'; - - protected $Name = 'WMContentID'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Writer.php b/lib/PHPExiftool/Driver/Tag/ASF/Writer.php deleted file mode 100644 index cf2628ef9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Writer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Writer extends AbstractTag -{ - - protected $Id = 'Writer'; - - protected $Name = 'Writer'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Writer'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ASF/Year.php b/lib/PHPExiftool/Driver/Tag/ASF/Year.php deleted file mode 100644 index 0f5043095..000000000 --- a/lib/PHPExiftool/Driver/Tag/ASF/Year.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ASF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'Year'; - - protected $Name = 'Year'; - - protected $FullName = 'ASF::ExtendedDescr'; - - protected $GroupName = 'ASF'; - - protected $g0 = 'ASF'; - - protected $g1 = 'ASF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AVI1/InterleavedField.php b/lib/PHPExiftool/Driver/Tag/AVI1/InterleavedField.php deleted file mode 100644 index 8d96859b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/AVI1/InterleavedField.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AVI1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterleavedField extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'InterleavedField'; - - protected $FullName = 'JPEG::AVI1'; - - protected $GroupName = 'AVI1'; - - protected $g0 = 'APP0'; - - protected $g1 = 'AVI1'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Interleaved Field'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Interleaved', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Odd', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Even', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Adobe/APP14Flags0.php b/lib/PHPExiftool/Driver/Tag/Adobe/APP14Flags0.php deleted file mode 100644 index 5fa550720..000000000 --- a/lib/PHPExiftool/Driver/Tag/Adobe/APP14Flags0.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Adobe; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class APP14Flags0 extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'APP14Flags0'; - - protected $FullName = 'JPEG::Adobe'; - - protected $GroupName = 'Adobe'; - - protected $g0 = 'APP14'; - - protected $g1 = 'Adobe'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'APP14 Flags 0'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 32768 => array( - 'Id' => 32768, - 'Label' => 'Encoded with Blend=1 downsampling', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Adobe/APP14Flags1.php b/lib/PHPExiftool/Driver/Tag/Adobe/APP14Flags1.php deleted file mode 100644 index a5f73cebe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Adobe/APP14Flags1.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Adobe; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class APP14Flags1 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'APP14Flags1'; - - protected $FullName = 'JPEG::Adobe'; - - protected $GroupName = 'Adobe'; - - protected $g0 = 'APP14'; - - protected $g1 = 'Adobe'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'APP14 Flags 1'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Adobe/Adobe.php b/lib/PHPExiftool/Driver/Tag/Adobe/Adobe.php deleted file mode 100644 index 2de27c16a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Adobe/Adobe.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Adobe; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Adobe extends AbstractTag -{ - - protected $Id = 'Adobe'; - - protected $Name = 'Adobe'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'Adobe'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Adobe'; - - protected $local_g0 = 'APP14'; - - protected $local_g1 = 'Adobe'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Adobe/ColorTransform.php b/lib/PHPExiftool/Driver/Tag/Adobe/ColorTransform.php deleted file mode 100644 index 06466ba53..000000000 --- a/lib/PHPExiftool/Driver/Tag/Adobe/ColorTransform.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Adobe; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTransform extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ColorTransform'; - - protected $FullName = 'JPEG::Adobe'; - - protected $GroupName = 'Adobe'; - - protected $g0 = 'APP14'; - - protected $g1 = 'Adobe'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Transform'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown (RGB or CMYK)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'YCbCr', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'YCCK', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Adobe/DCTEncodeVersion.php b/lib/PHPExiftool/Driver/Tag/Adobe/DCTEncodeVersion.php deleted file mode 100644 index a8931a0fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Adobe/DCTEncodeVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Adobe; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCTEncodeVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DCTEncodeVersion'; - - protected $FullName = 'JPEG::Adobe'; - - protected $GroupName = 'Adobe'; - - protected $g0 = 'APP14'; - - protected $g1 = 'Adobe'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'DCT Encode Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/AdobeCM/AdobeCMType.php b/lib/PHPExiftool/Driver/Tag/AdobeCM/AdobeCMType.php deleted file mode 100644 index a80ce425e..000000000 --- a/lib/PHPExiftool/Driver/Tag/AdobeCM/AdobeCMType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\AdobeCM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdobeCMType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AdobeCMType'; - - protected $FullName = 'JPEG::AdobeCM'; - - protected $GroupName = 'AdobeCM'; - - protected $g0 = 'APP13'; - - protected $g1 = 'AdobeCM'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Adobe CM Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Apple/HDRImageType.php b/lib/PHPExiftool/Driver/Tag/Apple/HDRImageType.php deleted file mode 100644 index df4968290..000000000 --- a/lib/PHPExiftool/Driver/Tag/Apple/HDRImageType.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Apple; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRImageType extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'HDRImageType'; - - protected $FullName = 'Apple::Main'; - - protected $GroupName = 'Apple'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Apple'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'HDR Image Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 3 => array( - 'Id' => 3, - 'Label' => 'HDR Image', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Original Image', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeEpoch.php b/lib/PHPExiftool/Driver/Tag/Apple/RunTimeEpoch.php deleted file mode 100644 index db15c2e65..000000000 --- a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeEpoch.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Apple; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RunTimeEpoch extends AbstractTag -{ - - protected $Id = 'epoch'; - - protected $Name = 'RunTimeEpoch'; - - protected $FullName = 'Apple::RunTime'; - - protected $GroupName = 'Apple'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Apple'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Run Time Epoch'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeFlags.php b/lib/PHPExiftool/Driver/Tag/Apple/RunTimeFlags.php deleted file mode 100644 index e9af6e2b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeFlags.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Apple; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RunTimeFlags extends AbstractTag -{ - - protected $Id = 'flags'; - - protected $Name = 'RunTimeFlags'; - - protected $FullName = 'Apple::RunTime'; - - protected $GroupName = 'Apple'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Apple'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Run Time Flags'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Valid', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Has been rounded', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Positive infinity', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Negative infinity', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Indefinite', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeScale.php b/lib/PHPExiftool/Driver/Tag/Apple/RunTimeScale.php deleted file mode 100644 index c17d21e9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeScale.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Apple; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RunTimeScale extends AbstractTag -{ - - protected $Id = 'timescale'; - - protected $Name = 'RunTimeScale'; - - protected $FullName = 'Apple::RunTime'; - - protected $GroupName = 'Apple'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Apple'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Run Time Scale'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeValue.php b/lib/PHPExiftool/Driver/Tag/Apple/RunTimeValue.php deleted file mode 100644 index ab8cb844e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Apple/RunTimeValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Apple; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RunTimeValue extends AbstractTag -{ - - protected $Id = 'value'; - - protected $Name = 'RunTimeValue'; - - protected $FullName = 'Apple::RunTime'; - - protected $GroupName = 'Apple'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Apple'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Run Time Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AEBBracketValue.php b/lib/PHPExiftool/Driver/Tag/Canon/AEBBracketValue.php deleted file mode 100644 index 06f4f08d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AEBBracketValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEBBracketValue extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'AEBBracketValue'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AEB Bracket Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AESetting.php b/lib/PHPExiftool/Driver/Tag/Canon/AESetting.php deleted file mode 100644 index 23b5b66ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AESetting.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AESetting extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'AESetting'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AE Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal AE', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Exposure Compensation', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AE Lock', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AE Lock + Exposure Comp.', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'No AE', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaHeight.php b/lib/PHPExiftool/Driver/Tag/Canon/AFAreaHeight.php deleted file mode 100644 index 87b6ef11d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaHeight extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'AFAreaHeight'; - - protected $FullName = 'Canon::AFInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'AF Area Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaHeights.php b/lib/PHPExiftool/Driver/Tag/Canon/AFAreaHeights.php deleted file mode 100644 index 42ea32617..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaHeights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaHeights extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'AFAreaHeights'; - - protected $FullName = 'Canon::AFInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'AF Area Heights'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaMode.php b/lib/PHPExiftool/Driver/Tag/Canon/AFAreaMode.php deleted file mode 100644 index bf5804bea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaMode.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaMode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AFAreaMode'; - - protected $FullName = 'Canon::AFInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'AF Area Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off (Manual Focus)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Single-point AF', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Multi-point AF or AI AF', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Face Detect AF', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Face + Tracking', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Zone AF', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'AF Point Expansion', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Spot AF', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Flexizone Multi', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Flexizone Single', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/AFAreaWidth.php deleted file mode 100644 index cbbb21f81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaWidth extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AFAreaWidth'; - - protected $FullName = 'Canon::AFInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'AF Area Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaWidths.php b/lib/PHPExiftool/Driver/Tag/Canon/AFAreaWidths.php deleted file mode 100644 index 642195dce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaWidths.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaWidths extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'AFAreaWidths'; - - protected $FullName = 'Canon::AFInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'AF Area Widths'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaXPositions.php b/lib/PHPExiftool/Driver/Tag/Canon/AFAreaXPositions.php deleted file mode 100644 index 624f2bc4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaXPositions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaXPositions extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAreaXPositions'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'AF Area X Positions'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaYPositions.php b/lib/PHPExiftool/Driver/Tag/Canon/AFAreaYPositions.php deleted file mode 100644 index 50fb0d440..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFAreaYPositions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaYPositions extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAreaYPositions'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'AF Area Y Positions'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFImageHeight.php b/lib/PHPExiftool/Driver/Tag/Canon/AFImageHeight.php deleted file mode 100644 index 26ebb9f39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'AF Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFImageWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/AFImageWidth.php deleted file mode 100644 index 9b9459e3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'AF Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFInfoSize.php b/lib/PHPExiftool/Driver/Tag/Canon/AFInfoSize.php deleted file mode 100644 index 4037d233b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFInfoSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFInfoSize extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AFInfoSize'; - - protected $FullName = 'Canon::AFInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'AF Info Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFMicroAdjMode.php b/lib/PHPExiftool/Driver/Tag/Canon/AFMicroAdjMode.php deleted file mode 100644 index 1d65754da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFMicroAdjMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMicroAdjMode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AFMicroAdjMode'; - - protected $FullName = 'Canon::AFMicroAdj'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF Micro Adj Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adjust all by the same amount', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Adjust by lens', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFMicroAdjValue.php b/lib/PHPExiftool/Driver/Tag/Canon/AFMicroAdjValue.php deleted file mode 100644 index ce6be3534..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFMicroAdjValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMicroAdjValue extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AFMicroAdjValue'; - - protected $FullName = 'Canon::AFMicroAdj'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'AF Micro Adj Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFPoint.php b/lib/PHPExiftool/Driver/Tag/Canon/AFPoint.php deleted file mode 100644 index 4c649b2ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFPoint.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoint extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'AFPoint'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 8197 => array( - 'Id' => 8197, - 'Label' => 'Manual AF point selection', - ), - 12288 => array( - 'Id' => 12288, - 'Label' => 'None (MF)', - ), - 12289 => array( - 'Id' => 12289, - 'Label' => 'Auto AF point selection', - ), - 12290 => array( - 'Id' => 12290, - 'Label' => 'Right', - ), - 12291 => array( - 'Id' => 12291, - 'Label' => 'Center', - ), - 12292 => array( - 'Id' => 12292, - 'Label' => 'Left', - ), - 16385 => array( - 'Id' => 16385, - 'Label' => 'Auto AF point selection', - ), - 16390 => array( - 'Id' => 16390, - 'Label' => 'Face Detect', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus.php b/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus.php deleted file mode 100644 index f1036b17a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsInFocus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFPointsInFocus'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'AF Points In Focus'; - - protected $flag_Permanent = true; - - protected $local_g2 = 'mixed'; - - protected $Values = array( - 12288 => array( - 'Id' => 12288, - 'Label' => 'None (MF)', - ), - 12289 => array( - 'Id' => 12289, - 'Label' => 'Right', - ), - 12290 => array( - 'Id' => 12290, - 'Label' => 'Center', - ), - 12291 => array( - 'Id' => 12291, - 'Label' => 'Center+Right', - ), - 12292 => array( - 'Id' => 12292, - 'Label' => 'Left', - ), - 12293 => array( - 'Id' => 12293, - 'Label' => 'Left+Right', - ), - 12294 => array( - 'Id' => 12294, - 'Label' => 'Left+Center', - ), - 12295 => array( - 'Id' => 12295, - 'Label' => 'All', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus1D.php b/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus1D.php deleted file mode 100644 index c75fca469..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus1D.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsInFocus1D extends AbstractTag -{ - - protected $Id = 148; - - protected $Name = 'AFPointsInFocus1D'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Points In Focus 1D'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus5D.php b/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus5D.php deleted file mode 100644 index 12b629cb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsInFocus5D.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsInFocus5D extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'AFPointsInFocus5D'; - - protected $FullName = 'Canon::CameraInfo5D'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16uRev'; - - protected $Writable = true; - - protected $Description = 'AF Points In Focus 5D'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Bottom', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Upper-left', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Upper-right', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Lower-left', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Lower-right', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Left', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Right', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'AI Servo1', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'AI Servo2', - ), - 2048 => array( - 'Id' => 2048, - 'Label' => 'AI Servo3', - ), - 4096 => array( - 'Id' => 4096, - 'Label' => 'AI Servo4', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'AI Servo5', - ), - 16384 => array( - 'Id' => 16384, - 'Label' => 'AI Servo6', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsSelected.php b/lib/PHPExiftool/Driver/Tag/Canon/AFPointsSelected.php deleted file mode 100644 index 59d420f2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AFPointsSelected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsSelected extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'AFPointsSelected'; - - protected $FullName = 'Canon::AFInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'AF Points Selected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AmbienceSelection.php b/lib/PHPExiftool/Driver/Tag/Canon/AmbienceSelection.php deleted file mode 100644 index 4f3718de4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AmbienceSelection.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AmbienceSelection extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AmbienceSelection'; - - protected $FullName = 'Canon::Ambience'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Ambience Selection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Warm', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Soft', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Cool', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Intense', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Brighter', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Darker', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Monochrome', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AspectRatio.php b/lib/PHPExiftool/Driver/Tag/Canon/AspectRatio.php deleted file mode 100644 index 93ee89cc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AspectRatio.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatio extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AspectRatio'; - - protected $FullName = 'Canon::AspectInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Aspect Ratio'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '3:2', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1:1', - ), - 2 => array( - 'Id' => 2, - 'Label' => '4:3', - ), - 7 => array( - 'Id' => 7, - 'Label' => '16:9', - ), - 8 => array( - 'Id' => 8, - 'Label' => '4:5', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AudioBitrate.php b/lib/PHPExiftool/Driver/Tag/Canon/AudioBitrate.php deleted file mode 100644 index b9f7f9d63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AudioBitrate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitrate extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'AudioBitrate'; - - protected $FullName = 'Canon::MovieInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Audio Bitrate'; - - protected $local_g2 = 'Audio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/Canon/AudioChannels.php deleted file mode 100644 index 603b1d928..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AudioChannels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'Canon::MovieInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Audio Channels'; - - protected $local_g2 = 'Audio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/Canon/AudioSampleRate.php deleted file mode 100644 index 0463afde5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AudioSampleRate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'Canon::MovieInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Audio Sample Rate'; - - protected $local_g2 = 'Audio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AutoExposureBracketing.php b/lib/PHPExiftool/Driver/Tag/Canon/AutoExposureBracketing.php deleted file mode 100644 index b822980f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AutoExposureBracketing.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoExposureBracketing extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'AutoExposureBracketing'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Auto Exposure Bracketing'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'On', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (shot 1)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (shot 2)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'On (shot 3)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AutoISO.php b/lib/PHPExiftool/Driver/Tag/Canon/AutoISO.php deleted file mode 100644 index 422c01d7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AutoISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoISO extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AutoISO'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Auto ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AutoLightingOptimizer.php b/lib/PHPExiftool/Driver/Tag/Canon/AutoLightingOptimizer.php deleted file mode 100644 index 5582aacd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AutoLightingOptimizer.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoLightingOptimizer extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AutoLightingOptimizer'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Auto Lighting Optimizer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Strong', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AutoRotate.php b/lib/PHPExiftool/Driver/Tag/Canon/AutoRotate.php deleted file mode 100644 index 916e4da5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AutoRotate.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoRotate extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'AutoRotate'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Auto Rotate'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate 90 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 180', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/AverageBlackLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/AverageBlackLevel.php deleted file mode 100644 index 7f982b633..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/AverageBlackLevel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AverageBlackLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AverageBlackLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Average Black Level'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BaseISO.php b/lib/PHPExiftool/Driver/Tag/Canon/BaseISO.php deleted file mode 100644 index 73b4a8253..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BaseISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseISO extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'BaseISO'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Base ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BlackLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/BlackLevel.php deleted file mode 100644 index be5cf69f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BlackLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel extends AbstractTag -{ - - protected $Id = 16392; - - protected $Name = 'BlackLevel'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Black Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskBottomBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskBottomBorder.php deleted file mode 100644 index 301dc684c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskBottomBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackMaskBottomBorder extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'BlackMaskBottomBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Black Mask Bottom Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskLeftBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskLeftBorder.php deleted file mode 100644 index 7ddda9243..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskLeftBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackMaskLeftBorder extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'BlackMaskLeftBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Black Mask Left Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskRightBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskRightBorder.php deleted file mode 100644 index ac883301e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskRightBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackMaskRightBorder extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'BlackMaskRightBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Black Mask Right Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskTopBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskTopBorder.php deleted file mode 100644 index d2ededcf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BlackMaskTopBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackMaskTopBorder extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'BlackMaskTopBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Black Mask Top Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BracketMode.php b/lib/PHPExiftool/Driver/Tag/Canon/BracketMode.php deleted file mode 100644 index 07ea82495..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BracketMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketMode extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'BracketMode'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Bracket Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AEB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FEB', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ISO', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'WB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BracketShotNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/BracketShotNumber.php deleted file mode 100644 index f1cad381a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BracketShotNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketShotNumber extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'BracketShotNumber'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Bracket Shot Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BracketValue.php b/lib/PHPExiftool/Driver/Tag/Canon/BracketValue.php deleted file mode 100644 index 3f19c8070..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BracketValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketValue extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'BracketValue'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Bracket Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/BulbDuration.php b/lib/PHPExiftool/Driver/Tag/Canon/BulbDuration.php deleted file mode 100644 index 3072191d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/BulbDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BulbDuration extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'BulbDuration'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Bulb Duration'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CRWParam.php b/lib/PHPExiftool/Driver/Tag/Canon/CRWParam.php deleted file mode 100644 index 7d844f039..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CRWParam.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CRWParam extends AbstractTag -{ - - protected $Id = 16386; - - protected $Name = 'CRWParam'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'CRW Param'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration01.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration01.php deleted file mode 100644 index f0790e9c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration01.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration01 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration01'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 01'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration02.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration02.php deleted file mode 100644 index 368153d36..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration02.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration02 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration02'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 02'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration03.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration03.php deleted file mode 100644 index 2a383373a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration03.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration03 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration03'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 03'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration04.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration04.php deleted file mode 100644 index 7b91719b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration04.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration04 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration04'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 04'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration05.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration05.php deleted file mode 100644 index d70b86da6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration05.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration05 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration05'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 05'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration06.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration06.php deleted file mode 100644 index fc2afcf1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration06.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration06 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration06'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 06'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration07.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration07.php deleted file mode 100644 index 387319423..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration07.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration07 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration07'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 07'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration08.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration08.php deleted file mode 100644 index a57701364..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration08.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration08 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration08'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 08'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration09.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration09.php deleted file mode 100644 index 7daf44726..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration09.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration09 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration09'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 09'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration10.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration10.php deleted file mode 100644 index d8cdc6fc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration10.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration10 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration10'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 10'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration11.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration11.php deleted file mode 100644 index fa145c3f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration11.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration11 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration11'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 11'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration12.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration12.php deleted file mode 100644 index d15f6ad65..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration12.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration12 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration12'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 12'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration13.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration13.php deleted file mode 100644 index 2c93e4fb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration13.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration13 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration13'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 13'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration14.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration14.php deleted file mode 100644 index 1a0c947f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration14.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration14 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration14'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 14'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration15.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration15.php deleted file mode 100644 index 398dfec0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraColorCalibration15.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraColorCalibration15 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraColorCalibration15'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Color Calibration 15'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraISO.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraISO.php deleted file mode 100644 index fc2c03822..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraISO extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'CameraISO'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraOrientation.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraOrientation.php deleted file mode 100644 index a510d6713..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraOrientation.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraOrientation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraOrientation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Camera Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate 90 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraTemperature.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraTemperature.php deleted file mode 100644 index 1504064f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraTemperature.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature'; - - protected $flag_Permanent = true; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CameraType.php b/lib/PHPExiftool/Driver/Tag/Canon/CameraType.php deleted file mode 100644 index 4509499b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CameraType.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraType extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'CameraType'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Type'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 248 => array( - 'Id' => 248, - 'Label' => 'EOS High-end', - ), - 250 => array( - 'Id' => 250, - 'Label' => 'Compact', - ), - 252 => array( - 'Id' => 252, - 'Label' => 'EOS Mid-range', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'DV Camera', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonAFInfo0x000b.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonAFInfo0x000b.php deleted file mode 100644 index 497578a7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonAFInfo0x000b.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonAFInfo0x000b extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Canon_AFInfo_0x000b'; - - protected $FullName = 'Canon::AFInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Canon AF Info 0x000b'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonAFInfo20x000d.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonAFInfo20x000d.php deleted file mode 100644 index a4837294a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonAFInfo20x000d.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonAFInfo20x000d extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'Canon_AFInfo2_0x000d'; - - protected $FullName = 'Canon::AFInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Canon AF Info 2 0x000d'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonExposureMode.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonExposureMode.php deleted file mode 100644 index 2747f91dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonExposureMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonExposureMode extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'CanonExposureMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Canon Exposure Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Easy', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Program AE', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Manual', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Depth-of-field AE', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'M-Dep', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Bulb', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonFileLength.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonFileLength.php deleted file mode 100644 index 2c07296ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonFileLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonFileLength extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'CanonFileLength'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Canon File Length'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonFirmwareVersion.php deleted file mode 100644 index f1dedc680..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonFirmwareVersion extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'CanonFirmwareVersion'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Canon Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonFlashInfo.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonFlashInfo.php deleted file mode 100644 index 1d97f5e5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonFlashInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonFlashInfo extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'CanonFlashInfo'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Canon Flash Info'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonFlashMode.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonFlashMode.php deleted file mode 100644 index d0fa2c95e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonFlashMode.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonFlashMode extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CanonFlashMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Canon Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red-eye reduction', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Slow-sync', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Red-eye reduction (Auto)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Red-eye reduction (On)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'External flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageHeight.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonImageHeight.php deleted file mode 100644 index 9ca5925db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageHeight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CanonImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Canon Image Height'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageSize.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonImageSize.php deleted file mode 100644 index 8e5c2dda7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageSize.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonImageSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CanonImageSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Canon Image Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Large', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Medium', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Small', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Medium 1', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Medium 2', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Medium 3', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Postcard', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Widescreen', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Medium Widescreen', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Small 1', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Small 2', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Small 3', - ), - 128 => array( - 'Id' => 128, - 'Label' => '640x480 Movie', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Medium Movie', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Small Movie', - ), - 137 => array( - 'Id' => 137, - 'Label' => '1280x720 Movie', - ), - 142 => array( - 'Id' => 142, - 'Label' => '1920x1080 Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageType.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonImageType.php deleted file mode 100644 index a631a567a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageType.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonImageType extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CanonImageType'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Canon Image Type'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonImageWidth.php deleted file mode 100644 index fb4a4e5b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonImageWidth.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CanonImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Canon Image Width'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CanonModelID.php b/lib/PHPExiftool/Driver/Tag/Canon/CanonModelID.php deleted file mode 100644 index fe00847f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CanonModelID.php +++ /dev/null @@ -1,1128 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonModelID extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'CanonModelID'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Canon Model ID'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16842752 => array( - 'Id' => 16842752, - 'Label' => 'PowerShot A30', - ), - 17039360 => array( - 'Id' => 17039360, - 'Label' => 'PowerShot S300 / Digital IXUS 300 / IXY Digital 300', - ), - 17170432 => array( - 'Id' => 17170432, - 'Label' => 'PowerShot A20', - ), - 17301504 => array( - 'Id' => 17301504, - 'Label' => 'PowerShot A10', - ), - 17367040 => array( - 'Id' => 17367040, - 'Label' => 'PowerShot S110 / Digital IXUS v / IXY Digital 200', - ), - 17825792 => array( - 'Id' => 17825792, - 'Label' => 'PowerShot G2', - ), - 17891328 => array( - 'Id' => 17891328, - 'Label' => 'PowerShot S40', - ), - 17956864 => array( - 'Id' => 17956864, - 'Label' => 'PowerShot S30', - ), - 18022400 => array( - 'Id' => 18022400, - 'Label' => 'PowerShot A40', - ), - 18087936 => array( - 'Id' => 18087936, - 'Label' => 'EOS D30', - ), - 18153472 => array( - 'Id' => 18153472, - 'Label' => 'PowerShot A100', - ), - 18219008 => array( - 'Id' => 18219008, - 'Label' => 'PowerShot S200 / Digital IXUS v2 / IXY Digital 200a', - ), - 18284544 => array( - 'Id' => 18284544, - 'Label' => 'PowerShot A200', - ), - 18350080 => array( - 'Id' => 18350080, - 'Label' => 'PowerShot S330 / Digital IXUS 330 / IXY Digital 300a', - ), - 18415616 => array( - 'Id' => 18415616, - 'Label' => 'PowerShot G3', - ), - 18939904 => array( - 'Id' => 18939904, - 'Label' => 'PowerShot S45', - ), - 19070976 => array( - 'Id' => 19070976, - 'Label' => 'PowerShot SD100 / Digital IXUS II / IXY Digital 30', - ), - 19136512 => array( - 'Id' => 19136512, - 'Label' => 'PowerShot S230 / Digital IXUS v3 / IXY Digital 320', - ), - 19202048 => array( - 'Id' => 19202048, - 'Label' => 'PowerShot A70', - ), - 19267584 => array( - 'Id' => 19267584, - 'Label' => 'PowerShot A60', - ), - 19333120 => array( - 'Id' => 19333120, - 'Label' => 'PowerShot S400 / Digital IXUS 400 / IXY Digital 400', - ), - 19464192 => array( - 'Id' => 19464192, - 'Label' => 'PowerShot G5', - ), - 19922944 => array( - 'Id' => 19922944, - 'Label' => 'PowerShot A300', - ), - 19988480 => array( - 'Id' => 19988480, - 'Label' => 'PowerShot S50', - ), - 20185088 => array( - 'Id' => 20185088, - 'Label' => 'PowerShot A80', - ), - 20250624 => array( - 'Id' => 20250624, - 'Label' => 'PowerShot SD10 / Digital IXUS i / IXY Digital L', - ), - 20316160 => array( - 'Id' => 20316160, - 'Label' => 'PowerShot S1 IS', - ), - 20381696 => array( - 'Id' => 20381696, - 'Label' => 'PowerShot Pro1', - ), - 20447232 => array( - 'Id' => 20447232, - 'Label' => 'PowerShot S70', - ), - 20512768 => array( - 'Id' => 20512768, - 'Label' => 'PowerShot S60', - ), - 20971520 => array( - 'Id' => 20971520, - 'Label' => 'PowerShot G6', - ), - 21037056 => array( - 'Id' => 21037056, - 'Label' => 'PowerShot S500 / Digital IXUS 500 / IXY Digital 500', - ), - 21102592 => array( - 'Id' => 21102592, - 'Label' => 'PowerShot A75', - ), - 21233664 => array( - 'Id' => 21233664, - 'Label' => 'PowerShot SD110 / Digital IXUS IIs / IXY Digital 30a', - ), - 21299200 => array( - 'Id' => 21299200, - 'Label' => 'PowerShot A400', - ), - 21430272 => array( - 'Id' => 21430272, - 'Label' => 'PowerShot A310', - ), - 21561344 => array( - 'Id' => 21561344, - 'Label' => 'PowerShot A85', - ), - 22151168 => array( - 'Id' => 22151168, - 'Label' => 'PowerShot S410 / Digital IXUS 430 / IXY Digital 450', - ), - 22216704 => array( - 'Id' => 22216704, - 'Label' => 'PowerShot A95', - ), - 22282240 => array( - 'Id' => 22282240, - 'Label' => 'PowerShot SD300 / Digital IXUS 40 / IXY Digital 50', - ), - 22347776 => array( - 'Id' => 22347776, - 'Label' => 'PowerShot SD200 / Digital IXUS 30 / IXY Digital 40', - ), - 22413312 => array( - 'Id' => 22413312, - 'Label' => 'PowerShot A520', - ), - 22478848 => array( - 'Id' => 22478848, - 'Label' => 'PowerShot A510', - ), - 22609920 => array( - 'Id' => 22609920, - 'Label' => 'PowerShot SD20 / Digital IXUS i5 / IXY Digital L2', - ), - 23330816 => array( - 'Id' => 23330816, - 'Label' => 'PowerShot S2 IS', - ), - 23396352 => array( - 'Id' => 23396352, - 'Label' => 'PowerShot SD430 / Digital IXUS Wireless / IXY Digital Wireless', - ), - 23461888 => array( - 'Id' => 23461888, - 'Label' => 'PowerShot SD500 / Digital IXUS 700 / IXY Digital 600', - ), - 23494656 => array( - 'Id' => 23494656, - 'Label' => 'EOS D60', - ), - 24117248 => array( - 'Id' => 24117248, - 'Label' => 'PowerShot SD30 / Digital IXUS i Zoom / IXY Digital L3', - ), - 24379392 => array( - 'Id' => 24379392, - 'Label' => 'PowerShot A430', - ), - 24444928 => array( - 'Id' => 24444928, - 'Label' => 'PowerShot A410', - ), - 24510464 => array( - 'Id' => 24510464, - 'Label' => 'PowerShot S80', - ), - 24641536 => array( - 'Id' => 24641536, - 'Label' => 'PowerShot A620', - ), - 24707072 => array( - 'Id' => 24707072, - 'Label' => 'PowerShot A610', - ), - 25165824 => array( - 'Id' => 25165824, - 'Label' => 'PowerShot SD630 / Digital IXUS 65 / IXY Digital 80', - ), - 25231360 => array( - 'Id' => 25231360, - 'Label' => 'PowerShot SD450 / Digital IXUS 55 / IXY Digital 60', - ), - 25296896 => array( - 'Id' => 25296896, - 'Label' => 'PowerShot TX1', - ), - 25624576 => array( - 'Id' => 25624576, - 'Label' => 'PowerShot SD400 / Digital IXUS 50 / IXY Digital 55', - ), - 25690112 => array( - 'Id' => 25690112, - 'Label' => 'PowerShot A420', - ), - 25755648 => array( - 'Id' => 25755648, - 'Label' => 'PowerShot SD900 / Digital IXUS 900 Ti / IXY Digital 1000', - ), - 26214400 => array( - 'Id' => 26214400, - 'Label' => 'PowerShot SD550 / Digital IXUS 750 / IXY Digital 700', - ), - 26345472 => array( - 'Id' => 26345472, - 'Label' => 'PowerShot A700', - ), - 26476544 => array( - 'Id' => 26476544, - 'Label' => 'PowerShot SD700 IS / Digital IXUS 800 IS / IXY Digital 800 IS', - ), - 26542080 => array( - 'Id' => 26542080, - 'Label' => 'PowerShot S3 IS', - ), - 26607616 => array( - 'Id' => 26607616, - 'Label' => 'PowerShot A540', - ), - 26673152 => array( - 'Id' => 26673152, - 'Label' => 'PowerShot SD600 / Digital IXUS 60 / IXY Digital 70', - ), - 26738688 => array( - 'Id' => 26738688, - 'Label' => 'PowerShot G7', - ), - 26804224 => array( - 'Id' => 26804224, - 'Label' => 'PowerShot A530', - ), - 33554432 => array( - 'Id' => 33554432, - 'Label' => 'PowerShot SD800 IS / Digital IXUS 850 IS / IXY Digital 900 IS', - ), - 33619968 => array( - 'Id' => 33619968, - 'Label' => 'PowerShot SD40 / Digital IXUS i7 / IXY Digital L4', - ), - 33685504 => array( - 'Id' => 33685504, - 'Label' => 'PowerShot A710 IS', - ), - 33751040 => array( - 'Id' => 33751040, - 'Label' => 'PowerShot A640', - ), - 33816576 => array( - 'Id' => 33816576, - 'Label' => 'PowerShot A630', - ), - 34144256 => array( - 'Id' => 34144256, - 'Label' => 'PowerShot S5 IS', - ), - 34603008 => array( - 'Id' => 34603008, - 'Label' => 'PowerShot A460', - ), - 34734080 => array( - 'Id' => 34734080, - 'Label' => 'PowerShot SD850 IS / Digital IXUS 950 IS / IXY Digital 810 IS', - ), - 34799616 => array( - 'Id' => 34799616, - 'Label' => 'PowerShot A570 IS', - ), - 34865152 => array( - 'Id' => 34865152, - 'Label' => 'PowerShot A560', - ), - 34930688 => array( - 'Id' => 34930688, - 'Label' => 'PowerShot SD750 / Digital IXUS 75 / IXY Digital 90', - ), - 34996224 => array( - 'Id' => 34996224, - 'Label' => 'PowerShot SD1000 / Digital IXUS 70 / IXY Digital 10', - ), - 35127296 => array( - 'Id' => 35127296, - 'Label' => 'PowerShot A550', - ), - 35192832 => array( - 'Id' => 35192832, - 'Label' => 'PowerShot A450', - ), - 35848192 => array( - 'Id' => 35848192, - 'Label' => 'PowerShot G9', - ), - 35913728 => array( - 'Id' => 35913728, - 'Label' => 'PowerShot A650 IS', - ), - 36044800 => array( - 'Id' => 36044800, - 'Label' => 'PowerShot A720 IS', - ), - 36241408 => array( - 'Id' => 36241408, - 'Label' => 'PowerShot SX100 IS', - ), - 36700160 => array( - 'Id' => 36700160, - 'Label' => 'PowerShot SD950 IS / Digital IXUS 960 IS / IXY Digital 2000 IS', - ), - 36765696 => array( - 'Id' => 36765696, - 'Label' => 'PowerShot SD870 IS / Digital IXUS 860 IS / IXY Digital 910 IS', - ), - 36831232 => array( - 'Id' => 36831232, - 'Label' => 'PowerShot SD890 IS / Digital IXUS 970 IS / IXY Digital 820 IS', - ), - 37093376 => array( - 'Id' => 37093376, - 'Label' => 'PowerShot SD790 IS / Digital IXUS 90 IS / IXY Digital 95 IS', - ), - 37158912 => array( - 'Id' => 37158912, - 'Label' => 'PowerShot SD770 IS / Digital IXUS 85 IS / IXY Digital 25 IS', - ), - 37224448 => array( - 'Id' => 37224448, - 'Label' => 'PowerShot A590 IS', - ), - 37289984 => array( - 'Id' => 37289984, - 'Label' => 'PowerShot A580', - ), - 37879808 => array( - 'Id' => 37879808, - 'Label' => 'PowerShot A470', - ), - 37945344 => array( - 'Id' => 37945344, - 'Label' => 'PowerShot SD1100 IS / Digital IXUS 80 IS / IXY Digital 20 IS', - ), - 38141952 => array( - 'Id' => 38141952, - 'Label' => 'PowerShot SX1 IS', - ), - 38207488 => array( - 'Id' => 38207488, - 'Label' => 'PowerShot SX10 IS', - ), - 38273024 => array( - 'Id' => 38273024, - 'Label' => 'PowerShot A1000 IS', - ), - 38338560 => array( - 'Id' => 38338560, - 'Label' => 'PowerShot G10', - ), - 38862848 => array( - 'Id' => 38862848, - 'Label' => 'PowerShot A2000 IS', - ), - 38928384 => array( - 'Id' => 38928384, - 'Label' => 'PowerShot SX110 IS', - ), - 38993920 => array( - 'Id' => 38993920, - 'Label' => 'PowerShot SD990 IS / Digital IXUS 980 IS / IXY Digital 3000 IS', - ), - 39059456 => array( - 'Id' => 39059456, - 'Label' => 'PowerShot SD880 IS / Digital IXUS 870 IS / IXY Digital 920 IS', - ), - 39124992 => array( - 'Id' => 39124992, - 'Label' => 'PowerShot E1', - ), - 39190528 => array( - 'Id' => 39190528, - 'Label' => 'PowerShot D10', - ), - 39256064 => array( - 'Id' => 39256064, - 'Label' => 'PowerShot SD960 IS / Digital IXUS 110 IS / IXY Digital 510 IS', - ), - 39321600 => array( - 'Id' => 39321600, - 'Label' => 'PowerShot A2100 IS', - ), - 39387136 => array( - 'Id' => 39387136, - 'Label' => 'PowerShot A480', - ), - 39845888 => array( - 'Id' => 39845888, - 'Label' => 'PowerShot SX200 IS', - ), - 39911424 => array( - 'Id' => 39911424, - 'Label' => 'PowerShot SD970 IS / Digital IXUS 990 IS / IXY Digital 830 IS', - ), - 39976960 => array( - 'Id' => 39976960, - 'Label' => 'PowerShot SD780 IS / Digital IXUS 100 IS / IXY Digital 210 IS', - ), - 40042496 => array( - 'Id' => 40042496, - 'Label' => 'PowerShot A1100 IS', - ), - 40108032 => array( - 'Id' => 40108032, - 'Label' => 'PowerShot SD1200 IS / Digital IXUS 95 IS / IXY Digital 110 IS', - ), - 40894464 => array( - 'Id' => 40894464, - 'Label' => 'PowerShot G11', - ), - 40960000 => array( - 'Id' => 40960000, - 'Label' => 'PowerShot SX120 IS', - ), - 41025536 => array( - 'Id' => 41025536, - 'Label' => 'PowerShot S90', - ), - 41222144 => array( - 'Id' => 41222144, - 'Label' => 'PowerShot SX20 IS', - ), - 41287680 => array( - 'Id' => 41287680, - 'Label' => 'PowerShot SD980 IS / Digital IXUS 200 IS / IXY Digital 930 IS', - ), - 41353216 => array( - 'Id' => 41353216, - 'Label' => 'PowerShot SD940 IS / Digital IXUS 120 IS / IXY Digital 220 IS', - ), - 41943040 => array( - 'Id' => 41943040, - 'Label' => 'PowerShot A495', - ), - 42008576 => array( - 'Id' => 42008576, - 'Label' => 'PowerShot A490', - ), - 42074112 => array( - 'Id' => 42074112, - 'Label' => 'PowerShot A3100 IS / A3150 IS', - ), - 42139648 => array( - 'Id' => 42139648, - 'Label' => 'PowerShot A3000 IS', - ), - 42205184 => array( - 'Id' => 42205184, - 'Label' => 'PowerShot SD1400 IS / IXUS 130 / IXY 400F', - ), - 42270720 => array( - 'Id' => 42270720, - 'Label' => 'PowerShot SD1300 IS / IXUS 105 / IXY 200F', - ), - 42336256 => array( - 'Id' => 42336256, - 'Label' => 'PowerShot SD3500 IS / IXUS 210 / IXY 10S', - ), - 42401792 => array( - 'Id' => 42401792, - 'Label' => 'PowerShot SX210 IS', - ), - 42467328 => array( - 'Id' => 42467328, - 'Label' => 'PowerShot SD4000 IS / IXUS 300 HS / IXY 30S', - ), - 42532864 => array( - 'Id' => 42532864, - 'Label' => 'PowerShot SD4500 IS / IXUS 1000 HS / IXY 50S', - ), - 43122688 => array( - 'Id' => 43122688, - 'Label' => 'PowerShot G12', - ), - 43188224 => array( - 'Id' => 43188224, - 'Label' => 'PowerShot SX30 IS', - ), - 43253760 => array( - 'Id' => 43253760, - 'Label' => 'PowerShot SX130 IS', - ), - 43319296 => array( - 'Id' => 43319296, - 'Label' => 'PowerShot S95', - ), - 43515904 => array( - 'Id' => 43515904, - 'Label' => 'PowerShot A3300 IS', - ), - 43581440 => array( - 'Id' => 43581440, - 'Label' => 'PowerShot A3200 IS', - ), - 50331648 => array( - 'Id' => 50331648, - 'Label' => 'PowerShot ELPH 500 HS / IXUS 310 HS / IXY 31S', - ), - 50397184 => array( - 'Id' => 50397184, - 'Label' => 'PowerShot Pro90 IS', - ), - 50397185 => array( - 'Id' => 50397185, - 'Label' => 'PowerShot A800', - ), - 50462720 => array( - 'Id' => 50462720, - 'Label' => 'PowerShot ELPH 100 HS / IXUS 115 HS / IXY 210F', - ), - 50528256 => array( - 'Id' => 50528256, - 'Label' => 'PowerShot SX230 HS', - ), - 50593792 => array( - 'Id' => 50593792, - 'Label' => 'PowerShot ELPH 300 HS / IXUS 220 HS / IXY 410F', - ), - 50659328 => array( - 'Id' => 50659328, - 'Label' => 'PowerShot A2200', - ), - 50724864 => array( - 'Id' => 50724864, - 'Label' => 'PowerShot A1200', - ), - 50790400 => array( - 'Id' => 50790400, - 'Label' => 'PowerShot SX220 HS', - ), - 50855936 => array( - 'Id' => 50855936, - 'Label' => 'PowerShot G1 X', - ), - 50921472 => array( - 'Id' => 50921472, - 'Label' => 'PowerShot SX150 IS', - ), - 51380224 => array( - 'Id' => 51380224, - 'Label' => 'PowerShot ELPH 510 HS / IXUS 1100 HS / IXY 51S', - ), - 51445760 => array( - 'Id' => 51445760, - 'Label' => 'PowerShot S100 (new)', - ), - 51511296 => array( - 'Id' => 51511296, - 'Label' => 'PowerShot ELPH 310 HS / IXUS 230 HS / IXY 600F', - ), - 51576832 => array( - 'Id' => 51576832, - 'Label' => 'PowerShot SX40 HS', - ), - 51642368 => array( - 'Id' => 51642368, - 'Label' => 'IXY 32S', - ), - 51773440 => array( - 'Id' => 51773440, - 'Label' => 'PowerShot A1300', - ), - 51838976 => array( - 'Id' => 51838976, - 'Label' => 'PowerShot A810', - ), - 51904512 => array( - 'Id' => 51904512, - 'Label' => 'PowerShot ELPH 320 HS / IXUS 240 HS / IXY 420F', - ), - 51970048 => array( - 'Id' => 51970048, - 'Label' => 'PowerShot ELPH 110 HS / IXUS 125 HS / IXY 220F', - ), - 52428800 => array( - 'Id' => 52428800, - 'Label' => 'PowerShot D20', - ), - 52494336 => array( - 'Id' => 52494336, - 'Label' => 'PowerShot A4000 IS', - ), - 52559872 => array( - 'Id' => 52559872, - 'Label' => 'PowerShot SX260 HS', - ), - 52625408 => array( - 'Id' => 52625408, - 'Label' => 'PowerShot SX240 HS', - ), - 52690944 => array( - 'Id' => 52690944, - 'Label' => 'PowerShot ELPH 530 HS / IXUS 510 HS / IXY 1', - ), - 52756480 => array( - 'Id' => 52756480, - 'Label' => 'PowerShot ELPH 520 HS / IXUS 500 HS / IXY 3', - ), - 52822016 => array( - 'Id' => 52822016, - 'Label' => 'PowerShot A3400 IS', - ), - 52887552 => array( - 'Id' => 52887552, - 'Label' => 'PowerShot A2400 IS', - ), - 52953088 => array( - 'Id' => 52953088, - 'Label' => 'PowerShot A2300', - ), - 53673984 => array( - 'Id' => 53673984, - 'Label' => 'PowerShot G15', - ), - 53739520 => array( - 'Id' => 53739520, - 'Label' => 'PowerShot SX50', - ), - 53805056 => array( - 'Id' => 53805056, - 'Label' => 'PowerShot SX160 IS', - ), - 53870592 => array( - 'Id' => 53870592, - 'Label' => 'PowerShot S110 (new)', - ), - 53936128 => array( - 'Id' => 53936128, - 'Label' => 'PowerShot SX500 IS', - ), - 54001664 => array( - 'Id' => 54001664, - 'Label' => 'PowerShot N', - ), - 54067200 => array( - 'Id' => 54067200, - 'Label' => 'IXUS 245 HS / IXY 430F', - ), - 54525952 => array( - 'Id' => 54525952, - 'Label' => 'PowerShot SX280 HS', - ), - 54591488 => array( - 'Id' => 54591488, - 'Label' => 'PowerShot SX270 HS', - ), - 54657024 => array( - 'Id' => 54657024, - 'Label' => 'PowerShot A3500 IS', - ), - 54722560 => array( - 'Id' => 54722560, - 'Label' => 'PowerShot A2600', - ), - 54853632 => array( - 'Id' => 54853632, - 'Label' => 'PowerShot A1400', - ), - 54919168 => array( - 'Id' => 54919168, - 'Label' => 'PowerShot ELPH 130 IS / IXUS 140 / IXY 110F', - ), - 54984704 => array( - 'Id' => 54984704, - 'Label' => 'PowerShot ELPH 115/120 IS / IXUS 132/135 / IXY 90F/100F', - ), - 55115776 => array( - 'Id' => 55115776, - 'Label' => 'PowerShot ELPH 330 HS / IXUS 255 HS / IXY 610F', - ), - 55640064 => array( - 'Id' => 55640064, - 'Label' => 'PowerShot A2500', - ), - 55836672 => array( - 'Id' => 55836672, - 'Label' => 'PowerShot G16', - ), - 55902208 => array( - 'Id' => 55902208, - 'Label' => 'PowerShot S120', - ), - 55967744 => array( - 'Id' => 55967744, - 'Label' => 'PowerShot SX170 IS', - ), - 56098816 => array( - 'Id' => 56098816, - 'Label' => 'PowerShot SX510 HS', - ), - 56164352 => array( - 'Id' => 56164352, - 'Label' => 'PowerShot S200 (new)', - ), - 56623104 => array( - 'Id' => 56623104, - 'Label' => 'IXY 620F', - ), - 56688640 => array( - 'Id' => 56688640, - 'Label' => 'PowerShot N100', - ), - 56885248 => array( - 'Id' => 56885248, - 'Label' => 'PowerShot G1 X Mark II', - ), - 56950784 => array( - 'Id' => 56950784, - 'Label' => 'PowerShot D30', - ), - 57016320 => array( - 'Id' => 57016320, - 'Label' => 'PowerShot SX700 HS', - ), - 57081856 => array( - 'Id' => 57081856, - 'Label' => 'PowerShot SX600 HS', - ), - 57147392 => array( - 'Id' => 57147392, - 'Label' => 'PowerShot ELPH 140 IS / IXUS 150', - ), - 57212928 => array( - 'Id' => 57212928, - 'Label' => 'PowerShot ELPH 135 / IXUS 145 / IXY 120', - ), - 57671680 => array( - 'Id' => 57671680, - 'Label' => 'PowerShot ELPH 340 HS / IXUS 265 HS / IXY 630', - ), - 57737216 => array( - 'Id' => 57737216, - 'Label' => 'PowerShot ELPH 150 IS / IXUS 155 / IXY 140', - ), - 67371008 => array( - 'Id' => 67371008, - 'Label' => 'PowerShot G1', - ), - 100925440 => array( - 'Id' => 100925440, - 'Label' => 'PowerShot S100 / Digital IXUS / IXY Digital', - ), - 1074255475 => array( - 'Id' => 1074255475, - 'Label' => 'DC19/DC21/DC22', - ), - 1074255476 => array( - 'Id' => 1074255476, - 'Label' => 'XH A1', - ), - 1074255477 => array( - 'Id' => 1074255477, - 'Label' => 'HV10', - ), - 1074255478 => array( - 'Id' => 1074255478, - 'Label' => 'MD130/MD140/MD150/MD160/ZR850', - ), - 1074255735 => array( - 'Id' => 1074255735, - 'Label' => 'DC50', - ), - 1074255736 => array( - 'Id' => 1074255736, - 'Label' => 'HV20', - ), - 1074255737 => array( - 'Id' => 1074255737, - 'Label' => 'DC211', - ), - 1074255738 => array( - 'Id' => 1074255738, - 'Label' => 'HG10', - ), - 1074255739 => array( - 'Id' => 1074255739, - 'Label' => 'HR10', - ), - 1074255741 => array( - 'Id' => 1074255741, - 'Label' => 'MD255/ZR950', - ), - 1074255900 => array( - 'Id' => 1074255900, - 'Label' => 'HF11', - ), - 1074255992 => array( - 'Id' => 1074255992, - 'Label' => 'HV30', - ), - 1074255996 => array( - 'Id' => 1074255996, - 'Label' => 'XH A1S', - ), - 1074255998 => array( - 'Id' => 1074255998, - 'Label' => 'DC301/DC310/DC311/DC320/DC330', - ), - 1074255999 => array( - 'Id' => 1074255999, - 'Label' => 'FS100', - ), - 1074256000 => array( - 'Id' => 1074256000, - 'Label' => 'HF10', - ), - 1074256002 => array( - 'Id' => 1074256002, - 'Label' => 'HG20/HG21', - ), - 1074256165 => array( - 'Id' => 1074256165, - 'Label' => 'HF21', - ), - 1074256166 => array( - 'Id' => 1074256166, - 'Label' => 'HF S11', - ), - 1074256248 => array( - 'Id' => 1074256248, - 'Label' => 'HV40', - ), - 1074256263 => array( - 'Id' => 1074256263, - 'Label' => 'DC410/DC411/DC420', - ), - 1074256264 => array( - 'Id' => 1074256264, - 'Label' => 'FS19/FS20/FS21/FS22/FS200', - ), - 1074256265 => array( - 'Id' => 1074256265, - 'Label' => 'HF20/HF200', - ), - 1074256266 => array( - 'Id' => 1074256266, - 'Label' => 'HF S10/S100', - ), - 1074256526 => array( - 'Id' => 1074256526, - 'Label' => 'HF R10/R16/R17/R18/R100/R106', - ), - 1074256527 => array( - 'Id' => 1074256527, - 'Label' => 'HF M30/M31/M36/M300/M306', - ), - 1074256528 => array( - 'Id' => 1074256528, - 'Label' => 'HF S20/S21/S200', - ), - 1074256530 => array( - 'Id' => 1074256530, - 'Label' => 'FS31/FS36/FS37/FS300/FS305/FS306/FS307', - ), - 1074257321 => array( - 'Id' => 1074257321, - 'Label' => 'HF G25', - ), - 2147483649 => array( - 'Id' => 2147483649, - 'Label' => 'EOS-1D', - ), - 2147484007 => array( - 'Id' => 2147484007, - 'Label' => 'EOS-1DS', - ), - 2147484008 => array( - 'Id' => 2147484008, - 'Label' => 'EOS 10D', - ), - 2147484009 => array( - 'Id' => 2147484009, - 'Label' => 'EOS-1D Mark III', - ), - 2147484016 => array( - 'Id' => 2147484016, - 'Label' => 'EOS Digital Rebel / 300D / Kiss Digital', - ), - 2147484020 => array( - 'Id' => 2147484020, - 'Label' => 'EOS-1D Mark II', - ), - 2147484021 => array( - 'Id' => 2147484021, - 'Label' => 'EOS 20D', - ), - 2147484022 => array( - 'Id' => 2147484022, - 'Label' => 'EOS Digital Rebel XSi / 450D / Kiss X2', - ), - 2147484040 => array( - 'Id' => 2147484040, - 'Label' => 'EOS-1Ds Mark II', - ), - 2147484041 => array( - 'Id' => 2147484041, - 'Label' => 'EOS Digital Rebel XT / 350D / Kiss Digital N', - ), - 2147484048 => array( - 'Id' => 2147484048, - 'Label' => 'EOS 40D', - ), - 2147484179 => array( - 'Id' => 2147484179, - 'Label' => 'EOS 5D', - ), - 2147484181 => array( - 'Id' => 2147484181, - 'Label' => 'EOS-1Ds Mark III', - ), - 2147484184 => array( - 'Id' => 2147484184, - 'Label' => 'EOS 5D Mark II', - ), - 2147484185 => array( - 'Id' => 2147484185, - 'Label' => 'WFT-E1', - ), - 2147484210 => array( - 'Id' => 2147484210, - 'Label' => 'EOS-1D Mark II N', - ), - 2147484212 => array( - 'Id' => 2147484212, - 'Label' => 'EOS 30D', - ), - 2147484214 => array( - 'Id' => 2147484214, - 'Label' => 'EOS Digital Rebel XTi / 400D / Kiss Digital X', - ), - 2147484225 => array( - 'Id' => 2147484225, - 'Label' => 'WFT-E2', - ), - 2147484230 => array( - 'Id' => 2147484230, - 'Label' => 'WFT-E3', - ), - 2147484240 => array( - 'Id' => 2147484240, - 'Label' => 'EOS 7D', - ), - 2147484242 => array( - 'Id' => 2147484242, - 'Label' => 'EOS Rebel T1i / 500D / Kiss X3', - ), - 2147484244 => array( - 'Id' => 2147484244, - 'Label' => 'EOS Rebel XS / 1000D / Kiss F', - ), - 2147484257 => array( - 'Id' => 2147484257, - 'Label' => 'EOS 50D', - ), - 2147484265 => array( - 'Id' => 2147484265, - 'Label' => 'EOS-1D X', - ), - 2147484272 => array( - 'Id' => 2147484272, - 'Label' => 'EOS Rebel T2i / 550D / Kiss X4', - ), - 2147484273 => array( - 'Id' => 2147484273, - 'Label' => 'WFT-E4', - ), - 2147484275 => array( - 'Id' => 2147484275, - 'Label' => 'WFT-E5', - ), - 2147484289 => array( - 'Id' => 2147484289, - 'Label' => 'EOS-1D Mark IV', - ), - 2147484293 => array( - 'Id' => 2147484293, - 'Label' => 'EOS 5D Mark III', - ), - 2147484294 => array( - 'Id' => 2147484294, - 'Label' => 'EOS Rebel T3i / 600D / Kiss X5', - ), - 2147484295 => array( - 'Id' => 2147484295, - 'Label' => 'EOS 60D', - ), - 2147484296 => array( - 'Id' => 2147484296, - 'Label' => 'EOS Rebel T3 / 1100D / Kiss X50', - ), - 2147484311 => array( - 'Id' => 2147484311, - 'Label' => 'WFT-E2 II', - ), - 2147484312 => array( - 'Id' => 2147484312, - 'Label' => 'WFT-E4 II', - ), - 2147484417 => array( - 'Id' => 2147484417, - 'Label' => 'EOS Rebel T4i / 650D / Kiss X6i', - ), - 2147484418 => array( - 'Id' => 2147484418, - 'Label' => 'EOS 6D', - ), - 2147484452 => array( - 'Id' => 2147484452, - 'Label' => 'EOS-1D C', - ), - 2147484453 => array( - 'Id' => 2147484453, - 'Label' => 'EOS 70D', - ), - 2147484454 => array( - 'Id' => 2147484454, - 'Label' => 'EOS Rebel T5i / 700D / Kiss X7i', - ), - 2147484455 => array( - 'Id' => 2147484455, - 'Label' => 'EOS Rebel T5 / 1200D / Kiss X70', - ), - 2147484465 => array( - 'Id' => 2147484465, - 'Label' => 'EOS M', - ), - 2147484486 => array( - 'Id' => 2147484486, - 'Label' => 'EOS Rebel SL1 / 100D / Kiss X7', - ), - 2147484501 => array( - 'Id' => 2147484501, - 'Label' => 'EOS M2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Categories.php b/lib/PHPExiftool/Driver/Tag/Canon/Categories.php deleted file mode 100644 index 9d4486835..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Categories.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Categories extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'Categories'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Categories'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'People', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Events', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'User 1', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'User 2', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'User 3', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'To Do', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ChromaticAberrationCorr.php b/lib/PHPExiftool/Driver/Tag/Canon/ChromaticAberrationCorr.php deleted file mode 100644 index 104e8814b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ChromaticAberrationCorr.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationCorr extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ChromaticAberrationCorr'; - - protected $FullName = 'Canon::VignettingCorr'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration Corr'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ChromaticAberrationSetting.php b/lib/PHPExiftool/Driver/Tag/Canon/ChromaticAberrationSetting.php deleted file mode 100644 index 7147bc4e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ChromaticAberrationSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationSetting extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ChromaticAberrationSetting'; - - protected $FullName = 'Canon::VignettingCorr2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorDataVersion.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorDataVersion.php deleted file mode 100644 index 56e9166ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorDataVersion.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorDataVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ColorDataVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Color Data Version'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => '1 (1DmkIIN/5D/30D/400D)', - ), - 1 => array( - 'Id' => 2, - 'Label' => '2 (1DmkIII)', - ), - 2 => array( - 'Id' => 3, - 'Label' => '3 (40D)', - ), - 3 => array( - 'Id' => 4, - 'Label' => '4 (1DSmkIII)', - ), - 4 => array( - 'Id' => 5, - 'Label' => '5 (450D/1000D)', - ), - 5 => array( - 'Id' => 6, - 'Label' => '6 (50D/5DmkII)', - ), - 6 => array( - 'Id' => 7, - 'Label' => '7 (500D/550D/7D/1DmkIV)', - ), - 7 => array( - 'Id' => 9, - 'Label' => '9 (60D/1100D)', - ), - 8 => array( - 'Id' => 10, - 'Label' => '10 (600D/1200D)', - ), - 9 => array( - 'Id' => 10, - 'Label' => '10 (1DX/5DmkIII/6D/70D/100D/650D/700D/M)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorSpace.php deleted file mode 100644 index 81ac81a84..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorSpace.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'sRGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Adobe RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempAsShot.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempAsShot.php deleted file mode 100644 index 20db63ba2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempAsShot.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempAsShot extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempAsShot'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp As Shot'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempAuto.php deleted file mode 100644 index 18859eb3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempAuto.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempAuto extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempAuto'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Auto'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCloudy.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCloudy.php deleted file mode 100644 index 8764028ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCloudy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempCloudy extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempCloudy'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Cloudy'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom.php deleted file mode 100644 index 22f1c2908..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempCustom extends AbstractTag -{ - - protected $Id = 132; - - protected $Name = 'ColorTempCustom'; - - protected $FullName = 'Canon::ColorData3'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Custom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom1.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom1.php deleted file mode 100644 index 871bcb498..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempCustom1 extends AbstractTag -{ - - protected $Id = 69; - - protected $Name = 'ColorTempCustom1'; - - protected $FullName = 'Canon::ColorData1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Custom 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom2.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom2.php deleted file mode 100644 index d9c6afada..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempCustom2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempCustom2 extends AbstractTag -{ - - protected $Id = 74; - - protected $Name = 'ColorTempCustom2'; - - protected $FullName = 'Canon::ColorData1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Custom 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempDaylight.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempDaylight.php deleted file mode 100644 index 2ccdae00c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempDaylight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempDaylight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempDaylight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Daylight'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFlash.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFlash.php deleted file mode 100644 index e34247b3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFlash.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempFlash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempFlash'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Flash'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFlashData.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFlashData.php deleted file mode 100644 index 31f45cb84..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFlashData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempFlashData extends AbstractTag -{ - - protected $Id = 586; - - protected $Name = 'ColorTempFlashData'; - - protected $FullName = 'Canon::ColorData3'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Flash Data'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFluorescent.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFluorescent.php deleted file mode 100644 index 96b914039..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempFluorescent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempFluorescent extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempFluorescent'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Fluorescent'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempKelvin.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempKelvin.php deleted file mode 100644 index f6a7b162f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempKelvin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempKelvin extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempKelvin'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Kelvin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempMeasured.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempMeasured.php deleted file mode 100644 index 0f5061643..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempMeasured.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempMeasured extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempMeasured'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Measured'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC1.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC1.php deleted file mode 100644 index 8f83ffff5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempPC1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempPC1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp PC1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC2.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC2.php deleted file mode 100644 index 9e42b9eab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempPC2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempPC2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp PC2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC3.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC3.php deleted file mode 100644 index c0ffcf64a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempPC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempPC3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempPC3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp PC3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempShade.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempShade.php deleted file mode 100644 index 87526dd22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempShade.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempShade extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempShade'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Shade'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempTungsten.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempTungsten.php deleted file mode 100644 index cad1a2f94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempTungsten.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempTungsten extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempTungsten'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Tungsten'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown.php deleted file mode 100644 index 7866b7dd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown10.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown10.php deleted file mode 100644 index 9ebae9d21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown10 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown10'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown11.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown11.php deleted file mode 100644 index 9187d39f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown11 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown11'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown12.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown12.php deleted file mode 100644 index e09bfa437..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown12 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown12'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown13.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown13.php deleted file mode 100644 index c7758f906..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown13 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown13'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown14.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown14.php deleted file mode 100644 index 0efb60b8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown14 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown14'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown15.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown15.php deleted file mode 100644 index 82c8fff7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown15 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown15'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown16.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown16.php deleted file mode 100644 index 35cdfd001..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown16 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown16'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown17.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown17.php deleted file mode 100644 index cab389e32..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown17 extends AbstractTag -{ - - protected $Id = 197; - - protected $Name = 'ColorTempUnknown17'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown18.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown18.php deleted file mode 100644 index cb7b6b696..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown18 extends AbstractTag -{ - - protected $Id = 202; - - protected $Name = 'ColorTempUnknown18'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown19.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown19.php deleted file mode 100644 index 54f6464ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown19 extends AbstractTag -{ - - protected $Id = 207; - - protected $Name = 'ColorTempUnknown19'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown2.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown2.php deleted file mode 100644 index 936b69865..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown20.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown20.php deleted file mode 100644 index f245e4432..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown20 extends AbstractTag -{ - - protected $Id = 212; - - protected $Name = 'ColorTempUnknown20'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown3.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown3.php deleted file mode 100644 index 3de365e7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown4.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown4.php deleted file mode 100644 index 99e3b9d6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown5.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown5.php deleted file mode 100644 index 37e9a8060..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown5 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown5'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown6.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown6.php deleted file mode 100644 index 5554cb932..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown6 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown6'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown7.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown7.php deleted file mode 100644 index d5599d35b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown7 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown7'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown8.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown8.php deleted file mode 100644 index c5063b854..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown8 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown8'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown9.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown9.php deleted file mode 100644 index 2c576186b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTempUnknown9.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempUnknown9 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTempUnknown9'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Temp Unknown 9'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTemperature.php deleted file mode 100644 index 0ce8efd0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTone.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTone.php deleted file mode 100644 index 472c23462..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTone.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTone extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTone'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneAuto.php deleted file mode 100644 index cf8c01c21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneAuto.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneAuto extends AbstractTag -{ - - protected $Id = 156; - - protected $Name = 'ColorToneAuto'; - - protected $FullName = 'Canon::PSInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Tone Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneFaithful.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneFaithful.php deleted file mode 100644 index aeebf99aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneFaithful.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneFaithful extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorToneFaithful'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone Faithful'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneLandscape.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneLandscape.php deleted file mode 100644 index aa9562b58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneLandscape.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneLandscape extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorToneLandscape'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone Landscape'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneMonochrome.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneMonochrome.php deleted file mode 100644 index 9eb2a6ec9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneMonochrome.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneMonochrome extends AbstractTag -{ - - protected $Id = 132; - - protected $Name = 'ColorToneMonochrome'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Tone Monochrome'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneNeutral.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneNeutral.php deleted file mode 100644 index 3db7e17e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneNeutral.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneNeutral extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorToneNeutral'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone Neutral'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorTonePortrait.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorTonePortrait.php deleted file mode 100644 index b909b3ea8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorTonePortrait.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTonePortrait extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTonePortrait'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone Portrait'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneStandard.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneStandard.php deleted file mode 100644 index 526dc2fe5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneStandard.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneStandard extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorToneStandard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone Standard'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef1.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef1.php deleted file mode 100644 index 8c779b84e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef1.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneUserDef1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorToneUserDef1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone User Def 1'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef2.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef2.php deleted file mode 100644 index 5674d49f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef2.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneUserDef2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorToneUserDef2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone User Def 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef3.php b/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef3.php deleted file mode 100644 index 4196c00ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ColorToneUserDef3.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneUserDef3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorToneUserDef3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Tone User Def 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CompressorVersion.php b/lib/PHPExiftool/Driver/Tag/Canon/CompressorVersion.php deleted file mode 100644 index 7b87d73ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CompressorVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressorVersion extends AbstractTag -{ - - protected $Id = 'CNCV'; - - protected $Name = 'CompressorVersion'; - - protected $FullName = 'Canon::uuid'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compressor Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContinuousDrive.php b/lib/PHPExiftool/Driver/Tag/Canon/ContinuousDrive.php deleted file mode 100644 index cdcace4ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContinuousDrive.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContinuousDrive extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ContinuousDrive'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Continuous Drive'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Movie', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Continuous, Speed Priority', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Continuous, Low', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Continuous, High', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Silent Single', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Single, Silent', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Continuous, Silent', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Contrast.php b/lib/PHPExiftool/Driver/Tag/Canon/Contrast.php deleted file mode 100644 index da2fdf0e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Contrast.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Contrast'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastAuto.php deleted file mode 100644 index 298795d59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastAuto.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastAuto extends AbstractTag -{ - - protected $Id = 144; - - protected $Name = 'ContrastAuto'; - - protected $FullName = 'Canon::PSInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Contrast Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastFaithful.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastFaithful.php deleted file mode 100644 index abcafa11a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastFaithful.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastFaithful extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastFaithful'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast Faithful'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastLandscape.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastLandscape.php deleted file mode 100644 index a4b8889b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastLandscape.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastLandscape extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastLandscape'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast Landscape'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastMonochrome.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastMonochrome.php deleted file mode 100644 index 18b211975..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastMonochrome.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastMonochrome extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastMonochrome'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast Monochrome'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastNeutral.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastNeutral.php deleted file mode 100644 index 7e3a2c3f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastNeutral.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastNeutral extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastNeutral'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast Neutral'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastPortrait.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastPortrait.php deleted file mode 100644 index 71e1c14ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastPortrait.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastPortrait extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastPortrait'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast Portrait'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastStandard.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastStandard.php deleted file mode 100644 index af7f6cffd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastStandard.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastStandard extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastStandard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast Standard'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef1.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef1.php deleted file mode 100644 index fab2a06d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef1.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastUserDef1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastUserDef1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast User Def 1'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef2.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef2.php deleted file mode 100644 index 6f1d2fb29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef2.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastUserDef2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastUserDef2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast User Def 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef3.php b/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef3.php deleted file mode 100644 index 662cbdf8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ContrastUserDef3.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastUserDef3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastUserDef3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast User Def 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ControlMode.php b/lib/PHPExiftool/Driver/Tag/Canon/ControlMode.php deleted file mode 100644 index 408abbef1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ControlMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlMode extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'ControlMode'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Control Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Camera Local Control', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Computer Remote Control', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CropBottomMargin.php b/lib/PHPExiftool/Driver/Tag/Canon/CropBottomMargin.php deleted file mode 100644 index 1b9157312..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CropBottomMargin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropBottomMargin extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'CropBottomMargin'; - - protected $FullName = 'Canon::CropInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Bottom Margin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CropLeftMargin.php b/lib/PHPExiftool/Driver/Tag/Canon/CropLeftMargin.php deleted file mode 100644 index 46fdbfbcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CropLeftMargin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeftMargin extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CropLeftMargin'; - - protected $FullName = 'Canon::CropInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Left Margin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CropRightMargin.php b/lib/PHPExiftool/Driver/Tag/Canon/CropRightMargin.php deleted file mode 100644 index df8dd21ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CropRightMargin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropRightMargin extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CropRightMargin'; - - protected $FullName = 'Canon::CropInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Right Margin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CropTopMargin.php b/lib/PHPExiftool/Driver/Tag/Canon/CropTopMargin.php deleted file mode 100644 index 475a8c1c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CropTopMargin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTopMargin extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CropTopMargin'; - - protected $FullName = 'Canon::CropInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Top Margin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageHeight.php b/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageHeight.php deleted file mode 100644 index e182ba525..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CroppedImageHeight'; - - protected $FullName = 'Canon::AspectInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Cropped Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageLeft.php b/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageLeft.php deleted file mode 100644 index 289cc0dac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageLeft.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedImageLeft extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'CroppedImageLeft'; - - protected $FullName = 'Canon::AspectInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Cropped Image Left'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageTop.php b/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageTop.php deleted file mode 100644 index f5642953c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageTop.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedImageTop extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CroppedImageTop'; - - protected $FullName = 'Canon::AspectInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Cropped Image Top'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageWidth.php deleted file mode 100644 index 25477f321..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CroppedImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedImageWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CroppedImageWidth'; - - protected $FullName = 'Canon::AspectInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Cropped Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/CustomPictureStyleFileName.php b/lib/PHPExiftool/Driver/Tag/Canon/CustomPictureStyleFileName.php deleted file mode 100644 index 50a3253c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/CustomPictureStyleFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomPictureStyleFileName extends AbstractTag -{ - - protected $Id = 16400; - - protected $Name = 'CustomPictureStyleFileName'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Custom Picture Style File Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DateStampMode.php b/lib/PHPExiftool/Driver/Tag/Canon/DateStampMode.php deleted file mode 100644 index 916327e0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DateStampMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateStampMode extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'DateStampMode'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Date Stamp Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Date', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Date & Time', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DaylightSavings.php b/lib/PHPExiftool/Driver/Tag/Canon/DaylightSavings.php deleted file mode 100644 index 3d38a24b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DaylightSavings.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DaylightSavings extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'DaylightSavings'; - - protected $FullName = 'Canon::TimeInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Time'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Daylight Savings'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DigitalGain.php b/lib/PHPExiftool/Driver/Tag/Canon/DigitalGain.php deleted file mode 100644 index c152df73c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DigitalGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalGain extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'DigitalGain'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Digital Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Canon/DigitalZoom.php deleted file mode 100644 index b740722b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DigitalZoom.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => '2x', - ), - 2 => array( - 'Id' => 2, - 'Label' => '4x', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DirectoryIndex.php b/lib/PHPExiftool/Driver/Tag/Canon/DirectoryIndex.php deleted file mode 100644 index b86504142..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DirectoryIndex.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectoryIndex extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DirectoryIndex'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Directory Index'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DirectoryIndex2.php b/lib/PHPExiftool/Driver/Tag/Canon/DirectoryIndex2.php deleted file mode 100644 index 69e0abbe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DirectoryIndex2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectoryIndex2 extends AbstractTag -{ - - protected $Id = 668; - - protected $Name = 'DirectoryIndex2'; - - protected $FullName = 'Canon::CameraInfo5DmkIII'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Directory Index 2'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DisplayAperture.php b/lib/PHPExiftool/Driver/Tag/Canon/DisplayAperture.php deleted file mode 100644 index 81f48e9de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DisplayAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayAperture extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'DisplayAperture'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Display Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Duration.php b/lib/PHPExiftool/Driver/Tag/Canon/Duration.php deleted file mode 100644 index 76ce38a3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Duration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 106; - - protected $Name = 'Duration'; - - protected $FullName = 'Canon::MovieInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Duration'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/DustRemovalData.php b/lib/PHPExiftool/Driver/Tag/Canon/DustRemovalData.php deleted file mode 100644 index c5f33e41b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/DustRemovalData.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DustRemovalData extends AbstractTag -{ - - protected $Id = 151; - - protected $Name = 'DustRemovalData'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Dust Removal Data'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/EasyMode.php b/lib/PHPExiftool/Driver/Tag/Canon/EasyMode.php deleted file mode 100644 index 235c82591..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/EasyMode.php +++ /dev/null @@ -1,332 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EasyMode extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'EasyMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Easy Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Full auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Landscape', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fast shutter', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Slow shutter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Night', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Gray Scale', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Sepia', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Sports', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Macro', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Black & White', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pan focus', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Vivid', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Neutral', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Flash Off', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Long Shutter', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Super Macro', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Foliage', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Indoor', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Fireworks', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Underwater', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Snow', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Kids & Pets', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Night Snapshot', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Digital Macro', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'My Colors', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Movie Snap', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Super Macro 2', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Color Accent', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Color Swap', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Aquarium', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'ISO 3200', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'ISO 6400', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Creative Light Effect', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Easy', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Quick Shot', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Creative Auto', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Zoom Blur', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Low Light', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Nostalgic', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Super Vivid', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Poster Effect', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Face Self-timer', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Smile', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Wink Self-timer', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Fisheye Effect', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Miniature Effect', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'High-speed Burst', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Best Image Selection', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'High Dynamic Range', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Handheld Night Scene', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Movie Digest', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Live View Control', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Discreet', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Blur Reduction', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Monochrome', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Toy Camera Effect', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Scene Intelligent Auto', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'High-speed Burst HQ', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Smooth Skin', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Soft Focus', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Spotlight', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Night 2', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'Night+', - ), - 260 => array( - 'Id' => 260, - 'Label' => 'Super Night', - ), - 261 => array( - 'Id' => 261, - 'Label' => 'Sunset', - ), - 263 => array( - 'Id' => 263, - 'Label' => 'Night Scene', - ), - 264 => array( - 'Id' => 264, - 'Label' => 'Surface', - ), - 265 => array( - 'Id' => 265, - 'Label' => 'Low Light 2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Canon/ExposureCompensation.php deleted file mode 100644 index edc0a1374..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Canon/ExposureTime.php deleted file mode 100644 index c571b7c25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ExposureTime.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Exposure Time'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/FNumber.php deleted file mode 100644 index 3ce745a34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'F Number'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face1Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face1Position.php deleted file mode 100644 index dde7b1afe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Position extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Face1Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face2Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face2Position.php deleted file mode 100644 index 038ef21a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Position extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Face2Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face3Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face3Position.php deleted file mode 100644 index 4f440f76a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Position extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Face3Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face4Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face4Position.php deleted file mode 100644 index e40a565f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Position extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Face4Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face5Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face5Position.php deleted file mode 100644 index 7e1f84bbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Position extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Face5Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face6Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face6Position.php deleted file mode 100644 index 7ec23cacb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face6Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Position extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'Face6Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 6 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face7Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face7Position.php deleted file mode 100644 index 4aa404d73..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face7Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Position extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'Face7Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 7 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face8Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face8Position.php deleted file mode 100644 index 1c310882d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face8Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Position extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'Face8Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 8 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Face9Position.php b/lib/PHPExiftool/Driver/Tag/Canon/Face9Position.php deleted file mode 100644 index c66f9c739..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Face9Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face9Position extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Face9Position'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face 9 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FaceDetectFrameSize.php b/lib/PHPExiftool/Driver/Tag/Canon/FaceDetectFrameSize.php deleted file mode 100644 index b3fde48bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FaceDetectFrameSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectFrameSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'FaceDetectFrameSize'; - - protected $FullName = 'Canon::FaceDetect1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Detect Frame Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FaceWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/FaceWidth.php deleted file mode 100644 index 76326cc68..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FaceWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FaceWidth'; - - protected $FullName = 'Canon::FaceDetect2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Face Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Canon/FacesDetected.php deleted file mode 100644 index 4f0b9709e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FileIndex.php b/lib/PHPExiftool/Driver/Tag/Canon/FileIndex.php deleted file mode 100644 index 865699869..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FileIndex.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileIndex extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FileIndex'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'File Index'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FileIndex2.php b/lib/PHPExiftool/Driver/Tag/Canon/FileIndex2.php deleted file mode 100644 index 5ce18e595..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FileIndex2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileIndex2 extends AbstractTag -{ - - protected $Id = 656; - - protected $Name = 'FileIndex2'; - - protected $FullName = 'Canon::CameraInfo5DmkIII'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'File Index 2'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FileNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/FileNumber.php deleted file mode 100644 index 2e2aba123..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FileNumber.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FileNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'File Number'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffect.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffect.php deleted file mode 100644 index dccced04c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffect.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffect extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'FilterEffect'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yellow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Orange', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectAuto.php deleted file mode 100644 index 7efbeac59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectAuto.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectAuto extends AbstractTag -{ - - protected $Id = 160; - - protected $Name = 'FilterEffectAuto'; - - protected $FullName = 'Canon::PSInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yellow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Orange', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectFaithful.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectFaithful.php deleted file mode 100644 index d4694619e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectFaithful.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectFaithful extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'FilterEffectFaithful'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect Faithful'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectLandscape.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectLandscape.php deleted file mode 100644 index 430ac7f6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectLandscape.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectLandscape extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'FilterEffectLandscape'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect Landscape'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectMonochrome.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectMonochrome.php deleted file mode 100644 index f94ca92d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectMonochrome.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectMonochrome extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilterEffectMonochrome'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Filter Effect Monochrome'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yellow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Orange', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectNeutral.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectNeutral.php deleted file mode 100644 index 0ad9e2693..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectNeutral.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectNeutral extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'FilterEffectNeutral'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect Neutral'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectPortrait.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectPortrait.php deleted file mode 100644 index e8d131cfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectPortrait.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectPortrait extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'FilterEffectPortrait'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect Portrait'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectStandard.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectStandard.php deleted file mode 100644 index 7c94fbc53..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectStandard.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectStandard extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'FilterEffectStandard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect Standard'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef1.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef1.php deleted file mode 100644 index 1138f83c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef1.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectUserDef1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilterEffectUserDef1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect User Def 1'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yellow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Orange', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef2.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef2.php deleted file mode 100644 index f1904c781..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef2.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectUserDef2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilterEffectUserDef2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect User Def 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yellow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Orange', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef3.php b/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef3.php deleted file mode 100644 index c71e70fdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FilterEffectUserDef3.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffectUserDef3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilterEffectUserDef3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Filter Effect User Def 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yellow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Orange', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FirmwareRevision.php b/lib/PHPExiftool/Driver/Tag/Canon/FirmwareRevision.php deleted file mode 100644 index 2a324577d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FirmwareRevision.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareRevision extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirmwareRevision'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Firmware Revision'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Canon/FirmwareVersion.php deleted file mode 100644 index a62120f2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FirmwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FirmwareVersionLookAhead.php b/lib/PHPExiftool/Driver/Tag/Canon/FirmwareVersionLookAhead.php deleted file mode 100644 index c33ad08de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FirmwareVersionLookAhead.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersionLookAhead extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FirmwareVersionLookAhead'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Firmware Version Look Ahead'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FisheyeFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/FisheyeFilter.php deleted file mode 100644 index 90c388157..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FisheyeFilter.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FisheyeFilter extends AbstractTag -{ - - protected $Id = 1281; - - protected $Name = 'FisheyeFilter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fisheye Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashActivity.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashActivity.php deleted file mode 100644 index 4cbf02f94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashActivity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashActivity extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'FlashActivity'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Activity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashBatteryLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashBatteryLevel.php deleted file mode 100644 index 64864855c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashBatteryLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashBatteryLevel extends AbstractTag -{ - - protected $Id = 585; - - protected $Name = 'FlashBatteryLevel'; - - protected $FullName = 'Canon::ColorData3'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Battery Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashBits.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashBits.php deleted file mode 100644 index e5bac51cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashBits.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashBits extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'FlashBits'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Bits'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'TTL', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'A-TTL', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'E-TTL', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'FP sync enabled', - ), - 128 => array( - 'Id' => 128, - 'Label' => '2nd-curtain sync used', - ), - 2048 => array( - 'Id' => 2048, - 'Label' => 'FP sync used', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'Built-in', - ), - 16384 => array( - 'Id' => 16384, - 'Label' => 'External', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashExposureComp.php deleted file mode 100644 index 655168268..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashExposureLock.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashExposureLock.php deleted file mode 100644 index dadb2499a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashExposureLock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureLock extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'FlashExposureLock'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashGuideNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashGuideNumber.php deleted file mode 100644 index 88942799f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashGuideNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGuideNumber extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'FlashGuideNumber'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Guide Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashMeteringMode.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashMeteringMode.php deleted file mode 100644 index c6a96f241..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashMeteringMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMeteringMode extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'FlashMeteringMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'E-TTL', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'TTL', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'External Auto', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'External Manual', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FlashOutput.php b/lib/PHPExiftool/Driver/Tag/Canon/FlashOutput.php deleted file mode 100644 index 18ea68916..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FlashOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Flavor.php b/lib/PHPExiftool/Driver/Tag/Canon/Flavor.php deleted file mode 100644 index 2be334095..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Flavor.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flavor extends AbstractTag -{ - - protected $Id = 16389; - - protected $Name = 'Flavor'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flavor'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Canon/FocalLength.php deleted file mode 100644 index d2ae2e07d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneXSize.php b/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneXSize.php deleted file mode 100644 index 0e79f5560..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneXSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneXSize extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FocalPlaneXSize'; - - protected $FullName = 'Canon::FocalLength'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focal Plane X Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneXUnknown.php b/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneXUnknown.php deleted file mode 100644 index 2f471968b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneXUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneXUnknown extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FocalPlaneXUnknown'; - - protected $FullName = 'Canon::FocalLength'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focal Plane X Unknown'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneYSize.php b/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneYSize.php deleted file mode 100644 index 1c5e199b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneYSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneYSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'FocalPlaneYSize'; - - protected $FullName = 'Canon::FocalLength'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focal Plane Y Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneYUnknown.php b/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneYUnknown.php deleted file mode 100644 index 2b0dee86a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocalPlaneYUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneYUnknown extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'FocalPlaneYUnknown'; - - protected $FullName = 'Canon::FocalLength'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focal Plane Y Unknown'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocalType.php b/lib/PHPExiftool/Driver/Tag/Canon/FocalType.php deleted file mode 100644 index d1e0b65b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocalType.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focal Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Fixed', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Zoom', - ), - 2 => array( - 'Id' => 1, - 'Label' => 'Fixed', - ), - 3 => array( - 'Id' => 2, - 'Label' => 'Zoom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocalUnits.php b/lib/PHPExiftool/Driver/Tag/Canon/FocalUnits.php deleted file mode 100644 index 6dd669b7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocalUnits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalUnits extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'FocalUnits'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Focal Units'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocusContinuous.php b/lib/PHPExiftool/Driver/Tag/Canon/FocusContinuous.php deleted file mode 100644 index 14e92bcbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocusContinuous.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusContinuous extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'FocusContinuous'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Focus Continuous'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocusDistanceLower.php b/lib/PHPExiftool/Driver/Tag/Canon/FocusDistanceLower.php deleted file mode 100644 index 0d685f4a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocusDistanceLower.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistanceLower extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusDistanceLower'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focus Distance Lower'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocusDistanceUpper.php b/lib/PHPExiftool/Driver/Tag/Canon/FocusDistanceUpper.php deleted file mode 100644 index 60a7afb23..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocusDistanceUpper.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistanceUpper extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusDistanceUpper'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focus Distance Upper'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Canon/FocusMode.php deleted file mode 100644 index ec56835c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocusMode.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'FocusMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'One-shot AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AI Servo AF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AI Focus AF', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Manual Focus (3)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Single', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Continuous', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Manual Focus (6)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Pan Focus', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'AF + MF', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Movie Snap Focus', - ), - 519 => array( - 'Id' => 519, - 'Label' => 'Movie Servo AF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FocusRange.php b/lib/PHPExiftool/Driver/Tag/Canon/FocusRange.php deleted file mode 100644 index a5a17d7f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FocusRange.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusRange extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'FocusRange'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Focus Range'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Not Known', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Macro', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Very Close', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Close', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Middle Range', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Far Range', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Pan Focus', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Super Macro', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Infinity', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FrameCount.php b/lib/PHPExiftool/Driver/Tag/Canon/FrameCount.php deleted file mode 100644 index f2e2730ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FrameCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameCount'; - - protected $FullName = 'Canon::MovieInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Frame Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/FrameRate.php b/lib/PHPExiftool/Driver/Tag/Canon/FrameRate.php deleted file mode 100644 index 11aec3664..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/FrameRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameRate'; - - protected $FullName = 'Canon::MovieInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Frame Rate'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/GrainyBWFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/GrainyBWFilter.php deleted file mode 100644 index 68c8cf16d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/GrainyBWFilter.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrainyBWFilter extends AbstractTag -{ - - protected $Id = 257; - - protected $Name = 'GrainyBWFilter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grainy B/W Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/HighISONoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Canon/HighISONoiseReduction.php deleted file mode 100644 index 9295eaacf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/HighISONoiseReduction.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighISONoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HighISONoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'High ISO Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Strong', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/HighlightTonePriority.php b/lib/PHPExiftool/Driver/Tag/Canon/HighlightTonePriority.php deleted file mode 100644 index 6960962f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/HighlightTonePriority.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighlightTonePriority extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'HighlightTonePriority'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Highlight Tone Priority'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ISO.php b/lib/PHPExiftool/Driver/Tag/Canon/ISO.php deleted file mode 100644 index 89f3674a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ISO.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'ISO'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/Canon/ImageStabilization.php deleted file mode 100644 index 6b32fba70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ImageStabilization.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Shoot Only', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Panning', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Dynamic', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Off (2)', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'On (2)', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Shoot Only (2)', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'Panning (2)', - ), - 260 => array( - 'Id' => 260, - 'Label' => 'Dynamic (2)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ImageUniqueID.php b/lib/PHPExiftool/Driver/Tag/Canon/ImageUniqueID.php deleted file mode 100644 index 5a12a8939..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ImageUniqueID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageUniqueID extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'ImageUniqueID'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Unique ID'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/IntelligentContrast.php b/lib/PHPExiftool/Driver/Tag/Canon/IntelligentContrast.php deleted file mode 100644 index af2928997..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/IntelligentContrast.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntelligentContrast extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'IntelligentContrast'; - - protected $FullName = 'Canon::ContrastInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Intelligent Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'On', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/InternalSerialNumber.php deleted file mode 100644 index 245795791..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/InternalSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/JPEGQuality.php b/lib/PHPExiftool/Driver/Tag/Canon/JPEGQuality.php deleted file mode 100644 index 0090e5927..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/JPEGQuality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGQuality extends AbstractTag -{ - - protected $Id = 102; - - protected $Name = 'JPEGQuality'; - - protected $FullName = 'Canon::CameraInfo1DmkII'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'JPEG Quality'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/LensModel.php b/lib/PHPExiftool/Driver/Tag/Canon/LensModel.php deleted file mode 100644 index bf734fa38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/LensModel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensModel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - - protected $flag_Permanent = true; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/LensSerialNumber.php deleted file mode 100644 index 340fcf394..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/LensSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'Canon::LensInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/LensType.php b/lib/PHPExiftool/Driver/Tag/Canon/LensType.php deleted file mode 100644 index 3dc46058f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/LensType.php +++ /dev/null @@ -1,1204 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Canon EF 50mm f/1.8', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Canon EF 28mm f/2.8', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Canon EF 135mm f/2.8 Soft', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Canon EF 35-105mm f/3.5-4.5 or Sigma Lens', - ), - '4.1' => array( - 'Id' => '4.1', - 'Label' => 'Sigma UC Zoom 35-135mm f/4-5.6', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Canon EF 35-70mm f/3.5-4.5', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Canon EF 28-70mm f/3.5-4.5 or Sigma or Tokina Lens', - ), - '6.1' => array( - 'Id' => '6.1', - 'Label' => 'Sigma 18-50mm f/3.5-5.6 DC', - ), - '6.2' => array( - 'Id' => '6.2', - 'Label' => 'Sigma 18-125mm f/3.5-5.6 DC IF ASP', - ), - '6.3' => array( - 'Id' => '6.3', - 'Label' => 'Tokina AF 193-2 19-35mm f/3.5-4.5', - ), - '6.4' => array( - 'Id' => '6.4', - 'Label' => 'Sigma 28-80mm f/3.5-5.6 II Macro', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Canon EF 100-300mm f/5.6L', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Canon EF 100-300mm f/5.6 or Sigma or Tokina Lens', - ), - '8.1' => array( - 'Id' => '8.1', - 'Label' => 'Sigma 70-300mm f/4-5.6 [APO] DG Macro', - ), - '8.2' => array( - 'Id' => '8.2', - 'Label' => 'Tokina AT-X 242 AF 24-200mm f/3.5-5.6', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Canon EF 70-210mm f/4', - ), - '9.1' => array( - 'Id' => '9.1', - 'Label' => 'Sigma 55-200mm f/4-5.6 DC', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Canon EF 50mm f/2.5 Macro or Sigma Lens', - ), - '10.1' => array( - 'Id' => '10.1', - 'Label' => 'Sigma 50mm f/2.8 EX', - ), - '10.2' => array( - 'Id' => '10.2', - 'Label' => 'Sigma 28mm f/1.8', - ), - '10.3' => array( - 'Id' => '10.3', - 'Label' => 'Sigma 105mm f/2.8 Macro EX', - ), - '10.4' => array( - 'Id' => '10.4', - 'Label' => 'Sigma 70mm f/2.8 EX DG Macro EF', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Canon EF 35mm f/2', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Canon EF 15mm f/2.8 Fisheye', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Canon EF 50-200mm f/3.5-4.5L', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Canon EF 50-200mm f/3.5-4.5', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Canon EF 35-135mm f/3.5-4.5', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Canon EF 35-70mm f/3.5-4.5A', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Canon EF 28-70mm f/3.5-4.5', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Canon EF 100-200mm f/4.5A', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Canon EF 80-200mm f/2.8L', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Canon EF 20-35mm f/2.8L or Tokina Lens', - ), - '22.1' => array( - 'Id' => '22.1', - 'Label' => 'Tokina AT-X 280 AF Pro 28-80mm f/2.8 Aspherical', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Canon EF 35-105mm f/3.5-4.5', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Canon EF 35-80mm f/4-5.6 Power Zoom', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Canon EF 35-80mm f/4-5.6 Power Zoom', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Canon EF 100mm f/2.8 Macro or Other Lens', - ), - '26.1' => array( - 'Id' => '26.1', - 'Label' => 'Cosina 100mm f/3.5 Macro AF', - ), - '26.2' => array( - 'Id' => '26.2', - 'Label' => 'Tamron SP AF 90mm f/2.8 Di Macro', - ), - '26.3' => array( - 'Id' => '26.3', - 'Label' => 'Tamron SP AF 180mm f/3.5 Di Macro', - ), - '26.4' => array( - 'Id' => '26.4', - 'Label' => 'Carl Zeiss Planar T* 50mm f/1.4', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Canon EF 35-80mm f/4-5.6', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Canon EF 80-200mm f/4.5-5.6 or Tamron Lens', - ), - '28.1' => array( - 'Id' => '28.1', - 'Label' => 'Tamron SP AF 28-105mm f/2.8 LD Aspherical IF', - ), - '28.2' => array( - 'Id' => '28.2', - 'Label' => 'Tamron SP AF 28-75mm f/2.8 XR Di LD Aspherical [IF] Macro', - ), - '28.3' => array( - 'Id' => '28.3', - 'Label' => 'Tamron AF 70-300mm f/4-5.6 Di LD 1:2 Macro', - ), - '28.4' => array( - 'Id' => '28.4', - 'Label' => 'Tamron AF Aspherical 28-200mm f/3.8-5.6', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Canon EF 50mm f/1.8 II', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Canon EF 35-105mm f/4.5-5.6', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Canon EF 75-300mm f/4-5.6 or Tamron Lens', - ), - '31.1' => array( - 'Id' => '31.1', - 'Label' => 'Tamron SP AF 300mm f/2.8 LD IF', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Canon EF 24mm f/2.8 or Sigma Lens', - ), - '32.1' => array( - 'Id' => '32.1', - 'Label' => 'Sigma 15mm f/2.8 EX Fisheye', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Voigtlander or Carl Zeiss Lens', - ), - '33.1' => array( - 'Id' => '33.1', - 'Label' => 'Voigtlander Ultron 40mm f/2 SLII Aspherical', - ), - '33.2' => array( - 'Id' => '33.2', - 'Label' => 'Voigtlander Color Skopar 20mm f/3.5 SLII Aspherical', - ), - '33.3' => array( - 'Id' => '33.3', - 'Label' => 'Voigtlander APO-Lanthar 90mm f/3.5 SLII Close Focus', - ), - '33.4' => array( - 'Id' => '33.4', - 'Label' => 'Carl Zeiss Distagon T* 15mm f/2.8 ZE', - ), - '33.5' => array( - 'Id' => '33.5', - 'Label' => 'Carl Zeiss Distagon T* 18mm f/3.5 ZE', - ), - '33.6' => array( - 'Id' => '33.6', - 'Label' => 'Carl Zeiss Distagon T* 21mm f/2.8 ZE', - ), - '33.7' => array( - 'Id' => '33.7', - 'Label' => 'Carl Zeiss Distagon T* 28mm f/2 ZE', - ), - '33.8' => array( - 'Id' => '33.8', - 'Label' => 'Carl Zeiss Distagon T* 35mm f/2 ZE', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Canon EF 35-80mm f/4-5.6', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Canon EF 38-76mm f/4.5-5.6', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Canon EF 35-80mm f/4-5.6 or Tamron Lens', - ), - '37.1' => array( - 'Id' => '37.1', - 'Label' => 'Tamron 70-200mm f/2.8 Di LD IF Macro', - ), - '37.2' => array( - 'Id' => '37.2', - 'Label' => 'Tamron AF 28-300mm f/3.5-6.3 XR Di VC LD Aspherical [IF] Macro Model A20', - ), - '37.3' => array( - 'Id' => '37.3', - 'Label' => 'Tamron SP AF 17-50mm f/2.8 XR Di II VC LD Aspherical [IF]', - ), - '37.4' => array( - 'Id' => '37.4', - 'Label' => 'Tamron AF 18-270mm f/3.5-6.3 Di II VC LD Aspherical [IF] Macro', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Canon EF 80-200mm f/4.5-5.6', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Canon EF 75-300mm f/4-5.6', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Canon EF 28-80mm f/3.5-5.6', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Canon EF 28-90mm f/4-5.6', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Canon EF 28-200mm f/3.5-5.6 or Tamron Lens', - ), - '42.1' => array( - 'Id' => '42.1', - 'Label' => 'Tamron AF 28-300mm f/3.5-6.3 XR Di VC LD Aspherical [IF] Macro Model A20', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Canon EF 28-105mm f/4-5.6', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Canon EF 90-300mm f/4.5-5.6', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Canon EF-S 18-55mm f/3.5-5.6 [II]', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Canon EF 28-90mm f/4-5.6', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Canon EF-S 18-55mm f/3.5-5.6 IS', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Canon EF-S 55-250mm f/4-5.6 IS', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Canon EF-S 18-200mm f/3.5-5.6 IS', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Canon EF-S 18-135mm f/3.5-5.6 IS', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Canon EF-S 18-55mm f/3.5-5.6 IS II', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Canon EF-S 18-55mm f/3.5-5.6 III', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Canon EF-S 55-250mm f/4-5.6 IS II', - ), - 94 => array( - 'Id' => 94, - 'Label' => 'Canon TS-E 17mm f/4L', - ), - 95 => array( - 'Id' => 95, - 'Label' => 'Canon TS-E 24.0mm f/3.5 L II', - ), - 124 => array( - 'Id' => 124, - 'Label' => 'Canon MP-E 65mm f/2.8 1-5x Macro Photo', - ), - 125 => array( - 'Id' => 125, - 'Label' => 'Canon TS-E 24mm f/3.5L', - ), - 126 => array( - 'Id' => 126, - 'Label' => 'Canon TS-E 45mm f/2.8', - ), - 127 => array( - 'Id' => 127, - 'Label' => 'Canon TS-E 90mm f/2.8', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Canon EF 300mm f/2.8L', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Canon EF 50mm f/1.0L', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Canon EF 28-80mm f/2.8-4L or Sigma Lens', - ), - '131.1' => array( - 'Id' => '131.1', - 'Label' => 'Sigma 8mm f/3.5 EX DG Circular Fisheye', - ), - '131.2' => array( - 'Id' => '131.2', - 'Label' => 'Sigma 17-35mm f/2.8-4 EX DG Aspherical HSM', - ), - '131.3' => array( - 'Id' => '131.3', - 'Label' => 'Sigma 17-70mm f/2.8-4.5 DC Macro', - ), - '131.4' => array( - 'Id' => '131.4', - 'Label' => 'Sigma APO 50-150mm f/2.8 [II] EX DC HSM', - ), - '131.5' => array( - 'Id' => '131.5', - 'Label' => 'Sigma APO 120-300mm f/2.8 EX DG HSM', - ), - '131.6' => array( - 'Id' => '131.6', - 'Label' => 'Sigma 4.5mm f/2.8 EX DC HSM Circular Fisheye', - ), - '131.7' => array( - 'Id' => '131.7', - 'Label' => 'Sigma 70-200mm f/2.8 APO EX HSM', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Canon EF 1200mm f/5.6L', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Canon EF 600mm f/4L IS', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Canon EF 200mm f/1.8L', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Canon EF 300mm f/2.8L', - ), - 137 => array( - 'Id' => 137, - 'Label' => 'Canon EF 85mm f/1.2L or Sigma or Tamron Lens', - ), - '137.10' => array( - 'Id' => '137.10', - 'Label' => 'Sigma 8-16mm f/4.5-5.6 DC HSM', - ), - '137.1' => array( - 'Id' => '137.1', - 'Label' => 'Sigma 18-50mm f/2.8-4.5 DC OS HSM', - ), - '137.11' => array( - 'Id' => '137.11', - 'Label' => 'Tamron SP 17-50mm f/2.8 XR Di II VC', - ), - '137.12' => array( - 'Id' => '137.12', - 'Label' => 'Tamron SP 60mm f/2 Macro Di II', - ), - '137.13' => array( - 'Id' => '137.13', - 'Label' => 'Sigma 10-20mm f/3.5 EX DC HSM', - ), - '137.14' => array( - 'Id' => '137.14', - 'Label' => 'Tamron SP 24-70mm f/2.8 Di VC USD', - ), - '137.15' => array( - 'Id' => '137.15', - 'Label' => 'Sigma 18-35mm f/1.8 DC HSM', - ), - '137.2' => array( - 'Id' => '137.2', - 'Label' => 'Sigma 50-200mm f/4-5.6 DC OS HSM', - ), - '137.3' => array( - 'Id' => '137.3', - 'Label' => 'Sigma 18-250mm f/3.5-6.3 DC OS HSM', - ), - '137.4' => array( - 'Id' => '137.4', - 'Label' => 'Sigma 24-70mm f/2.8 IF EX DG HSM', - ), - '137.5' => array( - 'Id' => '137.5', - 'Label' => 'Sigma 18-125mm f/3.8-5.6 DC OS HSM', - ), - '137.6' => array( - 'Id' => '137.6', - 'Label' => 'Sigma 17-70mm f/2.8-4 DC Macro OS HSM', - ), - '137.7' => array( - 'Id' => '137.7', - 'Label' => 'Sigma 17-50mm f/2.8 OS HSM', - ), - '137.8' => array( - 'Id' => '137.8', - 'Label' => 'Sigma 18-200mm f/3.5-6.3 II DC OS HSM', - ), - '137.9' => array( - 'Id' => '137.9', - 'Label' => 'Tamron AF 18-270mm f/3.5-6.3 Di II VC PZD', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'Canon EF 28-80mm f/2.8-4L', - ), - 139 => array( - 'Id' => 139, - 'Label' => 'Canon EF 400mm f/2.8L', - ), - 140 => array( - 'Id' => 140, - 'Label' => 'Canon EF 500mm f/4.5L', - ), - 141 => array( - 'Id' => 141, - 'Label' => 'Canon EF 500mm f/4.5L', - ), - 142 => array( - 'Id' => 142, - 'Label' => 'Canon EF 300mm f/2.8L IS', - ), - 143 => array( - 'Id' => 143, - 'Label' => 'Canon EF 500mm f/4L IS', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'Canon EF 35-135mm f/4-5.6 USM', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'Canon EF 100-300mm f/4.5-5.6 USM', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'Canon EF 70-210mm f/3.5-4.5 USM', - ), - 147 => array( - 'Id' => 147, - 'Label' => 'Canon EF 35-135mm f/4-5.6 USM', - ), - 148 => array( - 'Id' => 148, - 'Label' => 'Canon EF 28-80mm f/3.5-5.6 USM', - ), - 149 => array( - 'Id' => 149, - 'Label' => 'Canon EF 100mm f/2 USM', - ), - 150 => array( - 'Id' => 150, - 'Label' => 'Canon EF 14mm f/2.8L or Sigma Lens', - ), - '150.1' => array( - 'Id' => '150.1', - 'Label' => 'Sigma 20mm EX f/1.8', - ), - '150.2' => array( - 'Id' => '150.2', - 'Label' => 'Sigma 30mm f/1.4 DC HSM', - ), - '150.3' => array( - 'Id' => '150.3', - 'Label' => 'Sigma 24mm f/1.8 DG Macro EX', - ), - 151 => array( - 'Id' => 151, - 'Label' => 'Canon EF 200mm f/2.8L', - ), - 152 => array( - 'Id' => 152, - 'Label' => 'Canon EF 300mm f/4L IS or Sigma Lens', - ), - '152.1' => array( - 'Id' => '152.1', - 'Label' => 'Sigma 12-24mm f/4.5-5.6 EX DG ASPHERICAL HSM', - ), - '152.2' => array( - 'Id' => '152.2', - 'Label' => 'Sigma 14mm f/2.8 EX Aspherical HSM', - ), - '152.3' => array( - 'Id' => '152.3', - 'Label' => 'Sigma 10-20mm f/4-5.6', - ), - '152.4' => array( - 'Id' => '152.4', - 'Label' => 'Sigma 100-300mm f/4', - ), - 153 => array( - 'Id' => 153, - 'Label' => 'Canon EF 35-350mm f/3.5-5.6L or Sigma or Tamron Lens', - ), - '153.1' => array( - 'Id' => '153.1', - 'Label' => 'Sigma 50-500mm f/4-6.3 APO HSM EX', - ), - '153.2' => array( - 'Id' => '153.2', - 'Label' => 'Tamron AF 28-300mm f/3.5-6.3 XR LD Aspherical [IF] Macro', - ), - '153.3' => array( - 'Id' => '153.3', - 'Label' => 'Tamron AF 18-200mm f/3.5-6.3 XR Di II LD Aspherical [IF] Macro Model A14', - ), - '153.4' => array( - 'Id' => '153.4', - 'Label' => 'Tamron 18-250mm f/3.5-6.3 Di II LD Aspherical [IF] Macro', - ), - 154 => array( - 'Id' => 154, - 'Label' => 'Canon EF 20mm f/2.8 USM', - ), - 155 => array( - 'Id' => 155, - 'Label' => 'Canon EF 85mm f/1.8 USM', - ), - 156 => array( - 'Id' => 156, - 'Label' => 'Canon EF 28-105mm f/3.5-4.5 USM or Tamron Lens', - ), - '156.1' => array( - 'Id' => '156.1', - 'Label' => 'Tamron SP 70-300mm f/4.0-5.6 Di VC USD', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Canon EF 20-35mm f/3.5-4.5 USM or Tamron or Tokina Lens', - ), - '160.1' => array( - 'Id' => '160.1', - 'Label' => 'Tamron AF 19-35mm f/3.5-4.5', - ), - '160.2' => array( - 'Id' => '160.2', - 'Label' => 'Tokina AT-X 124 AF Pro DX 12-24mm f/4', - ), - '160.3' => array( - 'Id' => '160.3', - 'Label' => 'Tokina AT-X 107 AF DX 10-17mm f/3.5-4.5 Fisheye', - ), - '160.4' => array( - 'Id' => '160.4', - 'Label' => 'Tokina AT-X 116 AF Pro DX 11-16mm f/2.8', - ), - 161 => array( - 'Id' => 161, - 'Label' => 'Canon EF 28-70mm f/2.8L or Sigma or Tamron Lens', - ), - '161.1' => array( - 'Id' => '161.1', - 'Label' => 'Sigma 24-70mm f/2.8 EX', - ), - '161.2' => array( - 'Id' => '161.2', - 'Label' => 'Sigma 28-70mm f/2.8 EX', - ), - '161.3' => array( - 'Id' => '161.3', - 'Label' => 'Sigma 24-60mm f/2.8 EX DG', - ), - '161.4' => array( - 'Id' => '161.4', - 'Label' => 'Tamron AF 17-50mm f/2.8 Di-II LD Aspherical', - ), - '161.5' => array( - 'Id' => '161.5', - 'Label' => 'Tamron 90mm f/2.8', - ), - '161.6' => array( - 'Id' => '161.6', - 'Label' => 'Tamron SP AF 17-35mm f/2.8-4 Di LD Aspherical IF', - ), - 162 => array( - 'Id' => 162, - 'Label' => 'Canon EF 200mm f/2.8L', - ), - 163 => array( - 'Id' => 163, - 'Label' => 'Canon EF 300mm f/4L', - ), - 164 => array( - 'Id' => 164, - 'Label' => 'Canon EF 400mm f/5.6L', - ), - 165 => array( - 'Id' => 165, - 'Label' => 'Canon EF 70-200mm f/2.8 L', - ), - 166 => array( - 'Id' => 166, - 'Label' => 'Canon EF 70-200mm f/2.8 L + 1.4x', - ), - 167 => array( - 'Id' => 167, - 'Label' => 'Canon EF 70-200mm f/2.8 L + 2x', - ), - 168 => array( - 'Id' => 168, - 'Label' => 'Canon EF 28mm f/1.8 USM', - ), - 169 => array( - 'Id' => 169, - 'Label' => 'Canon EF 17-35mm f/2.8L or Sigma Lens', - ), - '169.1' => array( - 'Id' => '169.1', - 'Label' => 'Sigma 18-200mm f/3.5-6.3 DC OS', - ), - '169.2' => array( - 'Id' => '169.2', - 'Label' => 'Sigma 15-30mm f/3.5-4.5 EX DG Aspherical', - ), - '169.3' => array( - 'Id' => '169.3', - 'Label' => 'Sigma 18-50mm f/2.8 Macro', - ), - '169.4' => array( - 'Id' => '169.4', - 'Label' => 'Sigma 50mm f/1.4 EX DG HSM', - ), - '169.5' => array( - 'Id' => '169.5', - 'Label' => 'Sigma 85mm f/1.4 EX DG HSM', - ), - '169.6' => array( - 'Id' => '169.6', - 'Label' => 'Sigma 30mm f/1.4 EX DC HSM', - ), - '169.7' => array( - 'Id' => '169.7', - 'Label' => 'Sigma 35mm f/1.4 DG HSM', - ), - 170 => array( - 'Id' => 170, - 'Label' => 'Canon EF 200mm f/2.8L II', - ), - 171 => array( - 'Id' => 171, - 'Label' => 'Canon EF 300mm f/4L', - ), - 172 => array( - 'Id' => 172, - 'Label' => 'Canon EF 400mm f/5.6L', - ), - 173 => array( - 'Id' => 173, - 'Label' => 'Canon EF 180mm Macro f/3.5L or Sigma Lens', - ), - '173.1' => array( - 'Id' => '173.1', - 'Label' => 'Sigma 180mm EX HSM Macro f/3.5', - ), - '173.2' => array( - 'Id' => '173.2', - 'Label' => 'Sigma APO Macro 150mm f/2.8 EX DG HSM', - ), - 174 => array( - 'Id' => 174, - 'Label' => 'Canon EF 135mm f/2L or Sigma Lens', - ), - '174.1' => array( - 'Id' => '174.1', - 'Label' => 'Sigma 70-200mm f/2.8 EX DG APO OS HSM', - ), - '174.2' => array( - 'Id' => '174.2', - 'Label' => 'Sigma 50-500mm f/4.5-6.3 APO DG OS HSM', - ), - '174.3' => array( - 'Id' => '174.3', - 'Label' => 'Sigma 150-500mm f/5-6.3 APO DG OS HSM', - ), - 175 => array( - 'Id' => 175, - 'Label' => 'Canon EF 400mm f/2.8L', - ), - 176 => array( - 'Id' => 176, - 'Label' => 'Canon EF 24-85mm f/3.5-4.5 USM', - ), - 177 => array( - 'Id' => 177, - 'Label' => 'Canon EF 300mm f/4L IS', - ), - 178 => array( - 'Id' => 178, - 'Label' => 'Canon EF 28-135mm f/3.5-5.6 IS', - ), - 179 => array( - 'Id' => 179, - 'Label' => 'Canon EF 24mm f/1.4L', - ), - 180 => array( - 'Id' => 180, - 'Label' => 'Canon EF 35mm f/1.4L or Sigma Lens', - ), - '180.1' => array( - 'Id' => '180.1', - 'Label' => 'Sigma 50mm f/1.4 DG HSM | A', - ), - 181 => array( - 'Id' => 181, - 'Label' => 'Canon EF 100-400mm f/4.5-5.6L IS + 1.4x', - ), - 182 => array( - 'Id' => 182, - 'Label' => 'Canon EF 100-400mm f/4.5-5.6L IS + 2x', - ), - 183 => array( - 'Id' => 183, - 'Label' => 'Canon EF 100-400mm f/4.5-5.6L IS or Sigma Lens', - ), - '183.1' => array( - 'Id' => '183.1', - 'Label' => 'Sigma 150mm f/2.8 EX DG OS HSM APO Macro', - ), - '183.2' => array( - 'Id' => '183.2', - 'Label' => 'Sigma 105mm f/2.8 EX DG OS HSM Macro', - ), - 184 => array( - 'Id' => 184, - 'Label' => 'Canon EF 400mm f/2.8L + 2x', - ), - 185 => array( - 'Id' => 185, - 'Label' => 'Canon EF 600mm f/4L IS', - ), - 186 => array( - 'Id' => 186, - 'Label' => 'Canon EF 70-200mm f/4L', - ), - 187 => array( - 'Id' => 187, - 'Label' => 'Canon EF 70-200mm f/4L + 1.4x', - ), - 188 => array( - 'Id' => 188, - 'Label' => 'Canon EF 70-200mm f/4L + 2x', - ), - 189 => array( - 'Id' => 189, - 'Label' => 'Canon EF 70-200mm f/4L + 2.8x', - ), - 190 => array( - 'Id' => 190, - 'Label' => 'Canon EF 100mm f/2.8 Macro USM', - ), - 191 => array( - 'Id' => 191, - 'Label' => 'Canon EF 400mm f/4 DO IS', - ), - 193 => array( - 'Id' => 193, - 'Label' => 'Canon EF 35-80mm f/4-5.6 USM', - ), - 194 => array( - 'Id' => 194, - 'Label' => 'Canon EF 80-200mm f/4.5-5.6 USM', - ), - 195 => array( - 'Id' => 195, - 'Label' => 'Canon EF 35-105mm f/4.5-5.6 USM', - ), - 196 => array( - 'Id' => 196, - 'Label' => 'Canon EF 75-300mm f/4-5.6 USM', - ), - 197 => array( - 'Id' => 197, - 'Label' => 'Canon EF 75-300mm f/4-5.6 IS USM', - ), - 198 => array( - 'Id' => 198, - 'Label' => 'Canon EF 50mm f/1.4 USM or Zeiss Lens', - ), - '198.1' => array( - 'Id' => '198.1', - 'Label' => 'Zeiss Otus 55mm f/1.4 ZE', - ), - 199 => array( - 'Id' => 199, - 'Label' => 'Canon EF 28-80mm f/3.5-5.6 USM', - ), - 200 => array( - 'Id' => 200, - 'Label' => 'Canon EF 75-300mm f/4-5.6 USM', - ), - 201 => array( - 'Id' => 201, - 'Label' => 'Canon EF 28-80mm f/3.5-5.6 USM', - ), - 202 => array( - 'Id' => 202, - 'Label' => 'Canon EF 28-80mm f/3.5-5.6 USM IV', - ), - 208 => array( - 'Id' => 208, - 'Label' => 'Canon EF 22-55mm f/4-5.6 USM', - ), - 209 => array( - 'Id' => 209, - 'Label' => 'Canon EF 55-200mm f/4.5-5.6', - ), - 210 => array( - 'Id' => 210, - 'Label' => 'Canon EF 28-90mm f/4-5.6 USM', - ), - 211 => array( - 'Id' => 211, - 'Label' => 'Canon EF 28-200mm f/3.5-5.6 USM', - ), - 212 => array( - 'Id' => 212, - 'Label' => 'Canon EF 28-105mm f/4-5.6 USM', - ), - 213 => array( - 'Id' => 213, - 'Label' => 'Canon EF 90-300mm f/4.5-5.6 USM or Tamron Lens', - ), - '213.1' => array( - 'Id' => '213.1', - 'Label' => 'Tamron SP 150-600mm f/5-6.3 Di VC USD', - ), - '213.2' => array( - 'Id' => '213.2', - 'Label' => 'Tamron 16-300mm f/3.5-6.3 Di II VC PZD Macro', - ), - 214 => array( - 'Id' => 214, - 'Label' => 'Canon EF-S 18-55mm f/3.5-5.6 USM', - ), - 215 => array( - 'Id' => 215, - 'Label' => 'Canon EF 55-200mm f/4.5-5.6 II USM', - ), - 217 => array( - 'Id' => 217, - 'Label' => 'Tamron AF 18-270mm f/3.5-6.3 Di II VC PZD', - ), - 224 => array( - 'Id' => 224, - 'Label' => 'Canon EF 70-200mm f/2.8L IS', - ), - 225 => array( - 'Id' => 225, - 'Label' => 'Canon EF 70-200mm f/2.8L IS + 1.4x', - ), - 226 => array( - 'Id' => 226, - 'Label' => 'Canon EF 70-200mm f/2.8L IS + 2x', - ), - 227 => array( - 'Id' => 227, - 'Label' => 'Canon EF 70-200mm f/2.8L IS + 2.8x', - ), - 228 => array( - 'Id' => 228, - 'Label' => 'Canon EF 28-105mm f/3.5-4.5 USM', - ), - 229 => array( - 'Id' => 229, - 'Label' => 'Canon EF 16-35mm f/2.8L', - ), - 230 => array( - 'Id' => 230, - 'Label' => 'Canon EF 24-70mm f/2.8L', - ), - 231 => array( - 'Id' => 231, - 'Label' => 'Canon EF 17-40mm f/4L', - ), - 232 => array( - 'Id' => 232, - 'Label' => 'Canon EF 70-300mm f/4.5-5.6 DO IS USM', - ), - 233 => array( - 'Id' => 233, - 'Label' => 'Canon EF 28-300mm f/3.5-5.6L IS', - ), - 234 => array( - 'Id' => 234, - 'Label' => 'Canon EF-S 17-85mm f4-5.6 IS USM', - ), - 235 => array( - 'Id' => 235, - 'Label' => 'Canon EF-S 10-22mm f/3.5-4.5 USM', - ), - 236 => array( - 'Id' => 236, - 'Label' => 'Canon EF-S 60mm f/2.8 Macro USM', - ), - 237 => array( - 'Id' => 237, - 'Label' => 'Canon EF 24-105mm f/4L IS', - ), - 238 => array( - 'Id' => 238, - 'Label' => 'Canon EF 70-300mm f/4-5.6 IS USM', - ), - 239 => array( - 'Id' => 239, - 'Label' => 'Canon EF 85mm f/1.2L II', - ), - 240 => array( - 'Id' => 240, - 'Label' => 'Canon EF-S 17-55mm f/2.8 IS USM', - ), - 241 => array( - 'Id' => 241, - 'Label' => 'Canon EF 50mm f/1.2L', - ), - 242 => array( - 'Id' => 242, - 'Label' => 'Canon EF 70-200mm f/4L IS', - ), - 243 => array( - 'Id' => 243, - 'Label' => 'Canon EF 70-200mm f/4L IS + 1.4x', - ), - 244 => array( - 'Id' => 244, - 'Label' => 'Canon EF 70-200mm f/4L IS + 2x', - ), - 245 => array( - 'Id' => 245, - 'Label' => 'Canon EF 70-200mm f/4L IS + 2.8x', - ), - 246 => array( - 'Id' => 246, - 'Label' => 'Canon EF 16-35mm f/2.8L II', - ), - 247 => array( - 'Id' => 247, - 'Label' => 'Canon EF 14mm f/2.8L II USM', - ), - 248 => array( - 'Id' => 248, - 'Label' => 'Canon EF 200mm f/2L IS', - ), - 249 => array( - 'Id' => 249, - 'Label' => 'Canon EF 800mm f/5.6L IS', - ), - 250 => array( - 'Id' => 250, - 'Label' => 'Canon EF 24 f/1.4L II', - ), - 251 => array( - 'Id' => 251, - 'Label' => 'Canon EF 70-200mm f/2.8L IS II USM', - ), - 252 => array( - 'Id' => 252, - 'Label' => 'Canon EF 70-200mm f/2.8L IS II USM + 1.4x', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Canon EF 70-200mm f/2.8L IS II USM + 2x', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Canon EF 100mm f/2.8L Macro IS USM', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Sigma 24-105mm f/4 DG OS HSM | A', - ), - 488 => array( - 'Id' => 488, - 'Label' => 'Canon EF-S 15-85mm f/3.5-5.6 IS USM', - ), - 489 => array( - 'Id' => 489, - 'Label' => 'Canon EF 70-300mm f/4-5.6L IS USM', - ), - 490 => array( - 'Id' => 490, - 'Label' => 'Canon EF 8-15mm f/4L USM', - ), - 491 => array( - 'Id' => 491, - 'Label' => 'Canon EF 300mm f/2.8L IS II USM', - ), - 492 => array( - 'Id' => 492, - 'Label' => 'Canon EF 400mm f/2.8L IS II USM', - ), - 493 => array( - 'Id' => 493, - 'Label' => 'Canon EF 24-105mm f/4L IS USM', - ), - 494 => array( - 'Id' => 494, - 'Label' => 'Canon EF 600mm f/4.0L IS II USM', - ), - 495 => array( - 'Id' => 495, - 'Label' => 'Canon EF 24-70mm f/2.8L II USM', - ), - 496 => array( - 'Id' => 496, - 'Label' => 'Canon EF 200-400mm f/4L IS USM', - ), - 499 => array( - 'Id' => 499, - 'Label' => 'Canon EF 200-400mm f/4L IS USM + 1.4x', - ), - 502 => array( - 'Id' => 502, - 'Label' => 'Canon EF 28mm f/2.8 IS USM', - ), - 503 => array( - 'Id' => 503, - 'Label' => 'Canon EF 24mm f/2.8 IS USM', - ), - 504 => array( - 'Id' => 504, - 'Label' => 'Canon EF 24-70mm f/4L IS USM', - ), - 505 => array( - 'Id' => 505, - 'Label' => 'Canon EF 35mm f/2 IS USM', - ), - 507 => array( - 'Id' => 507, - 'Label' => 'Canon EF 16-35mm f/4L IS USM', - ), - 4142 => array( - 'Id' => 4142, - 'Label' => 'Canon EF-S 18-135mm f/3.5-5.6 IS STM', - ), - 4143 => array( - 'Id' => 4143, - 'Label' => 'Canon EF-M 18-55mm f/3.5-5.6 IS STM', - ), - 4144 => array( - 'Id' => 4144, - 'Label' => 'Canon EF 40mm f/2.8 STM', - ), - 4145 => array( - 'Id' => 4145, - 'Label' => 'Canon EF-M 22mm f/2 STM', - ), - 4146 => array( - 'Id' => 4146, - 'Label' => 'Canon EF-S 18-55mm f/3.5-5.6 IS STM', - ), - 4147 => array( - 'Id' => 4147, - 'Label' => 'Canon EF-M 11-22mm f/4-5.6 IS STM', - ), - 4148 => array( - 'Id' => 4148, - 'Label' => 'Canon EF-S 55-250mm f/4-5.6 IS STM', - ), - 4149 => array( - 'Id' => 4149, - 'Label' => 'Canon EF-M 55-200mm f/4.5-6.3 IS STM', - ), - 4150 => array( - 'Id' => 4150, - 'Label' => 'Canon EF-S 10-18mm f/4.5-5.6 IS STM', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/LinearityUpperMargin.php b/lib/PHPExiftool/Driver/Tag/Canon/LinearityUpperMargin.php deleted file mode 100644 index 7c8ed6f25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/LinearityUpperMargin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinearityUpperMargin extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LinearityUpperMargin'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Linearity Upper Margin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/LiveViewShooting.php b/lib/PHPExiftool/Driver/Tag/Canon/LiveViewShooting.php deleted file mode 100644 index 3acce1f22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/LiveViewShooting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewShooting extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'LiveViewShooting'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Live View Shooting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/LongExposureNoiseReduction2.php b/lib/PHPExiftool/Driver/Tag/Canon/LongExposureNoiseReduction2.php deleted file mode 100644 index 172ff0c9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/LongExposureNoiseReduction2.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LongExposureNoiseReduction2 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'LongExposureNoiseReduction2'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Long Exposure Noise Reduction 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (1D)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MacroMagnification.php b/lib/PHPExiftool/Driver/Tag/Canon/MacroMagnification.php deleted file mode 100644 index 66ce6c202..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MacroMagnification.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroMagnification extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MacroMagnification'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Macro Magnification'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MacroMode.php b/lib/PHPExiftool/Driver/Tag/Canon/MacroMode.php deleted file mode 100644 index 009c220f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MacroMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroMode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MacroMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Macro Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Macro', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ManualFlashOutput.php b/lib/PHPExiftool/Driver/Tag/Canon/ManualFlashOutput.php deleted file mode 100644 index 6b039798f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ManualFlashOutput.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFlashOutput extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'ManualFlashOutput'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Manual Flash Output'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1280 => array( - 'Id' => 1280, - 'Label' => 'Full', - ), - 1282 => array( - 'Id' => 1282, - 'Label' => 'Medium', - ), - 1284 => array( - 'Id' => 1284, - 'Label' => 'Low', - ), - 32767 => array( - 'Id' => 32767, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/Canon/MaxAperture.php deleted file mode 100644 index 81a99146d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MaxFocalLength.php b/lib/PHPExiftool/Driver/Tag/Canon/MaxFocalLength.php deleted file mode 100644 index c1666ef4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MaxFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxFocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxFocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Max Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV.php b/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV.php deleted file mode 100644 index 9e7ae2f95..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredEV extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MeasuredEV'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Measured EV'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV2.php b/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV2.php deleted file mode 100644 index 402fe80ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredEV2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MeasuredEV2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Measured EV 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV3.php b/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV3.php deleted file mode 100644 index fcc3c0a31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredEV3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredEV3 extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'MeasuredEV3'; - - protected $FullName = 'Canon::CameraInfo1DmkIV'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Measured EV 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredRGGB.php b/lib/PHPExiftool/Driver/Tag/Canon/MeasuredRGGB.php deleted file mode 100644 index f9596cff7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredRGGB.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredRGGB extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MeasuredRGGB'; - - protected $FullName = 'Canon::MeasuredColor'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Measured RGGB'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredRGGBData.php b/lib/PHPExiftool/Driver/Tag/Canon/MeasuredRGGBData.php deleted file mode 100644 index fcb2d90a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MeasuredRGGBData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredRGGBData extends AbstractTag -{ - - protected $Id = 647; - - protected $Name = 'MeasuredRGGBData'; - - protected $FullName = 'Canon::ColorData3'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Measured RGGB Data'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Canon/MeteringMode.php deleted file mode 100644 index 5b9da0ae6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MeteringMode.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Default', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Spot', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Average', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Evaluative', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Partial', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Center-weighted average', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MinAperture.php b/lib/PHPExiftool/Driver/Tag/Canon/MinAperture.php deleted file mode 100644 index 88ed80468..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MinAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinAperture extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'MinAperture'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Min Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MinFocalLength.php b/lib/PHPExiftool/Driver/Tag/Canon/MinFocalLength.php deleted file mode 100644 index 002c6f115..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MinFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinFocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MinFocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Min Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilter.php deleted file mode 100644 index b6fe1d233..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilter.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MiniatureFilter extends AbstractTag -{ - - protected $Id = 1025; - - protected $Name = 'MiniatureFilter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Miniature Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterOrientation.php b/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterOrientation.php deleted file mode 100644 index 724e085bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterOrientation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MiniatureFilterOrientation extends AbstractTag -{ - - protected $Id = 1026; - - protected $Name = 'MiniatureFilterOrientation'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Miniature Filter Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Vertical', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterParameter.php b/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterParameter.php deleted file mode 100644 index 9173efbc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterParameter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MiniatureFilterParameter extends AbstractTag -{ - - protected $Id = 1028; - - protected $Name = 'MiniatureFilterParameter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Miniature Filter Parameter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterPosition.php b/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterPosition.php deleted file mode 100644 index 89d8b8da7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MiniatureFilterPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MiniatureFilterPosition extends AbstractTag -{ - - protected $Id = 1027; - - protected $Name = 'MiniatureFilterPosition'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Miniature Filter Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedColorTemp.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedColorTemp.php deleted file mode 100644 index 84348992c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedColorTemp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedColorTemp extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'ModifiedColorTemp'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Color Temp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedDigitalGain.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedDigitalGain.php deleted file mode 100644 index aa362f76e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedDigitalGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedDigitalGain extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'ModifiedDigitalGain'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Digital Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedParamFlag.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedParamFlag.php deleted file mode 100644 index d5a313220..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedParamFlag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedParamFlag extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ModifiedParamFlag'; - - protected $FullName = 'Canon::Flags'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Param Flag'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedPictureStyle.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedPictureStyle.php deleted file mode 100644 index 77fb1e588..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedPictureStyle.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedPictureStyle extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ModifiedPictureStyle'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Picture Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Saturation', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Adobe RGB', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Low Saturation', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'CM Set 1', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'CM Set 2', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'User Def. 1', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'User Def. 2', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'User Def. 3', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'PC 1', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'PC 2', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'PC 3', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Standard', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Portrait', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Landscape', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Neutral', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'Faithful', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Monochrome', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSensorBlueLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSensorBlueLevel.php deleted file mode 100644 index effa39b21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSensorBlueLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedSensorBlueLevel extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ModifiedSensorBlueLevel'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Sensor Blue Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSensorRedLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSensorRedLevel.php deleted file mode 100644 index ab9d6e079..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSensorRedLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedSensorRedLevel extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ModifiedSensorRedLevel'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Sensor Red Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSharpness.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSharpness.php deleted file mode 100644 index 967999529..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedSharpness extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ModifiedSharpness'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSharpnessFreq.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSharpnessFreq.php deleted file mode 100644 index 5e34e7683..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedSharpnessFreq.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedSharpnessFreq extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ModifiedSharpnessFreq'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Sharpness Freq'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Lowest', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Standard', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Highest', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedToneCurve.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedToneCurve.php deleted file mode 100644 index 2b664cc44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedToneCurve.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedToneCurve extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ModifiedToneCurve'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified Tone Curve'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalance.php deleted file mode 100644 index 370c82be7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalance.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedWhiteBalance extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ModifiedWhiteBalance'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Fluorescent', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Flash', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Custom', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Black & White', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Shade', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Manual Temperature (Kelvin)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'PC Set1', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'PC Set2', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'PC Set3', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Daylight Fluorescent', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Custom 1', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Custom 2', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Underwater', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Custom 3', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Custom 4', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'PC Set4', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'PC Set5', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalanceBlue.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalanceBlue.php deleted file mode 100644 index de8f3ff11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalanceBlue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedWhiteBalanceBlue extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ModifiedWhiteBalanceBlue'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified White Balance Blue'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalanceRed.php b/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalanceRed.php deleted file mode 100644 index a7f21d644..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ModifiedWhiteBalanceRed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedWhiteBalanceRed extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ModifiedWhiteBalanceRed'; - - protected $FullName = 'Canon::ModifiedInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Modified White Balance Red'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/MyColorMode.php b/lib/PHPExiftool/Driver/Tag/Canon/MyColorMode.php deleted file mode 100644 index afd69a927..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/MyColorMode.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MyColorMode extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'MyColorMode'; - - protected $FullName = 'Canon::MyColors'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'My Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Positive Film', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Light Skin Tone', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Dark Skin Tone', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Vivid Blue', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Vivid Green', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Vivid Red', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Color Accent', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Color Swap', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Custom', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Vivid', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Neutral', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Sepia', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'B&W', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/NDFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/NDFilter.php deleted file mode 100644 index b48d4afb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/NDFilter.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NDFilter extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'NDFilter'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'ND Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/NormalWhiteLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/NormalWhiteLevel.php deleted file mode 100644 index c2392510d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/NormalWhiteLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NormalWhiteLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NormalWhiteLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Normal White Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/NumAFPoints.php b/lib/PHPExiftool/Driver/Tag/Canon/NumAFPoints.php deleted file mode 100644 index 827513385..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/NumAFPoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumAFPoints extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NumAFPoints'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Num AF Points'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/OpticalZoomCode.php b/lib/PHPExiftool/Driver/Tag/Canon/OpticalZoomCode.php deleted file mode 100644 index 6197a8067..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/OpticalZoomCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalZoomCode extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'OpticalZoomCode'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Optical Zoom Code'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/OriginalDecisionDataOffset.php b/lib/PHPExiftool/Driver/Tag/Canon/OriginalDecisionDataOffset.php deleted file mode 100644 index 2513fcb69..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/OriginalDecisionDataOffset.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalDecisionDataOffset extends AbstractTag -{ - - protected $Id = 131; - - protected $Name = 'OriginalDecisionDataOffset'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Original Decision Data Offset'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/OriginalImageHeight.php b/lib/PHPExiftool/Driver/Tag/Canon/OriginalImageHeight.php deleted file mode 100644 index f59f4ed2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/OriginalImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageHeight extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'OriginalImageHeight'; - - protected $FullName = 'Canon::VignettingCorr'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Original Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/OriginalImageWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/OriginalImageWidth.php deleted file mode 100644 index cf1b6617a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/OriginalImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageWidth extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'OriginalImageWidth'; - - protected $FullName = 'Canon::VignettingCorr'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Original Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/OwnerName.php b/lib/PHPExiftool/Driver/Tag/Canon/OwnerName.php deleted file mode 100644 index 6b0c5e8ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/OwnerName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OwnerName'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PaintingFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/PaintingFilter.php deleted file mode 100644 index 5ae78359e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PaintingFilter.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintingFilter extends AbstractTag -{ - - protected $Id = 1537; - - protected $Name = 'PaintingFilter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Painting Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PanoramaDirection.php b/lib/PHPExiftool/Driver/Tag/Canon/PanoramaDirection.php deleted file mode 100644 index d8d0c0da7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PanoramaDirection.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaDirection extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PanoramaDirection'; - - protected $FullName = 'Canon::Panorama'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Panorama Direction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Left to Right', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Right to Left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Bottom to Top', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Top to Bottom', - ), - 4 => array( - 'Id' => 4, - 'Label' => '2x2 Matrix (Clockwise)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PanoramaFrameNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/PanoramaFrameNumber.php deleted file mode 100644 index 0058eb2fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PanoramaFrameNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaFrameNumber extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PanoramaFrameNumber'; - - protected $FullName = 'Canon::Panorama'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Panorama Frame Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PerChannelBlackLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/PerChannelBlackLevel.php deleted file mode 100644 index 7395f9a38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PerChannelBlackLevel.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerChannelBlackLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PerChannelBlackLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Per Channel Black Level'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLighting.php b/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLighting.php deleted file mode 100644 index fde548733..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLighting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralLighting extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PeripheralLighting'; - - protected $FullName = 'Canon::VignettingCorr'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Lighting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLightingSetting.php b/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLightingSetting.php deleted file mode 100644 index 6b1a157e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLightingSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralLightingSetting extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PeripheralLightingSetting'; - - protected $FullName = 'Canon::VignettingCorr2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Lighting Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLightingValue.php b/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLightingValue.php deleted file mode 100644 index ac3c1f8fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PeripheralLightingValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralLightingValue extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PeripheralLightingValue'; - - protected $FullName = 'Canon::VignettingCorr'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Lighting Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PhotoEffect.php b/lib/PHPExiftool/Driver/Tag/Canon/PhotoEffect.php deleted file mode 100644 index e121938ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PhotoEffect.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoEffect extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'PhotoEffect'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Photo Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Neutral', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Smooth', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sepia', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'B&W', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Custom', - ), - 100 => array( - 'Id' => 100, - 'Label' => 'My Color Data', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PictureStyle.php b/lib/PHPExiftool/Driver/Tag/Canon/PictureStyle.php deleted file mode 100644 index 16c97a157..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PictureStyle.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureStyle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PictureStyle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Picture Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Saturation', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Adobe RGB', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Low Saturation', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'CM Set 1', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'CM Set 2', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'User Def. 1', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'User Def. 2', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'User Def. 3', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'PC 1', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'PC 2', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'PC 3', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Standard', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Portrait', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Landscape', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Neutral', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'Faithful', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Monochrome', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageHeight.php b/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageHeight.php deleted file mode 100644 index e0a87bbc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageHeight extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PreviewImageHeight'; - - protected $FullName = 'Canon::PreviewImageInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageLength.php deleted file mode 100644 index 698a0ce14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Canon::PreviewImageInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageStart.php deleted file mode 100644 index 5e0df9395..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Canon::PreviewImageInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageWidth.php deleted file mode 100644 index 161a31d91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PreviewImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageWidth extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PreviewImageWidth'; - - protected $FullName = 'Canon::PreviewImageInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PreviewQuality.php b/lib/PHPExiftool/Driver/Tag/Canon/PreviewQuality.php deleted file mode 100644 index 148fa7108..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PreviewQuality.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewQuality extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PreviewQuality'; - - protected $FullName = 'Canon::PreviewImageInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Economy', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fine', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RAW', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Superfine', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Normal Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/PrimaryAFPoint.php b/lib/PHPExiftool/Driver/Tag/Canon/PrimaryAFPoint.php deleted file mode 100644 index cb3617e0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/PrimaryAFPoint.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryAFPoint extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PrimaryAFPoint'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Primary AF Point'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Quality.php b/lib/PHPExiftool/Driver/Tag/Canon/Quality.php deleted file mode 100644 index 03cae9eff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Quality.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Quality'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Economy', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fine', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RAW', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Superfine', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Normal Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/RawDataOffset.php b/lib/PHPExiftool/Driver/Tag/Canon/RawDataOffset.php deleted file mode 100644 index 45cb194d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/RawDataOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataOffset extends AbstractTag -{ - - protected $Id = 129; - - protected $Name = 'RawDataOffset'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/RawJpgQuality.php b/lib/PHPExiftool/Driver/Tag/Canon/RawJpgQuality.php deleted file mode 100644 index 78970b540..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/RawJpgQuality.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawJpgQuality extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'RawJpgQuality'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Jpg Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Economy', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fine', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RAW', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Superfine', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Normal Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/RawJpgSize.php b/lib/PHPExiftool/Driver/Tag/Canon/RawJpgSize.php deleted file mode 100644 index d02fa0fa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/RawJpgSize.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawJpgSize extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'RawJpgSize'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Jpg Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Large', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Medium', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Small', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Medium 1', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Medium 2', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Medium 3', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Postcard', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Widescreen', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Medium Widescreen', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Small 1', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Small 2', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Small 3', - ), - 128 => array( - 'Id' => 128, - 'Label' => '640x480 Movie', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Medium Movie', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Small Movie', - ), - 137 => array( - 'Id' => 137, - 'Label' => '1280x720 Movie', - ), - 142 => array( - 'Id' => 142, - 'Label' => '1920x1080 Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/RawMeasuredRGGB.php b/lib/PHPExiftool/Driver/Tag/Canon/RawMeasuredRGGB.php deleted file mode 100644 index 6b551a791..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/RawMeasuredRGGB.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawMeasuredRGGB extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawMeasuredRGGB'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Raw Measured RGGB'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/RecordMode.php b/lib/PHPExiftool/Driver/Tag/Canon/RecordMode.php deleted file mode 100644 index f374f125d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/RecordMode.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordMode extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'RecordMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Record Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'JPEG', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'CRW+THM', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AVI+THM', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'TIF', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'TIF+JPEG', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'CR2', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'CR2+JPEG', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'MOV', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'MP4', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Rotation.php b/lib/PHPExiftool/Driver/Tag/Canon/Rotation.php deleted file mode 100644 index da7a0bb04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Rotation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Rotation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SRAWQuality.php b/lib/PHPExiftool/Driver/Tag/Canon/SRAWQuality.php deleted file mode 100644 index 70c0c2b13..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SRAWQuality.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRAWQuality extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'SRAWQuality'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'SRAW Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'sRAW1 (mRAW)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'sRAW2 (sRAW)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Saturation.php b/lib/PHPExiftool/Driver/Tag/Canon/Saturation.php deleted file mode 100644 index 59ca818c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Saturation.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationAuto.php deleted file mode 100644 index 12c3de183..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationAuto.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAuto extends AbstractTag -{ - - protected $Id = 152; - - protected $Name = 'SaturationAuto'; - - protected $FullName = 'Canon::PSInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Saturation Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationFaithful.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationFaithful.php deleted file mode 100644 index 86e46febd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationFaithful.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationFaithful extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationFaithful'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation Faithful'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationLandscape.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationLandscape.php deleted file mode 100644 index fc1597f93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationLandscape.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationLandscape extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationLandscape'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation Landscape'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationMonochrome.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationMonochrome.php deleted file mode 100644 index afb33edff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationMonochrome.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationMonochrome extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'SaturationMonochrome'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Saturation Monochrome'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationNeutral.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationNeutral.php deleted file mode 100644 index 7d943df4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationNeutral.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationNeutral extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationNeutral'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation Neutral'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationPortrait.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationPortrait.php deleted file mode 100644 index bf5dd7028..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationPortrait.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationPortrait extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationPortrait'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation Portrait'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationStandard.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationStandard.php deleted file mode 100644 index a35185765..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationStandard.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationStandard extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationStandard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation Standard'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef1.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef1.php deleted file mode 100644 index aa85fb00b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef1.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationUserDef1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationUserDef1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation User Def 1'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef2.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef2.php deleted file mode 100644 index 9de8474f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef2.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationUserDef2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationUserDef2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation User Def 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef3.php b/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef3.php deleted file mode 100644 index ef9f4b9d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SaturationUserDef3.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationUserDef3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationUserDef3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation User Def 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SelfTimer.php b/lib/PHPExiftool/Driver/Tag/Canon/SelfTimer.php deleted file mode 100644 index 4c44781fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SelfTimer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimer extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SelfTimer'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Self Timer'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SelfTimer2.php b/lib/PHPExiftool/Driver/Tag/Canon/SelfTimer2.php deleted file mode 100644 index e3c4fdae5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SelfTimer2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimer2 extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'SelfTimer2'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Self Timer 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorBlueLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorBlueLevel.php deleted file mode 100644 index 056577e08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorBlueLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorBlueLevel extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'SensorBlueLevel'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Sensor Blue Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorBottomBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorBottomBorder.php deleted file mode 100644 index c04799760..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorBottomBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorBottomBorder extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'SensorBottomBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Sensor Bottom Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorHeight.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorHeight.php deleted file mode 100644 index 29bef872e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SensorHeight'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Sensor Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorLeftBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorLeftBorder.php deleted file mode 100644 index f16323d46..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorLeftBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorLeftBorder extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'SensorLeftBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Sensor Left Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorRedLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorRedLevel.php deleted file mode 100644 index 4bbdf1a57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorRedLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorRedLevel extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'SensorRedLevel'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Sensor Red Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorRightBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorRightBorder.php deleted file mode 100644 index 56d505189..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorRightBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorRightBorder extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'SensorRightBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Sensor Right Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorTopBorder.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorTopBorder.php deleted file mode 100644 index 98439f457..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorTopBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTopBorder extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'SensorTopBorder'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Sensor Top Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SensorWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/SensorWidth.php deleted file mode 100644 index 83c912743..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SensorWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'SensorWidth'; - - protected $FullName = 'Canon::SensorInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Sensor Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SequenceNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/SequenceNumber.php deleted file mode 100644 index 40b3b8eb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SequenceNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumber extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'SequenceNumber'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Shot Number In Continuous Burst'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Canon/SerialNumber.php deleted file mode 100644 index 2343ce6d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SerialNumberFormat.php b/lib/PHPExiftool/Driver/Tag/Canon/SerialNumberFormat.php deleted file mode 100644 index ad7700cff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SerialNumberFormat.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumberFormat extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'SerialNumberFormat'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Serial Number Format'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2415919104 => array( - 'Id' => 2415919104, - 'Label' => 'Format 1', - ), - 2684354560 => array( - 'Id' => 2684354560, - 'Label' => 'Format 2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Canon/Sharpness.php deleted file mode 100644 index fe20af643..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/Sharpness.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessAuto.php deleted file mode 100644 index 8f6838d48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessAuto.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessAuto extends AbstractTag -{ - - protected $Id = 148; - - protected $Name = 'SharpnessAuto'; - - protected $FullName = 'Canon::PSInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Sharpness Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFaithful.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFaithful.php deleted file mode 100644 index e408c0271..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFaithful.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessFaithful extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessFaithful'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness Faithful'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFreqTable.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFreqTable.php deleted file mode 100644 index 32b952a05..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFreqTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessFreqTable extends AbstractTag -{ - - protected $Id = 163; - - protected $Name = 'SharpnessFreqTable'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharpness Freq Table'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFrequency.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFrequency.php deleted file mode 100644 index 3b90cb1f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessFrequency.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessFrequency extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessFrequency'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness Frequency'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Lowest', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Standard', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Highest', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessLandscape.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessLandscape.php deleted file mode 100644 index 9d4d9d487..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessLandscape.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessLandscape extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessLandscape'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness Landscape'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessMonochrome.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessMonochrome.php deleted file mode 100644 index c83badba0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessMonochrome.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessMonochrome extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessMonochrome'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness Monochrome'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessNeutral.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessNeutral.php deleted file mode 100644 index 7579d351c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessNeutral.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessNeutral extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessNeutral'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness Neutral'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessPortrait.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessPortrait.php deleted file mode 100644 index 50b98aba9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessPortrait.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessPortrait extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessPortrait'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness Portrait'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessStandard.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessStandard.php deleted file mode 100644 index eab836f42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessStandard.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessStandard extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessStandard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness Standard'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessTable.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessTable.php deleted file mode 100644 index f9a9b6b06..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessTable extends AbstractTag -{ - - protected $Id = 162; - - protected $Name = 'SharpnessTable'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharpness Table'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef1.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef1.php deleted file mode 100644 index 83cd0238f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef1.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessUserDef1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessUserDef1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness User Def 1'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef2.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef2.php deleted file mode 100644 index 9eedcc656..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef2.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessUserDef2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessUserDef2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness User Def 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef3.php b/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef3.php deleted file mode 100644 index 0f19a5df5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SharpnessUserDef3.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessUserDef3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessUserDef3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness User Def 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ShortOwnerName.php b/lib/PHPExiftool/Driver/Tag/Canon/ShortOwnerName.php deleted file mode 100644 index 34f905ed7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ShortOwnerName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShortOwnerName extends AbstractTag -{ - - protected $Id = 172; - - protected $Name = 'ShortOwnerName'; - - protected $FullName = 'Canon::CameraInfo5D'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Short Owner Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ShutterCount.php b/lib/PHPExiftool/Driver/Tag/Canon/ShutterCount.php deleted file mode 100644 index b8ca9598e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ShutterCount.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShutterCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Shutter Count'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SlowShutter.php b/lib/PHPExiftool/Driver/Tag/Canon/SlowShutter.php deleted file mode 100644 index 389fd992e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SlowShutter.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlowShutter extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'SlowShutter'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Slow Shutter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Night Scene', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SoftFocusFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/SoftFocusFilter.php deleted file mode 100644 index 5bc53a152..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SoftFocusFilter.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftFocusFilter extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'SoftFocusFilter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Soft Focus Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SpecularWhiteLevel.php b/lib/PHPExiftool/Driver/Tag/Canon/SpecularWhiteLevel.php deleted file mode 100644 index 58b9524d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SpecularWhiteLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecularWhiteLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SpecularWhiteLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Specular White Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SpotMeteringMode.php b/lib/PHPExiftool/Driver/Tag/Canon/SpotMeteringMode.php deleted file mode 100644 index 7489f0072..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SpotMeteringMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpotMeteringMode extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'SpotMeteringMode'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Spot Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Center', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF Point', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/SuperMacro.php b/lib/PHPExiftool/Driver/Tag/Canon/SuperMacro.php deleted file mode 100644 index f04c08532..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/SuperMacro.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SuperMacro extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'SuperMacro'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Super Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (1)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (2)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/TargetAperture.php b/lib/PHPExiftool/Driver/Tag/Canon/TargetAperture.php deleted file mode 100644 index 5686b4465..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/TargetAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetAperture extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'TargetAperture'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Target Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/TargetExposureTime.php b/lib/PHPExiftool/Driver/Tag/Canon/TargetExposureTime.php deleted file mode 100644 index 4e3a4198c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/TargetExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetExposureTime extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'TargetExposureTime'; - - protected $FullName = 'Canon::ShotInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Target Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Canon/ThumbnailImage.php deleted file mode 100644 index f1a747d78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ThumbnailImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'CNDA'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'Canon::CNTH'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ThumbnailImageValidArea.php b/lib/PHPExiftool/Driver/Tag/Canon/ThumbnailImageValidArea.php deleted file mode 100644 index ca8c9f1da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ThumbnailImageValidArea.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImageValidArea extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'ThumbnailImageValidArea'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image Valid Area'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/TimeStamp.php b/lib/PHPExiftool/Driver/Tag/Canon/TimeStamp.php deleted file mode 100644 index 547fb1477..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/TimeStamp.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeStamp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TimeStamp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Time Stamp'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/TimeStamp1.php b/lib/PHPExiftool/Driver/Tag/Canon/TimeStamp1.php deleted file mode 100644 index 8eaf637fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/TimeStamp1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeStamp1 extends AbstractTag -{ - - protected $Id = 1114; - - protected $Name = 'TimeStamp1'; - - protected $FullName = 'Canon::CameraInfo1DmkIII'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Time Stamp 1'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/TimeZone.php b/lib/PHPExiftool/Driver/Tag/Canon/TimeZone.php deleted file mode 100644 index 1a9a6caf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/TimeZone.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeZone extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'TimeZone'; - - protected $FullName = 'Canon::TimeInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Time'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Time Zone'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/TimeZoneCity.php b/lib/PHPExiftool/Driver/Tag/Canon/TimeZoneCity.php deleted file mode 100644 index b5fc51a6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/TimeZoneCity.php +++ /dev/null @@ -1,188 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeZoneCity extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'TimeZoneCity'; - - protected $FullName = 'Canon::TimeInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Time'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Time Zone City'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Chatham Islands', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Wellington', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Solomon Islands', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sydney', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Adelaide', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Tokyo', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Hong Kong', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Bangkok', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Yangon', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Dhaka', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Kathmandu', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Delhi', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Karachi', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Kabul', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Dubai', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Tehran', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Moscow', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Cairo', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Paris', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'London', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Azores', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Fernando de Noronha', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Sao Paulo', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Newfoundland', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Santiago', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Caracas', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'New York', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Chicago', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Denver', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Los Angeles', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Anchorage', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Honolulu', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Samoa', - ), - 32766 => array( - 'Id' => 32766, - 'Label' => '(not set)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToneCurve.php b/lib/PHPExiftool/Driver/Tag/Canon/ToneCurve.php deleted file mode 100644 index 166e83c89..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToneCurve.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurve extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ToneCurve'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Tone Curve'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToneCurveMatching.php b/lib/PHPExiftool/Driver/Tag/Canon/ToneCurveMatching.php deleted file mode 100644 index 0880cfb4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToneCurveMatching.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveMatching extends AbstractTag -{ - - protected $Id = 178; - - protected $Name = 'ToneCurveMatching'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Curve Matching'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToneCurveTable.php b/lib/PHPExiftool/Driver/Tag/Canon/ToneCurveTable.php deleted file mode 100644 index a1e6a1035..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToneCurveTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveTable extends AbstractTag -{ - - protected $Id = 161; - - protected $Name = 'ToneCurveTable'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Curve Table'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffect.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffect.php deleted file mode 100644 index ab985ec8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffect.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffect extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'ToningEffect'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Blue', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Purple', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectAuto.php deleted file mode 100644 index 1a2aa15d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectAuto.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectAuto extends AbstractTag -{ - - protected $Id = 164; - - protected $Name = 'ToningEffectAuto'; - - protected $FullName = 'Canon::PSInfo2'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Blue', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Purple', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectFaithful.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectFaithful.php deleted file mode 100644 index 4ca2ff2f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectFaithful.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectFaithful extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'ToningEffectFaithful'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect Faithful'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectLandscape.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectLandscape.php deleted file mode 100644 index 7ddbc1713..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectLandscape.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectLandscape extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'ToningEffectLandscape'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect Landscape'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectMonochrome.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectMonochrome.php deleted file mode 100644 index 20e7c127c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectMonochrome.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectMonochrome extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ToningEffectMonochrome'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Toning Effect Monochrome'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Blue', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Purple', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectNeutral.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectNeutral.php deleted file mode 100644 index 805f455aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectNeutral.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectNeutral extends AbstractTag -{ - - protected $Id = 92; - - protected $Name = 'ToningEffectNeutral'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect Neutral'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectPortrait.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectPortrait.php deleted file mode 100644 index c6291da5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectPortrait.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectPortrait extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'ToningEffectPortrait'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect Portrait'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectStandard.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectStandard.php deleted file mode 100644 index bb0931723..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectStandard.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectStandard extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ToningEffectStandard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect Standard'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef1.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef1.php deleted file mode 100644 index 64b9a58e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef1.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectUserDef1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ToningEffectUserDef1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect User Def 1'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Blue', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Purple', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef2.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef2.php deleted file mode 100644 index 5dc76d99b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef2.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectUserDef2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ToningEffectUserDef2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect User Def 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Blue', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Purple', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef3.php b/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef3.php deleted file mode 100644 index 20e36dc25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToningEffectUserDef3.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffectUserDef3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ToningEffectUserDef3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Toning Effect User Def 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-559038737' => array( - 'Id' => '-559038737', - 'Label' => 'n/a', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Blue', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Purple', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ToyCameraFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/ToyCameraFilter.php deleted file mode 100644 index 3695b1396..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ToyCameraFilter.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToyCameraFilter extends AbstractTag -{ - - protected $Id = 769; - - protected $Name = 'ToyCameraFilter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Toy Camera Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/UnknownCNDB.php b/lib/PHPExiftool/Driver/Tag/Canon/UnknownCNDB.php deleted file mode 100644 index 3398b7df1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/UnknownCNDB.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownCNDB extends AbstractTag -{ - - protected $Id = 'CNDB'; - - protected $Name = 'Unknown_CNDB'; - - protected $FullName = 'Canon::Skip'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown CNDB'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/UserDef1PictureStyle.php b/lib/PHPExiftool/Driver/Tag/Canon/UserDef1PictureStyle.php deleted file mode 100644 index 4a1162310..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/UserDef1PictureStyle.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDef1PictureStyle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UserDef1PictureStyle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'User Def 1 Picture Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 65 => array( - 'Id' => 65, - 'Label' => 'PC 1', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'PC 2', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'PC 3', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Standard', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Portrait', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Landscape', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Neutral', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'Faithful', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Monochrome', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/UserDef2PictureStyle.php b/lib/PHPExiftool/Driver/Tag/Canon/UserDef2PictureStyle.php deleted file mode 100644 index b99da5c48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/UserDef2PictureStyle.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDef2PictureStyle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UserDef2PictureStyle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'User Def 2 Picture Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 65 => array( - 'Id' => 65, - 'Label' => 'PC 1', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'PC 2', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'PC 3', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Standard', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Portrait', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Landscape', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Neutral', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'Faithful', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Monochrome', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/UserDef3PictureStyle.php b/lib/PHPExiftool/Driver/Tag/Canon/UserDef3PictureStyle.php deleted file mode 100644 index 8d0988809..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/UserDef3PictureStyle.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDef3PictureStyle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UserDef3PictureStyle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'User Def 3 Picture Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 65 => array( - 'Id' => 65, - 'Label' => 'PC 1', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'PC 2', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'PC 3', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Standard', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Portrait', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Landscape', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Neutral', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'Faithful', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Monochrome', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/VRDOffset.php b/lib/PHPExiftool/Driver/Tag/Canon/VRDOffset.php deleted file mode 100644 index 6d3f9d85d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/VRDOffset.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VRDOffset extends AbstractTag -{ - - protected $Id = 208; - - protected $Name = 'VRDOffset'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'VRD Offset'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ValidAFPoints.php b/lib/PHPExiftool/Driver/Tag/Canon/ValidAFPoints.php deleted file mode 100644 index 77a65f57f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ValidAFPoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ValidAFPoints extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ValidAFPoints'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Valid AF Points'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/VideoCodec.php b/lib/PHPExiftool/Driver/Tag/Canon/VideoCodec.php deleted file mode 100644 index b70c10332..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/VideoCodec.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodec extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'VideoCodec'; - - protected $FullName = 'Canon::MovieInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Video Codec'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/VignettingCorrVersion.php b/lib/PHPExiftool/Driver/Tag/Canon/VignettingCorrVersion.php deleted file mode 100644 index e75c6f3b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/VignettingCorrVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignettingCorrVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'VignettingCorrVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Vignetting Corr Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBBracketMode.php b/lib/PHPExiftool/Driver/Tag/Canon/WBBracketMode.php deleted file mode 100644 index c7c800256..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBBracketMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBracketMode extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'WBBracketMode'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB Bracket Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (shift AB)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (shift GM)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBBracketValueAB.php b/lib/PHPExiftool/Driver/Tag/Canon/WBBracketValueAB.php deleted file mode 100644 index 224bb1da1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBBracketValueAB.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBracketValueAB extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'WBBracketValueAB'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB Bracket Value AB'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBBracketValueGM.php b/lib/PHPExiftool/Driver/Tag/Canon/WBBracketValueGM.php deleted file mode 100644 index 4fb45db71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBBracketValueGM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBracketValueGM extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'WBBracketValueGM'; - - protected $FullName = 'Canon::FileInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB Bracket Value GM'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBBlackLevels.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBBlackLevels.php deleted file mode 100644 index fcea4a0b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBBlackLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBBlackLevels extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'WB_RGGBBlackLevels'; - - protected $FullName = 'Canon::ColorBalance'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Black Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsAsShot.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsAsShot.php deleted file mode 100644 index c699b7434..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsAsShot.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsAsShot extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsAsShot'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels As Shot'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsAuto.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsAuto.php deleted file mode 100644 index 1585211b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsAuto.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsAuto extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsAuto'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Auto'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCloudy.php deleted file mode 100644 index b218bd8d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsCloudy extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsCloudy'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom.php deleted file mode 100644 index a15eab728..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsCustom extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsCustom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Custom'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom1.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom1.php deleted file mode 100644 index 05a512f81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsCustom1 extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'WB_RGGBLevelsCustom1'; - - protected $FullName = 'Canon::ColorData1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Custom 1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom2.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom2.php deleted file mode 100644 index e21fa9fcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsCustom2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsCustom2 extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'WB_RGGBLevelsCustom2'; - - protected $FullName = 'Canon::ColorData1'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Custom 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsDaylight.php deleted file mode 100644 index b7a3bdae3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsDaylight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsDaylight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsFlash.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsFlash.php deleted file mode 100644 index f062bb08f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsFlash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsFlash'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsFluorescent.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsFluorescent.php deleted file mode 100644 index 8af651dff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsFluorescent.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsFluorescent extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsFluorescent'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Fluorescent'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsKelvin.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsKelvin.php deleted file mode 100644 index 65d01b8ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsKelvin.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsKelvin extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsKelvin'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Kelvin'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsMeasured.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsMeasured.php deleted file mode 100644 index dbb73449e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsMeasured.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsMeasured extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsMeasured'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Measured'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC1.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC1.php deleted file mode 100644 index c266d80b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsPC1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsPC1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels PC1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC2.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC2.php deleted file mode 100644 index 54e49a0f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsPC2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsPC2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels PC2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC3.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC3.php deleted file mode 100644 index 8948d203b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsPC3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsPC3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsPC3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels PC3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsShade.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsShade.php deleted file mode 100644 index 11c9d3af1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsShade extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsShade'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsTungsten.php deleted file mode 100644 index 77fe457a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsTungsten extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsTungsten'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown.php deleted file mode 100644 index 339f51c02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown10.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown10.php deleted file mode 100644 index bc5b5a473..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown10.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown10 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown10'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 10'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown11.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown11.php deleted file mode 100644 index 2b736bbef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown11.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown11 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown11'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 11'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown12.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown12.php deleted file mode 100644 index ab787fec9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown12.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown12 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown12'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 12'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown13.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown13.php deleted file mode 100644 index 9a1ee80dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown13.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown13 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown13'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 13'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown14.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown14.php deleted file mode 100644 index 7940e8338..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown14.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown14 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown14'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 14'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown15.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown15.php deleted file mode 100644 index 7c6ff5560..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown15.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown15 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown15'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 15'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown16.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown16.php deleted file mode 100644 index 8c84f278b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown16.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown16 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown16'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 16'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown17.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown17.php deleted file mode 100644 index 5cc47efdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown17.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown17 extends AbstractTag -{ - - protected $Id = 193; - - protected $Name = 'WB_RGGBLevelsUnknown17'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 17'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown18.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown18.php deleted file mode 100644 index 73e370476..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown18.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown18 extends AbstractTag -{ - - protected $Id = 198; - - protected $Name = 'WB_RGGBLevelsUnknown18'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 18'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown19.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown19.php deleted file mode 100644 index 119ed9fe6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown19.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown19 extends AbstractTag -{ - - protected $Id = 203; - - protected $Name = 'WB_RGGBLevelsUnknown19'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 19'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown2.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown2.php deleted file mode 100644 index 80d51ebb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown20.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown20.php deleted file mode 100644 index a9dfdc549..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown20.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown20 extends AbstractTag -{ - - protected $Id = 208; - - protected $Name = 'WB_RGGBLevelsUnknown20'; - - protected $FullName = 'Canon::ColorData7'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 20'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown3.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown3.php deleted file mode 100644 index 24e19e20a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown4.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown4.php deleted file mode 100644 index 663e620a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 4'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown5.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown5.php deleted file mode 100644 index 3f5aeaed8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown5.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown5 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown5'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 5'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown6.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown6.php deleted file mode 100644 index c61b71219..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown6.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown6 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown6'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 6'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown7.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown7.php deleted file mode 100644 index ff3034611..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown7.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown7 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown7'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 7'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown8.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown8.php deleted file mode 100644 index d477de3d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown8.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown8 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown8'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 8'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown9.php b/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown9.php deleted file mode 100644 index bfe18fecf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBRGGBLevelsUnknown9.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown9 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsUnknown9'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown 9'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBShiftAB.php b/lib/PHPExiftool/Driver/Tag/Canon/WBShiftAB.php deleted file mode 100644 index 3d626bf48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBShiftAB.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBShiftAB extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'WBShiftAB'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB Shift AB'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WBShiftGM.php b/lib/PHPExiftool/Driver/Tag/Canon/WBShiftGM.php deleted file mode 100644 index 6ed67a1ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WBShiftGM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBShiftGM extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'WBShiftGM'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'WB Shift GM'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WatercolorFilter.php b/lib/PHPExiftool/Driver/Tag/Canon/WatercolorFilter.php deleted file mode 100644 index 910932455..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WatercolorFilter.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WatercolorFilter extends AbstractTag -{ - - protected $Id = 1793; - - protected $Name = 'WatercolorFilter'; - - protected $FullName = 'Canon::FilterInfo'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Watercolor Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalance.php deleted file mode 100644 index f8348cb33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalance.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Fluorescent', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Flash', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Custom', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Black & White', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Shade', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Manual Temperature (Kelvin)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'PC Set1', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'PC Set2', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'PC Set3', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Daylight Fluorescent', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Custom 1', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Custom 2', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Underwater', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Custom 3', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Custom 4', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'PC Set4', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'PC Set5', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceBlue.php b/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceBlue.php deleted file mode 100644 index 2f6ff28ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceBlue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceBlue extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'WhiteBalanceBlue'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'White Balance Blue'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceMatching.php b/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceMatching.php deleted file mode 100644 index db15f9604..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceMatching.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceMatching extends AbstractTag -{ - - protected $Id = 179; - - protected $Name = 'WhiteBalanceMatching'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'White Balance Matching'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceRed.php b/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceRed.php deleted file mode 100644 index 19fba909f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceRed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceRed extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'WhiteBalanceRed'; - - protected $FullName = 'Canon::Processing'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'White Balance Red'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceTable.php b/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceTable.php deleted file mode 100644 index ef4b9d552..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/WhiteBalanceTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceTable extends AbstractTag -{ - - protected $Id = 164; - - protected $Name = 'WhiteBalanceTable'; - - protected $FullName = 'Canon::Main'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'White Balance Table'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ZoomSourceWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/ZoomSourceWidth.php deleted file mode 100644 index 6c22534f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ZoomSourceWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomSourceWidth extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'ZoomSourceWidth'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Zoom Source Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Canon/ZoomTargetWidth.php b/lib/PHPExiftool/Driver/Tag/Canon/ZoomTargetWidth.php deleted file mode 100644 index 585201bde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Canon/ZoomTargetWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Canon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomTargetWidth extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'ZoomTargetWidth'; - - protected $FullName = 'Canon::CameraSettings'; - - protected $GroupName = 'Canon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Canon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Zoom Target Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBAutoCancel.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBAutoCancel.php deleted file mode 100644 index 0a5b1b3c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBAutoCancel.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEBAutoCancel extends AbstractTag -{ - - protected $Id = 260; - - protected $Name = 'AEBAutoCancel'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AEB Auto Cancel'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBSequence.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBSequence.php deleted file mode 100644 index 1b0d1e93d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBSequence.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEBSequence extends AbstractTag -{ - - protected $Id = 261; - - protected $Name = 'AEBSequence'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AEB Sequence'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0,-,+', - ), - 1 => array( - 'Id' => 1, - 'Label' => '-,0,+', - ), - 2 => array( - 'Id' => 2, - 'Label' => '+,0,-', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBSequenceAutoCancel.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBSequenceAutoCancel.php deleted file mode 100644 index 17a73504a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBSequenceAutoCancel.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEBSequenceAutoCancel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEBSequenceAutoCancel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AEB Sequence/Auto Cancel'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0,-,+/Enabled', - ), - 1 => array( - 'Id' => 1, - 'Label' => '0,-,+/Disabled', - ), - 2 => array( - 'Id' => 2, - 'Label' => '-,0,+/Enabled', - ), - 3 => array( - 'Id' => 3, - 'Label' => '-,0,+/Disabled', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBShotCount.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBShotCount.php deleted file mode 100644 index 278e88f68..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEBShotCount.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEBShotCount extends AbstractTag -{ - - protected $Id = 262; - - protected $Name = 'AEBShotCount'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AEB Shot Count'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '3 shots', - ), - 1 => array( - 'Id' => 1, - 'Label' => '2 shots', - ), - 2 => array( - 'Id' => 2, - 'Label' => '5 shots', - ), - 3 => array( - 'Id' => 3, - 'Label' => '7 shots', - ), - '2 1' => array( - 'Id' => '2 1', - 'Label' => '2 shots', - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => '3 shots', - ), - '5 2' => array( - 'Id' => '5 2', - 'Label' => '5 shots', - ), - '7 3' => array( - 'Id' => '7 3', - 'Label' => '7 shots', - ), - ); - - protected $MaxLength = 'mixed'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEMicroadjustment.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AEMicroadjustment.php deleted file mode 100644 index bf8e86615..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AEMicroadjustment.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMicroadjustment extends AbstractTag -{ - - protected $Id = 273; - - protected $Name = 'AEMicroadjustment'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AE Microadjustment'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAndMeteringButtons.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAndMeteringButtons.php deleted file mode 100644 index b57fdd1b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAndMeteringButtons.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAndMeteringButtons extends AbstractTag -{ - - protected $Id = 1793; - - protected $Name = 'AFAndMeteringButtons'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF And Metering Buttons'; - - protected $flag_Permanent = true; - - protected $Index = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Metering start', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Metering + AF start', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AE lock', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AF stop', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'No function', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAssist.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAssist.php deleted file mode 100644 index 2f02a9074..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAssist.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAssist extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'AFAssist'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'mixed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Emits/Fires', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Does not emit/Fires', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Only ext. flash emits/Fires', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Emits/Does not fire', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAssistBeam.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAssistBeam.php deleted file mode 100644 index 9d8c92c05..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFAssistBeam.php +++ /dev/null @@ -1,134 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAssistBeam extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAssistBeam'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'AF Assist Beam'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Emits', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Does not emit', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'IR AF assist beam only', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Emits', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Does not emit', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'Only ext. flash emits', - ), - 6 => array( - 'Id' => 3, - 'Label' => 'IR AF assist beam only', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Emits', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Does not emit', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Only ext. flash emits', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Emits', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Does not emit', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'Only ext. flash emits', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Emits', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'Does not emit', - ), - 15 => array( - 'Id' => 2, - 'Label' => 'Only ext. flash emits', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'Emits', - ), - 17 => array( - 'Id' => 1, - 'Label' => 'Does not emit', - ), - 18 => array( - 'Id' => 2, - 'Label' => 'Only ext. flash emits', - ), - 19 => array( - 'Id' => 0, - 'Label' => 'Emits', - ), - 20 => array( - 'Id' => 1, - 'Label' => 'Does not emit', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFDuringLiveView.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFDuringLiveView.php deleted file mode 100644 index fda8c66b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFDuringLiveView.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFDuringLiveView extends AbstractTag -{ - - protected $Id = 1297; - - protected $Name = 'AFDuringLiveView'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF During Live View'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Quick mode', - ), - 4 => array( - 'Id' => 2, - 'Label' => 'Live mode', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFMicroadjustment.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFMicroadjustment.php deleted file mode 100644 index d8e5af996..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFMicroadjustment.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMicroadjustment extends AbstractTag -{ - - protected $Id = 1287; - - protected $Name = 'AFMicroadjustment'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF Microadjustment'; - - protected $flag_Permanent = true; - - protected $MaxLength = 5; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adjust all by same amount', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Adjust by lens', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFOnAELockButtonSwitch.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFOnAELockButtonSwitch.php deleted file mode 100644 index a17e9c35b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFOnAELockButtonSwitch.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFOnAELockButtonSwitch extends AbstractTag -{ - - protected $Id = 1794; - - protected $Name = 'AFOnAELockButtonSwitch'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF On AE Lock Button Switch'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointActivationArea.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointActivationArea.php deleted file mode 100644 index 414d72d39..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointActivationArea.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointActivationArea extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'AFPointActivationArea'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Activation Area'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single AF point', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Expanded (TTL. of 7 AF points)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Automatic expanded (max. 13)', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Expanded', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointAreaExpansion.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointAreaExpansion.php deleted file mode 100644 index 06badf5b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointAreaExpansion.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointAreaExpansion extends AbstractTag -{ - - protected $Id = 1288; - - protected $Name = 'AFPointAreaExpansion'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF Point Area Expansion'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Left/right AF points', - ), - 4 => array( - 'Id' => 2, - 'Label' => 'Surrounding AF points', - ), - 5 => array( - 'Id' => 3, - 'Label' => 'All 45 points area', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointAutoSelection.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointAutoSelection.php deleted file mode 100644 index 777a76048..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointAutoSelection.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointAutoSelection extends AbstractTag -{ - - protected $Id = 1291; - - protected $Name = 'AFPointAutoSelection'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF Point Auto Selection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Control-direct:disable/Main:enable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Control-direct:disable/Main:disable', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Control-direct:enable/Main:enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointBrightness.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointBrightness.php deleted file mode 100644 index ee9a25ab9..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointBrightness.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointBrightness extends AbstractTag -{ - - protected $Id = 1293; - - protected $Name = 'AFPointBrightness'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF Point Brightness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Brighter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointDisplayDuringFocus.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointDisplayDuringFocus.php deleted file mode 100644 index 168eb55d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointDisplayDuringFocus.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointDisplayDuringFocus extends AbstractTag -{ - - protected $Id = 1292; - - protected $Name = 'AFPointDisplayDuringFocus'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AF Point Display During Focus'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (when focus achieved)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointIllumination.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointIllumination.php deleted file mode 100644 index c20a8eee3..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointIllumination.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointIllumination extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'AFPointIllumination'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Illumination'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On without dimming', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Brighter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointRegistration.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointRegistration.php deleted file mode 100644 index 7ee13e499..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointRegistration.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointRegistration extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'AFPointRegistration'; - - protected $FullName = 'CanonCustom::Functions10D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Registration'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Center', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Bottom', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Right', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Extreme Right', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Automatic', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extreme Left', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Left', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Top', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSelection.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSelection.php deleted file mode 100644 index ac88f5ded..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSelection.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelection extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'AFPointSelection'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Selection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'H=AF+Main/V=AF+Command', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'H=Comp+Main/V=Comp+Command', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'H=Command only/V=Assist+Main', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'H=FEL+Main/V=FEL+Command', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSelectionMethod.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSelectionMethod.php deleted file mode 100644 index 07e5e9546..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSelectionMethod.php +++ /dev/null @@ -1,106 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelectionMethod extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFPointSelectionMethod'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'AF Point Selection Method'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Multi-controller direct', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Quick Control Dial direct', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'AF point button: Activate AF Sel; Rear dial: Select AF points', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'AF point button: Auto selection; Rear dial: Manual selection', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Multi-controller direct', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Quick Control Dial direct', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'Multi-controller direct', - ), - 10 => array( - 'Id' => 2, - 'Label' => 'Quick Control Dial direct', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 12 => array( - 'Id' => 1, - 'Label' => 'Multi-controller direct', - ), - 13 => array( - 'Id' => 2, - 'Label' => 'Quick Control Dial direct', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSpotMetering.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSpotMetering.php deleted file mode 100644 index 60fcf685c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AFPointSpotMetering.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSpotMetering extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'AFPointSpotMetering'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'No. AF Points/Spot Metering'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '45/Center AF point', - ), - 1 => array( - 'Id' => 1, - 'Label' => '11/Active AF point', - ), - 2 => array( - 'Id' => 2, - 'Label' => '11/Center AF point', - ), - 3 => array( - 'Id' => 3, - 'Label' => '9/Active AF point', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoContinuousShooting.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoContinuousShooting.php deleted file mode 100644 index 4c59d5c7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoContinuousShooting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AIServoContinuousShooting extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'AIServoContinuousShooting'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AI Servo Continuous Shooting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Shooting not possible without focus', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Shooting possible without focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoFirstImagePriority.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoFirstImagePriority.php deleted file mode 100644 index 98be00596..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoFirstImagePriority.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AIServoFirstImagePriority extends AbstractTag -{ - - protected $Id = 1305; - - protected $Name = 'AIServoFirstImagePriority'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AI Servo First Image Priority'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Release priority', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Equal priority', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Focus priority', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoImagePriority.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoImagePriority.php deleted file mode 100644 index e5a62c14e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoImagePriority.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AIServoImagePriority extends AbstractTag -{ - - protected $Id = 1283; - - protected $Name = 'AIServoImagePriority'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AI Servo Image Priority'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1: AF, 2: Tracking', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1: AF, 2: Drive speed', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1: Release, 2: Drive speed', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1: Release, 2: Tracking', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoSecondImagePriority.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoSecondImagePriority.php deleted file mode 100644 index fcb3e3112..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoSecondImagePriority.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AIServoSecondImagePriority extends AbstractTag -{ - - protected $Id = 1306; - - protected $Name = 'AIServoSecondImagePriority'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AI Servo Second Image Priority'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1' => array( - 'Id' => '-1', - 'Label' => 'Shooting speed priority', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Equal priority', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Focus priority', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoTrackingMethod.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoTrackingMethod.php deleted file mode 100644 index e8b827a1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoTrackingMethod.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AIServoTrackingMethod extends AbstractTag -{ - - protected $Id = 1284; - - protected $Name = 'AIServoTrackingMethod'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'AI Servo Tracking Method'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Main focus point priority', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous AF track priority', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoTrackingSensitivity.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoTrackingSensitivity.php deleted file mode 100644 index 14076863d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AIServoTrackingSensitivity.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AIServoTrackingSensitivity extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AIServoTrackingSensitivity'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'AI Servo Tracking Sensitivity'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Slow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Moderately slow', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Moderately fast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Fast', - ), - 5 => array( - 'Id' => '-2', - 'Label' => 'Slow', - ), - 6 => array( - 'Id' => '-1', - 'Label' => 'Medium Slow', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Medium Fast', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Fast', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AccelerationTracking.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AccelerationTracking.php deleted file mode 100644 index 6bc85f9ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AccelerationTracking.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerationTracking extends AbstractTag -{ - - protected $Id = 1304; - - protected $Name = 'AccelerationTracking'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Acceleration Tracking'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AddAspectRatioInfo.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AddAspectRatioInfo.php deleted file mode 100644 index 539e7460f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AddAspectRatioInfo.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddAspectRatioInfo extends AbstractTag -{ - - protected $Id = 2062; - - protected $Name = 'AddAspectRatioInfo'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Add Aspect Ratio Info'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => '6:6', - ), - 2 => array( - 'Id' => 2, - 'Label' => '3:4', - ), - 3 => array( - 'Id' => 3, - 'Label' => '4:5', - ), - 4 => array( - 'Id' => 4, - 'Label' => '6:7', - ), - 5 => array( - 'Id' => 5, - 'Label' => '10:12', - ), - 6 => array( - 'Id' => 6, - 'Label' => '5:7', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AddOriginalDecisionData.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AddOriginalDecisionData.php deleted file mode 100644 index 360eedabd..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AddOriginalDecisionData.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddOriginalDecisionData extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AddOriginalDecisionData'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Add Original Decision Data'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ApertureRange.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ApertureRange.php deleted file mode 100644 index 3122cab04..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ApertureRange.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureRange extends AbstractTag -{ - - protected $Id = 269; - - protected $Name = 'ApertureRange'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Aperture Range'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ApplyShootingMeteringMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ApplyShootingMeteringMode.php deleted file mode 100644 index ca068adab..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ApplyShootingMeteringMode.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplyShootingMeteringMode extends AbstractTag -{ - - protected $Id = 270; - - protected $Name = 'ApplyShootingMeteringMode'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Apply Shooting Metering Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AssignFuncButton.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AssignFuncButton.php deleted file mode 100644 index 3ad4c8558..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AssignFuncButton.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssignFuncButton extends AbstractTag -{ - - protected $Id = 1803; - - protected $Name = 'AssignFuncButton'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Assign Func Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'LCD brightness', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Exposure comp./AEB setting', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Image jump with main dial', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Live view function settings', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AssistButtonFunction.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AssistButtonFunction.php deleted file mode 100644 index e6df244cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AssistButtonFunction.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssistButtonFunction extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'AssistButtonFunction'; - - protected $FullName = 'CanonCustom::Functions10D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Assist Button Function'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Select Home Position', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Select HP (while pressing)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Av+/- (AF point by QCD)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'FE lock', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AutoLightingOptimizer.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AutoLightingOptimizer.php deleted file mode 100644 index 584a71585..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AutoLightingOptimizer.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoLightingOptimizer extends AbstractTag -{ - - protected $Id = 516; - - protected $Name = 'AutoLightingOptimizer'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Auto Lighting Optimizer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Strong', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Disable', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Enable', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Disable', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/AvSettingWithoutLens.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/AvSettingWithoutLens.php deleted file mode 100644 index 4d0b76387..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/AvSettingWithoutLens.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvSettingWithoutLens extends AbstractTag -{ - - protected $Id = 1799; - - protected $Name = 'AvSettingWithoutLens'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Av Setting Without Lens'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ButtonFunctionControlOff.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ButtonFunctionControlOff.php deleted file mode 100644 index a9d7527b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ButtonFunctionControlOff.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ButtonFunctionControlOff extends AbstractTag -{ - - protected $Id = 1802; - - protected $Name = 'ButtonFunctionControlOff'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Button Function Control Off'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal (enable)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Disable main, Control, Multi-control', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ContinuousShootingSpeed.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ContinuousShootingSpeed.php deleted file mode 100644 index f2071423e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ContinuousShootingSpeed.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContinuousShootingSpeed extends AbstractTag -{ - - protected $Id = 1552; - - protected $Name = 'ContinuousShootingSpeed'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Continuous Shooting Speed'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ContinuousShotLimit.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ContinuousShotLimit.php deleted file mode 100644 index 97b764ef1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ContinuousShotLimit.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContinuousShotLimit extends AbstractTag -{ - - protected $Id = 1553; - - protected $Name = 'ContinuousShotLimit'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Continuous Shot Limit'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/CustomControls.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/CustomControls.php deleted file mode 100644 index 79164a5e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/CustomControls.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomControls extends AbstractTag -{ - - protected $Id = 1804; - - protected $Name = 'CustomControls'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Custom Controls'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/DefaultEraseOption.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/DefaultEraseOption.php deleted file mode 100644 index ac284ed05..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/DefaultEraseOption.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultEraseOption extends AbstractTag -{ - - protected $Id = 2067; - - protected $Name = 'DefaultEraseOption'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Default Erase Option'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Cancel selected', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Erase selected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/DialDirectionTvAv.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/DialDirectionTvAv.php deleted file mode 100644 index 3138c6a3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/DialDirectionTvAv.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DialDirectionTvAv extends AbstractTag -{ - - protected $Id = 1798; - - protected $Name = 'DialDirectionTvAv'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Dial Direction Tv Av'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Reversed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/DisplayAllAFPoints.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/DisplayAllAFPoints.php deleted file mode 100644 index f9ca52ff8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/DisplayAllAFPoints.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayAllAFPoints extends AbstractTag -{ - - protected $Id = 1300; - - protected $Name = 'DisplayAllAFPoints'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Display All AF Points'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Enable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Disable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ETTLII.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ETTLII.php deleted file mode 100644 index cafdb070c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ETTLII.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ETTLII extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ETTLII'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'E-TTL II'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Evaluative', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Average', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ExposureLevelIncrements.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ExposureLevelIncrements.php deleted file mode 100644 index 25539019a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ExposureLevelIncrements.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureLevelIncrements extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureLevelIncrements'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Exposure Level Increments'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/2 Stop', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1/3 Stop', - ), - 2 => array( - 'Id' => 0, - 'Label' => '1/3-stop set, 1/3-stop comp.', - ), - 3 => array( - 'Id' => 1, - 'Label' => '1-stop set, 1/3-stop comp.', - ), - 4 => array( - 'Id' => 2, - 'Label' => '1/2-stop set, 1/2-stop comp.', - ), - 5 => array( - 'Id' => 0, - 'Label' => '1/3-stop set, 1/3-stop comp.', - ), - 6 => array( - 'Id' => 1, - 'Label' => '1-stop set, 1/3-stop comp.', - ), - 7 => array( - 'Id' => 2, - 'Label' => '1/2-stop set, 1/2-stop comp.', - ), - 8 => array( - 'Id' => 0, - 'Label' => '1/3 Stop', - ), - 9 => array( - 'Id' => 1, - 'Label' => '1/2 Stop', - ), - 10 => array( - 'Id' => 0, - 'Label' => '1/3 Stop', - ), - 11 => array( - 'Id' => 1, - 'Label' => '1/2 Stop', - ), - 12 => array( - 'Id' => 0, - 'Label' => '1/3 Stop', - ), - 13 => array( - 'Id' => 1, - 'Label' => '1/2 Stop', - ), - 14 => array( - 'Id' => 0, - 'Label' => '1/3 Stop', - ), - 15 => array( - 'Id' => 1, - 'Label' => '1/2 Stop', - ), - 16 => array( - 'Id' => 0, - 'Label' => '1/3 Stop', - ), - 17 => array( - 'Id' => 1, - 'Label' => '1/2 Stop', - ), - 18 => array( - 'Id' => 0, - 'Label' => '1/3 Stop', - ), - 19 => array( - 'Id' => 1, - 'Label' => '1/2 Stop', - ), - 20 => array( - 'Id' => 0, - 'Label' => '1/2 Stop', - ), - 21 => array( - 'Id' => 1, - 'Label' => '1/3 Stop', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ExposureModeInManual.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ExposureModeInManual.php deleted file mode 100644 index c1dda8656..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ExposureModeInManual.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureModeInManual extends AbstractTag -{ - - protected $Id = 267; - - protected $Name = 'ExposureModeInManual'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode In Manual'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Specified metering mode', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Evaluative metering', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Partial metering', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot metering', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Center-weighted average', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FEMicroadjustment.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FEMicroadjustment.php deleted file mode 100644 index 2885acf29..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FEMicroadjustment.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FEMicroadjustment extends AbstractTag -{ - - protected $Id = 272; - - protected $Name = 'FEMicroadjustment'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'FE Microadjustment'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FillFlashAutoReduction.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FillFlashAutoReduction.php deleted file mode 100644 index 36df38d81..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FillFlashAutoReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillFlashAutoReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FillFlashAutoReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Fill Flash Auto Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Enable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Disable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FinderDisplayDuringExposure.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FinderDisplayDuringExposure.php deleted file mode 100644 index 25c726cae..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FinderDisplayDuringExposure.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FinderDisplayDuringExposure extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FinderDisplayDuringExposure'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Finder Display During Exposure'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashButtonFunction.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashButtonFunction.php deleted file mode 100644 index 9b4fa0758..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashButtonFunction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashButtonFunction extends AbstractTag -{ - - protected $Id = 1806; - - protected $Name = 'FlashButtonFunction'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Flash Button Function'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Raise built-in flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'ISO speed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashFiring.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashFiring.php deleted file mode 100644 index 05578e9a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashFiring.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFiring extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashFiring'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Firing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Fires', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Does not fire', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashSyncSpeedAv.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashSyncSpeedAv.php deleted file mode 100644 index ffcf231f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FlashSyncSpeedAv.php +++ /dev/null @@ -1,166 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashSyncSpeedAv extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashSyncSpeedAv'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Sync Speed Av'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1/200 Fixed', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 3 => array( - 'Id' => 1, - 'Label' => '1/250 Fixed', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 1, - 'Label' => '1/250-1/60 Auto', - ), - 6 => array( - 'Id' => 2, - 'Label' => '1/250 Fixed', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 8 => array( - 'Id' => 1, - 'Label' => '1/200 Fixed', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 10 => array( - 'Id' => 1, - 'Label' => '1/300 Fixed', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 12 => array( - 'Id' => 1, - 'Label' => '1/300-1/60 Auto', - ), - 13 => array( - 'Id' => 2, - 'Label' => '1/300 Fixed', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 15 => array( - 'Id' => 1, - 'Label' => '1/200-1/60 Auto', - ), - 16 => array( - 'Id' => 2, - 'Label' => '1/200 Fixed', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 18 => array( - 'Id' => 1, - 'Label' => '1/250 Fixed', - ), - 19 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 20 => array( - 'Id' => 1, - 'Label' => '1/250 Fixed', - ), - 21 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 22 => array( - 'Id' => 1, - 'Label' => '1/200 Fixed', - ), - 23 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 24 => array( - 'Id' => 1, - 'Label' => '1/200 Fixed', - ), - 25 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 26 => array( - 'Id' => 1, - 'Label' => '1/200 Fixed', - ), - 27 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 28 => array( - 'Id' => 1, - 'Label' => '1/200 Fixed', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FocusDisplayAIServoAndMF.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FocusDisplayAIServoAndMF.php deleted file mode 100644 index fb1f5a7f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FocusDisplayAIServoAndMF.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDisplayAIServoAndMF extends AbstractTag -{ - - protected $Id = 1301; - - protected $Name = 'FocusDisplayAIServoAndMF'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Focus Display AI Servo And MF'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Enable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Disable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/FocusingScreen.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/FocusingScreen.php deleted file mode 100644 index fb572f18f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/FocusingScreen.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusingScreen extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusingScreen'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focusing Screen'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Ec-N, R', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Ec-A,B,C,CII,CIII,D,H,I,L', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Ef-A', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Ef-D', - ), - 4 => array( - 'Id' => 2, - 'Label' => 'Ef-S', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Eg-A', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Eg-D', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Eg-S', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Eg-A II', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'Eg-D', - ), - 10 => array( - 'Id' => 2, - 'Label' => 'Eg-S', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Ec-CV', - ), - 12 => array( - 'Id' => 1, - 'Label' => 'Ec-A,B,D,H,I,L', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Ec-CIV', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'Ec-A,B,C,CII,CIII,D,H,I,L', - ), - 15 => array( - 'Id' => 2, - 'Label' => 'Ec-S', - ), - 16 => array( - 'Id' => 3, - 'Label' => 'Ec-N,R', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'Ee-A', - ), - 18 => array( - 'Id' => 1, - 'Label' => 'Ee-D', - ), - 19 => array( - 'Id' => 2, - 'Label' => 'Ee-S', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/HighISONoiseReduction.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/HighISONoiseReduction.php deleted file mode 100644 index d9016b9d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/HighISONoiseReduction.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighISONoiseReduction extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'HighISONoiseReduction'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'High ISO Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Strong', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/HighlightTonePriority.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/HighlightTonePriority.php deleted file mode 100644 index 56889cf73..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/HighlightTonePriority.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighlightTonePriority extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'HighlightTonePriority'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Highlight Tone Priority'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOExpansion.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOExpansion.php deleted file mode 100644 index 005f9254f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOExpansion.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOExpansion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISOExpansion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'ISO Expansion'; - - protected $flag_Permanent = true; - - protected $Index = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedExpansion.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedExpansion.php deleted file mode 100644 index 50df66a9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedExpansion.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeedExpansion extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ISOSpeedExpansion'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Speed Expansion'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedIncrements.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedIncrements.php deleted file mode 100644 index 040a52179..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedIncrements.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeedIncrements extends AbstractTag -{ - - protected $Id = 258; - - protected $Name = 'ISOSpeedIncrements'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'ISO Speed Increments'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 Stop', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 Stop', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedRange.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedRange.php deleted file mode 100644 index 32f55c191..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ISOSpeedRange.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeedRange extends AbstractTag -{ - - protected $Id = 259; - - protected $Name = 'ISOSpeedRange'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'ISO Speed Range'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/InfoButtonWhenShooting.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/InfoButtonWhenShooting.php deleted file mode 100644 index b2a85483a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/InfoButtonWhenShooting.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InfoButtonWhenShooting extends AbstractTag -{ - - protected $Id = 1033; - - protected $Name = 'InfoButtonWhenShooting'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Info Button When Shooting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Displays camera settings', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Displays shooting functions', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Displays shooting functions', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Displays camera settings', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDDisplayAtPowerOn.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDDisplayAtPowerOn.php deleted file mode 100644 index 92c0241b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDDisplayAtPowerOn.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LCDDisplayAtPowerOn extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LCDDisplayAtPowerOn'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'LCD Display At Power On'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Display', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Retain power off status', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDDisplayReturnToShoot.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDDisplayReturnToShoot.php deleted file mode 100644 index 9b5897ce7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDDisplayReturnToShoot.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LCDDisplayReturnToShoot extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'LCDDisplayReturnToShoot'; - - protected $FullName = 'CanonCustom::Functions5D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LCD Display Return To Shoot'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'With Shutter Button only', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Also with * etc.', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDIlluminationDuringBulb.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDIlluminationDuringBulb.php deleted file mode 100644 index 6af287288..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDIlluminationDuringBulb.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LCDIlluminationDuringBulb extends AbstractTag -{ - - protected $Id = 1032; - - protected $Name = 'LCDIlluminationDuringBulb'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'LCD Illumination During Bulb'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDPanels.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDPanels.php deleted file mode 100644 index 5339cdc7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LCDPanels.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LCDPanels extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'LCDPanels'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Top/Back LCD Panels'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Remain. shots/File no.', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'ISO/Remain. shots', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'ISO/File no.', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Shots in folder/Remain. shots', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LVShootingAreaDisplay.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LVShootingAreaDisplay.php deleted file mode 100644 index 504250a04..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LVShootingAreaDisplay.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LVShootingAreaDisplay extends AbstractTag -{ - - protected $Id = 1035; - - protected $Name = 'LVShootingAreaDisplay'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'LV Shooting Area Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Masked', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Outlined', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LensAFStopButton.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LensAFStopButton.php deleted file mode 100644 index d3aa6bee8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LensAFStopButton.php +++ /dev/null @@ -1,212 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensAFStopButton extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensAFStopButton'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens AF Stop Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF stop', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF start', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AE lock while metering', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AF point: M->Auto/Auto->ctr', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'One Shot <-> AI servo', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'IS start', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'AF stop', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'AF start', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'AE lock while metering', - ), - 9 => array( - 'Id' => 3, - 'Label' => 'AF point: M -> Auto / Auto -> Ctr.', - ), - 10 => array( - 'Id' => 4, - 'Label' => 'AF mode: ONE SHOT <-> AI SERVO', - ), - 11 => array( - 'Id' => 5, - 'Label' => 'IS start', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'AF stop', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'AF start', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'AE lock', - ), - 15 => array( - 'Id' => 3, - 'Label' => 'AF point: M->Auto/Auto->ctr', - ), - 16 => array( - 'Id' => 4, - 'Label' => 'One Shot <-> AI servo', - ), - 17 => array( - 'Id' => 5, - 'Label' => 'IS start', - ), - 18 => array( - 'Id' => 6, - 'Label' => 'Switch to registered AF point', - ), - 19 => array( - 'Id' => 7, - 'Label' => 'Spot AF', - ), - 20 => array( - 'Id' => 0, - 'Label' => 'AF stop', - ), - 21 => array( - 'Id' => 1, - 'Label' => 'AF start', - ), - 22 => array( - 'Id' => 2, - 'Label' => 'AE lock while metering', - ), - 23 => array( - 'Id' => 3, - 'Label' => 'AF point: M -> Auto / Auto -> Ctr.', - ), - 24 => array( - 'Id' => 4, - 'Label' => 'ONE SHOT <-> AI SERVO', - ), - 25 => array( - 'Id' => 5, - 'Label' => 'IS start', - ), - 26 => array( - 'Id' => 0, - 'Label' => 'AF stop', - ), - 27 => array( - 'Id' => 1, - 'Label' => 'AF start', - ), - 28 => array( - 'Id' => 2, - 'Label' => 'AE lock while metering', - ), - 29 => array( - 'Id' => 3, - 'Label' => 'AF point: M -> Auto / Auto -> Ctr.', - ), - 30 => array( - 'Id' => 4, - 'Label' => 'ONE SHOT <-> AI SERVO', - ), - 31 => array( - 'Id' => 5, - 'Label' => 'IS start', - ), - 32 => array( - 'Id' => 0, - 'Label' => 'AF stop', - ), - 33 => array( - 'Id' => 1, - 'Label' => 'AF start', - ), - 34 => array( - 'Id' => 2, - 'Label' => 'AE lock while metering', - ), - 35 => array( - 'Id' => 3, - 'Label' => 'AF point: M -> Auto / Auto -> Ctr.', - ), - 36 => array( - 'Id' => 4, - 'Label' => 'ONE SHOT <-> AI SERVO', - ), - 37 => array( - 'Id' => 5, - 'Label' => 'IS start', - ), - 38 => array( - 'Id' => 0, - 'Label' => 'AF Stop', - ), - 39 => array( - 'Id' => 1, - 'Label' => 'Operate AF', - ), - 40 => array( - 'Id' => 2, - 'Label' => 'Lock AE and start timer', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LensDriveNoAF.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LensDriveNoAF.php deleted file mode 100644 index b1ffe3642..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LensDriveNoAF.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensDriveNoAF extends AbstractTag -{ - - protected $Id = 1285; - - protected $Name = 'LensDriveNoAF'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Lens Drive No AF'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Focus search on', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Focus search off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LiveViewExposureSimulation.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LiveViewExposureSimulation.php deleted file mode 100644 index 1f854b154..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LiveViewExposureSimulation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewExposureSimulation extends AbstractTag -{ - - protected $Id = 2064; - - protected $Name = 'LiveViewExposureSimulation'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Live View Exposure Simulation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable (LCD auto adjust)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable (simulates exposure)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LockMicrophoneButton.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LockMicrophoneButton.php deleted file mode 100644 index a05f2cb0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LockMicrophoneButton.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LockMicrophoneButton extends AbstractTag -{ - - protected $Id = 1801; - - protected $Name = 'LockMicrophoneButton'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Lock Microphone Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Protect (hold:record memo)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Record memo (protect:disable)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Play memo (hold:record memo)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rating (protect/memo:disable)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/LongExposureNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/LongExposureNoiseReduction.php deleted file mode 100644 index a04b9fe0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/LongExposureNoiseReduction.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LongExposureNoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LongExposureNoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Long Exposure Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 15 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 17 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/MagnifiedView.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/MagnifiedView.php deleted file mode 100644 index b132a09a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/MagnifiedView.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagnifiedView extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MagnifiedView'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Magnified View'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Image playback only', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Image review and playback', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ManualAFPointSelectPattern.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ManualAFPointSelectPattern.php deleted file mode 100644 index 4efd2cebb..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ManualAFPointSelectPattern.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualAFPointSelectPattern extends AbstractTag -{ - - protected $Id = 1299; - - protected $Name = 'ManualAFPointSelectPattern'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Manual AF Point Select Pattern'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Stops at AF area edges', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ManualTv.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ManualTv.php deleted file mode 100644 index ccd2e787c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ManualTv.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualTv extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ManualTv'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Manual Tv/Av For M'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Tv=Main/Av=Control', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Tv=Control/Av=Main', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Tv=Main/Av=Main w/o lens', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tv=Control/Av=Main w/o lens', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Tv=Main/Av=Control', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Tv=Control/Av=Main', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/MenuButtonDisplayPosition.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/MenuButtonDisplayPosition.php deleted file mode 100644 index bfd269ad6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/MenuButtonDisplayPosition.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MenuButtonDisplayPosition extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MenuButtonDisplayPosition'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Menu Button Display Position'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Previous (top if power off)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Previous', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/MenuButtonReturn.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/MenuButtonReturn.php deleted file mode 100644 index 52d518ce6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/MenuButtonReturn.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MenuButtonReturn extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'MenuButtonReturn'; - - protected $FullName = 'CanonCustom::FunctionsD30'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Menu Button Return'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Top', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Previous (volatile)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Previous', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/MirrorLockup.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/MirrorLockup.php deleted file mode 100644 index 9478f008e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/MirrorLockup.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MirrorLockup extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MirrorLockup'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Mirror Lockup'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 4 => array( - 'Id' => 2, - 'Label' => 'Enable: Down with Set', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 12 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 16 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/MultiControllerWhileMetering.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/MultiControllerWhileMetering.php deleted file mode 100644 index 0923bad8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/MultiControllerWhileMetering.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiControllerWhileMetering extends AbstractTag -{ - - protected $Id = 1303; - - protected $Name = 'MultiControllerWhileMetering'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Multi Controller While Metering'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF point selection', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/MultiFunctionLock.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/MultiFunctionLock.php deleted file mode 100644 index ac5649298..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/MultiFunctionLock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiFunctionLock extends AbstractTag -{ - - protected $Id = 1807; - - protected $Name = 'MultiFunctionLock'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Multi Function Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/OrientationLinkedAFPoint.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/OrientationLinkedAFPoint.php deleted file mode 100644 index 34e02b2f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/OrientationLinkedAFPoint.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrientationLinkedAFPoint extends AbstractTag -{ - - protected $Id = 1302; - - protected $Name = 'OrientationLinkedAFPoint'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Orientation Linked AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Same for vertical and horizontal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Select different AF points', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF0CustomFuncRegistration.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF0CustomFuncRegistration.php deleted file mode 100644 index abfab3754..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF0CustomFuncRegistration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF0CustomFuncRegistration extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PF0CustomFuncRegistration'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF0 Custom Func Registration'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF10RetainProgramShift.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF10RetainProgramShift.php deleted file mode 100644 index d1c273efe..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF10RetainProgramShift.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF10RetainProgramShift extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'PF10RetainProgramShift'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF10 Retain Program Shift'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF13DrivePriority.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF13DrivePriority.php deleted file mode 100644 index b9c13f7e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF13DrivePriority.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF13DrivePriority extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'PF13DrivePriority'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF13 Drive Priority'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF14DisableFocusSearch.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF14DisableFocusSearch.php deleted file mode 100644 index ee1ca6b27..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF14DisableFocusSearch.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF14DisableFocusSearch extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'PF14DisableFocusSearch'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF14 Disable Focus Search'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF15DisableAFAssistBeam.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF15DisableAFAssistBeam.php deleted file mode 100644 index 1f5a7fcf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF15DisableAFAssistBeam.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF15DisableAFAssistBeam extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'PF15DisableAFAssistBeam'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF15 Disable AF Assist Beam'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF16AutoFocusPointShoot.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF16AutoFocusPointShoot.php deleted file mode 100644 index 620cae45d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF16AutoFocusPointShoot.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF16AutoFocusPointShoot extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'PF16AutoFocusPointShoot'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF16 Auto Focus Point Shoot'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF17DisableAFPointSel.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF17DisableAFPointSel.php deleted file mode 100644 index 1ef9d24eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF17DisableAFPointSel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF17DisableAFPointSel extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'PF17DisableAFPointSel'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF17 Disable AF Point Sel'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF18EnableAutoAFPointSel.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF18EnableAutoAFPointSel.php deleted file mode 100644 index a9cd0273a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF18EnableAutoAFPointSel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF18EnableAutoAFPointSel extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'PF18EnableAutoAFPointSel'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF18 Enable Auto AF Point Sel'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ContinuousShootSpeed.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ContinuousShootSpeed.php deleted file mode 100644 index 367103f05..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ContinuousShootSpeed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF19ContinuousShootSpeed extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'PF19ContinuousShootSpeed'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF19 Continuous Shoot Speed'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ShootingSpeedHigh.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ShootingSpeedHigh.php deleted file mode 100644 index f5bdd5426..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ShootingSpeedHigh.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF19ShootingSpeedHigh extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'PF19ShootingSpeedHigh'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF19 Shooting Speed High'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ShootingSpeedLow.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ShootingSpeedLow.php deleted file mode 100644 index b328b81e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF19ShootingSpeedLow.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF19ShootingSpeedLow extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'PF19ShootingSpeedLow'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF19 Shooting Speed Low'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF1DisableShootingModes.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF1DisableShootingModes.php deleted file mode 100644 index a967d8565..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF1DisableShootingModes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF1DisableShootingModes extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PF1DisableShootingModes'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF1 Disable Shooting Modes'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF1Value.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF1Value.php deleted file mode 100644 index 7e3da6d00..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF1Value.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF1Value extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PF1Value'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF1 Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF20LimitContinousShots.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF20LimitContinousShots.php deleted file mode 100644 index aa2c4d767..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF20LimitContinousShots.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF20LimitContinousShots extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'PF20LimitContinousShots'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF20 Limit Continous Shots'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF20MaxContinousShots.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF20MaxContinousShots.php deleted file mode 100644 index 106a837b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF20MaxContinousShots.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF20MaxContinousShots extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'PF20MaxContinousShots'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF20 Max Continous Shots'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF21EnableQuietOperation.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF21EnableQuietOperation.php deleted file mode 100644 index f337a6209..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF21EnableQuietOperation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF21EnableQuietOperation extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'PF21EnableQuietOperation'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF21 Enable Quiet Operation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23FELockTime.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23FELockTime.php deleted file mode 100644 index 2ecbc0ede..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23FELockTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF23FELockTime extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'PF23FELockTime'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF23 FE Lock Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23PostReleaseTime.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23PostReleaseTime.php deleted file mode 100644 index 666f2fed5..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23PostReleaseTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF23PostReleaseTime extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'PF23PostReleaseTime'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF23 Post Release Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23SetTimerLengths.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23SetTimerLengths.php deleted file mode 100644 index 296ee139d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23SetTimerLengths.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF23SetTimerLengths extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'PF23SetTimerLengths'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF23 Set Timer Lengths'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23ShutterButtonTime.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23ShutterButtonTime.php deleted file mode 100644 index 41723cffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF23ShutterButtonTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF23ShutterButtonTime extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'PF23ShutterButtonTime'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF23 Shutter Button Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF24LightLCDDuringBulb.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF24LightLCDDuringBulb.php deleted file mode 100644 index 1f844c09e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF24LightLCDDuringBulb.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF24LightLCDDuringBulb extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'PF24LightLCDDuringBulb'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF24 Light LCD During Bulb'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AEMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AEMode.php deleted file mode 100644 index 94d7a4b7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AEMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25AEMode extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'PF25AEMode'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 AE Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AFMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AFMode.php deleted file mode 100644 index 7b5e26883..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AFMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25AFMode extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'PF25AFMode'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 AF Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AFPointSel.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AFPointSel.php deleted file mode 100644 index d5ed67557..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25AFPointSel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25AFPointSel extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'PF25AFPointSel'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 AF Point Sel'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25ColorMatrix.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25ColorMatrix.php deleted file mode 100644 index 0eea5ba6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25ColorMatrix.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25ColorMatrix extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'PF25ColorMatrix'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 Color Matrix'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25DefaultClearSettings.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25DefaultClearSettings.php deleted file mode 100644 index 8d531fb74..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25DefaultClearSettings.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25DefaultClearSettings extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'PF25DefaultClearSettings'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 Default Clear Settings'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25DriveMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25DriveMode.php deleted file mode 100644 index 480511477..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25DriveMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25DriveMode extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'PF25DriveMode'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 Drive Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25ImageSize.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25ImageSize.php deleted file mode 100644 index 9063a4478..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25ImageSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25ImageSize extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'PF25ImageSize'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 Image Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25MeteringMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25MeteringMode.php deleted file mode 100644 index 22fe31b4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25MeteringMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25MeteringMode extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'PF25MeteringMode'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 Metering Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25Parameters.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25Parameters.php deleted file mode 100644 index f26c5042d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25Parameters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25Parameters extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'PF25Parameters'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 Parameters'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25WBMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25WBMode.php deleted file mode 100644 index c98768fc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF25WBMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF25WBMode extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'PF25WBMode'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF25 WB Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF26ShortenReleaseLag.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF26ShortenReleaseLag.php deleted file mode 100644 index 3a3bf5dba..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF26ShortenReleaseLag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF26ShortenReleaseLag extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'PF26ShortenReleaseLag'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF26 Shorten Release Lag'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF27ReverseDialRotation.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF27ReverseDialRotation.php deleted file mode 100644 index 28c3b1d77..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF27ReverseDialRotation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF27ReverseDialRotation extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'PF27ReverseDialRotation'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF27 Reverse Dial Rotation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF27Value.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF27Value.php deleted file mode 100644 index 077432808..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF27Value.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF27Value extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'PF27Value'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF27 Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF28NoQuickDialExpComp.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF28NoQuickDialExpComp.php deleted file mode 100644 index bc51f0b52..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF28NoQuickDialExpComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF28NoQuickDialExpComp extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'PF28NoQuickDialExpComp'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF28 No Quick Dial Exp Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF29QuickDialSwitchOff.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF29QuickDialSwitchOff.php deleted file mode 100644 index b3301f77a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF29QuickDialSwitchOff.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF29QuickDialSwitchOff extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'PF29QuickDialSwitchOff'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF29 Quick Dial Switch Off'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF2DisableMeteringModes.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF2DisableMeteringModes.php deleted file mode 100644 index fefb1a6a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF2DisableMeteringModes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF2DisableMeteringModes extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PF2DisableMeteringModes'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF2 Disable Metering Modes'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF2Value.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF2Value.php deleted file mode 100644 index 26f215828..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF2Value.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF2Value extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PF2Value'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF2 Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF30EnlargementMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF30EnlargementMode.php deleted file mode 100644 index 578071cb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF30EnlargementMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF30EnlargementMode extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'PF30EnlargementMode'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF30 Enlargement Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF31OriginalDecisionData.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF31OriginalDecisionData.php deleted file mode 100644 index b87564c40..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF31OriginalDecisionData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF31OriginalDecisionData extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'PF31OriginalDecisionData'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF31 Original Decision Data'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF3ManualExposureMetering.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF3ManualExposureMetering.php deleted file mode 100644 index f4a1835d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF3ManualExposureMetering.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF3ManualExposureMetering extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PF3ManualExposureMetering'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF3 Manual Exposure Metering'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF3Value.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF3Value.php deleted file mode 100644 index e49f9e37d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF3Value.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF3Value extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PF3Value'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF3 Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeLimits.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeLimits.php deleted file mode 100644 index df2642b23..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeLimits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF4ExposureTimeLimits extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PF4ExposureTimeLimits'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF4 Exposure Time Limits'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeMax.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeMax.php deleted file mode 100644 index a21442968..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeMax.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF4ExposureTimeMax extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PF4ExposureTimeMax'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF4 Exposure Time Max'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeMin.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeMin.php deleted file mode 100644 index b5123ad10..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF4ExposureTimeMin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF4ExposureTimeMin extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PF4ExposureTimeMin'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF4 Exposure Time Min'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureLimits.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureLimits.php deleted file mode 100644 index e02b16f53..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureLimits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF5ApertureLimits extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PF5ApertureLimits'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF5 Aperture Limits'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureMax.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureMax.php deleted file mode 100644 index 728b42234..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureMax.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF5ApertureMax extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'PF5ApertureMax'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF5 Aperture Max'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureMin.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureMin.php deleted file mode 100644 index fbeaae288..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF5ApertureMin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF5ApertureMin extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PF5ApertureMin'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF5 Aperture Min'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF6PresetShootingModes.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF6PresetShootingModes.php deleted file mode 100644 index 1d514092e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF6PresetShootingModes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF6PresetShootingModes extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'PF6PresetShootingModes'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF6 Preset Shooting Modes'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF7BracketContinuousShoot.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF7BracketContinuousShoot.php deleted file mode 100644 index df7e24b37..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF7BracketContinuousShoot.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF7BracketContinuousShoot extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'PF7BracketContinuousShoot'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF7 Bracket Continuous Shoot'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF8BracketShots.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF8BracketShots.php deleted file mode 100644 index 67f1cf954..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF8BracketShots.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF8BracketShots extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'PF8BracketShots'; - - protected $FullName = 'CanonCustom::PersonalFuncValues'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF8 Bracket Shots'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF8SetBracketShots.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF8SetBracketShots.php deleted file mode 100644 index e0cfb0eb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF8SetBracketShots.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF8SetBracketShots extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'PF8SetBracketShots'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF8 Set Bracket Shots'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF9ChangeBracketSequence.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/PF9ChangeBracketSequence.php deleted file mode 100644 index 79663e74b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/PF9ChangeBracketSequence.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PF9ChangeBracketSequence extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'PF9ChangeBracketSequence'; - - protected $FullName = 'CanonCustom::PersonalFuncs'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'PF9 Change Bracket Sequence'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/QuickControlDialInMeter.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/QuickControlDialInMeter.php deleted file mode 100644 index b66c3792c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/QuickControlDialInMeter.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuickControlDialInMeter extends AbstractTag -{ - - protected $Id = 1795; - - protected $Name = 'QuickControlDialInMeter'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Quick Control Dial In Meter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Exposure comp/Aperture', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF point selection', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'ISO speed', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AF point selection swapped with Exposure comp', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'ISO speed swapped with Exposure comp', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/RawAndJpgRecording.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/RawAndJpgRecording.php deleted file mode 100644 index 7292fff04..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/RawAndJpgRecording.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawAndJpgRecording extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'RawAndJpgRecording'; - - protected $FullName = 'CanonCustom::Functions10D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Raw And Jpg Recording'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RAW+Small/Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'RAW+Small/Fine', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'RAW+Medium/Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'RAW+Medium/Fine', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RAW+Large/Normal', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'RAW+Large/Fine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SafetyShift.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SafetyShift.php deleted file mode 100644 index 10009073b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SafetyShift.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SafetyShift extends AbstractTag -{ - - protected $Id = 264; - - protected $Name = 'SafetyShift'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Safety Shift'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable (Tv/Av)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Enable (ISO speed)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SafetyShiftInAvOrTv.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SafetyShiftInAvOrTv.php deleted file mode 100644 index 63c62da5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SafetyShiftInAvOrTv.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SafetyShiftInAvOrTv extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SafetyShiftInAvOrTv'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Safety Shift In Av Or Tv'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SelectAFAreaSelectMode.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SelectAFAreaSelectMode.php deleted file mode 100644 index b40816e64..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SelectAFAreaSelectMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectAFAreaSelectMode extends AbstractTag -{ - - protected $Id = 1298; - - protected $Name = 'SelectAFAreaSelectMode'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Select AF Area Select Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Register', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Select AF-modes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SelectableAFPoint.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SelectableAFPoint.php deleted file mode 100644 index d48de0e65..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SelectableAFPoint.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectableAFPoint extends AbstractTag -{ - - protected $Id = 1289; - - protected $Name = 'SelectableAFPoint'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Selectable AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '45 points', - ), - 1 => array( - 'Id' => 1, - 'Label' => '19 points', - ), - 2 => array( - 'Id' => 2, - 'Label' => '11 points', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Inner 9 points', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Outer 9 points', - ), - 5 => array( - 'Id' => 0, - 'Label' => '19 points', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Inner 9 points', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Outer 9 points', - ), - 8 => array( - 'Id' => 3, - 'Label' => '19 Points, Multi-controller selectable', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Inner 9 Points, Multi-controller selectable', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Outer 9 Points, Multi-controller selectable', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SensorCleaning.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SensorCleaning.php deleted file mode 100644 index 36f0a59c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SensorCleaning.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCleaning extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'SensorCleaning'; - - protected $FullName = 'CanonCustom::FunctionsD30'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sensor Cleaning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SetButtonCrossKeysFunc.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SetButtonCrossKeysFunc.php deleted file mode 100644 index 519b6e608..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SetButtonCrossKeysFunc.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetButtonCrossKeysFunc extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SetButtonCrossKeysFunc'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Set Button Cross Keys Func'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Set: Quality', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Set: Parameter', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Set: Playback', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Cross keys: AF point select', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Set: Picture Style', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Set: Quality', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Set: Flash Exposure Comp', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Set: Playback', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Cross keys: AF point select', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SetButtonWhenShooting.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SetButtonWhenShooting.php deleted file mode 100644 index dfe2c7d37..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SetButtonWhenShooting.php +++ /dev/null @@ -1,262 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetButtonWhenShooting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SetButtonWhenShooting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Set Button When Shooting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal (disabled)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Change parameters', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Menu display', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Image playback', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Normal (disabled)', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Picture style', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Menu display', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Image playback', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Quick control screen', - ), - 11 => array( - 'Id' => 6, - 'Label' => 'Record movie (Live View)', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Normal (disabled)', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'Picture style', - ), - 15 => array( - 'Id' => 3, - 'Label' => 'White balance', - ), - 16 => array( - 'Id' => 4, - 'Label' => 'Flash exposure compensation', - ), - 17 => array( - 'Id' => 5, - 'Label' => 'Viewfinder leveling gauge', - ), - 18 => array( - 'Id' => 0, - 'Label' => 'Normal (disabled)', - ), - 19 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 20 => array( - 'Id' => 2, - 'Label' => 'Flash exposure compensation', - ), - 21 => array( - 'Id' => 3, - 'Label' => 'LCD monitor On/Off', - ), - 22 => array( - 'Id' => 4, - 'Label' => 'Menu display', - ), - 23 => array( - 'Id' => 5, - 'Label' => 'ISO speed', - ), - 24 => array( - 'Id' => 0, - 'Label' => 'Normal (disabled)', - ), - 25 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 26 => array( - 'Id' => 2, - 'Label' => 'Flash exposure compensation', - ), - 27 => array( - 'Id' => 3, - 'Label' => 'LCD monitor On/Off', - ), - 28 => array( - 'Id' => 4, - 'Label' => 'Menu display', - ), - 29 => array( - 'Id' => 5, - 'Label' => 'Depth-of-field preview', - ), - 30 => array( - 'Id' => 0, - 'Label' => 'LCD monitor On/Off', - ), - 31 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 32 => array( - 'Id' => 2, - 'Label' => 'Flash exposure compensation', - ), - 33 => array( - 'Id' => 3, - 'Label' => 'Menu display', - ), - 34 => array( - 'Id' => 4, - 'Label' => 'Disabled', - ), - 35 => array( - 'Id' => 0, - 'Label' => 'Quick control screen', - ), - 36 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 37 => array( - 'Id' => 2, - 'Label' => 'Flash exposure compensation', - ), - 38 => array( - 'Id' => 3, - 'Label' => 'LCD monitor On/Off', - ), - 39 => array( - 'Id' => 4, - 'Label' => 'Menu display', - ), - 40 => array( - 'Id' => 5, - 'Label' => 'Disabled', - ), - 41 => array( - 'Id' => 0, - 'Label' => 'Normal (disabled)', - ), - 42 => array( - 'Id' => 1, - 'Label' => 'White balance', - ), - 43 => array( - 'Id' => 2, - 'Label' => 'Image size', - ), - 44 => array( - 'Id' => 3, - 'Label' => 'ISO speed', - ), - 45 => array( - 'Id' => 4, - 'Label' => 'Picture style', - ), - 46 => array( - 'Id' => 5, - 'Label' => 'Record func. + media/folder', - ), - 47 => array( - 'Id' => 6, - 'Label' => 'Menu display', - ), - 48 => array( - 'Id' => 7, - 'Label' => 'Image playback', - ), - 49 => array( - 'Id' => 0, - 'Label' => 'Default (no function)', - ), - 50 => array( - 'Id' => 1, - 'Label' => 'Image quality', - ), - 51 => array( - 'Id' => 2, - 'Label' => 'Change ISO speed', - ), - 52 => array( - 'Id' => 3, - 'Label' => 'Change parameters', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SetFunctionWhenShooting.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SetFunctionWhenShooting.php deleted file mode 100644 index 237996f9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SetFunctionWhenShooting.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetFunctionWhenShooting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SetFunctionWhenShooting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Set Function When Shooting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Default (no function)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Change quality', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Change Parameters', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Menu display', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Image replay', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Default (no function)', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Change quality', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Change Picture Style', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Menu display', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Image replay', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Default (no function)', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Change quality', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'Change Parameters', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'Menu display', - ), - 14 => array( - 'Id' => 4, - 'Label' => 'Image replay', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShortReleaseTimeLag.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ShortReleaseTimeLag.php deleted file mode 100644 index 8bfe95028..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShortReleaseTimeLag.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShortReleaseTimeLag extends AbstractTag -{ - - protected $Id = 2061; - - protected $Name = 'ShortReleaseTimeLag'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Short Release Time Lag'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterAELButton.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterAELButton.php deleted file mode 100644 index f01c92858..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterAELButton.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterAELButton extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ShutterAELButton'; - - protected $FullName = 'CanonCustom::Functions1D'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shutter Button/AEL Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF/AE lock stop', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AE lock/AF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AF/AF lock, No AE lock', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AE/AF, No AE lock', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterAELock.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterAELock.php deleted file mode 100644 index 03a3dca8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterAELock.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterAELock extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Shutter-AELock'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Shutter-AE Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF/AE lock', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AE lock/AF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AF/AF lock, No AE lock', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AE/AF, No AE lock', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'AF/AE lock', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'AE lock/AF', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'AF/AF lock', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'AE+release/AE+AF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterButtonAFOnButton.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterButtonAFOnButton.php deleted file mode 100644 index 61beb1275..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterButtonAFOnButton.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterButtonAFOnButton extends AbstractTag -{ - - protected $Id = 1793; - - protected $Name = 'ShutterButtonAFOnButton'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Shutter Button AF On Button'; - - protected $flag_Permanent = true; - - protected $Index = 2; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Metering + AF start', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Metering + AF start/AF stop', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Metering start/Meter + AF start', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AE lock/Metering + AF start', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Metering + AF start/disable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterCurtainSync.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterCurtainSync.php deleted file mode 100644 index c1fc11f35..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterCurtainSync.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterCurtainSync extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShutterCurtainSync'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Shutter Curtain Sync'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1st-curtain sync', - ), - 1 => array( - 'Id' => 1, - 'Label' => '2nd-curtain sync', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterReleaseNoCFCard.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterReleaseNoCFCard.php deleted file mode 100644 index 2340ddd97..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterReleaseNoCFCard.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterReleaseNoCFCard extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShutterReleaseNoCFCard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shutter Release W/O CF Card'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Yes', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'No', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterSpeedRange.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterSpeedRange.php deleted file mode 100644 index f758a6c9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ShutterSpeedRange.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedRange extends AbstractTag -{ - - protected $Id = 268; - - protected $Name = 'ShutterSpeedRange'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Shutter Speed Range'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SpotMeterLinkToAFPoint.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SpotMeterLinkToAFPoint.php deleted file mode 100644 index 086cd7371..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SpotMeterLinkToAFPoint.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpotMeterLinkToAFPoint extends AbstractTag -{ - - protected $Id = 263; - - protected $Name = 'SpotMeterLinkToAFPoint'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Spot Meter Link To AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable (use center AF point)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable (use active AF point)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/StartMovieShooting.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/StartMovieShooting.php deleted file mode 100644 index 6f5245ea8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/StartMovieShooting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartMovieShooting extends AbstractTag -{ - - protected $Id = 1805; - - protected $Name = 'StartMovieShooting'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Start Movie Shooting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Default (from LV)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Quick start (FEL button)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SuperimposedDisplay.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SuperimposedDisplay.php deleted file mode 100644 index 871b8aeb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SuperimposedDisplay.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SuperimposedDisplay extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SuperimposedDisplay'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Superimposed Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/SwitchToRegisteredAFPoint.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/SwitchToRegisteredAFPoint.php deleted file mode 100644 index c2d813c55..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/SwitchToRegisteredAFPoint.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SwitchToRegisteredAFPoint extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SwitchToRegisteredAFPoint'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Switch To Registered AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Assist + AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Assist', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Only while pressing assist', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Switch with multi-controller', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'Only while AEL is pressed', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/TimerLength.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/TimerLength.php deleted file mode 100644 index 136566a97..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/TimerLength.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimerLength extends AbstractTag -{ - - protected $Id = 2060; - - protected $Name = 'TimerLength'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Timer Length'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/USMLensElectronicMF.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/USMLensElectronicMF.php deleted file mode 100644 index 7345d02ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/USMLensElectronicMF.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class USMLensElectronicMF extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'USMLensElectronicMF'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'USM Lens Electronic MF'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Turns on after one-shot AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Turns off after one-shot AF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Always turned off', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Enable after one-shot AF', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Disable after one-shot AF', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'Disable in AF mode', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/UsableMeteringModes.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/UsableMeteringModes.php deleted file mode 100644 index 71b5058a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/UsableMeteringModes.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsableMeteringModes extends AbstractTag -{ - - protected $Id = 266; - - protected $Name = 'UsableMeteringModes'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Usable Metering Modes'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/UsableShootingModes.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/UsableShootingModes.php deleted file mode 100644 index 3e60b0f17..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/UsableShootingModes.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsableShootingModes extends AbstractTag -{ - - protected $Id = 265; - - protected $Name = 'UsableShootingModes'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Usable Shooting Modes'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/VFDisplayIllumination.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/VFDisplayIllumination.php deleted file mode 100644 index c180980ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/VFDisplayIllumination.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VFDisplayIllumination extends AbstractTag -{ - - protected $Id = 1296; - - protected $Name = 'VFDisplayIllumination'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'VF Display Illumination'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Disable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ViewInfoDuringExposure.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ViewInfoDuringExposure.php deleted file mode 100644 index ea02c706d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ViewInfoDuringExposure.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewInfoDuringExposure extends AbstractTag -{ - - protected $Id = 1031; - - protected $Name = 'ViewInfoDuringExposure'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'View Info During Exposure'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Disable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Enable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/ViewfinderWarnings.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/ViewfinderWarnings.php deleted file mode 100644 index 14007f4f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/ViewfinderWarnings.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewfinderWarnings extends AbstractTag -{ - - protected $Id = 1034; - - protected $Name = 'ViewfinderWarnings'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Viewfinder Warnings'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Monochrome', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'WB corrected', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'One-touch image quality', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'ISO expansion', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Spot metering', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonCustom/WBMediaImageSizeSetting.php b/lib/PHPExiftool/Driver/Tag/CanonCustom/WBMediaImageSizeSetting.php deleted file mode 100644 index fb0b3b502..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonCustom/WBMediaImageSizeSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBMediaImageSizeSetting extends AbstractTag -{ - - protected $Id = 1800; - - protected $Name = 'WBMediaImageSizeSetting'; - - protected $FullName = 'CanonCustom::Functions2'; - - protected $GroupName = 'CanonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'WB Media Image Size Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Rear LCD panel', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'LCD monitor', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ApertureValue.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ApertureValue.php deleted file mode 100644 index c9f4becde..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureValue extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ApertureValue'; - - protected $FullName = 'CanonRaw::ExposureInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/BaseISO.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/BaseISO.php deleted file mode 100644 index 75429a40c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/BaseISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseISO extends AbstractTag -{ - - protected $Id = 4124; - - protected $Name = 'BaseISO'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Base ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonColorInfo1.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonColorInfo1.php deleted file mode 100644 index 16c13c716..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonColorInfo1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonColorInfo1 extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'CanonColorInfo1'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Canon Color Info 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonColorInfo2.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonColorInfo2.php deleted file mode 100644 index 7429126e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonColorInfo2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonColorInfo2 extends AbstractTag -{ - - protected $Id = 4140; - - protected $Name = 'CanonColorInfo2'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Canon Color Info 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFileDescription.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFileDescription.php deleted file mode 100644 index 8f0b50f9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFileDescription.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonFileDescription extends AbstractTag -{ - - protected $Id = 2053; - - protected $Name = 'CanonFileDescription'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Canon File Description'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFirmwareVersion.php deleted file mode 100644 index 1216eb0c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFirmwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonFirmwareVersion extends AbstractTag -{ - - protected $Id = 2059; - - protected $Name = 'CanonFirmwareVersion'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Canon Firmware Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFlashInfo.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFlashInfo.php deleted file mode 100644 index 23e18d0ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonFlashInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonFlashInfo extends AbstractTag -{ - - protected $Id = 4136; - - protected $Name = 'CanonFlashInfo'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Canon Flash Info'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonImageType.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonImageType.php deleted file mode 100644 index 5b745df3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonImageType.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonImageType extends AbstractTag -{ - - protected $Id = 2069; - - protected $Name = 'CanonImageType'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Canon Image Type'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonModelID.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonModelID.php deleted file mode 100644 index c2d8976c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CanonModelID.php +++ /dev/null @@ -1,1128 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonModelID extends AbstractTag -{ - - protected $Id = 6196; - - protected $Name = 'CanonModelID'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Canon Model ID'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16842752 => array( - 'Id' => 16842752, - 'Label' => 'PowerShot A30', - ), - 17039360 => array( - 'Id' => 17039360, - 'Label' => 'PowerShot S300 / Digital IXUS 300 / IXY Digital 300', - ), - 17170432 => array( - 'Id' => 17170432, - 'Label' => 'PowerShot A20', - ), - 17301504 => array( - 'Id' => 17301504, - 'Label' => 'PowerShot A10', - ), - 17367040 => array( - 'Id' => 17367040, - 'Label' => 'PowerShot S110 / Digital IXUS v / IXY Digital 200', - ), - 17825792 => array( - 'Id' => 17825792, - 'Label' => 'PowerShot G2', - ), - 17891328 => array( - 'Id' => 17891328, - 'Label' => 'PowerShot S40', - ), - 17956864 => array( - 'Id' => 17956864, - 'Label' => 'PowerShot S30', - ), - 18022400 => array( - 'Id' => 18022400, - 'Label' => 'PowerShot A40', - ), - 18087936 => array( - 'Id' => 18087936, - 'Label' => 'EOS D30', - ), - 18153472 => array( - 'Id' => 18153472, - 'Label' => 'PowerShot A100', - ), - 18219008 => array( - 'Id' => 18219008, - 'Label' => 'PowerShot S200 / Digital IXUS v2 / IXY Digital 200a', - ), - 18284544 => array( - 'Id' => 18284544, - 'Label' => 'PowerShot A200', - ), - 18350080 => array( - 'Id' => 18350080, - 'Label' => 'PowerShot S330 / Digital IXUS 330 / IXY Digital 300a', - ), - 18415616 => array( - 'Id' => 18415616, - 'Label' => 'PowerShot G3', - ), - 18939904 => array( - 'Id' => 18939904, - 'Label' => 'PowerShot S45', - ), - 19070976 => array( - 'Id' => 19070976, - 'Label' => 'PowerShot SD100 / Digital IXUS II / IXY Digital 30', - ), - 19136512 => array( - 'Id' => 19136512, - 'Label' => 'PowerShot S230 / Digital IXUS v3 / IXY Digital 320', - ), - 19202048 => array( - 'Id' => 19202048, - 'Label' => 'PowerShot A70', - ), - 19267584 => array( - 'Id' => 19267584, - 'Label' => 'PowerShot A60', - ), - 19333120 => array( - 'Id' => 19333120, - 'Label' => 'PowerShot S400 / Digital IXUS 400 / IXY Digital 400', - ), - 19464192 => array( - 'Id' => 19464192, - 'Label' => 'PowerShot G5', - ), - 19922944 => array( - 'Id' => 19922944, - 'Label' => 'PowerShot A300', - ), - 19988480 => array( - 'Id' => 19988480, - 'Label' => 'PowerShot S50', - ), - 20185088 => array( - 'Id' => 20185088, - 'Label' => 'PowerShot A80', - ), - 20250624 => array( - 'Id' => 20250624, - 'Label' => 'PowerShot SD10 / Digital IXUS i / IXY Digital L', - ), - 20316160 => array( - 'Id' => 20316160, - 'Label' => 'PowerShot S1 IS', - ), - 20381696 => array( - 'Id' => 20381696, - 'Label' => 'PowerShot Pro1', - ), - 20447232 => array( - 'Id' => 20447232, - 'Label' => 'PowerShot S70', - ), - 20512768 => array( - 'Id' => 20512768, - 'Label' => 'PowerShot S60', - ), - 20971520 => array( - 'Id' => 20971520, - 'Label' => 'PowerShot G6', - ), - 21037056 => array( - 'Id' => 21037056, - 'Label' => 'PowerShot S500 / Digital IXUS 500 / IXY Digital 500', - ), - 21102592 => array( - 'Id' => 21102592, - 'Label' => 'PowerShot A75', - ), - 21233664 => array( - 'Id' => 21233664, - 'Label' => 'PowerShot SD110 / Digital IXUS IIs / IXY Digital 30a', - ), - 21299200 => array( - 'Id' => 21299200, - 'Label' => 'PowerShot A400', - ), - 21430272 => array( - 'Id' => 21430272, - 'Label' => 'PowerShot A310', - ), - 21561344 => array( - 'Id' => 21561344, - 'Label' => 'PowerShot A85', - ), - 22151168 => array( - 'Id' => 22151168, - 'Label' => 'PowerShot S410 / Digital IXUS 430 / IXY Digital 450', - ), - 22216704 => array( - 'Id' => 22216704, - 'Label' => 'PowerShot A95', - ), - 22282240 => array( - 'Id' => 22282240, - 'Label' => 'PowerShot SD300 / Digital IXUS 40 / IXY Digital 50', - ), - 22347776 => array( - 'Id' => 22347776, - 'Label' => 'PowerShot SD200 / Digital IXUS 30 / IXY Digital 40', - ), - 22413312 => array( - 'Id' => 22413312, - 'Label' => 'PowerShot A520', - ), - 22478848 => array( - 'Id' => 22478848, - 'Label' => 'PowerShot A510', - ), - 22609920 => array( - 'Id' => 22609920, - 'Label' => 'PowerShot SD20 / Digital IXUS i5 / IXY Digital L2', - ), - 23330816 => array( - 'Id' => 23330816, - 'Label' => 'PowerShot S2 IS', - ), - 23396352 => array( - 'Id' => 23396352, - 'Label' => 'PowerShot SD430 / Digital IXUS Wireless / IXY Digital Wireless', - ), - 23461888 => array( - 'Id' => 23461888, - 'Label' => 'PowerShot SD500 / Digital IXUS 700 / IXY Digital 600', - ), - 23494656 => array( - 'Id' => 23494656, - 'Label' => 'EOS D60', - ), - 24117248 => array( - 'Id' => 24117248, - 'Label' => 'PowerShot SD30 / Digital IXUS i Zoom / IXY Digital L3', - ), - 24379392 => array( - 'Id' => 24379392, - 'Label' => 'PowerShot A430', - ), - 24444928 => array( - 'Id' => 24444928, - 'Label' => 'PowerShot A410', - ), - 24510464 => array( - 'Id' => 24510464, - 'Label' => 'PowerShot S80', - ), - 24641536 => array( - 'Id' => 24641536, - 'Label' => 'PowerShot A620', - ), - 24707072 => array( - 'Id' => 24707072, - 'Label' => 'PowerShot A610', - ), - 25165824 => array( - 'Id' => 25165824, - 'Label' => 'PowerShot SD630 / Digital IXUS 65 / IXY Digital 80', - ), - 25231360 => array( - 'Id' => 25231360, - 'Label' => 'PowerShot SD450 / Digital IXUS 55 / IXY Digital 60', - ), - 25296896 => array( - 'Id' => 25296896, - 'Label' => 'PowerShot TX1', - ), - 25624576 => array( - 'Id' => 25624576, - 'Label' => 'PowerShot SD400 / Digital IXUS 50 / IXY Digital 55', - ), - 25690112 => array( - 'Id' => 25690112, - 'Label' => 'PowerShot A420', - ), - 25755648 => array( - 'Id' => 25755648, - 'Label' => 'PowerShot SD900 / Digital IXUS 900 Ti / IXY Digital 1000', - ), - 26214400 => array( - 'Id' => 26214400, - 'Label' => 'PowerShot SD550 / Digital IXUS 750 / IXY Digital 700', - ), - 26345472 => array( - 'Id' => 26345472, - 'Label' => 'PowerShot A700', - ), - 26476544 => array( - 'Id' => 26476544, - 'Label' => 'PowerShot SD700 IS / Digital IXUS 800 IS / IXY Digital 800 IS', - ), - 26542080 => array( - 'Id' => 26542080, - 'Label' => 'PowerShot S3 IS', - ), - 26607616 => array( - 'Id' => 26607616, - 'Label' => 'PowerShot A540', - ), - 26673152 => array( - 'Id' => 26673152, - 'Label' => 'PowerShot SD600 / Digital IXUS 60 / IXY Digital 70', - ), - 26738688 => array( - 'Id' => 26738688, - 'Label' => 'PowerShot G7', - ), - 26804224 => array( - 'Id' => 26804224, - 'Label' => 'PowerShot A530', - ), - 33554432 => array( - 'Id' => 33554432, - 'Label' => 'PowerShot SD800 IS / Digital IXUS 850 IS / IXY Digital 900 IS', - ), - 33619968 => array( - 'Id' => 33619968, - 'Label' => 'PowerShot SD40 / Digital IXUS i7 / IXY Digital L4', - ), - 33685504 => array( - 'Id' => 33685504, - 'Label' => 'PowerShot A710 IS', - ), - 33751040 => array( - 'Id' => 33751040, - 'Label' => 'PowerShot A640', - ), - 33816576 => array( - 'Id' => 33816576, - 'Label' => 'PowerShot A630', - ), - 34144256 => array( - 'Id' => 34144256, - 'Label' => 'PowerShot S5 IS', - ), - 34603008 => array( - 'Id' => 34603008, - 'Label' => 'PowerShot A460', - ), - 34734080 => array( - 'Id' => 34734080, - 'Label' => 'PowerShot SD850 IS / Digital IXUS 950 IS / IXY Digital 810 IS', - ), - 34799616 => array( - 'Id' => 34799616, - 'Label' => 'PowerShot A570 IS', - ), - 34865152 => array( - 'Id' => 34865152, - 'Label' => 'PowerShot A560', - ), - 34930688 => array( - 'Id' => 34930688, - 'Label' => 'PowerShot SD750 / Digital IXUS 75 / IXY Digital 90', - ), - 34996224 => array( - 'Id' => 34996224, - 'Label' => 'PowerShot SD1000 / Digital IXUS 70 / IXY Digital 10', - ), - 35127296 => array( - 'Id' => 35127296, - 'Label' => 'PowerShot A550', - ), - 35192832 => array( - 'Id' => 35192832, - 'Label' => 'PowerShot A450', - ), - 35848192 => array( - 'Id' => 35848192, - 'Label' => 'PowerShot G9', - ), - 35913728 => array( - 'Id' => 35913728, - 'Label' => 'PowerShot A650 IS', - ), - 36044800 => array( - 'Id' => 36044800, - 'Label' => 'PowerShot A720 IS', - ), - 36241408 => array( - 'Id' => 36241408, - 'Label' => 'PowerShot SX100 IS', - ), - 36700160 => array( - 'Id' => 36700160, - 'Label' => 'PowerShot SD950 IS / Digital IXUS 960 IS / IXY Digital 2000 IS', - ), - 36765696 => array( - 'Id' => 36765696, - 'Label' => 'PowerShot SD870 IS / Digital IXUS 860 IS / IXY Digital 910 IS', - ), - 36831232 => array( - 'Id' => 36831232, - 'Label' => 'PowerShot SD890 IS / Digital IXUS 970 IS / IXY Digital 820 IS', - ), - 37093376 => array( - 'Id' => 37093376, - 'Label' => 'PowerShot SD790 IS / Digital IXUS 90 IS / IXY Digital 95 IS', - ), - 37158912 => array( - 'Id' => 37158912, - 'Label' => 'PowerShot SD770 IS / Digital IXUS 85 IS / IXY Digital 25 IS', - ), - 37224448 => array( - 'Id' => 37224448, - 'Label' => 'PowerShot A590 IS', - ), - 37289984 => array( - 'Id' => 37289984, - 'Label' => 'PowerShot A580', - ), - 37879808 => array( - 'Id' => 37879808, - 'Label' => 'PowerShot A470', - ), - 37945344 => array( - 'Id' => 37945344, - 'Label' => 'PowerShot SD1100 IS / Digital IXUS 80 IS / IXY Digital 20 IS', - ), - 38141952 => array( - 'Id' => 38141952, - 'Label' => 'PowerShot SX1 IS', - ), - 38207488 => array( - 'Id' => 38207488, - 'Label' => 'PowerShot SX10 IS', - ), - 38273024 => array( - 'Id' => 38273024, - 'Label' => 'PowerShot A1000 IS', - ), - 38338560 => array( - 'Id' => 38338560, - 'Label' => 'PowerShot G10', - ), - 38862848 => array( - 'Id' => 38862848, - 'Label' => 'PowerShot A2000 IS', - ), - 38928384 => array( - 'Id' => 38928384, - 'Label' => 'PowerShot SX110 IS', - ), - 38993920 => array( - 'Id' => 38993920, - 'Label' => 'PowerShot SD990 IS / Digital IXUS 980 IS / IXY Digital 3000 IS', - ), - 39059456 => array( - 'Id' => 39059456, - 'Label' => 'PowerShot SD880 IS / Digital IXUS 870 IS / IXY Digital 920 IS', - ), - 39124992 => array( - 'Id' => 39124992, - 'Label' => 'PowerShot E1', - ), - 39190528 => array( - 'Id' => 39190528, - 'Label' => 'PowerShot D10', - ), - 39256064 => array( - 'Id' => 39256064, - 'Label' => 'PowerShot SD960 IS / Digital IXUS 110 IS / IXY Digital 510 IS', - ), - 39321600 => array( - 'Id' => 39321600, - 'Label' => 'PowerShot A2100 IS', - ), - 39387136 => array( - 'Id' => 39387136, - 'Label' => 'PowerShot A480', - ), - 39845888 => array( - 'Id' => 39845888, - 'Label' => 'PowerShot SX200 IS', - ), - 39911424 => array( - 'Id' => 39911424, - 'Label' => 'PowerShot SD970 IS / Digital IXUS 990 IS / IXY Digital 830 IS', - ), - 39976960 => array( - 'Id' => 39976960, - 'Label' => 'PowerShot SD780 IS / Digital IXUS 100 IS / IXY Digital 210 IS', - ), - 40042496 => array( - 'Id' => 40042496, - 'Label' => 'PowerShot A1100 IS', - ), - 40108032 => array( - 'Id' => 40108032, - 'Label' => 'PowerShot SD1200 IS / Digital IXUS 95 IS / IXY Digital 110 IS', - ), - 40894464 => array( - 'Id' => 40894464, - 'Label' => 'PowerShot G11', - ), - 40960000 => array( - 'Id' => 40960000, - 'Label' => 'PowerShot SX120 IS', - ), - 41025536 => array( - 'Id' => 41025536, - 'Label' => 'PowerShot S90', - ), - 41222144 => array( - 'Id' => 41222144, - 'Label' => 'PowerShot SX20 IS', - ), - 41287680 => array( - 'Id' => 41287680, - 'Label' => 'PowerShot SD980 IS / Digital IXUS 200 IS / IXY Digital 930 IS', - ), - 41353216 => array( - 'Id' => 41353216, - 'Label' => 'PowerShot SD940 IS / Digital IXUS 120 IS / IXY Digital 220 IS', - ), - 41943040 => array( - 'Id' => 41943040, - 'Label' => 'PowerShot A495', - ), - 42008576 => array( - 'Id' => 42008576, - 'Label' => 'PowerShot A490', - ), - 42074112 => array( - 'Id' => 42074112, - 'Label' => 'PowerShot A3100 IS / A3150 IS', - ), - 42139648 => array( - 'Id' => 42139648, - 'Label' => 'PowerShot A3000 IS', - ), - 42205184 => array( - 'Id' => 42205184, - 'Label' => 'PowerShot SD1400 IS / IXUS 130 / IXY 400F', - ), - 42270720 => array( - 'Id' => 42270720, - 'Label' => 'PowerShot SD1300 IS / IXUS 105 / IXY 200F', - ), - 42336256 => array( - 'Id' => 42336256, - 'Label' => 'PowerShot SD3500 IS / IXUS 210 / IXY 10S', - ), - 42401792 => array( - 'Id' => 42401792, - 'Label' => 'PowerShot SX210 IS', - ), - 42467328 => array( - 'Id' => 42467328, - 'Label' => 'PowerShot SD4000 IS / IXUS 300 HS / IXY 30S', - ), - 42532864 => array( - 'Id' => 42532864, - 'Label' => 'PowerShot SD4500 IS / IXUS 1000 HS / IXY 50S', - ), - 43122688 => array( - 'Id' => 43122688, - 'Label' => 'PowerShot G12', - ), - 43188224 => array( - 'Id' => 43188224, - 'Label' => 'PowerShot SX30 IS', - ), - 43253760 => array( - 'Id' => 43253760, - 'Label' => 'PowerShot SX130 IS', - ), - 43319296 => array( - 'Id' => 43319296, - 'Label' => 'PowerShot S95', - ), - 43515904 => array( - 'Id' => 43515904, - 'Label' => 'PowerShot A3300 IS', - ), - 43581440 => array( - 'Id' => 43581440, - 'Label' => 'PowerShot A3200 IS', - ), - 50331648 => array( - 'Id' => 50331648, - 'Label' => 'PowerShot ELPH 500 HS / IXUS 310 HS / IXY 31S', - ), - 50397184 => array( - 'Id' => 50397184, - 'Label' => 'PowerShot Pro90 IS', - ), - 50397185 => array( - 'Id' => 50397185, - 'Label' => 'PowerShot A800', - ), - 50462720 => array( - 'Id' => 50462720, - 'Label' => 'PowerShot ELPH 100 HS / IXUS 115 HS / IXY 210F', - ), - 50528256 => array( - 'Id' => 50528256, - 'Label' => 'PowerShot SX230 HS', - ), - 50593792 => array( - 'Id' => 50593792, - 'Label' => 'PowerShot ELPH 300 HS / IXUS 220 HS / IXY 410F', - ), - 50659328 => array( - 'Id' => 50659328, - 'Label' => 'PowerShot A2200', - ), - 50724864 => array( - 'Id' => 50724864, - 'Label' => 'PowerShot A1200', - ), - 50790400 => array( - 'Id' => 50790400, - 'Label' => 'PowerShot SX220 HS', - ), - 50855936 => array( - 'Id' => 50855936, - 'Label' => 'PowerShot G1 X', - ), - 50921472 => array( - 'Id' => 50921472, - 'Label' => 'PowerShot SX150 IS', - ), - 51380224 => array( - 'Id' => 51380224, - 'Label' => 'PowerShot ELPH 510 HS / IXUS 1100 HS / IXY 51S', - ), - 51445760 => array( - 'Id' => 51445760, - 'Label' => 'PowerShot S100 (new)', - ), - 51511296 => array( - 'Id' => 51511296, - 'Label' => 'PowerShot ELPH 310 HS / IXUS 230 HS / IXY 600F', - ), - 51576832 => array( - 'Id' => 51576832, - 'Label' => 'PowerShot SX40 HS', - ), - 51642368 => array( - 'Id' => 51642368, - 'Label' => 'IXY 32S', - ), - 51773440 => array( - 'Id' => 51773440, - 'Label' => 'PowerShot A1300', - ), - 51838976 => array( - 'Id' => 51838976, - 'Label' => 'PowerShot A810', - ), - 51904512 => array( - 'Id' => 51904512, - 'Label' => 'PowerShot ELPH 320 HS / IXUS 240 HS / IXY 420F', - ), - 51970048 => array( - 'Id' => 51970048, - 'Label' => 'PowerShot ELPH 110 HS / IXUS 125 HS / IXY 220F', - ), - 52428800 => array( - 'Id' => 52428800, - 'Label' => 'PowerShot D20', - ), - 52494336 => array( - 'Id' => 52494336, - 'Label' => 'PowerShot A4000 IS', - ), - 52559872 => array( - 'Id' => 52559872, - 'Label' => 'PowerShot SX260 HS', - ), - 52625408 => array( - 'Id' => 52625408, - 'Label' => 'PowerShot SX240 HS', - ), - 52690944 => array( - 'Id' => 52690944, - 'Label' => 'PowerShot ELPH 530 HS / IXUS 510 HS / IXY 1', - ), - 52756480 => array( - 'Id' => 52756480, - 'Label' => 'PowerShot ELPH 520 HS / IXUS 500 HS / IXY 3', - ), - 52822016 => array( - 'Id' => 52822016, - 'Label' => 'PowerShot A3400 IS', - ), - 52887552 => array( - 'Id' => 52887552, - 'Label' => 'PowerShot A2400 IS', - ), - 52953088 => array( - 'Id' => 52953088, - 'Label' => 'PowerShot A2300', - ), - 53673984 => array( - 'Id' => 53673984, - 'Label' => 'PowerShot G15', - ), - 53739520 => array( - 'Id' => 53739520, - 'Label' => 'PowerShot SX50', - ), - 53805056 => array( - 'Id' => 53805056, - 'Label' => 'PowerShot SX160 IS', - ), - 53870592 => array( - 'Id' => 53870592, - 'Label' => 'PowerShot S110 (new)', - ), - 53936128 => array( - 'Id' => 53936128, - 'Label' => 'PowerShot SX500 IS', - ), - 54001664 => array( - 'Id' => 54001664, - 'Label' => 'PowerShot N', - ), - 54067200 => array( - 'Id' => 54067200, - 'Label' => 'IXUS 245 HS / IXY 430F', - ), - 54525952 => array( - 'Id' => 54525952, - 'Label' => 'PowerShot SX280 HS', - ), - 54591488 => array( - 'Id' => 54591488, - 'Label' => 'PowerShot SX270 HS', - ), - 54657024 => array( - 'Id' => 54657024, - 'Label' => 'PowerShot A3500 IS', - ), - 54722560 => array( - 'Id' => 54722560, - 'Label' => 'PowerShot A2600', - ), - 54853632 => array( - 'Id' => 54853632, - 'Label' => 'PowerShot A1400', - ), - 54919168 => array( - 'Id' => 54919168, - 'Label' => 'PowerShot ELPH 130 IS / IXUS 140 / IXY 110F', - ), - 54984704 => array( - 'Id' => 54984704, - 'Label' => 'PowerShot ELPH 115/120 IS / IXUS 132/135 / IXY 90F/100F', - ), - 55115776 => array( - 'Id' => 55115776, - 'Label' => 'PowerShot ELPH 330 HS / IXUS 255 HS / IXY 610F', - ), - 55640064 => array( - 'Id' => 55640064, - 'Label' => 'PowerShot A2500', - ), - 55836672 => array( - 'Id' => 55836672, - 'Label' => 'PowerShot G16', - ), - 55902208 => array( - 'Id' => 55902208, - 'Label' => 'PowerShot S120', - ), - 55967744 => array( - 'Id' => 55967744, - 'Label' => 'PowerShot SX170 IS', - ), - 56098816 => array( - 'Id' => 56098816, - 'Label' => 'PowerShot SX510 HS', - ), - 56164352 => array( - 'Id' => 56164352, - 'Label' => 'PowerShot S200 (new)', - ), - 56623104 => array( - 'Id' => 56623104, - 'Label' => 'IXY 620F', - ), - 56688640 => array( - 'Id' => 56688640, - 'Label' => 'PowerShot N100', - ), - 56885248 => array( - 'Id' => 56885248, - 'Label' => 'PowerShot G1 X Mark II', - ), - 56950784 => array( - 'Id' => 56950784, - 'Label' => 'PowerShot D30', - ), - 57016320 => array( - 'Id' => 57016320, - 'Label' => 'PowerShot SX700 HS', - ), - 57081856 => array( - 'Id' => 57081856, - 'Label' => 'PowerShot SX600 HS', - ), - 57147392 => array( - 'Id' => 57147392, - 'Label' => 'PowerShot ELPH 140 IS / IXUS 150', - ), - 57212928 => array( - 'Id' => 57212928, - 'Label' => 'PowerShot ELPH 135 / IXUS 145 / IXY 120', - ), - 57671680 => array( - 'Id' => 57671680, - 'Label' => 'PowerShot ELPH 340 HS / IXUS 265 HS / IXY 630', - ), - 57737216 => array( - 'Id' => 57737216, - 'Label' => 'PowerShot ELPH 150 IS / IXUS 155 / IXY 140', - ), - 67371008 => array( - 'Id' => 67371008, - 'Label' => 'PowerShot G1', - ), - 100925440 => array( - 'Id' => 100925440, - 'Label' => 'PowerShot S100 / Digital IXUS / IXY Digital', - ), - 1074255475 => array( - 'Id' => 1074255475, - 'Label' => 'DC19/DC21/DC22', - ), - 1074255476 => array( - 'Id' => 1074255476, - 'Label' => 'XH A1', - ), - 1074255477 => array( - 'Id' => 1074255477, - 'Label' => 'HV10', - ), - 1074255478 => array( - 'Id' => 1074255478, - 'Label' => 'MD130/MD140/MD150/MD160/ZR850', - ), - 1074255735 => array( - 'Id' => 1074255735, - 'Label' => 'DC50', - ), - 1074255736 => array( - 'Id' => 1074255736, - 'Label' => 'HV20', - ), - 1074255737 => array( - 'Id' => 1074255737, - 'Label' => 'DC211', - ), - 1074255738 => array( - 'Id' => 1074255738, - 'Label' => 'HG10', - ), - 1074255739 => array( - 'Id' => 1074255739, - 'Label' => 'HR10', - ), - 1074255741 => array( - 'Id' => 1074255741, - 'Label' => 'MD255/ZR950', - ), - 1074255900 => array( - 'Id' => 1074255900, - 'Label' => 'HF11', - ), - 1074255992 => array( - 'Id' => 1074255992, - 'Label' => 'HV30', - ), - 1074255996 => array( - 'Id' => 1074255996, - 'Label' => 'XH A1S', - ), - 1074255998 => array( - 'Id' => 1074255998, - 'Label' => 'DC301/DC310/DC311/DC320/DC330', - ), - 1074255999 => array( - 'Id' => 1074255999, - 'Label' => 'FS100', - ), - 1074256000 => array( - 'Id' => 1074256000, - 'Label' => 'HF10', - ), - 1074256002 => array( - 'Id' => 1074256002, - 'Label' => 'HG20/HG21', - ), - 1074256165 => array( - 'Id' => 1074256165, - 'Label' => 'HF21', - ), - 1074256166 => array( - 'Id' => 1074256166, - 'Label' => 'HF S11', - ), - 1074256248 => array( - 'Id' => 1074256248, - 'Label' => 'HV40', - ), - 1074256263 => array( - 'Id' => 1074256263, - 'Label' => 'DC410/DC411/DC420', - ), - 1074256264 => array( - 'Id' => 1074256264, - 'Label' => 'FS19/FS20/FS21/FS22/FS200', - ), - 1074256265 => array( - 'Id' => 1074256265, - 'Label' => 'HF20/HF200', - ), - 1074256266 => array( - 'Id' => 1074256266, - 'Label' => 'HF S10/S100', - ), - 1074256526 => array( - 'Id' => 1074256526, - 'Label' => 'HF R10/R16/R17/R18/R100/R106', - ), - 1074256527 => array( - 'Id' => 1074256527, - 'Label' => 'HF M30/M31/M36/M300/M306', - ), - 1074256528 => array( - 'Id' => 1074256528, - 'Label' => 'HF S20/S21/S200', - ), - 1074256530 => array( - 'Id' => 1074256530, - 'Label' => 'FS31/FS36/FS37/FS300/FS305/FS306/FS307', - ), - 1074257321 => array( - 'Id' => 1074257321, - 'Label' => 'HF G25', - ), - 2147483649 => array( - 'Id' => 2147483649, - 'Label' => 'EOS-1D', - ), - 2147484007 => array( - 'Id' => 2147484007, - 'Label' => 'EOS-1DS', - ), - 2147484008 => array( - 'Id' => 2147484008, - 'Label' => 'EOS 10D', - ), - 2147484009 => array( - 'Id' => 2147484009, - 'Label' => 'EOS-1D Mark III', - ), - 2147484016 => array( - 'Id' => 2147484016, - 'Label' => 'EOS Digital Rebel / 300D / Kiss Digital', - ), - 2147484020 => array( - 'Id' => 2147484020, - 'Label' => 'EOS-1D Mark II', - ), - 2147484021 => array( - 'Id' => 2147484021, - 'Label' => 'EOS 20D', - ), - 2147484022 => array( - 'Id' => 2147484022, - 'Label' => 'EOS Digital Rebel XSi / 450D / Kiss X2', - ), - 2147484040 => array( - 'Id' => 2147484040, - 'Label' => 'EOS-1Ds Mark II', - ), - 2147484041 => array( - 'Id' => 2147484041, - 'Label' => 'EOS Digital Rebel XT / 350D / Kiss Digital N', - ), - 2147484048 => array( - 'Id' => 2147484048, - 'Label' => 'EOS 40D', - ), - 2147484179 => array( - 'Id' => 2147484179, - 'Label' => 'EOS 5D', - ), - 2147484181 => array( - 'Id' => 2147484181, - 'Label' => 'EOS-1Ds Mark III', - ), - 2147484184 => array( - 'Id' => 2147484184, - 'Label' => 'EOS 5D Mark II', - ), - 2147484185 => array( - 'Id' => 2147484185, - 'Label' => 'WFT-E1', - ), - 2147484210 => array( - 'Id' => 2147484210, - 'Label' => 'EOS-1D Mark II N', - ), - 2147484212 => array( - 'Id' => 2147484212, - 'Label' => 'EOS 30D', - ), - 2147484214 => array( - 'Id' => 2147484214, - 'Label' => 'EOS Digital Rebel XTi / 400D / Kiss Digital X', - ), - 2147484225 => array( - 'Id' => 2147484225, - 'Label' => 'WFT-E2', - ), - 2147484230 => array( - 'Id' => 2147484230, - 'Label' => 'WFT-E3', - ), - 2147484240 => array( - 'Id' => 2147484240, - 'Label' => 'EOS 7D', - ), - 2147484242 => array( - 'Id' => 2147484242, - 'Label' => 'EOS Rebel T1i / 500D / Kiss X3', - ), - 2147484244 => array( - 'Id' => 2147484244, - 'Label' => 'EOS Rebel XS / 1000D / Kiss F', - ), - 2147484257 => array( - 'Id' => 2147484257, - 'Label' => 'EOS 50D', - ), - 2147484265 => array( - 'Id' => 2147484265, - 'Label' => 'EOS-1D X', - ), - 2147484272 => array( - 'Id' => 2147484272, - 'Label' => 'EOS Rebel T2i / 550D / Kiss X4', - ), - 2147484273 => array( - 'Id' => 2147484273, - 'Label' => 'WFT-E4', - ), - 2147484275 => array( - 'Id' => 2147484275, - 'Label' => 'WFT-E5', - ), - 2147484289 => array( - 'Id' => 2147484289, - 'Label' => 'EOS-1D Mark IV', - ), - 2147484293 => array( - 'Id' => 2147484293, - 'Label' => 'EOS 5D Mark III', - ), - 2147484294 => array( - 'Id' => 2147484294, - 'Label' => 'EOS Rebel T3i / 600D / Kiss X5', - ), - 2147484295 => array( - 'Id' => 2147484295, - 'Label' => 'EOS 60D', - ), - 2147484296 => array( - 'Id' => 2147484296, - 'Label' => 'EOS Rebel T3 / 1100D / Kiss X50', - ), - 2147484311 => array( - 'Id' => 2147484311, - 'Label' => 'WFT-E2 II', - ), - 2147484312 => array( - 'Id' => 2147484312, - 'Label' => 'WFT-E4 II', - ), - 2147484417 => array( - 'Id' => 2147484417, - 'Label' => 'EOS Rebel T4i / 650D / Kiss X6i', - ), - 2147484418 => array( - 'Id' => 2147484418, - 'Label' => 'EOS 6D', - ), - 2147484452 => array( - 'Id' => 2147484452, - 'Label' => 'EOS-1D C', - ), - 2147484453 => array( - 'Id' => 2147484453, - 'Label' => 'EOS 70D', - ), - 2147484454 => array( - 'Id' => 2147484454, - 'Label' => 'EOS Rebel T5i / 700D / Kiss X7i', - ), - 2147484455 => array( - 'Id' => 2147484455, - 'Label' => 'EOS Rebel T5 / 1200D / Kiss X70', - ), - 2147484465 => array( - 'Id' => 2147484465, - 'Label' => 'EOS M', - ), - 2147484486 => array( - 'Id' => 2147484486, - 'Label' => 'EOS Rebel SL1 / 100D / Kiss X7', - ), - 2147484501 => array( - 'Id' => 2147484501, - 'Label' => 'EOS M2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorBW.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorBW.php deleted file mode 100644 index 1738ded36..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorBW.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBW extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ColorBW'; - - protected $FullName = 'CanonRaw::ImageInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Color BW'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorBitDepth.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorBitDepth.php deleted file mode 100644 index 50954ae1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorBitDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBitDepth extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ColorBitDepth'; - - protected $FullName = 'CanonRaw::ImageInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Color Bit Depth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorSpace.php deleted file mode 100644 index d896d341c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorSpace.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 4276; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'sRGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Adobe RGB', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Uncalibrated', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorTemperature.php deleted file mode 100644 index 7ebfa5866..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 4270; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ComponentBitDepth.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ComponentBitDepth.php deleted file mode 100644 index ae86ec3ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ComponentBitDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentBitDepth extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ComponentBitDepth'; - - protected $FullName = 'CanonRaw::ImageInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Component Bit Depth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ComponentVersion.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ComponentVersion.php deleted file mode 100644 index c07039b28..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ComponentVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentVersion extends AbstractTag -{ - - protected $Id = 2060; - - protected $Name = 'ComponentVersion'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Component Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CompressedDataLength.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CompressedDataLength.php deleted file mode 100644 index 367b26fbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CompressedDataLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedDataLength extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'CompressedDataLength'; - - protected $FullName = 'CanonRaw::DecoderTable'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Compressed Data Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/CompressedDataOffset.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/CompressedDataOffset.php deleted file mode 100644 index e350100ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/CompressedDataOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedDataOffset extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CompressedDataOffset'; - - protected $FullName = 'CanonRaw::DecoderTable'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Compressed Data Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/DateTimeOriginal.php deleted file mode 100644 index 96c2a647c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'CanonRaw::TimeStamp'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Time'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Date/Time Original'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/DecoderTableNumber.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/DecoderTableNumber.php deleted file mode 100644 index 83e80bda7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/DecoderTableNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecoderTableNumber extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DecoderTableNumber'; - - protected $FullName = 'CanonRaw::DecoderTable'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Decoder Table Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ExposureCompensation.php deleted file mode 100644 index f19074b2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'CanonRaw::ExposureInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/FileFormat.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/FileFormat.php deleted file mode 100644 index 8bfc863c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/FileFormat.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileFormat extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FileFormat'; - - protected $FullName = 'CanonRaw::ImageFormat'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'File Format'; - - protected $flag_Permanent = true; - - protected $Values = array( - 65536 => array( - 'Id' => 65536, - 'Label' => 'JPEG (lossy)', - ), - 65538 => array( - 'Id' => 65538, - 'Label' => 'JPEG (non-quantization)', - ), - 65539 => array( - 'Id' => 65539, - 'Label' => 'JPEG (lossy/non-quantization toggled)', - ), - 131073 => array( - 'Id' => 131073, - 'Label' => 'CRW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/FileNumber.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/FileNumber.php deleted file mode 100644 index a1ead5de1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/FileNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNumber extends AbstractTag -{ - - protected $Id = 6167; - - protected $Name = 'FileNumber'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'File Number'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/FlashGuideNumber.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/FlashGuideNumber.php deleted file mode 100644 index 55185ec6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/FlashGuideNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGuideNumber extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FlashGuideNumber'; - - protected $FullName = 'CanonRaw::FlashInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Flash Guide Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/FlashThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/FlashThreshold.php deleted file mode 100644 index 8844dd5db..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/FlashThreshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashThreshold extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FlashThreshold'; - - protected $FullName = 'CanonRaw::FlashInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Flash Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/FreeBytes.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/FreeBytes.php deleted file mode 100644 index bf96f93ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/FreeBytes.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FreeBytes extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FreeBytes'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Free Bytes'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ImageHeight.php deleted file mode 100644 index dd2048fac..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'CanonRaw::ImageInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ImageWidth.php deleted file mode 100644 index bf85f7ffe..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'CanonRaw::ImageInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/JpgFromRaw.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/JpgFromRaw.php deleted file mode 100644 index a61cca803..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/JpgFromRaw.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRaw extends AbstractTag -{ - - protected $Id = 8199; - - protected $Name = 'JpgFromRaw'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'resize'; - - protected $Writable = true; - - protected $Description = 'Jpg From Raw'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/Make.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/Make.php deleted file mode 100644 index 0b7f307a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'CanonRaw::MakeModel'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/MeasuredEV.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/MeasuredEV.php deleted file mode 100644 index 5ff7fb3cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/MeasuredEV.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredEV extends AbstractTag -{ - - protected $Id = 6164; - - protected $Name = 'MeasuredEV'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Measured EV'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/Model.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/Model.php deleted file mode 100644 index 8b4fc1fb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/Model.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Model'; - - protected $FullName = 'CanonRaw::MakeModel'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Model Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/NullRecord.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/NullRecord.php deleted file mode 100644 index 5eb9b1688..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/NullRecord.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NullRecord extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'NullRecord'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Null Record'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/OriginalFileName.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/OriginalFileName.php deleted file mode 100644 index 0ba5fc0c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/OriginalFileName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFileName extends AbstractTag -{ - - protected $Id = 2070; - - protected $Name = 'OriginalFileName'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original File Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/OwnerName.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/OwnerName.php deleted file mode 100644 index a8d1546c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/OwnerName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerName extends AbstractTag -{ - - protected $Id = 2064; - - protected $Name = 'OwnerName'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/PixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/PixelAspectRatio.php deleted file mode 100644 index 2669b40d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/PixelAspectRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatio extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PixelAspectRatio'; - - protected $FullName = 'CanonRaw::ImageInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ROMOperationMode.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ROMOperationMode.php deleted file mode 100644 index 33d9af654..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ROMOperationMode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROMOperationMode extends AbstractTag -{ - - protected $Id = 2061; - - protected $Name = 'ROMOperationMode'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'ROM Operation Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawData.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/RawData.php deleted file mode 100644 index b2d5514a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawData extends AbstractTag -{ - - protected $Id = 8197; - - protected $Name = 'RawData'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Raw Data'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgHeight.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgHeight.php deleted file mode 100644 index d09c5328f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawJpgHeight extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'RawJpgHeight'; - - protected $FullName = 'CanonRaw::RawJpgInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Jpg Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgQuality.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgQuality.php deleted file mode 100644 index 51c7a733a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgQuality.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawJpgQuality extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'RawJpgQuality'; - - protected $FullName = 'CanonRaw::RawJpgInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Jpg Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Economy', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fine', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Superfine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgSize.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgSize.php deleted file mode 100644 index 2053bc3cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgSize.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawJpgSize extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'RawJpgSize'; - - protected $FullName = 'CanonRaw::RawJpgInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Jpg Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Large', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Medium', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Small', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgWidth.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgWidth.php deleted file mode 100644 index 9ac476a73..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/RawJpgWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawJpgWidth extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'RawJpgWidth'; - - protected $FullName = 'CanonRaw::RawJpgInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Jpg Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/RecordID.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/RecordID.php deleted file mode 100644 index 730e95ed7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/RecordID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordID extends AbstractTag -{ - - protected $Id = 6148; - - protected $Name = 'RecordID'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Record ID'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ReleaseSetting.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ReleaseSetting.php deleted file mode 100644 index c1be98fd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ReleaseSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseSetting extends AbstractTag -{ - - protected $Id = 4118; - - protected $Name = 'ReleaseSetting'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Release Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/Rotation.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/Rotation.php deleted file mode 100644 index bd912ee5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/Rotation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Rotation'; - - protected $FullName = 'CanonRaw::ImageInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/SelfTimerTime.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/SelfTimerTime.php deleted file mode 100644 index 0a23e431c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/SelfTimerTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimerTime extends AbstractTag -{ - - protected $Id = 6150; - - protected $Name = 'SelfTimerTime'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Self Timer Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/SerialNumber.php deleted file mode 100644 index 546549363..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 6155; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/SerialNumberFormat.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/SerialNumberFormat.php deleted file mode 100644 index b59c9312c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/SerialNumberFormat.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumberFormat extends AbstractTag -{ - - protected $Id = 6203; - - protected $Name = 'SerialNumberFormat'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Serial Number Format'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2415919104 => array( - 'Id' => 2415919104, - 'Label' => 'Format 1', - ), - 2684354560 => array( - 'Id' => 2684354560, - 'Label' => 'Format 2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterReleaseMethod.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterReleaseMethod.php deleted file mode 100644 index 0292a0396..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterReleaseMethod.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterReleaseMethod extends AbstractTag -{ - - protected $Id = 4112; - - protected $Name = 'ShutterReleaseMethod'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shutter Release Method'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single Shot', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous Shooting', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterReleaseTiming.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterReleaseTiming.php deleted file mode 100644 index fd3a1947d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterReleaseTiming.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterReleaseTiming extends AbstractTag -{ - - protected $Id = 4113; - - protected $Name = 'ShutterReleaseTiming'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shutter Release Timing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Priority on shutter', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Priority on focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterSpeedValue.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterSpeedValue.php deleted file mode 100644 index d72004d3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ShutterSpeedValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedValue extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ShutterSpeedValue'; - - protected $FullName = 'CanonRaw::ExposureInfo'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Shutter Speed Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetCompressionRatio.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetCompressionRatio.php deleted file mode 100644 index ddfb86838..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetCompressionRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetCompressionRatio extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'TargetCompressionRatio'; - - protected $FullName = 'CanonRaw::ImageFormat'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Target Compression Ratio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetDistanceSetting.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetDistanceSetting.php deleted file mode 100644 index f6ee24e0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetDistanceSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetDistanceSetting extends AbstractTag -{ - - protected $Id = 6151; - - protected $Name = 'TargetDistanceSetting'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Target Distance Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetImageType.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetImageType.php deleted file mode 100644 index 81ada153e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/TargetImageType.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetImageType extends AbstractTag -{ - - protected $Id = 4106; - - protected $Name = 'TargetImageType'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Target Image Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Real-world Subject', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Written Document', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ThumbnailFileName.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ThumbnailFileName.php deleted file mode 100644 index 17757f0da..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ThumbnailFileName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailFileName extends AbstractTag -{ - - protected $Id = 2071; - - protected $Name = 'ThumbnailFileName'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Thumbnail File Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/ThumbnailImage.php deleted file mode 100644 index de0540438..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/ThumbnailImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 8200; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'resize'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/TimeZoneCode.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/TimeZoneCode.php deleted file mode 100644 index b596f69b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/TimeZoneCode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeZoneCode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'TimeZoneCode'; - - protected $FullName = 'CanonRaw::TimeStamp'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Time'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Time Zone Code'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/TimeZoneInfo.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/TimeZoneInfo.php deleted file mode 100644 index e8bce3056..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/TimeZoneInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeZoneInfo extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'TimeZoneInfo'; - - protected $FullName = 'CanonRaw::TimeStamp'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Time'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Time Zone Info'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/UnknownNumber.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/UnknownNumber.php deleted file mode 100644 index dabd5024a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/UnknownNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownNumber extends AbstractTag -{ - - protected $Id = 6155; - - protected $Name = 'UnknownNumber'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Unknown Number'; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/UserComment.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/UserComment.php deleted file mode 100644 index 7270e64bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/UserComment.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserComment extends AbstractTag -{ - - protected $Id = 2053; - - protected $Name = 'UserComment'; - - protected $FullName = 'CanonRaw::Main'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'User Comment'; - - protected $flag_Permanent = true; - - protected $MaxLength = 256; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleBits.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleBits.php deleted file mode 100644 index 1ae18b9af..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleBits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteSampleBits extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'WhiteSampleBits'; - - protected $FullName = 'CanonRaw::WhiteSample'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'White Sample Bits'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleHeight.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleHeight.php deleted file mode 100644 index 00ca72af4..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteSampleHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'WhiteSampleHeight'; - - protected $FullName = 'CanonRaw::WhiteSample'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'White Sample Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleLeftBorder.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleLeftBorder.php deleted file mode 100644 index 22a6f0a14..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleLeftBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteSampleLeftBorder extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'WhiteSampleLeftBorder'; - - protected $FullName = 'CanonRaw::WhiteSample'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'White Sample Left Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleTopBorder.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleTopBorder.php deleted file mode 100644 index b66f88e5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleTopBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteSampleTopBorder extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'WhiteSampleTopBorder'; - - protected $FullName = 'CanonRaw::WhiteSample'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'White Sample Top Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleWidth.php b/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleWidth.php deleted file mode 100644 index 25fd0ed92..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonRaw/WhiteSampleWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteSampleWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'WhiteSampleWidth'; - - protected $FullName = 'CanonRaw::WhiteSample'; - - protected $GroupName = 'CanonRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'CanonRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'White Sample Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/AberrationCorrectionDistance.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/AberrationCorrectionDistance.php deleted file mode 100644 index bb6de3422..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/AberrationCorrectionDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AberrationCorrectionDistance extends AbstractTag -{ - - protected $Id = 105; - - protected $Name = 'AberrationCorrectionDistance'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Aberration Correction Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/AngleAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/AngleAdj.php deleted file mode 100644 index 1c1e11a6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/AngleAdj.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngleAdj extends AbstractTag -{ - - protected $Id = 139; - - protected $Name = 'AngleAdj'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Angle Adj'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/AutoLightingOptimizer.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/AutoLightingOptimizer.php deleted file mode 100644 index 2b0e5182f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/AutoLightingOptimizer.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoLightingOptimizer extends AbstractTag -{ - - protected $Id = 111; - - protected $Name = 'AutoLightingOptimizer'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Auto Lighting Optimizer'; - - protected $Values = array( - 100 => array( - 'Id' => 100, - 'Label' => 'Low', - ), - 200 => array( - 'Id' => 200, - 'Label' => 'Standard', - ), - 300 => array( - 'Id' => 300, - 'Label' => 'Strong', - ), - 32767 => array( - 'Id' => 32767, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/AutoLightingOptimizerOn.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/AutoLightingOptimizerOn.php deleted file mode 100644 index 8071dd8b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/AutoLightingOptimizerOn.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoLightingOptimizerOn extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'AutoLightingOptimizerOn'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Auto Lighting Optimizer On'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/BlueCurveLimits.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/BlueCurveLimits.php deleted file mode 100644 index 2b3a6a83e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/BlueCurveLimits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueCurveLimits extends AbstractTag -{ - - protected $Id = 510; - - protected $Name = 'BlueCurveLimits'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Blue Curve Limits'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/BlueCurvePoints.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/BlueCurvePoints.php deleted file mode 100644 index 110f01307..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/BlueCurvePoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueCurvePoints extends AbstractTag -{ - - protected $Id = 468; - - protected $Name = 'BlueCurvePoints'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Blue Curve Points'; - - protected $MaxLength = 21; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/BrightnessAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/BrightnessAdj.php deleted file mode 100644 index a513f814a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/BrightnessAdj.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessAdj extends AbstractTag -{ - - protected $Id = 276; - - protected $Name = 'BrightnessAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Brightness Adj'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CRCDevelParams.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CRCDevelParams.php deleted file mode 100644 index 02d130bbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CRCDevelParams.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CRCDevelParams extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CRCDevelParams'; - - protected $FullName = 'CanonVRD::IHL'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CRC Devel Params'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CanonVRD.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CanonVRD.php deleted file mode 100644 index bcb02c3e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CanonVRD.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanonVRD extends AbstractTag -{ - - protected $Id = 'CanonVRD'; - - protected $Name = 'CanonVRD'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Canon VRD'; - - protected $local_g0 = 'CanonVRD'; - - protected $local_g1 = 'CanonVRD'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CheckMark.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CheckMark.php deleted file mode 100644 index b246282b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CheckMark.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CheckMark extends AbstractTag -{ - - protected $Id = 618; - - protected $Name = 'CheckMark'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Check Mark'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Clear', - ), - 1 => array( - 'Id' => 1, - 'Label' => 1, - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 3, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CheckMark2.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CheckMark2.php deleted file mode 100644 index cacbe2744..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CheckMark2.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CheckMark2 extends AbstractTag -{ - - protected $Id = 142; - - protected $Name = 'CheckMark2'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Check Mark 2'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Clear', - ), - 1 => array( - 'Id' => 1, - 'Label' => 1, - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 3, - ), - 4 => array( - 'Id' => 4, - 'Label' => 4, - ), - 5 => array( - 'Id' => 5, - 'Label' => 5, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberration.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberration.php deleted file mode 100644 index 7571f2afa..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberration extends AbstractTag -{ - - protected $Id = 102; - - protected $Name = 'ChromaticAberration'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationBlue.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationBlue.php deleted file mode 100644 index 67ac04973..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationBlue extends AbstractTag -{ - - protected $Id = 107; - - protected $Name = 'ChromaticAberrationBlue'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationOn.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationOn.php deleted file mode 100644 index 707521f9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationOn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationOn extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'ChromaticAberrationOn'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration On'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationRed.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationRed.php deleted file mode 100644 index 1889f2bb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChromaticAberrationRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationRed extends AbstractTag -{ - - protected $Id = 106; - - protected $Name = 'ChromaticAberrationRed'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChrominanceNRTIFFJPEG.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ChrominanceNRTIFFJPEG.php deleted file mode 100644 index 8b1b5b6cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChrominanceNRTIFFJPEG.php +++ /dev/null @@ -1,144 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChrominanceNRTIFFJPEG extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'ChrominanceNR_TIFF_JPEG'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Chrominance NR TIFF JPEG'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 33, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 100, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 0, - 'Label' => 0, - ), - 4 => array( - 'Id' => 16, - 'Label' => 1, - ), - 5 => array( - 'Id' => 33, - 'Label' => 2, - ), - 6 => array( - 'Id' => 50, - 'Label' => 3, - ), - 7 => array( - 'Id' => 66, - 'Label' => 4, - ), - 8 => array( - 'Id' => 83, - 'Label' => 5, - ), - 9 => array( - 'Id' => 100, - 'Label' => 6, - ), - 10 => array( - 'Id' => 116, - 'Label' => 7, - ), - 11 => array( - 'Id' => 133, - 'Label' => 8, - ), - 12 => array( - 'Id' => 150, - 'Label' => 9, - ), - 13 => array( - 'Id' => 166, - 'Label' => 10, - ), - 14 => array( - 'Id' => 167, - 'Label' => 11, - ), - 15 => array( - 'Id' => 168, - 'Label' => 12, - ), - 16 => array( - 'Id' => 169, - 'Label' => 13, - ), - 17 => array( - 'Id' => 170, - 'Label' => 14, - ), - 18 => array( - 'Id' => 171, - 'Label' => 15, - ), - 19 => array( - 'Id' => 172, - 'Label' => 16, - ), - 20 => array( - 'Id' => 173, - 'Label' => 17, - ), - 21 => array( - 'Id' => 174, - 'Label' => 18, - ), - 22 => array( - 'Id' => 175, - 'Label' => 19, - ), - 23 => array( - 'Id' => 176, - 'Label' => 20, - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChrominanceNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ChrominanceNoiseReduction.php deleted file mode 100644 index 31ce2ffc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ChrominanceNoiseReduction.php +++ /dev/null @@ -1,144 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChrominanceNoiseReduction extends AbstractTag -{ - - protected $Id = 94; - - protected $Name = 'ChrominanceNoiseReduction'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Chrominance Noise Reduction'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 58, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 100, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 0, - 'Label' => 0, - ), - 4 => array( - 'Id' => 16, - 'Label' => 1, - ), - 5 => array( - 'Id' => 33, - 'Label' => 2, - ), - 6 => array( - 'Id' => 50, - 'Label' => 3, - ), - 7 => array( - 'Id' => 66, - 'Label' => 4, - ), - 8 => array( - 'Id' => 83, - 'Label' => 5, - ), - 9 => array( - 'Id' => 100, - 'Label' => 6, - ), - 10 => array( - 'Id' => 116, - 'Label' => 7, - ), - 11 => array( - 'Id' => 133, - 'Label' => 8, - ), - 12 => array( - 'Id' => 150, - 'Label' => 9, - ), - 13 => array( - 'Id' => 166, - 'Label' => 10, - ), - 14 => array( - 'Id' => 167, - 'Label' => 11, - ), - 15 => array( - 'Id' => 168, - 'Label' => 12, - ), - 16 => array( - 'Id' => 169, - 'Label' => 13, - ), - 17 => array( - 'Id' => 170, - 'Label' => 14, - ), - 18 => array( - 'Id' => 171, - 'Label' => 15, - ), - 19 => array( - 'Id' => 172, - 'Label' => 16, - ), - 20 => array( - 'Id' => 173, - 'Label' => 17, - ), - 21 => array( - 'Id' => 174, - 'Label' => 18, - ), - 22 => array( - 'Id' => 175, - 'Label' => 19, - ), - 23 => array( - 'Id' => 176, - 'Label' => 20, - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ColorBlur.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ColorBlur.php deleted file mode 100644 index 70cb96c33..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ColorBlur.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBlur extends AbstractTag -{ - - protected $Id = 101; - - protected $Name = 'ColorBlur'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Blur'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ColorToneAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ColorToneAdj.php deleted file mode 100644 index eb22c2308..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ColorToneAdj.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorToneAdj extends AbstractTag -{ - - protected $Id = 286; - - protected $Name = 'ColorToneAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Tone Adj'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ConstrainedCropHeight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ConstrainedCropHeight.php deleted file mode 100644 index fdf08f2c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ConstrainedCropHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConstrainedCropHeight extends AbstractTag -{ - - protected $Id = 614; - - protected $Name = 'ConstrainedCropHeight'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Constrained Crop Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ConstrainedCropWidth.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ConstrainedCropWidth.php deleted file mode 100644 index 793f16c27..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ConstrainedCropWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConstrainedCropWidth extends AbstractTag -{ - - protected $Id = 610; - - protected $Name = 'ConstrainedCropWidth'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Constrained Crop Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ContrastAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ContrastAdj.php deleted file mode 100644 index 1cdb18197..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ContrastAdj.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastAdj extends AbstractTag -{ - - protected $Id = 277; - - protected $Name = 'ContrastAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Contrast Adj'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropActive.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropActive.php deleted file mode 100644 index aa64ac95d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropActive.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropActive extends AbstractTag -{ - - protected $Id = 580; - - protected $Name = 'CropActive'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Active'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropAspectRatio.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropAspectRatio.php deleted file mode 100644 index 0823996be..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropAspectRatio.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropAspectRatio extends AbstractTag -{ - - protected $Id = 608; - - protected $Name = 'CropAspectRatio'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Aspect Ratio'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Free', - ), - 1 => array( - 'Id' => 1, - 'Label' => '3:2', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2:3', - ), - 3 => array( - 'Id' => 3, - 'Label' => '4:3', - ), - 4 => array( - 'Id' => 4, - 'Label' => '3:4', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'A-size Landscape', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'A-size Portrait', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Letter-size Landscape', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Letter-size Portrait', - ), - 9 => array( - 'Id' => 9, - 'Label' => '4:5', - ), - 10 => array( - 'Id' => 10, - 'Label' => '5:4', - ), - 11 => array( - 'Id' => 11, - 'Label' => '1:1', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Circle', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleActive.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleActive.php deleted file mode 100644 index 51900505d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleActive.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropCircleActive extends AbstractTag -{ - - protected $Id = 214; - - protected $Name = 'CropCircleActive'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Crop Circle Active'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleRadius.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleRadius.php deleted file mode 100644 index ae96388b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleRadius.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropCircleRadius extends AbstractTag -{ - - protected $Id = 217; - - protected $Name = 'CropCircleRadius'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Crop Circle Radius'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleX.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleX.php deleted file mode 100644 index 85b04a16d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropCircleX extends AbstractTag -{ - - protected $Id = 215; - - protected $Name = 'CropCircleX'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Crop Circle X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleY.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleY.php deleted file mode 100644 index a00cb119a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropCircleY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropCircleY extends AbstractTag -{ - - protected $Id = 216; - - protected $Name = 'CropCircleY'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Crop Circle Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropHeight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropHeight.php deleted file mode 100644 index 0f8ee7c58..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropHeight extends AbstractTag -{ - - protected $Id = 588; - - protected $Name = 'CropHeight'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropLeft.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropLeft.php deleted file mode 100644 index 57d86fca6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeft extends AbstractTag -{ - - protected $Id = 582; - - protected $Name = 'CropLeft'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropTop.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropTop.php deleted file mode 100644 index b6d5102ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTop extends AbstractTag -{ - - protected $Id = 584; - - protected $Name = 'CropTop'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropWidth.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CropWidth.php deleted file mode 100644 index f9a8290a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CropWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropWidth extends AbstractTag -{ - - protected $Id = 586; - - protected $Name = 'CropWidth'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomContrast.php deleted file mode 100644 index 90a7415e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomContrast extends AbstractTag -{ - - protected $Id = 78; - - protected $Name = 'CustomContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpFineness.php deleted file mode 100644 index 033299306..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomDefaultUnsharpFineness extends AbstractTag -{ - - protected $Id = 190; - - protected $Name = 'CustomDefaultUnsharpFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Default Unsharp Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpStrength.php deleted file mode 100644 index 86abb899a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomDefaultUnsharpStrength extends AbstractTag -{ - - protected $Id = 188; - - protected $Name = 'CustomDefaultUnsharpStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Default Unsharp Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpThreshold.php deleted file mode 100644 index d56ebf436..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomDefaultUnsharpThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomDefaultUnsharpThreshold extends AbstractTag -{ - - protected $Id = 192; - - protected $Name = 'CustomDefaultUnsharpThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Default Unsharp Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomLinear.php deleted file mode 100644 index c8c49e5aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomLinear extends AbstractTag -{ - - protected $Id = 79; - - protected $Name = 'CustomLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomOutputHighlightPoint.php deleted file mode 100644 index 213c3c0f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 83; - - protected $Name = 'CustomOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomOutputShadowPoint.php deleted file mode 100644 index 2b2b3cace..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomOutputShadowPoint extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'CustomOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomPictureStyleData.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomPictureStyleData.php deleted file mode 100644 index 45bbc59f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomPictureStyleData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomPictureStyleData extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'CustomPictureStyleData'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'var_int16u'; - - protected $Writable = true; - - protected $Description = 'Custom Picture Style Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawHighlight.php deleted file mode 100644 index feb19723e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomRawHighlight extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'CustomRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawHighlightPoint.php deleted file mode 100644 index 08f17c38e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomRawHighlightPoint extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'CustomRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawShadow.php deleted file mode 100644 index 9bc3679d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomRawShadow extends AbstractTag -{ - - protected $Id = 133; - - protected $Name = 'CustomRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawShadowPoint.php deleted file mode 100644 index a349f1d58..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomRawShadowPoint extends AbstractTag -{ - - protected $Id = 82; - - protected $Name = 'CustomRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomSharpness.php deleted file mode 100644 index c54d4c0f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomSharpness extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'CustomSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskFineness.php deleted file mode 100644 index 6d51e2df1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomUnsharpMaskFineness extends AbstractTag -{ - - protected $Id = 184; - - protected $Name = 'CustomUnsharpMaskFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Unsharp Mask Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskStrength.php deleted file mode 100644 index d77ed8a2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomUnsharpMaskStrength extends AbstractTag -{ - - protected $Id = 182; - - protected $Name = 'CustomUnsharpMaskStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Unsharp Mask Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskThreshold.php deleted file mode 100644 index 0aac8d46e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/CustomUnsharpMaskThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomUnsharpMaskThreshold extends AbstractTag -{ - - protected $Id = 186; - - protected $Name = 'CustomUnsharpMaskThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Custom Unsharp Mask Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOData.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOData.php deleted file mode 100644 index 2eac1c7b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLOData extends AbstractTag -{ - - protected $Id = 234; - - protected $Name = 'DLOData'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'var_undef'; - - protected $Writable = true; - - protected $Description = 'DLO Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLODataLength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DLODataLength.php deleted file mode 100644 index 99a11b58c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLODataLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLODataLength extends AbstractTag -{ - - protected $Id = 223; - - protected $Name = 'DLODataLength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'DLO Data Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOOn.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOOn.php deleted file mode 100644 index f357ac69c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOOn.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLOOn extends AbstractTag -{ - - protected $Id = 220; - - protected $Name = 'DLOOn'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'DLO On'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOSetting.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOSetting.php deleted file mode 100644 index b7cb3ebb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLOSetting extends AbstractTag -{ - - protected $Id = 221; - - protected $Name = 'DLOSetting'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'DLO Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOSettingApplied.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOSettingApplied.php deleted file mode 100644 index 0eaec5d8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOSettingApplied.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLOSettingApplied extends AbstractTag -{ - - protected $Id = 228; - - protected $Name = 'DLOSettingApplied'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'DLO Setting Applied'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOShootingDistance.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOShootingDistance.php deleted file mode 100644 index 600390d5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOShootingDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLOShootingDistance extends AbstractTag -{ - - protected $Id = 222; - - protected $Name = 'DLOShootingDistance'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'DLO Shooting Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOVersion.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOVersion.php deleted file mode 100644 index 1d0d812da..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DLOVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLOVersion extends AbstractTag -{ - - protected $Id = 229; - - protected $Name = 'DLOVersion'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DLO Version'; - - protected $MaxLength = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DistortionCorrection.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DistortionCorrection.php deleted file mode 100644 index 593769a89..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DistortionCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrection extends AbstractTag -{ - - protected $Id = 103; - - protected $Name = 'DistortionCorrection'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DistortionCorrectionOn.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DistortionCorrectionOn.php deleted file mode 100644 index 17e6164a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DistortionCorrectionOn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrectionOn extends AbstractTag -{ - - protected $Id = 99; - - protected $Name = 'DistortionCorrectionOn'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction On'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DynamicRangeMax.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DynamicRangeMax.php deleted file mode 100644 index 8113238a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DynamicRangeMax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeMax extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'DynamicRangeMax'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Max'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/DynamicRangeMin.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/DynamicRangeMin.php deleted file mode 100644 index 8f71db4e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/DynamicRangeMin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeMin extends AbstractTag -{ - - protected $Id = 122; - - protected $Name = 'DynamicRangeMin'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Min'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulOutputHighlightPoint.php deleted file mode 100644 index e23f3c455..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'FaithfulOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulOutputShadowPoint.php deleted file mode 100644 index 1c377f166..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulOutputShadowPoint extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'FaithfulOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawColorTone.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawColorTone.php deleted file mode 100644 index 8280a7b49..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawColorTone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawColorTone extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'FaithfulRawColorTone'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Color Tone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawContrast.php deleted file mode 100644 index fa5fec1cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawContrast extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'FaithfulRawContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawHighlight.php deleted file mode 100644 index 4f6b23706..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawHighlight extends AbstractTag -{ - - protected $Id = 121; - - protected $Name = 'FaithfulRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawHighlightPoint.php deleted file mode 100644 index 76972da33..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawHighlightPoint extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'FaithfulRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawLinear.php deleted file mode 100644 index 0efd47e6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawLinear extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'FaithfulRawLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawSaturation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawSaturation.php deleted file mode 100644 index e30776d38..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawSaturation extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'FaithfulRawSaturation'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawShadow.php deleted file mode 100644 index c2096492e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawShadow extends AbstractTag -{ - - protected $Id = 130; - - protected $Name = 'FaithfulRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawShadowPoint.php deleted file mode 100644 index 640feea73..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawShadowPoint extends AbstractTag -{ - - protected $Id = 55; - - protected $Name = 'FaithfulRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawSharpness.php deleted file mode 100644 index 1c66ffa87..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulRawSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulRawSharpness extends AbstractTag -{ - - protected $Id = 53; - - protected $Name = 'FaithfulRawSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Raw Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskFineness.php deleted file mode 100644 index 07aef24e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulUnsharpMaskFineness extends AbstractTag -{ - - protected $Id = 172; - - protected $Name = 'FaithfulUnsharpMaskFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Unsharp Mask Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskStrength.php deleted file mode 100644 index 2ada13c81..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulUnsharpMaskStrength extends AbstractTag -{ - - protected $Id = 170; - - protected $Name = 'FaithfulUnsharpMaskStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Unsharp Mask Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskThreshold.php deleted file mode 100644 index 49f0bf376..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/FaithfulUnsharpMaskThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaithfulUnsharpMaskThreshold extends AbstractTag -{ - - protected $Id = 174; - - protected $Name = 'FaithfulUnsharpMaskThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Faithful Unsharp Mask Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/GreenCurveLimits.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/GreenCurveLimits.php deleted file mode 100644 index 8e7bdb6f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/GreenCurveLimits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenCurveLimits extends AbstractTag -{ - - protected $Id = 452; - - protected $Name = 'GreenCurveLimits'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Green Curve Limits'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/GreenCurvePoints.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/GreenCurvePoints.php deleted file mode 100644 index 3ea843168..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/GreenCurvePoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenCurvePoints extends AbstractTag -{ - - protected $Id = 410; - - protected $Name = 'GreenCurvePoints'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Green Curve Points'; - - protected $MaxLength = 21; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/IHLEXIF.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/IHLEXIF.php deleted file mode 100644 index dfbf37d7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/IHLEXIF.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IHLEXIF extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'IHL_EXIF'; - - protected $FullName = 'CanonVRD::IHL'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IHL EXIF'; - - protected $flag_Binary = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/IsCustomPictureStyle.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/IsCustomPictureStyle.php deleted file mode 100644 index 30f84a973..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/IsCustomPictureStyle.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsCustomPictureStyle extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'IsCustomPictureStyle'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Is Custom Picture Style'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeOutputHighlightPoint.php deleted file mode 100644 index c047fb260..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'LandscapeOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeOutputShadowPoint.php deleted file mode 100644 index 2ea27e41c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeOutputShadowPoint extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'LandscapeOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawColorTone.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawColorTone.php deleted file mode 100644 index f261ff1ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawColorTone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawColorTone extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'LandscapeRawColorTone'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Color Tone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawContrast.php deleted file mode 100644 index edf9e1933..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawContrast extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'LandscapeRawContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawHighlight.php deleted file mode 100644 index 8c8d5a67d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawHighlight extends AbstractTag -{ - - protected $Id = 119; - - protected $Name = 'LandscapeRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawHighlightPoint.php deleted file mode 100644 index ac6cf31df..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawHighlightPoint extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'LandscapeRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawLinear.php deleted file mode 100644 index d1f8f918b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawLinear extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'LandscapeRawLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawSaturation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawSaturation.php deleted file mode 100644 index 41f1b02ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawSaturation extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'LandscapeRawSaturation'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawShadow.php deleted file mode 100644 index 2e19c253b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawShadow extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'LandscapeRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawShadowPoint.php deleted file mode 100644 index caf7c0400..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawShadowPoint extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'LandscapeRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawSharpness.php deleted file mode 100644 index 6a90f0dc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeRawSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeRawSharpness extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'LandscapeRawSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Raw Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskFineness.php deleted file mode 100644 index 614c26dba..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeUnsharpMaskFineness extends AbstractTag -{ - - protected $Id = 160; - - protected $Name = 'LandscapeUnsharpMaskFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Unsharp Mask Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskStrength.php deleted file mode 100644 index d482ef55c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeUnsharpMaskStrength extends AbstractTag -{ - - protected $Id = 158; - - protected $Name = 'LandscapeUnsharpMaskStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Unsharp Mask Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskThreshold.php deleted file mode 100644 index 0aeacdc13..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LandscapeUnsharpMaskThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandscapeUnsharpMaskThreshold extends AbstractTag -{ - - protected $Id = 162; - - protected $Name = 'LandscapeUnsharpMaskThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Landscape Unsharp Mask Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceCurveLimits.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceCurveLimits.php deleted file mode 100644 index 9a0978852..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceCurveLimits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceCurveLimits extends AbstractTag -{ - - protected $Id = 336; - - protected $Name = 'LuminanceCurveLimits'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Luminance Curve Limits'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceCurvePoints.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceCurvePoints.php deleted file mode 100644 index 9b8c420df..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceCurvePoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceCurvePoints extends AbstractTag -{ - - protected $Id = 294; - - protected $Name = 'LuminanceCurvePoints'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Luminance Curve Points'; - - protected $MaxLength = 21; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceNRTIFFJPEG.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceNRTIFFJPEG.php deleted file mode 100644 index 937750437..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceNRTIFFJPEG.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceNRTIFFJPEG extends AbstractTag -{ - - protected $Id = 109; - - protected $Name = 'LuminanceNR_TIFF_JPEG'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Luminance NR TIFF JPEG'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceNoiseReduction.php deleted file mode 100644 index c8e471734..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/LuminanceNoiseReduction.php +++ /dev/null @@ -1,144 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceNoiseReduction extends AbstractTag -{ - - protected $Id = 95; - - protected $Name = 'LuminanceNoiseReduction'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Luminance Noise Reduction'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 65, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 100, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 0, - 'Label' => 0, - ), - 4 => array( - 'Id' => 65, - 'Label' => 1, - ), - 5 => array( - 'Id' => 100, - 'Label' => 2, - ), - 6 => array( - 'Id' => 110, - 'Label' => 3, - ), - 7 => array( - 'Id' => 120, - 'Label' => 4, - ), - 8 => array( - 'Id' => 130, - 'Label' => 5, - ), - 9 => array( - 'Id' => 140, - 'Label' => 6, - ), - 10 => array( - 'Id' => 150, - 'Label' => 7, - ), - 11 => array( - 'Id' => 160, - 'Label' => 8, - ), - 12 => array( - 'Id' => 170, - 'Label' => 9, - ), - 13 => array( - 'Id' => 180, - 'Label' => 10, - ), - 14 => array( - 'Id' => 181, - 'Label' => 11, - ), - 15 => array( - 'Id' => 182, - 'Label' => 12, - ), - 16 => array( - 'Id' => 183, - 'Label' => 13, - ), - 17 => array( - 'Id' => 184, - 'Label' => 14, - ), - 18 => array( - 'Id' => 185, - 'Label' => 15, - ), - 19 => array( - 'Id' => 186, - 'Label' => 16, - ), - 20 => array( - 'Id' => 187, - 'Label' => 17, - ), - 21 => array( - 'Id' => 188, - 'Label' => 18, - ), - 22 => array( - 'Id' => 189, - 'Label' => 19, - ), - 23 => array( - 'Id' => 190, - 'Label' => 20, - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeContrast.php deleted file mode 100644 index f1049336b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeContrast extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'MonochromeContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeFilterEffect.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeFilterEffect.php deleted file mode 100644 index d01cfb91f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeFilterEffect.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeFilterEffect extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'MonochromeFilterEffect'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Filter Effect'; - - protected $Values = array( - '-2' => array( - 'Id' => '-2', - 'Label' => 'None', - ), - '-1' => array( - 'Id' => '-1', - 'Label' => 'Yellow', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Orange', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Red', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeLinear.php deleted file mode 100644 index 026f7e67d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeLinear extends AbstractTag -{ - - protected $Id = 61; - - protected $Name = 'MonochromeLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeOutputHighlightPoint.php deleted file mode 100644 index de0087a29..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'MonochromeOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeOutputShadowPoint.php deleted file mode 100644 index 879c1ed66..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeOutputShadowPoint extends AbstractTag -{ - - protected $Id = 66; - - protected $Name = 'MonochromeOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawHighlight.php deleted file mode 100644 index 461467d1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeRawHighlight extends AbstractTag -{ - - protected $Id = 122; - - protected $Name = 'MonochromeRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawHighlightPoint.php deleted file mode 100644 index 62ba08d09..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeRawHighlightPoint extends AbstractTag -{ - - protected $Id = 63; - - protected $Name = 'MonochromeRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawShadow.php deleted file mode 100644 index e0f411336..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeRawShadow extends AbstractTag -{ - - protected $Id = 131; - - protected $Name = 'MonochromeRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawShadowPoint.php deleted file mode 100644 index 0a154fdf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeRawShadowPoint extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'MonochromeRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeSharpness.php deleted file mode 100644 index e3d6e8f18..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeSharpness extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'MonochromeSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeToningEffect.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeToningEffect.php deleted file mode 100644 index 45b09e47f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeToningEffect.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeToningEffect extends AbstractTag -{ - - protected $Id = 59; - - protected $Name = 'MonochromeToningEffect'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Toning Effect'; - - protected $Values = array( - '-2' => array( - 'Id' => '-2', - 'Label' => 'None', - ), - '-1' => array( - 'Id' => '-1', - 'Label' => 'Sepia', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Blue', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Purple', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskFineness.php deleted file mode 100644 index 533fbfa18..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeUnsharpMaskFineness extends AbstractTag -{ - - protected $Id = 178; - - protected $Name = 'MonochromeUnsharpMaskFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Unsharp Mask Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskStrength.php deleted file mode 100644 index 29d840fac..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeUnsharpMaskStrength extends AbstractTag -{ - - protected $Id = 176; - - protected $Name = 'MonochromeUnsharpMaskStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Unsharp Mask Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskThreshold.php deleted file mode 100644 index c623d72e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/MonochromeUnsharpMaskThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeUnsharpMaskThreshold extends AbstractTag -{ - - protected $Id = 180; - - protected $Name = 'MonochromeUnsharpMaskThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Monochrome Unsharp Mask Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutraUnsharpMaskStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutraUnsharpMaskStrength.php deleted file mode 100644 index b0d9b1756..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutraUnsharpMaskStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutraUnsharpMaskStrength extends AbstractTag -{ - - protected $Id = 164; - - protected $Name = 'NeutraUnsharpMaskStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutra Unsharp Mask Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralOutputHighlightPoint.php deleted file mode 100644 index 593ce3773..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 47; - - protected $Name = 'NeutralOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralOutputShadowPoint.php deleted file mode 100644 index e4c683728..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralOutputShadowPoint extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'NeutralOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawColorTone.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawColorTone.php deleted file mode 100644 index 3ab11b60f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawColorTone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawColorTone extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'NeutralRawColorTone'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Color Tone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawContrast.php deleted file mode 100644 index f7ea09543..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawContrast extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'NeutralRawContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawHighlight.php deleted file mode 100644 index 034a91b4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawHighlight extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'NeutralRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawHighlightPoint.php deleted file mode 100644 index 872413efc..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawHighlightPoint extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'NeutralRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawLinear.php deleted file mode 100644 index 0edd18d96..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawLinear extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'NeutralRawLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawSaturation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawSaturation.php deleted file mode 100644 index dcbd65635..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawSaturation extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'NeutralRawSaturation'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawShadow.php deleted file mode 100644 index f9c5800e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawShadow extends AbstractTag -{ - - protected $Id = 129; - - protected $Name = 'NeutralRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawShadowPoint.php deleted file mode 100644 index 454cc2db8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawShadowPoint extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'NeutralRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawSharpness.php deleted file mode 100644 index 3ec4c4791..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralRawSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralRawSharpness extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'NeutralRawSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Raw Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralUnsharpMaskFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralUnsharpMaskFineness.php deleted file mode 100644 index 4e4fc6c17..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralUnsharpMaskFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralUnsharpMaskFineness extends AbstractTag -{ - - protected $Id = 166; - - protected $Name = 'NeutralUnsharpMaskFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Unsharp Mask Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralUnsharpMaskThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralUnsharpMaskThreshold.php deleted file mode 100644 index 103020eb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/NeutralUnsharpMaskThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralUnsharpMaskThreshold extends AbstractTag -{ - - protected $Id = 168; - - protected $Name = 'NeutralUnsharpMaskThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Neutral Unsharp Mask Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PeripheralIllumination.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PeripheralIllumination.php deleted file mode 100644 index 9ae75dfdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PeripheralIllumination.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralIllumination extends AbstractTag -{ - - protected $Id = 104; - - protected $Name = 'PeripheralIllumination'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Illumination'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PeripheralIlluminationOn.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PeripheralIlluminationOn.php deleted file mode 100644 index b2342d44a..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PeripheralIlluminationOn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralIlluminationOn extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'PeripheralIlluminationOn'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Illumination On'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PictureStyle.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PictureStyle.php deleted file mode 100644 index fcababd64..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PictureStyle.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureStyle extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PictureStyle'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Style'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Landscape', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Neutral', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Faithful', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Monochrome', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Unknown?', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitOutputHighlightPoint.php deleted file mode 100644 index 8dd9b253d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'PortraitOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitOutputShadowPoint.php deleted file mode 100644 index 17eb89c47..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitOutputShadowPoint extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'PortraitOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawColorTone.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawColorTone.php deleted file mode 100644 index fa9181fe1..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawColorTone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawColorTone extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'PortraitRawColorTone'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Color Tone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawContrast.php deleted file mode 100644 index a011c35b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawContrast extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'PortraitRawContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawHighlight.php deleted file mode 100644 index 163dcb75d..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawHighlight extends AbstractTag -{ - - protected $Id = 118; - - protected $Name = 'PortraitRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawHighlightPoint.php deleted file mode 100644 index 3eecc16f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawHighlightPoint extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'PortraitRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawLinear.php deleted file mode 100644 index 7688b85de..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawLinear extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'PortraitRawLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawSaturation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawSaturation.php deleted file mode 100644 index edd9da1e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawSaturation extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'PortraitRawSaturation'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawShadow.php deleted file mode 100644 index 0c72ca283..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawShadow extends AbstractTag -{ - - protected $Id = 127; - - protected $Name = 'PortraitRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawShadowPoint.php deleted file mode 100644 index f591ec4ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawShadowPoint extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'PortraitRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawSharpness.php deleted file mode 100644 index 877398814..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitRawSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRawSharpness extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'PortraitRawSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Raw Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskFineness.php deleted file mode 100644 index 007ff003b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitUnsharpMaskFineness extends AbstractTag -{ - - protected $Id = 154; - - protected $Name = 'PortraitUnsharpMaskFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Unsharp Mask Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskStrength.php deleted file mode 100644 index 3f10caf52..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitUnsharpMaskStrength extends AbstractTag -{ - - protected $Id = 152; - - protected $Name = 'PortraitUnsharpMaskStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Unsharp Mask Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskThreshold.php deleted file mode 100644 index 6094804ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PortraitUnsharpMaskThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitUnsharpMaskThreshold extends AbstractTag -{ - - protected $Id = 156; - - protected $Name = 'PortraitUnsharpMaskThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Portrait Unsharp Mask Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/PreviewImage.php deleted file mode 100644 index cad8f5008..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'CanonVRD::IHL'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RGBCurveLimits.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RGBCurveLimits.php deleted file mode 100644 index 4ce45e8bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RGBCurveLimits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RGBCurveLimits extends AbstractTag -{ - - protected $Id = 568; - - protected $Name = 'RGBCurveLimits'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'RGB Curve Limits'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RGBCurvePoints.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RGBCurvePoints.php deleted file mode 100644 index c8cda0d1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RGBCurvePoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RGBCurvePoints extends AbstractTag -{ - - protected $Id = 526; - - protected $Name = 'RGBCurvePoints'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'RGB Curve Points'; - - protected $MaxLength = 21; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawBrightnessAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RawBrightnessAdj.php deleted file mode 100644 index fee5251dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawBrightnessAdj.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawBrightnessAdj extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'RawBrightnessAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Raw Brightness Adj'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCodecVersion.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCodecVersion.php deleted file mode 100644 index d8e8bd0db..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCodecVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawCodecVersion extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'RawCodecVersion'; - - protected $FullName = 'CanonVRD::IHL'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Codec Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawColorAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RawColorAdj.php deleted file mode 100644 index 3179d912b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawColorAdj.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawColorAdj extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'RawColorAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Color Adj'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Shot Settings', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Faithful', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCustomSaturation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCustomSaturation.php deleted file mode 100644 index e1b0d2517..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCustomSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawCustomSaturation extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'RawCustomSaturation'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Raw Custom Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCustomTone.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCustomTone.php deleted file mode 100644 index e2aa34b99..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RawCustomTone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawCustomTone extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'RawCustomTone'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Raw Custom Tone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RedCurveLimits.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RedCurveLimits.php deleted file mode 100644 index 710dd2405..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RedCurveLimits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedCurveLimits extends AbstractTag -{ - - protected $Id = 394; - - protected $Name = 'RedCurveLimits'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Red Curve Limits'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/RedCurvePoints.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/RedCurvePoints.php deleted file mode 100644 index 50f7233d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/RedCurvePoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedCurvePoints extends AbstractTag -{ - - protected $Id = 352; - - protected $Name = 'RedCurvePoints'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Red Curve Points'; - - protected $MaxLength = 21; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/Rotation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/Rotation.php deleted file mode 100644 index b533adae7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/Rotation.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 622; - - protected $Name = 'Rotation'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 0, - ), - 1 => array( - 'Id' => 1, - 'Label' => 90, - ), - 2 => array( - 'Id' => 2, - 'Label' => 180, - ), - 3 => array( - 'Id' => 3, - 'Label' => 270, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/SaturationAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/SaturationAdj.php deleted file mode 100644 index 017c9f0ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/SaturationAdj.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdj extends AbstractTag -{ - - protected $Id = 278; - - protected $Name = 'SaturationAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Saturation Adj'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/SharpnessAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/SharpnessAdj.php deleted file mode 100644 index 8c9584499..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/SharpnessAdj.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessAdj extends AbstractTag -{ - - protected $Id = 602; - - protected $Name = 'SharpnessAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sharpness Adj'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StampToolCount.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StampToolCount.php deleted file mode 100644 index 9bfab6687..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StampToolCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StampToolCount extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'StampToolCount'; - - protected $FullName = 'CanonVRD::StampTool'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stamp Tool Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardOutputHighlightPoint.php deleted file mode 100644 index 9e2a2ffd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'StandardOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardOutputShadowPoint.php deleted file mode 100644 index 7f5552b2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardOutputShadowPoint extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'StandardOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawColorTone.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawColorTone.php deleted file mode 100644 index 1c532534b..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawColorTone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawColorTone extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'StandardRawColorTone'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Color Tone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawContrast.php deleted file mode 100644 index e5f6910a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawContrast extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'StandardRawContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawHighlight.php deleted file mode 100644 index 760fdd47c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawHighlight extends AbstractTag -{ - - protected $Id = 117; - - protected $Name = 'StandardRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawHighlightPoint.php deleted file mode 100644 index 6d0a70c89..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawHighlightPoint extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'StandardRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawLinear.php deleted file mode 100644 index 55467832c..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawLinear extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'StandardRawLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawSaturation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawSaturation.php deleted file mode 100644 index 2c7dffa59..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawSaturation extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'StandardRawSaturation'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawShadow.php deleted file mode 100644 index 5c0740de9..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawShadow extends AbstractTag -{ - - protected $Id = 126; - - protected $Name = 'StandardRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawShadowPoint.php deleted file mode 100644 index 8644be394..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawShadowPoint extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'StandardRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawSharpness.php deleted file mode 100644 index 8f38a9686..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardRawSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardRawSharpness extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'StandardRawSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Raw Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskFineness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskFineness.php deleted file mode 100644 index 850ac6570..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskFineness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardUnsharpMaskFineness extends AbstractTag -{ - - protected $Id = 148; - - protected $Name = 'StandardUnsharpMaskFineness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Unsharp Mask Fineness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskStrength.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskStrength.php deleted file mode 100644 index e2d1d4060..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardUnsharpMaskStrength extends AbstractTag -{ - - protected $Id = 146; - - protected $Name = 'StandardUnsharpMaskStrength'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Unsharp Mask Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskThreshold.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskThreshold.php deleted file mode 100644 index d68d47b34..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/StandardUnsharpMaskThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardUnsharpMaskThreshold extends AbstractTag -{ - - protected $Id = 150; - - protected $Name = 'StandardUnsharpMaskThreshold'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Standard Unsharp Mask Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ThumbnailImage.php deleted file mode 100644 index b66ffa6d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ThumbnailImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'CanonVRD::IHL'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveActive.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveActive.php deleted file mode 100644 index 7ac75d649..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveActive.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveActive extends AbstractTag -{ - - protected $Id = 272; - - protected $Name = 'ToneCurveActive'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Active'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveInterpolation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveInterpolation.php deleted file mode 100644 index 0f4902941..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveInterpolation.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveInterpolation extends AbstractTag -{ - - protected $Id = 345; - - protected $Name = 'ToneCurveInterpolation'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Interpolation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Curve', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Straight', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveMode.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveMode.php deleted file mode 100644 index b9a01d1ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveMode.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveMode extends AbstractTag -{ - - protected $Id = 275; - - protected $Name = 'ToneCurveMode'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Luminance', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveProperty.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveProperty.php deleted file mode 100644 index ac7c97aaf..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/ToneCurveProperty.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveProperty extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'ToneCurveProperty'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Property'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Shot Settings', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Linear', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Custom 1', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Custom 2', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Custom 3', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Custom 4', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Custom 5', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownContrast.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownContrast.php deleted file mode 100644 index b9c400956..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownContrast extends AbstractTag -{ - - protected $Id = 69; - - protected $Name = 'UnknownContrast'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownLinear.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownLinear.php deleted file mode 100644 index f12b41f33..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownLinear.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownLinear extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'UnknownLinear'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Linear'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownOutputHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownOutputHighlightPoint.php deleted file mode 100644 index 3a3e00f53..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownOutputHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownOutputHighlightPoint extends AbstractTag -{ - - protected $Id = 74; - - protected $Name = 'UnknownOutputHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Output Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownOutputShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownOutputShadowPoint.php deleted file mode 100644 index 1e75a01c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownOutputShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownOutputShadowPoint extends AbstractTag -{ - - protected $Id = 75; - - protected $Name = 'UnknownOutputShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Output Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawHighlight.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawHighlight.php deleted file mode 100644 index f1dd660dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawHighlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownRawHighlight extends AbstractTag -{ - - protected $Id = 123; - - protected $Name = 'UnknownRawHighlight'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Raw Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawHighlightPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawHighlightPoint.php deleted file mode 100644 index fc748fc58..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawHighlightPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownRawHighlightPoint extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'UnknownRawHighlightPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Raw Highlight Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawShadow.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawShadow.php deleted file mode 100644 index c6e4c46d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawShadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownRawShadow extends AbstractTag -{ - - protected $Id = 132; - - protected $Name = 'UnknownRawShadow'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Raw Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawShadowPoint.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawShadowPoint.php deleted file mode 100644 index 288adbed4..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownRawShadowPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownRawShadowPoint extends AbstractTag -{ - - protected $Id = 73; - - protected $Name = 'UnknownRawShadowPoint'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Raw Shadow Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownSharpness.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownSharpness.php deleted file mode 100644 index 853be73b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnknownSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownSharpness extends AbstractTag -{ - - protected $Id = 71; - - protected $Name = 'UnknownSharpness'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unknown Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnsharpMask.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/UnsharpMask.php deleted file mode 100644 index bcc104a17..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/UnsharpMask.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnsharpMask extends AbstractTag -{ - - protected $Id = 144; - - protected $Name = 'UnsharpMask'; - - protected $FullName = 'CanonVRD::Ver2'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Unsharp Mask'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/VRDVersion.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/VRDVersion.php deleted file mode 100644 index 3cde79c0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/VRDVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VRDVersion extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'VRDVersion'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'VRD Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBAdjColorTemp.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/WBAdjColorTemp.php deleted file mode 100644 index 9ba92a573..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBAdjColorTemp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjColorTemp extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'WBAdjColorTemp'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Adj Color Temp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBAdjRGGBLevels.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/WBAdjRGGBLevels.php deleted file mode 100644 index 170f63676..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBAdjRGGBLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjRGGBLevels extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'WBAdjRGGBLevels'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Adj RGGB Levels'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneActive.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneActive.php deleted file mode 100644 index 91995e22f..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneActive.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBFineTuneActive extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'WBFineTuneActive'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Fine Tune Active'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneSaturation.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneSaturation.php deleted file mode 100644 index cf8adad8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBFineTuneSaturation extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'WBFineTuneSaturation'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Fine Tune Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneTone.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneTone.php deleted file mode 100644 index aded1f030..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/WBFineTuneTone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBFineTuneTone extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'WBFineTuneTone'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Fine Tune Tone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/WhiteBalanceAdj.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/WhiteBalanceAdj.php deleted file mode 100644 index 5d99e7399..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/WhiteBalanceAdj.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceAdj extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'WhiteBalanceAdj'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance Adj'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Fluorescent', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Flash', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Shade', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Kelvin', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Manual (Click)', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Shot Settings', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/WorkColorSpace.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/WorkColorSpace.php deleted file mode 100644 index a9ddd34cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/WorkColorSpace.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorkColorSpace extends AbstractTag -{ - - protected $Id = 624; - - protected $Name = 'WorkColorSpace'; - - protected $FullName = 'CanonVRD::Ver1'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Work Color Space'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'sRGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adobe RGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Wide Gamut RGB', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Apple RGB', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'ColorMatch RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/CanonVRD/XMP.php b/lib/PHPExiftool/Driver/Tag/CanonVRD/XMP.php deleted file mode 100644 index 7ac0e19b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/CanonVRD/XMP.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\CanonVRD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMP extends AbstractTag -{ - - protected $Id = 4294902006; - - protected $Name = 'XMP'; - - protected $FullName = 'CanonVRD::Main'; - - protected $GroupName = 'CanonVRD'; - - protected $g0 = 'CanonVRD'; - - protected $g1 = 'CanonVRD'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'XMP'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/AFMode.php b/lib/PHPExiftool/Driver/Tag/Casio/AFMode.php deleted file mode 100644 index 8b7d639f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/AFMode.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMode extends AbstractTag -{ - - protected $Id = 12297; - - protected $Name = 'AFMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Spot', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Multi', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Face Detection', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tracking', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Intelligent', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/AFPoint.php b/lib/PHPExiftool/Driver/Tag/Casio/AFPoint.php deleted file mode 100644 index bef067e22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/AFPoint.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoint extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'AFPoint'; - - protected $FullName = 'Casio::Main'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Upper Left', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Upper Right', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Near Left/Right of Center', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Far Left/Right of Center', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Far Left/Right of Center/Bottom', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Top Near-left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Near Upper/Left', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Top Near-right', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Top Left', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Top Center', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Top Right', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Center Left', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Center Right', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Bottom Left', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Bottom Center', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Bottom Right', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/AFPointPosition.php b/lib/PHPExiftool/Driver/Tag/Casio/AFPointPosition.php deleted file mode 100644 index cb7f4cf75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/AFPointPosition.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointPosition extends AbstractTag -{ - - protected $Id = 8225; - - protected $Name = 'AFPointPosition'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'AF Point Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ArtMode.php b/lib/PHPExiftool/Driver/Tag/Casio/ArtMode.php deleted file mode 100644 index 960d0ceda..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ArtMode.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtMode extends AbstractTag -{ - - protected $Id = 12315; - - protected $Name = 'ArtMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Art Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Silent Movie', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'HDR', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Premium Auto', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Painting', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Crayon Drawing', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Panorama', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Art HDR', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'High Speed Night Shot', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Monochrome', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Toy Camera', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Pop Art', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Light Tone', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ArtModeParameters.php b/lib/PHPExiftool/Driver/Tag/Casio/ArtModeParameters.php deleted file mode 100644 index dcde99288..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ArtModeParameters.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtModeParameters extends AbstractTag -{ - - protected $Id = 12555; - - protected $Name = 'ArtModeParameters'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Art Mode Parameters'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/AutoISO.php b/lib/PHPExiftool/Driver/Tag/Casio/AutoISO.php deleted file mode 100644 index 66c851337..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/AutoISO.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoISO extends AbstractTag -{ - - protected $Id = 12296; - - protected $Name = 'AutoISO'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto ISO'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'On (high sensitivity)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'On (anti-shake)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'High Speed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/BestShotMode.php b/lib/PHPExiftool/Driver/Tag/Casio/BestShotMode.php deleted file mode 100644 index 2676b49b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/BestShotMode.php +++ /dev/null @@ -1,3070 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BestShotMode extends AbstractTag -{ - - protected $Id = 12295; - - protected $Name = 'BestShotMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Best Shot Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Scenery', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Portrait with Scenery', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Children', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Sports', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Pet', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Flower', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Natural Green', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Autumn Leaves', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Sundown', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'High Speed Night Scene', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Night Scene Portrait', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Fireworks', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'High Speed Anti Shake', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Multi-motion Image', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'High Speed Best Selection', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Move Out CS', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Move In CS', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Pre-record Movie', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'For YouTube', - ), - 22 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 23 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 24 => array( - 'Id' => 2, - 'Label' => 'Expression CS', - ), - 25 => array( - 'Id' => 3, - 'Label' => 'Baby CS', - ), - 26 => array( - 'Id' => 4, - 'Label' => 'Child CS', - ), - 27 => array( - 'Id' => 5, - 'Label' => 'Pet CS', - ), - 28 => array( - 'Id' => 6, - 'Label' => 'Sports CS', - ), - 29 => array( - 'Id' => 7, - 'Label' => 'Child High Speed Movie', - ), - 30 => array( - 'Id' => 8, - 'Label' => 'Pet High Speed Movie', - ), - 31 => array( - 'Id' => 9, - 'Label' => 'Sports High Speed Movie', - ), - 32 => array( - 'Id' => 10, - 'Label' => 'Lag Correction', - ), - 33 => array( - 'Id' => 11, - 'Label' => 'High Speed Lighting', - ), - 34 => array( - 'Id' => 12, - 'Label' => 'High Speed Night Scene', - ), - 35 => array( - 'Id' => 13, - 'Label' => 'High Speed Night Scene and Portrait', - ), - 36 => array( - 'Id' => 14, - 'Label' => 'High Speed Anti Shake', - ), - 37 => array( - 'Id' => 15, - 'Label' => 'High Speed Best Selection', - ), - 38 => array( - 'Id' => 16, - 'Label' => 'Portrait', - ), - 39 => array( - 'Id' => 17, - 'Label' => 'Scenery', - ), - 40 => array( - 'Id' => 18, - 'Label' => 'Portrait With Scenery', - ), - 41 => array( - 'Id' => 19, - 'Label' => 'Flower', - ), - 42 => array( - 'Id' => 20, - 'Label' => 'Natural Green', - ), - 43 => array( - 'Id' => 21, - 'Label' => 'Autumn Leaves', - ), - 44 => array( - 'Id' => 22, - 'Label' => 'Sundown', - ), - 45 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 46 => array( - 'Id' => 24, - 'Label' => 'Multi-motion Image', - ), - 47 => array( - 'Id' => 25, - 'Label' => 'Move Out CS', - ), - 48 => array( - 'Id' => 26, - 'Label' => 'Move In CS', - ), - 49 => array( - 'Id' => 27, - 'Label' => 'Pre-record Movie', - ), - 50 => array( - 'Id' => 28, - 'Label' => 'For YouTube', - ), - 51 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 52 => array( - 'Id' => 1, - 'Label' => 'Slow Motion Swing (behind)', - ), - 53 => array( - 'Id' => 2, - 'Label' => 'Slow Motion Swing (front)', - ), - 54 => array( - 'Id' => 3, - 'Label' => 'Self Slow Motion (behind)', - ), - 55 => array( - 'Id' => 4, - 'Label' => 'Self Slow Motion (front)', - ), - 56 => array( - 'Id' => 5, - 'Label' => 'Swing Burst', - ), - 57 => array( - 'Id' => 6, - 'Label' => 'HDR', - ), - 58 => array( - 'Id' => 7, - 'Label' => 'HDR Art', - ), - 59 => array( - 'Id' => 8, - 'Label' => 'High Speed Night Scene', - ), - 60 => array( - 'Id' => 9, - 'Label' => 'High Speed Night Scene and Portrait', - ), - 61 => array( - 'Id' => 10, - 'Label' => 'High Speed Anti Shake', - ), - 62 => array( - 'Id' => 11, - 'Label' => 'Multi SR Zoom', - ), - 63 => array( - 'Id' => 12, - 'Label' => 'Blurred Background', - ), - 64 => array( - 'Id' => 13, - 'Label' => 'Wide Shot', - ), - 65 => array( - 'Id' => 14, - 'Label' => 'Slide Panorama', - ), - 66 => array( - 'Id' => 15, - 'Label' => 'High Speed Best Selection', - ), - 67 => array( - 'Id' => 16, - 'Label' => 'Lag Correction', - ), - 68 => array( - 'Id' => 17, - 'Label' => 'High Speed CS', - ), - 69 => array( - 'Id' => 18, - 'Label' => 'Child CS', - ), - 70 => array( - 'Id' => 19, - 'Label' => 'Pet CS', - ), - 71 => array( - 'Id' => 20, - 'Label' => 'Sports CS', - ), - 72 => array( - 'Id' => 21, - 'Label' => 'Child High Speed Movie', - ), - 73 => array( - 'Id' => 22, - 'Label' => 'Pet High Speed Movie', - ), - 74 => array( - 'Id' => 23, - 'Label' => 'Sports High Speed Movie', - ), - 75 => array( - 'Id' => 24, - 'Label' => 'Portrait', - ), - 76 => array( - 'Id' => 25, - 'Label' => 'Scenery', - ), - 77 => array( - 'Id' => 26, - 'Label' => 'Portrait with Scenery', - ), - 78 => array( - 'Id' => 27, - 'Label' => 'Children', - ), - 79 => array( - 'Id' => 28, - 'Label' => 'Sports', - ), - 80 => array( - 'Id' => 29, - 'Label' => 'Candlelight Portrait', - ), - 81 => array( - 'Id' => 30, - 'Label' => 'Party', - ), - 82 => array( - 'Id' => 31, - 'Label' => 'Pet', - ), - 83 => array( - 'Id' => 32, - 'Label' => 'Flower', - ), - 84 => array( - 'Id' => 33, - 'Label' => 'Natural Green', - ), - 85 => array( - 'Id' => 34, - 'Label' => 'Autumn Leaves', - ), - 86 => array( - 'Id' => 35, - 'Label' => 'Soft Flowing Water', - ), - 87 => array( - 'Id' => 36, - 'Label' => 'Splashing Water', - ), - 88 => array( - 'Id' => 37, - 'Label' => 'Sundown', - ), - 89 => array( - 'Id' => 38, - 'Label' => 'Fireworks', - ), - 90 => array( - 'Id' => 39, - 'Label' => 'Food', - ), - 91 => array( - 'Id' => 40, - 'Label' => 'Text', - ), - 92 => array( - 'Id' => 41, - 'Label' => 'Collection', - ), - 93 => array( - 'Id' => 42, - 'Label' => 'Auction', - ), - 94 => array( - 'Id' => 43, - 'Label' => 'Pre-record Movie', - ), - 95 => array( - 'Id' => 44, - 'Label' => 'For YouTube', - ), - 96 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 97 => array( - 'Id' => 1, - 'Label' => 'Expression CS', - ), - 98 => array( - 'Id' => 2, - 'Label' => 'Baby CS', - ), - 99 => array( - 'Id' => 3, - 'Label' => 'Child CS', - ), - 100 => array( - 'Id' => 4, - 'Label' => 'Pet CS', - ), - 101 => array( - 'Id' => 5, - 'Label' => 'Sports CS', - ), - 102 => array( - 'Id' => 6, - 'Label' => 'Child High Speed Movie', - ), - 103 => array( - 'Id' => 7, - 'Label' => 'Pet High Speed Movie', - ), - 104 => array( - 'Id' => 8, - 'Label' => 'Sports High Speed Movie', - ), - 105 => array( - 'Id' => 9, - 'Label' => 'Lag Correction', - ), - 106 => array( - 'Id' => 10, - 'Label' => 'High Speed Lighting', - ), - 107 => array( - 'Id' => 11, - 'Label' => 'High Speed Night Scene', - ), - 108 => array( - 'Id' => 12, - 'Label' => 'High Speed Night Scene and Portrait', - ), - 109 => array( - 'Id' => 13, - 'Label' => 'High Speed Anti Shake', - ), - 110 => array( - 'Id' => 14, - 'Label' => 'High Speed Best Selection', - ), - 111 => array( - 'Id' => 15, - 'Label' => 'Portrait', - ), - 112 => array( - 'Id' => 16, - 'Label' => 'Scenery', - ), - 113 => array( - 'Id' => 17, - 'Label' => 'Portrait With Scenery', - ), - 114 => array( - 'Id' => 18, - 'Label' => 'Flower', - ), - 115 => array( - 'Id' => 19, - 'Label' => 'Natural Green', - ), - 116 => array( - 'Id' => 20, - 'Label' => 'Autumn Leaves', - ), - 117 => array( - 'Id' => 21, - 'Label' => 'Sundown', - ), - 118 => array( - 'Id' => 22, - 'Label' => 'Fireworks', - ), - 119 => array( - 'Id' => 23, - 'Label' => 'Multi-motion Image', - ), - 120 => array( - 'Id' => 24, - 'Label' => 'Move Out CS', - ), - 121 => array( - 'Id' => 25, - 'Label' => 'Move In CS', - ), - 122 => array( - 'Id' => 26, - 'Label' => 'Pre-record Movie', - ), - 123 => array( - 'Id' => 27, - 'Label' => 'For YouTube', - ), - 124 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 125 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 126 => array( - 'Id' => 2, - 'Label' => 'Auto Best Shot', - ), - 127 => array( - 'Id' => 3, - 'Label' => 'Dynamic Photo', - ), - 128 => array( - 'Id' => 4, - 'Label' => 'Interval Snapshot', - ), - 129 => array( - 'Id' => 5, - 'Label' => 'Interval Movie', - ), - 130 => array( - 'Id' => 6, - 'Label' => 'Portrait', - ), - 131 => array( - 'Id' => 7, - 'Label' => 'Scenery', - ), - 132 => array( - 'Id' => 8, - 'Label' => 'Portrait with Scenery', - ), - 133 => array( - 'Id' => 9, - 'Label' => 'Underwater', - ), - 134 => array( - 'Id' => 10, - 'Label' => 'Beach', - ), - 135 => array( - 'Id' => 11, - 'Label' => 'Snow', - ), - 136 => array( - 'Id' => 12, - 'Label' => 'Children', - ), - 137 => array( - 'Id' => 13, - 'Label' => 'Sports', - ), - 138 => array( - 'Id' => 14, - 'Label' => 'Pet', - ), - 139 => array( - 'Id' => 15, - 'Label' => 'Flower', - ), - 140 => array( - 'Id' => 16, - 'Label' => 'Sundown', - ), - 141 => array( - 'Id' => 17, - 'Label' => 'Night Scene', - ), - 142 => array( - 'Id' => 18, - 'Label' => 'Night Scene Portrait', - ), - 143 => array( - 'Id' => 19, - 'Label' => 'Fireworks', - ), - 144 => array( - 'Id' => 20, - 'Label' => 'Food', - ), - 145 => array( - 'Id' => 21, - 'Label' => 'For eBay', - ), - 146 => array( - 'Id' => 22, - 'Label' => 'Multi-motion Image', - ), - 147 => array( - 'Id' => 23, - 'Label' => 'Pre-record Movie', - ), - 148 => array( - 'Id' => 24, - 'Label' => 'For YouTube', - ), - 149 => array( - 'Id' => 25, - 'Label' => 'Voice Recording', - ), - 150 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 151 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 152 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 153 => array( - 'Id' => 3, - 'Label' => 'Scenery', - ), - 154 => array( - 'Id' => 4, - 'Label' => 'Portrait with Scenery', - ), - 155 => array( - 'Id' => 5, - 'Label' => 'Self-portrait (1 person)', - ), - 156 => array( - 'Id' => 6, - 'Label' => 'Self-portrait (2 people)', - ), - 157 => array( - 'Id' => 7, - 'Label' => 'Children', - ), - 158 => array( - 'Id' => 8, - 'Label' => 'Sports', - ), - 159 => array( - 'Id' => 9, - 'Label' => 'Candlelight Portrait', - ), - 160 => array( - 'Id' => 10, - 'Label' => 'Party', - ), - 161 => array( - 'Id' => 11, - 'Label' => 'Pet', - ), - 162 => array( - 'Id' => 12, - 'Label' => 'Flower', - ), - 163 => array( - 'Id' => 13, - 'Label' => 'Natural Green', - ), - 164 => array( - 'Id' => 14, - 'Label' => 'Autumn Leaves', - ), - 165 => array( - 'Id' => 15, - 'Label' => 'Soft Flowing Water', - ), - 166 => array( - 'Id' => 16, - 'Label' => 'Splashing Water', - ), - 167 => array( - 'Id' => 17, - 'Label' => 'Sundown', - ), - 168 => array( - 'Id' => 18, - 'Label' => 'Night Scene', - ), - 169 => array( - 'Id' => 19, - 'Label' => 'Night Scene Portrait', - ), - 170 => array( - 'Id' => 20, - 'Label' => 'Fireworks', - ), - 171 => array( - 'Id' => 21, - 'Label' => 'Food', - ), - 172 => array( - 'Id' => 22, - 'Label' => 'Text', - ), - 173 => array( - 'Id' => 23, - 'Label' => 'Collection', - ), - 174 => array( - 'Id' => 24, - 'Label' => 'Auction', - ), - 175 => array( - 'Id' => 25, - 'Label' => 'Backlight', - ), - 176 => array( - 'Id' => 26, - 'Label' => 'Anti Shake', - ), - 177 => array( - 'Id' => 27, - 'Label' => 'High Sensitivity', - ), - 178 => array( - 'Id' => 28, - 'Label' => 'Underwater', - ), - 179 => array( - 'Id' => 29, - 'Label' => 'Monochrome', - ), - 180 => array( - 'Id' => 30, - 'Label' => 'Retro', - ), - 181 => array( - 'Id' => 31, - 'Label' => 'Business Cards', - ), - 182 => array( - 'Id' => 32, - 'Label' => 'White Board', - ), - 183 => array( - 'Id' => 33, - 'Label' => 'Silent', - ), - 184 => array( - 'Id' => 34, - 'Label' => 'Pre-record Movie', - ), - 185 => array( - 'Id' => 35, - 'Label' => 'For YouTube', - ), - 186 => array( - 'Id' => 36, - 'Label' => 'Voice Recording', - ), - 187 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 188 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 189 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 190 => array( - 'Id' => 3, - 'Label' => 'Scenery', - ), - 191 => array( - 'Id' => 4, - 'Label' => 'Portrait with Scenery', - ), - 192 => array( - 'Id' => 5, - 'Label' => 'Children', - ), - 193 => array( - 'Id' => 6, - 'Label' => 'Sports', - ), - 194 => array( - 'Id' => 7, - 'Label' => 'Candlelight Portrait', - ), - 195 => array( - 'Id' => 8, - 'Label' => 'Party', - ), - 196 => array( - 'Id' => 9, - 'Label' => 'Pet', - ), - 197 => array( - 'Id' => 10, - 'Label' => 'Flower', - ), - 198 => array( - 'Id' => 11, - 'Label' => 'Natural Green', - ), - 199 => array( - 'Id' => 12, - 'Label' => 'Autumn Leaves', - ), - 200 => array( - 'Id' => 13, - 'Label' => 'Soft Flowing Water', - ), - 201 => array( - 'Id' => 14, - 'Label' => 'Splashing Water', - ), - 202 => array( - 'Id' => 15, - 'Label' => 'Sundown', - ), - 203 => array( - 'Id' => 16, - 'Label' => 'Night Scene', - ), - 204 => array( - 'Id' => 17, - 'Label' => 'Night Scene Portrait', - ), - 205 => array( - 'Id' => 18, - 'Label' => 'Fireworks', - ), - 206 => array( - 'Id' => 19, - 'Label' => 'Food', - ), - 207 => array( - 'Id' => 20, - 'Label' => 'Text', - ), - 208 => array( - 'Id' => 21, - 'Label' => 'Collection', - ), - 209 => array( - 'Id' => 22, - 'Label' => 'Auction', - ), - 210 => array( - 'Id' => 23, - 'Label' => 'Backlight', - ), - 211 => array( - 'Id' => 24, - 'Label' => 'Anti Shake', - ), - 212 => array( - 'Id' => 25, - 'Label' => 'High Sensitivity', - ), - 213 => array( - 'Id' => 26, - 'Label' => 'Monochrome', - ), - 214 => array( - 'Id' => 27, - 'Label' => 'Retro', - ), - 215 => array( - 'Id' => 28, - 'Label' => 'Twilight', - ), - 216 => array( - 'Id' => 29, - 'Label' => 'Layout (2 images)', - ), - 217 => array( - 'Id' => 30, - 'Label' => 'Layout (3 images)', - ), - 218 => array( - 'Id' => 31, - 'Label' => 'Auto Framing', - ), - 219 => array( - 'Id' => 32, - 'Label' => 'Old Photo', - ), - 220 => array( - 'Id' => 33, - 'Label' => 'Business Cards', - ), - 221 => array( - 'Id' => 34, - 'Label' => 'White Board', - ), - 222 => array( - 'Id' => 35, - 'Label' => 'Silent', - ), - 223 => array( - 'Id' => 36, - 'Label' => 'Short Movie', - ), - 224 => array( - 'Id' => 37, - 'Label' => 'Past Movie', - ), - 225 => array( - 'Id' => 38, - 'Label' => 'For YouTube', - ), - 226 => array( - 'Id' => 39, - 'Label' => 'Voice Recording', - ), - 227 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 228 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 229 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 230 => array( - 'Id' => 3, - 'Label' => 'Scenery', - ), - 231 => array( - 'Id' => 4, - 'Label' => 'Portrait with Scenery', - ), - 232 => array( - 'Id' => 5, - 'Label' => 'Children', - ), - 233 => array( - 'Id' => 6, - 'Label' => 'Sports', - ), - 234 => array( - 'Id' => 7, - 'Label' => 'Candlelight Portrait', - ), - 235 => array( - 'Id' => 8, - 'Label' => 'Party', - ), - 236 => array( - 'Id' => 9, - 'Label' => 'Pet', - ), - 237 => array( - 'Id' => 10, - 'Label' => 'Flower', - ), - 238 => array( - 'Id' => 11, - 'Label' => 'Soft Flowing Water', - ), - 239 => array( - 'Id' => 12, - 'Label' => 'Sundown', - ), - 240 => array( - 'Id' => 13, - 'Label' => 'Night Scene', - ), - 241 => array( - 'Id' => 14, - 'Label' => 'Night Scene Portrait', - ), - 242 => array( - 'Id' => 15, - 'Label' => 'Fireworks', - ), - 243 => array( - 'Id' => 16, - 'Label' => 'Food', - ), - 244 => array( - 'Id' => 17, - 'Label' => 'Text', - ), - 245 => array( - 'Id' => 18, - 'Label' => 'For eBay', - ), - 246 => array( - 'Id' => 19, - 'Label' => 'Backlight', - ), - 247 => array( - 'Id' => 20, - 'Label' => 'Anti Shake', - ), - 248 => array( - 'Id' => 21, - 'Label' => 'High Sensitivity', - ), - 249 => array( - 'Id' => 22, - 'Label' => 'For YouTube', - ), - 250 => array( - 'Id' => 23, - 'Label' => 'Voice Recording', - ), - 251 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 252 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 253 => array( - 'Id' => 2, - 'Label' => 'Movie', - ), - 254 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 255 => array( - 'Id' => 4, - 'Label' => 'Scenery', - ), - 256 => array( - 'Id' => 5, - 'Label' => 'Children', - ), - 257 => array( - 'Id' => 6, - 'Label' => 'Sports', - ), - 258 => array( - 'Id' => 7, - 'Label' => 'Candlelight Portrait', - ), - 259 => array( - 'Id' => 8, - 'Label' => 'Party', - ), - 260 => array( - 'Id' => 9, - 'Label' => 'Pet', - ), - 261 => array( - 'Id' => 10, - 'Label' => 'Flower', - ), - 262 => array( - 'Id' => 11, - 'Label' => 'Soft Flowing Water', - ), - 263 => array( - 'Id' => 12, - 'Label' => 'Sundown', - ), - 264 => array( - 'Id' => 13, - 'Label' => 'Night Scene', - ), - 265 => array( - 'Id' => 14, - 'Label' => 'Night Scene Portrait', - ), - 266 => array( - 'Id' => 15, - 'Label' => 'Fireworks', - ), - 267 => array( - 'Id' => 16, - 'Label' => 'Food', - ), - 268 => array( - 'Id' => 17, - 'Label' => 'Text', - ), - 269 => array( - 'Id' => 18, - 'Label' => 'Auction', - ), - 270 => array( - 'Id' => 19, - 'Label' => 'Backlight', - ), - 271 => array( - 'Id' => 20, - 'Label' => 'Anti Shake', - ), - 272 => array( - 'Id' => 21, - 'Label' => 'High Sensitivity', - ), - 273 => array( - 'Id' => 22, - 'Label' => 'For YouTube', - ), - 274 => array( - 'Id' => 23, - 'Label' => 'Voice Recording', - ), - 275 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 276 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 277 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 278 => array( - 'Id' => 3, - 'Label' => 'Scenery', - ), - 279 => array( - 'Id' => 4, - 'Label' => 'Portrait with Scenery', - ), - 280 => array( - 'Id' => 5, - 'Label' => 'Pet', - ), - 281 => array( - 'Id' => 6, - 'Label' => 'Self-portrait (1 person)', - ), - 282 => array( - 'Id' => 7, - 'Label' => 'Self-portrait (2 people)', - ), - 283 => array( - 'Id' => 8, - 'Label' => 'Flower', - ), - 284 => array( - 'Id' => 9, - 'Label' => 'Food', - ), - 285 => array( - 'Id' => 10, - 'Label' => 'Fashion Accessories', - ), - 286 => array( - 'Id' => 11, - 'Label' => 'Magazine', - ), - 287 => array( - 'Id' => 12, - 'Label' => 'Monochrome', - ), - 288 => array( - 'Id' => 13, - 'Label' => 'Retro', - ), - 289 => array( - 'Id' => 14, - 'Label' => 'Cross Filter', - ), - 290 => array( - 'Id' => 15, - 'Label' => 'Pastel', - ), - 291 => array( - 'Id' => 16, - 'Label' => 'Night Scene', - ), - 292 => array( - 'Id' => 17, - 'Label' => 'Night Scene Portrait', - ), - 293 => array( - 'Id' => 18, - 'Label' => 'Party', - ), - 294 => array( - 'Id' => 19, - 'Label' => 'Sports', - ), - 295 => array( - 'Id' => 20, - 'Label' => 'Children', - ), - 296 => array( - 'Id' => 21, - 'Label' => 'Sundown', - ), - 297 => array( - 'Id' => 22, - 'Label' => 'Fireworks', - ), - 298 => array( - 'Id' => 23, - 'Label' => 'Underwater', - ), - 299 => array( - 'Id' => 24, - 'Label' => 'Backlight', - ), - 300 => array( - 'Id' => 25, - 'Label' => 'High Sensitivity', - ), - 301 => array( - 'Id' => 26, - 'Label' => 'Auction', - ), - 302 => array( - 'Id' => 27, - 'Label' => 'White Board', - ), - 303 => array( - 'Id' => 28, - 'Label' => 'Pre-record Movie', - ), - 304 => array( - 'Id' => 29, - 'Label' => 'For YouTube', - ), - 305 => array( - 'Id' => 30, - 'Label' => 'Voice Recording', - ), - 306 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 307 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 308 => array( - 'Id' => 2, - 'Label' => 'Auto Best Shot', - ), - 309 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 310 => array( - 'Id' => 4, - 'Label' => 'Scenery', - ), - 311 => array( - 'Id' => 5, - 'Label' => 'Portrait with Scenery', - ), - 312 => array( - 'Id' => 6, - 'Label' => 'Self-portrait (1 person)', - ), - 313 => array( - 'Id' => 7, - 'Label' => 'Self-portrait (2 people)', - ), - 314 => array( - 'Id' => 8, - 'Label' => 'Children', - ), - 315 => array( - 'Id' => 9, - 'Label' => 'Sports', - ), - 316 => array( - 'Id' => 10, - 'Label' => 'Candlelight Portrait', - ), - 317 => array( - 'Id' => 11, - 'Label' => 'Party', - ), - 318 => array( - 'Id' => 12, - 'Label' => 'Pet', - ), - 319 => array( - 'Id' => 13, - 'Label' => 'Flower', - ), - 320 => array( - 'Id' => 14, - 'Label' => 'Natural Green', - ), - 321 => array( - 'Id' => 15, - 'Label' => 'Autumn Leaves', - ), - 322 => array( - 'Id' => 16, - 'Label' => 'Soft Flowing Water', - ), - 323 => array( - 'Id' => 17, - 'Label' => 'Splashing Water', - ), - 324 => array( - 'Id' => 18, - 'Label' => 'Sundown', - ), - 325 => array( - 'Id' => 19, - 'Label' => 'Night Scene', - ), - 326 => array( - 'Id' => 20, - 'Label' => 'Night Scene Portrait', - ), - 327 => array( - 'Id' => 21, - 'Label' => 'Fireworks', - ), - 328 => array( - 'Id' => 22, - 'Label' => 'Food', - ), - 329 => array( - 'Id' => 23, - 'Label' => 'Text', - ), - 330 => array( - 'Id' => 24, - 'Label' => 'Collection', - ), - 331 => array( - 'Id' => 25, - 'Label' => 'Auction', - ), - 332 => array( - 'Id' => 26, - 'Label' => 'Backlight', - ), - 333 => array( - 'Id' => 27, - 'Label' => 'Anti Shake', - ), - 334 => array( - 'Id' => 28, - 'Label' => 'High Sensitivity', - ), - 335 => array( - 'Id' => 29, - 'Label' => 'Underwater', - ), - 336 => array( - 'Id' => 30, - 'Label' => 'Monochrome', - ), - 337 => array( - 'Id' => 31, - 'Label' => 'Retro', - ), - 338 => array( - 'Id' => 32, - 'Label' => 'Twilight', - ), - 339 => array( - 'Id' => 33, - 'Label' => 'ID Photo', - ), - 340 => array( - 'Id' => 34, - 'Label' => 'Business Cards', - ), - 341 => array( - 'Id' => 35, - 'Label' => 'White Board', - ), - 342 => array( - 'Id' => 36, - 'Label' => 'Silent', - ), - 343 => array( - 'Id' => 37, - 'Label' => 'Pre-record Movie', - ), - 344 => array( - 'Id' => 38, - 'Label' => 'For YouTube', - ), - 345 => array( - 'Id' => 39, - 'Label' => 'Voice Recording', - ), - 346 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 347 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 348 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 349 => array( - 'Id' => 3, - 'Label' => 'Portrait with Scenery', - ), - 350 => array( - 'Id' => 4, - 'Label' => 'Children', - ), - 351 => array( - 'Id' => 5, - 'Label' => 'Sports', - ), - 352 => array( - 'Id' => 6, - 'Label' => 'Candlelight Portrait', - ), - 353 => array( - 'Id' => 7, - 'Label' => 'Party', - ), - 354 => array( - 'Id' => 8, - 'Label' => 'Pet', - ), - 355 => array( - 'Id' => 9, - 'Label' => 'Flower', - ), - 356 => array( - 'Id' => 10, - 'Label' => 'Natural Green', - ), - 357 => array( - 'Id' => 11, - 'Label' => 'Soft Flowing Water', - ), - 358 => array( - 'Id' => 12, - 'Label' => 'Splashing Water', - ), - 359 => array( - 'Id' => 13, - 'Label' => 'Sundown', - ), - 360 => array( - 'Id' => 14, - 'Label' => 'Night Scene', - ), - 361 => array( - 'Id' => 15, - 'Label' => 'Night Scene Portrait', - ), - 362 => array( - 'Id' => 16, - 'Label' => 'Fireworks', - ), - 363 => array( - 'Id' => 17, - 'Label' => 'Food', - ), - 364 => array( - 'Id' => 18, - 'Label' => 'Text', - ), - 365 => array( - 'Id' => 19, - 'Label' => 'Collection', - ), - 366 => array( - 'Id' => 20, - 'Label' => 'Backlight', - ), - 367 => array( - 'Id' => 21, - 'Label' => 'Anti Shake', - ), - 368 => array( - 'Id' => 22, - 'Label' => 'Pastel', - ), - 369 => array( - 'Id' => 23, - 'Label' => 'Illustration', - ), - 370 => array( - 'Id' => 24, - 'Label' => 'Cross Filter', - ), - 371 => array( - 'Id' => 25, - 'Label' => 'Monochrome', - ), - 372 => array( - 'Id' => 26, - 'Label' => 'Retro', - ), - 373 => array( - 'Id' => 27, - 'Label' => 'Twilight', - ), - 374 => array( - 'Id' => 28, - 'Label' => 'Old Photo', - ), - 375 => array( - 'Id' => 29, - 'Label' => 'ID Photo', - ), - 376 => array( - 'Id' => 30, - 'Label' => 'Business Cards', - ), - 377 => array( - 'Id' => 31, - 'Label' => 'White Board', - ), - 378 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 379 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 380 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 381 => array( - 'Id' => 3, - 'Label' => 'Night Scene', - ), - 382 => array( - 'Id' => 4, - 'Label' => 'Fireworks', - ), - 383 => array( - 'Id' => 5, - 'Label' => 'Backlight', - ), - 384 => array( - 'Id' => 6, - 'Label' => 'Silent', - ), - 385 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 386 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 387 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 388 => array( - 'Id' => 3, - 'Label' => 'Portrait with Scenery', - ), - 389 => array( - 'Id' => 4, - 'Label' => 'Children', - ), - 390 => array( - 'Id' => 5, - 'Label' => 'Sports', - ), - 391 => array( - 'Id' => 6, - 'Label' => 'Candlelight Portrait', - ), - 392 => array( - 'Id' => 7, - 'Label' => 'Party', - ), - 393 => array( - 'Id' => 8, - 'Label' => 'Pet', - ), - 394 => array( - 'Id' => 9, - 'Label' => 'Flower', - ), - 395 => array( - 'Id' => 10, - 'Label' => 'Natural Green', - ), - 396 => array( - 'Id' => 11, - 'Label' => 'Autumn Leaves', - ), - 397 => array( - 'Id' => 12, - 'Label' => 'Soft Flowing Water', - ), - 398 => array( - 'Id' => 13, - 'Label' => 'Splashing Water', - ), - 399 => array( - 'Id' => 14, - 'Label' => 'Sundown', - ), - 400 => array( - 'Id' => 15, - 'Label' => 'Night Scene', - ), - 401 => array( - 'Id' => 16, - 'Label' => 'Night Scene Portrait', - ), - 402 => array( - 'Id' => 17, - 'Label' => 'Fireworks', - ), - 403 => array( - 'Id' => 18, - 'Label' => 'Food', - ), - 404 => array( - 'Id' => 19, - 'Label' => 'Text', - ), - 405 => array( - 'Id' => 20, - 'Label' => 'Collection', - ), - 406 => array( - 'Id' => 21, - 'Label' => 'For eBay', - ), - 407 => array( - 'Id' => 22, - 'Label' => 'Backlight', - ), - 408 => array( - 'Id' => 23, - 'Label' => 'Anti Shake', - ), - 409 => array( - 'Id' => 24, - 'Label' => 'High Sensitivity', - ), - 410 => array( - 'Id' => 25, - 'Label' => 'Pastel', - ), - 411 => array( - 'Id' => 26, - 'Label' => 'Illustration', - ), - 412 => array( - 'Id' => 27, - 'Label' => 'Cross Filter', - ), - 413 => array( - 'Id' => 28, - 'Label' => 'Monochrome', - ), - 414 => array( - 'Id' => 29, - 'Label' => 'Retro', - ), - 415 => array( - 'Id' => 30, - 'Label' => 'Twilight', - ), - 416 => array( - 'Id' => 31, - 'Label' => 'ID Photo', - ), - 417 => array( - 'Id' => 32, - 'Label' => 'Old Photo', - ), - 418 => array( - 'Id' => 33, - 'Label' => 'Business Cards', - ), - 419 => array( - 'Id' => 34, - 'Label' => 'White Board', - ), - 420 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 421 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 422 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 423 => array( - 'Id' => 3, - 'Label' => 'Night Scene', - ), - 424 => array( - 'Id' => 4, - 'Label' => 'Fireworks', - ), - 425 => array( - 'Id' => 5, - 'Label' => 'Backlight', - ), - 426 => array( - 'Id' => 6, - 'Label' => 'High Sensitivity', - ), - 427 => array( - 'Id' => 7, - 'Label' => 'Silent', - ), - 428 => array( - 'Id' => 8, - 'Label' => 'Short Movie', - ), - 429 => array( - 'Id' => 9, - 'Label' => 'Past Movie', - ), - 430 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 431 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 432 => array( - 'Id' => 2, - 'Label' => 'Movie', - ), - 433 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 434 => array( - 'Id' => 4, - 'Label' => 'Scenery', - ), - 435 => array( - 'Id' => 5, - 'Label' => 'Portrait with Scenery', - ), - 436 => array( - 'Id' => 6, - 'Label' => 'Children', - ), - 437 => array( - 'Id' => 7, - 'Label' => 'Sports', - ), - 438 => array( - 'Id' => 8, - 'Label' => 'Candlelight Portrait', - ), - 439 => array( - 'Id' => 9, - 'Label' => 'Party', - ), - 440 => array( - 'Id' => 10, - 'Label' => 'Pet', - ), - 441 => array( - 'Id' => 11, - 'Label' => 'Flower', - ), - 442 => array( - 'Id' => 12, - 'Label' => 'Natural Green', - ), - 443 => array( - 'Id' => 13, - 'Label' => 'Autumn Leaves', - ), - 444 => array( - 'Id' => 14, - 'Label' => 'Soft Flowing Water', - ), - 445 => array( - 'Id' => 15, - 'Label' => 'Splashing Water', - ), - 446 => array( - 'Id' => 16, - 'Label' => 'Sundown', - ), - 447 => array( - 'Id' => 17, - 'Label' => 'Night Scene', - ), - 448 => array( - 'Id' => 18, - 'Label' => 'Night Scene Portrait', - ), - 449 => array( - 'Id' => 19, - 'Label' => 'Fireworks', - ), - 450 => array( - 'Id' => 20, - 'Label' => 'Food', - ), - 451 => array( - 'Id' => 21, - 'Label' => 'Text', - ), - 452 => array( - 'Id' => 22, - 'Label' => 'Collection', - ), - 453 => array( - 'Id' => 23, - 'Label' => 'For eBay', - ), - 454 => array( - 'Id' => 24, - 'Label' => 'Backlight', - ), - 455 => array( - 'Id' => 25, - 'Label' => 'Anti Shake', - ), - 456 => array( - 'Id' => 26, - 'Label' => 'High Sensitivity', - ), - 457 => array( - 'Id' => 27, - 'Label' => 'Underwater', - ), - 458 => array( - 'Id' => 28, - 'Label' => 'Monochrome', - ), - 459 => array( - 'Id' => 29, - 'Label' => 'Retro', - ), - 460 => array( - 'Id' => 30, - 'Label' => 'Twilight', - ), - 461 => array( - 'Id' => 31, - 'Label' => 'Layout (2 images)', - ), - 462 => array( - 'Id' => 32, - 'Label' => 'Layout (3 images)', - ), - 463 => array( - 'Id' => 33, - 'Label' => 'Auto Framing', - ), - 464 => array( - 'Id' => 34, - 'Label' => 'ID Photo', - ), - 465 => array( - 'Id' => 35, - 'Label' => 'Old Photo', - ), - 466 => array( - 'Id' => 36, - 'Label' => 'Business Cards', - ), - 467 => array( - 'Id' => 37, - 'Label' => 'White Board', - ), - 468 => array( - 'Id' => 38, - 'Label' => 'Voice Recording', - ), - 469 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 470 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 471 => array( - 'Id' => 2, - 'Label' => 'Movie', - ), - 472 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 473 => array( - 'Id' => 4, - 'Label' => 'Scenery', - ), - 474 => array( - 'Id' => 5, - 'Label' => 'Portrait with Scenery', - ), - 475 => array( - 'Id' => 6, - 'Label' => 'Children', - ), - 476 => array( - 'Id' => 7, - 'Label' => 'Sports', - ), - 477 => array( - 'Id' => 8, - 'Label' => 'Candlelight Portrait', - ), - 478 => array( - 'Id' => 9, - 'Label' => 'Party', - ), - 479 => array( - 'Id' => 10, - 'Label' => 'Pet', - ), - 480 => array( - 'Id' => 11, - 'Label' => 'Flower', - ), - 481 => array( - 'Id' => 12, - 'Label' => 'Natural Green', - ), - 482 => array( - 'Id' => 13, - 'Label' => 'Autumn Leaves', - ), - 483 => array( - 'Id' => 14, - 'Label' => 'Soft Flowing Water', - ), - 484 => array( - 'Id' => 15, - 'Label' => 'Splashing Water', - ), - 485 => array( - 'Id' => 16, - 'Label' => 'Sundown', - ), - 486 => array( - 'Id' => 17, - 'Label' => 'Night Scene', - ), - 487 => array( - 'Id' => 18, - 'Label' => 'Night Scene Portrait', - ), - 488 => array( - 'Id' => 19, - 'Label' => 'Fireworks', - ), - 489 => array( - 'Id' => 20, - 'Label' => 'Food', - ), - 490 => array( - 'Id' => 21, - 'Label' => 'Text', - ), - 491 => array( - 'Id' => 22, - 'Label' => 'Collection', - ), - 492 => array( - 'Id' => 23, - 'Label' => 'For eBay', - ), - 493 => array( - 'Id' => 24, - 'Label' => 'Backlight', - ), - 494 => array( - 'Id' => 25, - 'Label' => 'Anti Shake', - ), - 495 => array( - 'Id' => 26, - 'Label' => 'High Sensitivity', - ), - 496 => array( - 'Id' => 27, - 'Label' => 'Underwater', - ), - 497 => array( - 'Id' => 28, - 'Label' => 'Monochrome', - ), - 498 => array( - 'Id' => 29, - 'Label' => 'Retro', - ), - 499 => array( - 'Id' => 30, - 'Label' => 'Twilight', - ), - 500 => array( - 'Id' => 31, - 'Label' => 'Layout (2 images)', - ), - 501 => array( - 'Id' => 32, - 'Label' => 'Layout (3 images)', - ), - 502 => array( - 'Id' => 33, - 'Label' => 'Auto Framing', - ), - 503 => array( - 'Id' => 34, - 'Label' => 'ID Photo', - ), - 504 => array( - 'Id' => 35, - 'Label' => 'Old Photo', - ), - 505 => array( - 'Id' => 36, - 'Label' => 'Business Cards', - ), - 506 => array( - 'Id' => 37, - 'Label' => 'White Board', - ), - 507 => array( - 'Id' => 38, - 'Label' => 'Short Movie', - ), - 508 => array( - 'Id' => 39, - 'Label' => 'Past Movie', - ), - 509 => array( - 'Id' => 40, - 'Label' => 'For YouTube', - ), - 510 => array( - 'Id' => 41, - 'Label' => 'Voice Recording', - ), - 511 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 512 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 513 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 514 => array( - 'Id' => 3, - 'Label' => 'Portrait with Scenery', - ), - 515 => array( - 'Id' => 4, - 'Label' => 'Children', - ), - 516 => array( - 'Id' => 5, - 'Label' => 'Sports', - ), - 517 => array( - 'Id' => 6, - 'Label' => 'Candlelight Portrait', - ), - 518 => array( - 'Id' => 7, - 'Label' => 'Party', - ), - 519 => array( - 'Id' => 8, - 'Label' => 'Pet', - ), - 520 => array( - 'Id' => 9, - 'Label' => 'Flower', - ), - 521 => array( - 'Id' => 10, - 'Label' => 'Natural Green', - ), - 522 => array( - 'Id' => 11, - 'Label' => 'Autumn Leaves', - ), - 523 => array( - 'Id' => 12, - 'Label' => 'Soft Flowing Water', - ), - 524 => array( - 'Id' => 13, - 'Label' => 'Splashing Water', - ), - 525 => array( - 'Id' => 14, - 'Label' => 'Sundown', - ), - 526 => array( - 'Id' => 15, - 'Label' => 'Night Scene', - ), - 527 => array( - 'Id' => 16, - 'Label' => 'Night Scene Portrait', - ), - 528 => array( - 'Id' => 17, - 'Label' => 'Fireworks', - ), - 529 => array( - 'Id' => 18, - 'Label' => 'Food', - ), - 530 => array( - 'Id' => 19, - 'Label' => 'Text', - ), - 531 => array( - 'Id' => 20, - 'Label' => 'Collection', - ), - 532 => array( - 'Id' => 21, - 'Label' => 'Auction', - ), - 533 => array( - 'Id' => 22, - 'Label' => 'Backlight', - ), - 534 => array( - 'Id' => 23, - 'Label' => 'High Sensitivity', - ), - 535 => array( - 'Id' => 24, - 'Label' => 'Underwater', - ), - 536 => array( - 'Id' => 25, - 'Label' => 'Monochrome', - ), - 537 => array( - 'Id' => 26, - 'Label' => 'Retro', - ), - 538 => array( - 'Id' => 27, - 'Label' => 'Twilight', - ), - 539 => array( - 'Id' => 28, - 'Label' => 'Layout (2 images)', - ), - 540 => array( - 'Id' => 29, - 'Label' => 'Layout (3 images)', - ), - 541 => array( - 'Id' => 30, - 'Label' => 'Auto Framing', - ), - 542 => array( - 'Id' => 31, - 'Label' => 'ID Photo', - ), - 543 => array( - 'Id' => 32, - 'Label' => 'Old Photo', - ), - 544 => array( - 'Id' => 33, - 'Label' => 'Business Cards', - ), - 545 => array( - 'Id' => 34, - 'Label' => 'White Board', - ), - 546 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 547 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 548 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 549 => array( - 'Id' => 3, - 'Label' => 'Night Scene', - ), - 550 => array( - 'Id' => 4, - 'Label' => 'Fireworks', - ), - 551 => array( - 'Id' => 5, - 'Label' => 'Backlight', - ), - 552 => array( - 'Id' => 6, - 'Label' => 'High Sensitivity', - ), - 553 => array( - 'Id' => 7, - 'Label' => 'Silent', - ), - 554 => array( - 'Id' => 8, - 'Label' => 'Short Movie', - ), - 555 => array( - 'Id' => 9, - 'Label' => 'Past Movie', - ), - 556 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 557 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 558 => array( - 'Id' => 2, - 'Label' => 'Premium Auto', - ), - 559 => array( - 'Id' => 3, - 'Label' => 'Dynamic Photo', - ), - 560 => array( - 'Id' => 4, - 'Label' => 'Portrait', - ), - 561 => array( - 'Id' => 5, - 'Label' => 'Scenery', - ), - 562 => array( - 'Id' => 6, - 'Label' => 'Portrait with Scenery', - ), - 563 => array( - 'Id' => 7, - 'Label' => 'Children', - ), - 564 => array( - 'Id' => 8, - 'Label' => 'Sports', - ), - 565 => array( - 'Id' => 9, - 'Label' => 'Candlelight Portrait', - ), - 566 => array( - 'Id' => 10, - 'Label' => 'Party', - ), - 567 => array( - 'Id' => 11, - 'Label' => 'Pet', - ), - 568 => array( - 'Id' => 12, - 'Label' => 'Flower', - ), - 569 => array( - 'Id' => 13, - 'Label' => 'Natural Green', - ), - 570 => array( - 'Id' => 14, - 'Label' => 'Autumn Leaves', - ), - 571 => array( - 'Id' => 15, - 'Label' => 'Soft Flowing Water', - ), - 572 => array( - 'Id' => 16, - 'Label' => 'Splashing Water', - ), - 573 => array( - 'Id' => 17, - 'Label' => 'Sundown', - ), - 574 => array( - 'Id' => 18, - 'Label' => 'Night Scene', - ), - 575 => array( - 'Id' => 19, - 'Label' => 'Night Scene Portrait', - ), - 576 => array( - 'Id' => 20, - 'Label' => 'Fireworks', - ), - 577 => array( - 'Id' => 21, - 'Label' => 'Food', - ), - 578 => array( - 'Id' => 22, - 'Label' => 'Text', - ), - 579 => array( - 'Id' => 23, - 'Label' => 'Collection', - ), - 580 => array( - 'Id' => 24, - 'Label' => 'For eBay', - ), - 581 => array( - 'Id' => 25, - 'Label' => 'Backlight', - ), - 582 => array( - 'Id' => 26, - 'Label' => 'High Sensitivity', - ), - 583 => array( - 'Id' => 27, - 'Label' => 'Oil Painting', - ), - 584 => array( - 'Id' => 28, - 'Label' => 'Crayon', - ), - 585 => array( - 'Id' => 29, - 'Label' => 'Water Color', - ), - 586 => array( - 'Id' => 30, - 'Label' => 'Monochrome', - ), - 587 => array( - 'Id' => 31, - 'Label' => 'Retro', - ), - 588 => array( - 'Id' => 32, - 'Label' => 'Twilight', - ), - 589 => array( - 'Id' => 33, - 'Label' => 'Multi-motion Image', - ), - 590 => array( - 'Id' => 34, - 'Label' => 'ID Photo', - ), - 591 => array( - 'Id' => 35, - 'Label' => 'Business Cards', - ), - 592 => array( - 'Id' => 36, - 'Label' => 'White Board', - ), - 593 => array( - 'Id' => 37, - 'Label' => 'Silent', - ), - 594 => array( - 'Id' => 38, - 'Label' => 'Pre-record Movie', - ), - 595 => array( - 'Id' => 39, - 'Label' => 'For YouTube', - ), - 596 => array( - 'Id' => 40, - 'Label' => 'Voice Recording', - ), - 597 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 598 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 599 => array( - 'Id' => 2, - 'Label' => 'Premium Auto', - ), - 600 => array( - 'Id' => 3, - 'Label' => 'Dynamic Photo', - ), - 601 => array( - 'Id' => 4, - 'Label' => 'Portrait', - ), - 602 => array( - 'Id' => 5, - 'Label' => 'Scenery', - ), - 603 => array( - 'Id' => 6, - 'Label' => 'Portrait with Scenery', - ), - 604 => array( - 'Id' => 7, - 'Label' => 'Children', - ), - 605 => array( - 'Id' => 8, - 'Label' => 'Sports', - ), - 606 => array( - 'Id' => 9, - 'Label' => 'Candlelight Portrait', - ), - 607 => array( - 'Id' => 10, - 'Label' => 'Party', - ), - 608 => array( - 'Id' => 11, - 'Label' => 'Pet', - ), - 609 => array( - 'Id' => 12, - 'Label' => 'Flower', - ), - 610 => array( - 'Id' => 13, - 'Label' => 'Natural Green', - ), - 611 => array( - 'Id' => 14, - 'Label' => 'Autumn Leaves', - ), - 612 => array( - 'Id' => 15, - 'Label' => 'Soft Flowing Water', - ), - 613 => array( - 'Id' => 16, - 'Label' => 'Splashing Water', - ), - 614 => array( - 'Id' => 17, - 'Label' => 'Sundown', - ), - 615 => array( - 'Id' => 18, - 'Label' => 'Night Scene', - ), - 616 => array( - 'Id' => 19, - 'Label' => 'Night Scene Portrait', - ), - 617 => array( - 'Id' => 20, - 'Label' => 'Fireworks', - ), - 618 => array( - 'Id' => 21, - 'Label' => 'Food', - ), - 619 => array( - 'Id' => 22, - 'Label' => 'Text', - ), - 620 => array( - 'Id' => 23, - 'Label' => 'Collection', - ), - 621 => array( - 'Id' => 24, - 'Label' => 'Auction', - ), - 622 => array( - 'Id' => 25, - 'Label' => 'Backlight', - ), - 623 => array( - 'Id' => 26, - 'Label' => 'High Sensitivity', - ), - 624 => array( - 'Id' => 27, - 'Label' => 'Oil Painting', - ), - 625 => array( - 'Id' => 28, - 'Label' => 'Crayon', - ), - 626 => array( - 'Id' => 29, - 'Label' => 'Water Color', - ), - 627 => array( - 'Id' => 30, - 'Label' => 'Monochrome', - ), - 628 => array( - 'Id' => 31, - 'Label' => 'Retro', - ), - 629 => array( - 'Id' => 32, - 'Label' => 'Twilight', - ), - 630 => array( - 'Id' => 33, - 'Label' => 'Multi-motion Image', - ), - 631 => array( - 'Id' => 34, - 'Label' => 'ID Photo', - ), - 632 => array( - 'Id' => 35, - 'Label' => 'Business Cards', - ), - 633 => array( - 'Id' => 36, - 'Label' => 'White Board', - ), - 634 => array( - 'Id' => 37, - 'Label' => 'Silent', - ), - 635 => array( - 'Id' => 38, - 'Label' => 'Pre-record Movie', - ), - 636 => array( - 'Id' => 39, - 'Label' => 'For YouTube', - ), - 637 => array( - 'Id' => 40, - 'Label' => 'Voice Recording', - ), - 638 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 639 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 640 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 641 => array( - 'Id' => 3, - 'Label' => 'Portrait With Scenery', - ), - 642 => array( - 'Id' => 4, - 'Label' => 'Children', - ), - 643 => array( - 'Id' => 5, - 'Label' => 'Sports', - ), - 644 => array( - 'Id' => 6, - 'Label' => 'Night Scene', - ), - 645 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 646 => array( - 'Id' => 1, - 'Label' => 'Child CS', - ), - 647 => array( - 'Id' => 2, - 'Label' => 'Pet CS', - ), - 648 => array( - 'Id' => 3, - 'Label' => 'Sports CS', - ), - 649 => array( - 'Id' => 4, - 'Label' => 'Child High Speed Movie', - ), - 650 => array( - 'Id' => 5, - 'Label' => 'Pet High Speed Movie', - ), - 651 => array( - 'Id' => 6, - 'Label' => 'Sports High Speed Movie', - ), - 652 => array( - 'Id' => 7, - 'Label' => 'Multi SR Zoom', - ), - 653 => array( - 'Id' => 8, - 'Label' => 'Lag Correction', - ), - 654 => array( - 'Id' => 9, - 'Label' => 'High Speed Night Scene', - ), - 655 => array( - 'Id' => 10, - 'Label' => 'High Speed Night Scene and Portrait', - ), - 656 => array( - 'Id' => 11, - 'Label' => 'High Speed Anti Shake', - ), - 657 => array( - 'Id' => 12, - 'Label' => 'Portrait', - ), - 658 => array( - 'Id' => 13, - 'Label' => 'Scenery', - ), - 659 => array( - 'Id' => 14, - 'Label' => 'Portrait with Scenery', - ), - 660 => array( - 'Id' => 15, - 'Label' => 'Children', - ), - 661 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 662 => array( - 'Id' => 17, - 'Label' => 'Candlelight Portrait', - ), - 663 => array( - 'Id' => 18, - 'Label' => 'Party', - ), - 664 => array( - 'Id' => 19, - 'Label' => 'Pet', - ), - 665 => array( - 'Id' => 20, - 'Label' => 'Flower', - ), - 666 => array( - 'Id' => 21, - 'Label' => 'Natural Green', - ), - 667 => array( - 'Id' => 22, - 'Label' => 'Autumn Leaves', - ), - 668 => array( - 'Id' => 23, - 'Label' => 'Soft Flowing Water', - ), - 669 => array( - 'Id' => 24, - 'Label' => 'Splashing Water', - ), - 670 => array( - 'Id' => 25, - 'Label' => 'Sundown', - ), - 671 => array( - 'Id' => 26, - 'Label' => 'Fireworks', - ), - 672 => array( - 'Id' => 27, - 'Label' => 'Food', - ), - 673 => array( - 'Id' => 28, - 'Label' => 'Text', - ), - 674 => array( - 'Id' => 29, - 'Label' => 'Collection', - ), - 675 => array( - 'Id' => 30, - 'Label' => 'For eBay', - ), - 676 => array( - 'Id' => 31, - 'Label' => 'Pre-record Movie', - ), - 677 => array( - 'Id' => 32, - 'Label' => 'For YouTube', - ), - 678 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 679 => array( - 'Id' => 1, - 'Label' => 'High Speed Night Scene', - ), - 680 => array( - 'Id' => 2, - 'Label' => 'High Speed Night Scene and Portrait', - ), - 681 => array( - 'Id' => 3, - 'Label' => 'High Speed Anti Shake', - ), - 682 => array( - 'Id' => 4, - 'Label' => 'Blurred Background', - ), - 683 => array( - 'Id' => 5, - 'Label' => 'Wide Shot', - ), - 684 => array( - 'Id' => 6, - 'Label' => 'High Speed Best Selection', - ), - 685 => array( - 'Id' => 7, - 'Label' => 'Lag Correction', - ), - 686 => array( - 'Id' => 8, - 'Label' => 'Child CS', - ), - 687 => array( - 'Id' => 9, - 'Label' => 'Pet CS', - ), - 688 => array( - 'Id' => 10, - 'Label' => 'Sports CS', - ), - 689 => array( - 'Id' => 11, - 'Label' => 'Child High Speed Movie', - ), - 690 => array( - 'Id' => 12, - 'Label' => 'Pet High Speed Movie', - ), - 691 => array( - 'Id' => 13, - 'Label' => 'Sports High Speed Movie', - ), - 692 => array( - 'Id' => 14, - 'Label' => 'Portrait', - ), - 693 => array( - 'Id' => 15, - 'Label' => 'Scenery', - ), - 694 => array( - 'Id' => 16, - 'Label' => 'Portrait with Scenery', - ), - 695 => array( - 'Id' => 17, - 'Label' => 'Children', - ), - 696 => array( - 'Id' => 18, - 'Label' => 'Sports', - ), - 697 => array( - 'Id' => 19, - 'Label' => 'Candlelight Portrait', - ), - 698 => array( - 'Id' => 20, - 'Label' => 'Party', - ), - 699 => array( - 'Id' => 21, - 'Label' => 'Pet', - ), - 700 => array( - 'Id' => 22, - 'Label' => 'Flower', - ), - 701 => array( - 'Id' => 23, - 'Label' => 'Natural Green', - ), - 702 => array( - 'Id' => 24, - 'Label' => 'Autumn Leaves', - ), - 703 => array( - 'Id' => 25, - 'Label' => 'Soft Flowing Water', - ), - 704 => array( - 'Id' => 26, - 'Label' => 'Splashing Water', - ), - 705 => array( - 'Id' => 27, - 'Label' => 'Sundown', - ), - 706 => array( - 'Id' => 28, - 'Label' => 'Fireworks', - ), - 707 => array( - 'Id' => 29, - 'Label' => 'Food', - ), - 708 => array( - 'Id' => 30, - 'Label' => 'Text', - ), - 709 => array( - 'Id' => 31, - 'Label' => 'Collection', - ), - 710 => array( - 'Id' => 32, - 'Label' => 'Auction', - ), - 711 => array( - 'Id' => 33, - 'Label' => 'Pre-record Movie', - ), - 712 => array( - 'Id' => 34, - 'Label' => 'For YouTube', - ), - 713 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 714 => array( - 'Id' => 1, - 'Label' => 'People', - ), - 715 => array( - 'Id' => 2, - 'Label' => 'Scenery', - ), - 716 => array( - 'Id' => 3, - 'Label' => 'Flower', - ), - 717 => array( - 'Id' => 4, - 'Label' => 'Night Scene', - ), - 718 => array( - 'Id' => 5, - 'Label' => 'Soft Focus', - ), - 719 => array( - 'Id' => 1, - 'Label' => 'High Speed Night Shot', - ), - 720 => array( - 'Id' => 2, - 'Label' => 'Blurred Background', - ), - 721 => array( - 'Id' => 3, - 'Label' => 'Toy Camera', - ), - 722 => array( - 'Id' => 4, - 'Label' => 'Soft Focus', - ), - 723 => array( - 'Id' => 5, - 'Label' => 'Light Tone', - ), - 724 => array( - 'Id' => 6, - 'Label' => 'Pop', - ), - 725 => array( - 'Id' => 7, - 'Label' => 'Sepia', - ), - 726 => array( - 'Id' => 8, - 'Label' => 'Monochrome', - ), - 727 => array( - 'Id' => 9, - 'Label' => 'Miniature', - ), - 728 => array( - 'Id' => 10, - 'Label' => 'Wide Shot', - ), - 729 => array( - 'Id' => 11, - 'Label' => 'High Speed Best Selection', - ), - 730 => array( - 'Id' => 12, - 'Label' => 'Lag Correction', - ), - 731 => array( - 'Id' => 13, - 'Label' => 'High Speed Night Scene', - ), - 732 => array( - 'Id' => 14, - 'Label' => 'High Speed Night Scene and Portrait', - ), - 733 => array( - 'Id' => 15, - 'Label' => 'High Speed Anti Shake', - ), - 734 => array( - 'Id' => 16, - 'Label' => 'Portrait', - ), - 735 => array( - 'Id' => 17, - 'Label' => 'Scenery', - ), - 736 => array( - 'Id' => 18, - 'Label' => 'Portrait with Scenery', - ), - 737 => array( - 'Id' => 19, - 'Label' => 'Children', - ), - 738 => array( - 'Id' => 20, - 'Label' => 'Sports', - ), - 739 => array( - 'Id' => 21, - 'Label' => 'Candlelight Portrait', - ), - 740 => array( - 'Id' => 22, - 'Label' => 'Party', - ), - 741 => array( - 'Id' => 23, - 'Label' => 'Pet', - ), - 742 => array( - 'Id' => 24, - 'Label' => 'Flower', - ), - 743 => array( - 'Id' => 25, - 'Label' => 'Natural Green', - ), - 744 => array( - 'Id' => 26, - 'Label' => 'Autumn Leaves', - ), - 745 => array( - 'Id' => 27, - 'Label' => 'Soft Flowing Water', - ), - 746 => array( - 'Id' => 28, - 'Label' => 'Splashing Water', - ), - 747 => array( - 'Id' => 29, - 'Label' => 'Sundown', - ), - 748 => array( - 'Id' => 30, - 'Label' => 'Fireworks', - ), - 749 => array( - 'Id' => 31, - 'Label' => 'Food', - ), - 750 => array( - 'Id' => 32, - 'Label' => 'Text', - ), - 751 => array( - 'Id' => 33, - 'Label' => 'Collection', - ), - 752 => array( - 'Id' => 34, - 'Label' => 'Auction', - ), - 753 => array( - 'Id' => 35, - 'Label' => 'Prerecord (Movie)', - ), - 754 => array( - 'Id' => 36, - 'Label' => 'For YouTube', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/BracketSequence.php b/lib/PHPExiftool/Driver/Tag/Casio/BracketSequence.php deleted file mode 100644 index 4bf7c68b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/BracketSequence.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketSequence extends AbstractTag -{ - - protected $Id = 12317; - - protected $Name = 'BracketSequence'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Bracket Sequence'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/CaptureFrameRate.php b/lib/PHPExiftool/Driver/Tag/Casio/CaptureFrameRate.php deleted file mode 100644 index 299afa666..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/CaptureFrameRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureFrameRate extends AbstractTag -{ - - protected $Id = 16385; - - protected $Name = 'CaptureFrameRate'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Capture Frame Rate'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/CasioImageSize.php b/lib/PHPExiftool/Driver/Tag/Casio/CasioImageSize.php deleted file mode 100644 index 3937fd463..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/CasioImageSize.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CasioImageSize extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'CasioImageSize'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Casio Image Size'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '640x480', - ), - 4 => array( - 'Id' => 4, - 'Label' => '1600x1200', - ), - 5 => array( - 'Id' => 5, - 'Label' => '2048x1536', - ), - 20 => array( - 'Id' => 20, - 'Label' => '2288x1712', - ), - 21 => array( - 'Id' => 21, - 'Label' => '2592x1944', - ), - 22 => array( - 'Id' => 22, - 'Label' => '2304x1728', - ), - 36 => array( - 'Id' => 36, - 'Label' => '3008x2008', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/CasioQuality.php b/lib/PHPExiftool/Driver/Tag/Casio/CasioQuality.php deleted file mode 100644 index 892d7d9db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/CasioQuality.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CasioQuality extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'CasioQuality'; - - protected $FullName = 'Casio::QVCI'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Casio Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Economy', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fine', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Super Fine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ColorFilter.php b/lib/PHPExiftool/Driver/Tag/Casio/ColorFilter.php deleted file mode 100644 index 8948e4179..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ColorFilter.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorFilter extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorFilter'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Black & White', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Sepia', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Red', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Green', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'Blue', - ), - 6 => array( - 'Id' => 7, - 'Label' => 'Yellow', - ), - 7 => array( - 'Id' => 8, - 'Label' => 'Pink', - ), - 8 => array( - 'Id' => 9, - 'Label' => 'Purple', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Blue', - ), - 11 => array( - 'Id' => 3, - 'Label' => 'Green', - ), - 12 => array( - 'Id' => 4, - 'Label' => 'Yellow', - ), - 13 => array( - 'Id' => 5, - 'Label' => 'Red', - ), - 14 => array( - 'Id' => 6, - 'Label' => 'Purple', - ), - 15 => array( - 'Id' => 7, - 'Label' => 'Pink', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Casio/ColorMode.php deleted file mode 100644 index 7320dd6ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ColorMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 12309; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Black & White', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Sepia', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Contrast.php b/lib/PHPExiftool/Driver/Tag/Casio/Contrast.php deleted file mode 100644 index 623421ca0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Contrast.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Contrast'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 16, - 'Label' => 'Normal', - ), - 4 => array( - 'Id' => 17, - 'Label' => '+1', - ), - 5 => array( - 'Id' => 18, - 'Label' => '-1', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Casio/DateTimeOriginal.php deleted file mode 100644 index e84c745f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/DateTimeOriginal.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 77; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Casio::QVCI'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Casio/DigitalZoom.php deleted file mode 100644 index 6c6d5940e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/DigitalZoom.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'Casio::Main'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - - protected $Values = array( - 65536 => array( - 'Id' => 65536, - 'Label' => 'Off', - ), - 65537 => array( - 'Id' => 65537, - 'Label' => '2x', - ), - 104857 => array( - 'Id' => 104857, - 'Label' => '1.6x', - ), - 131072 => array( - 'Id' => 131072, - 'Label' => '2x', - ), - 209715 => array( - 'Id' => 209715, - 'Label' => '3.2x', - ), - 262144 => array( - 'Id' => 262144, - 'Label' => '4x', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Casio/DriveMode.php deleted file mode 100644 index e1817e031..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/DriveMode.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 12547; - - protected $Name = 'DriveMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Drive Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single Shot', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous Shooting', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous (2 fps)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Continuous (3 fps)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Continuous (4 fps)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Continuous (5 fps)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Continuous (6 fps)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Continuous (7 fps)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Continuous (10 fps)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Continuous (12 fps)', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Continuous (15 fps)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Continuous (20 fps)', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Continuous (30 fps)', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Continuous (40 fps)', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Continuous (60 fps)', - ), - 240 => array( - 'Id' => 240, - 'Label' => 'Auto-N', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Enhancement.php b/lib/PHPExiftool/Driver/Tag/Casio/Enhancement.php deleted file mode 100644 index 6028973a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Enhancement.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Enhancement extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Enhancement'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Enhancement'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Red', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Green', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Blue', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Flesh Tones', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Scenery', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'Green', - ), - 8 => array( - 'Id' => 5, - 'Label' => 'Underwater', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Flesh Tones', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face10Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face10Position.php deleted file mode 100644 index 4d865e6c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face10Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face10Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face10Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 10 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face1Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face1Position.php deleted file mode 100644 index 2b0a4f280..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face1Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face2Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face2Position.php deleted file mode 100644 index bed20e379..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face2Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face3Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face3Position.php deleted file mode 100644 index dff50fc40..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face3Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face4Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face4Position.php deleted file mode 100644 index e686649bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face4Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face5Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face5Position.php deleted file mode 100644 index cdbae0554..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face5Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face6Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face6Position.php deleted file mode 100644 index 87c7effcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face6Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face6Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 6 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face7Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face7Position.php deleted file mode 100644 index 4491c1e7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face7Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face7Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 7 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face8Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face8Position.php deleted file mode 100644 index 834242c6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face8Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face8Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 8 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Face9Position.php b/lib/PHPExiftool/Driver/Tag/Casio/Face9Position.php deleted file mode 100644 index 78f0b2626..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Face9Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face9Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face9Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 9 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FaceDetectFrameSize.php b/lib/PHPExiftool/Driver/Tag/Casio/FaceDetectFrameSize.php deleted file mode 100644 index 55282e107..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FaceDetectFrameSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectFrameSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FaceDetectFrameSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Detect Frame Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FaceInfoUnknown.php b/lib/PHPExiftool/Driver/Tag/Casio/FaceInfoUnknown.php deleted file mode 100644 index 1029836f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FaceInfoUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceInfoUnknown extends AbstractTag -{ - - protected $Id = 8329; - - protected $Name = 'FaceInfoUnknown'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Face Info Unknown'; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FaceOrientation.php b/lib/PHPExiftool/Driver/Tag/Casio/FaceOrientation.php deleted file mode 100644 index af5887b79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FaceOrientation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceOrientation extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'FaceOrientation'; - - protected $FullName = 'Casio::FaceInfo2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Face Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate 90 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 270 CW', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Casio/FacesDetected.php deleted file mode 100644 index 5386a829c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'mixed'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FirmwareDate.php b/lib/PHPExiftool/Driver/Tag/Casio/FirmwareDate.php deleted file mode 100644 index 6db8117d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FirmwareDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareDate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirmwareDate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Date'; - - protected $flag_Permanent = true; - - protected $MaxLength = 18; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FlashDistance.php b/lib/PHPExiftool/Driver/Tag/Casio/FlashDistance.php deleted file mode 100644 index ac342efa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FlashDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashDistance extends AbstractTag -{ - - protected $Id = 8244; - - protected $Name = 'FlashDistance'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FlashIntensity.php b/lib/PHPExiftool/Driver/Tag/Casio/FlashIntensity.php deleted file mode 100644 index 1ed8161f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FlashIntensity.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashIntensity extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashIntensity'; - - protected $FullName = 'Casio::Main'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Intensity'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 11, - 'Label' => 'Weak', - ), - 1 => array( - 'Id' => 12, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 13, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 14, - 'Label' => 'High', - ), - 4 => array( - 'Id' => 15, - 'Label' => 'Strong', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Weak', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'Strong', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Casio/FlashMode.php deleted file mode 100644 index f38d113d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FlashMode.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'FlashMode'; - - protected $FullName = 'Casio::Main'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Red-eye Reduction', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 4, - 'Label' => 'Red-eye Reduction', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Casio/FocalLength.php deleted file mode 100644 index e7dda34eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'FocalLength'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FocalRange.php b/lib/PHPExiftool/Driver/Tag/Casio/FocalRange.php deleted file mode 100644 index fafe92e4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FocalRange.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalRange extends AbstractTag -{ - - protected $Id = 55; - - protected $Name = 'FocalRange'; - - protected $FullName = 'Casio::QVCI'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Focal Range'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Casio/FocusMode.php deleted file mode 100644 index 03a2b31d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/FocusMode.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 2, - 'Label' => 'Macro', - ), - 1 => array( - 'Id' => 3, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 4, - 'Label' => 'Manual', - ), - 3 => array( - 'Id' => 5, - 'Label' => 'Infinity', - ), - 4 => array( - 'Id' => 7, - 'Label' => 'Spot AF', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Macro', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Focus Lock', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Macro', - ), - 10 => array( - 'Id' => 3, - 'Label' => 'Single-Area Auto Focus', - ), - 11 => array( - 'Id' => 5, - 'Label' => 'Infinity', - ), - 12 => array( - 'Id' => 6, - 'Label' => 'Multi-Area Auto Focus', - ), - 13 => array( - 'Id' => 8, - 'Label' => 'Super Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/HometownCity.php b/lib/PHPExiftool/Driver/Tag/Casio/HometownCity.php deleted file mode 100644 index 99adf4133..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/HometownCity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HometownCity extends AbstractTag -{ - - protected $Id = 12294; - - protected $Name = 'HometownCity'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hometown City'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ISO.php b/lib/PHPExiftool/Driver/Tag/Casio/ISO.php deleted file mode 100644 index e2043627a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ISO.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - - protected $Values = array( - 3 => array( - 'Id' => 3, - 'Label' => 50, - ), - 4 => array( - 'Id' => 4, - 'Label' => 64, - ), - 6 => array( - 'Id' => 6, - 'Label' => 100, - ), - 9 => array( - 'Id' => 9, - 'Label' => 200, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/Casio/ImageStabilization.php deleted file mode 100644 index acd1f3eb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ImageStabilization.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 12320; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Best Shot', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Movie Anti-Shake', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'Off', - ), - '0 1' => array( - 'Id' => '0 1', - 'Label' => 'Off (1)', - ), - '0 3' => array( - 'Id' => '0 3', - 'Label' => 'CCD Shift', - ), - '2 1' => array( - 'Id' => '2 1', - 'Label' => 'High Sensitivity', - ), - '2 3' => array( - 'Id' => '2 3', - 'Label' => 'CCD Shift + High Sensitivity', - ), - '16 0' => array( - 'Id' => '16 0', - 'Label' => 'Slow Shutter', - ), - '18 0' => array( - 'Id' => '18 0', - 'Label' => 'Anti-Shake', - ), - '20 0' => array( - 'Id' => '20 0', - 'Label' => 'High Sensitivity', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/LightingMode.php b/lib/PHPExiftool/Driver/Tag/Casio/LightingMode.php deleted file mode 100644 index c7c2a871a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/LightingMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightingMode extends AbstractTag -{ - - protected $Id = 12330; - - protected $Name = 'LightingMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Lighting Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'High Dynamic Range', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Shadow Enhance Low', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Shadow Enhance High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ManufactureCode.php b/lib/PHPExiftool/Driver/Tag/Casio/ManufactureCode.php deleted file mode 100644 index 779ba2770..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ManufactureCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufactureCode extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'ManufactureCode'; - - protected $FullName = 'Casio::QVCI'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Manufacture Code'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ManufactureIndex.php b/lib/PHPExiftool/Driver/Tag/Casio/ManufactureIndex.php deleted file mode 100644 index 279e33b9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ManufactureIndex.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufactureIndex extends AbstractTag -{ - - protected $Id = 114; - - protected $Name = 'ManufactureIndex'; - - protected $FullName = 'Casio::QVCI'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Manufacture Index'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ModelType.php b/lib/PHPExiftool/Driver/Tag/Casio/ModelType.php deleted file mode 100644 index 52ee33661..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ModelType.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelType extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'ModelType'; - - protected $FullName = 'Casio::QVCI'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Model Type'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ObjectDistance.php b/lib/PHPExiftool/Driver/Tag/Casio/ObjectDistance.php deleted file mode 100644 index 390f395bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ObjectDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectDistance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ObjectDistance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Object Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/PortraitRefiner.php b/lib/PHPExiftool/Driver/Tag/Casio/PortraitRefiner.php deleted file mode 100644 index 74406e58c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/PortraitRefiner.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PortraitRefiner extends AbstractTag -{ - - protected $Id = 12331; - - protected $Name = 'PortraitRefiner'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Portrait Refiner'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => '+1', - ), - 2 => array( - 'Id' => 2, - 'Label' => '+2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Casio/PreviewImage.php deleted file mode 100644 index 527168900..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 8192; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageLength.php deleted file mode 100644 index 6802c4046..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageLength.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageSize.php b/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageSize.php deleted file mode 100644 index 9c9c67c94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageSize.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageSize extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewImageSize'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Size'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageStart.php deleted file mode 100644 index eee38d336..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/PreviewImageStart.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Quality.php b/lib/PHPExiftool/Driver/Tag/Casio/Quality.php deleted file mode 100644 index 348967df0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Quality.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Quality'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Economy', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/QualityMode.php b/lib/PHPExiftool/Driver/Tag/Casio/QualityMode.php deleted file mode 100644 index ca8bee3a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/QualityMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QualityMode extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'QualityMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Quality Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Economy', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/RecordMode.php b/lib/PHPExiftool/Driver/Tag/Casio/RecordMode.php deleted file mode 100644 index d9594fc50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/RecordMode.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordMode extends AbstractTag -{ - - protected $Id = 12288; - - protected $Name = 'RecordMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Record Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Shutter Priority', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Aperture Priority', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Best Shot', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Movie', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Movie (19)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'YouTube Movie', - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 'Program AE', - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 'Shutter Priority', - ), - '4 0' => array( - 'Id' => '4 0', - 'Label' => 'Aperture Priority', - ), - '5 0' => array( - 'Id' => '5 0', - 'Label' => 'Manual', - ), - '6 0' => array( - 'Id' => '6 0', - 'Label' => 'Best Shot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/RecordingMode.php b/lib/PHPExiftool/Driver/Tag/Casio/RecordingMode.php deleted file mode 100644 index e13aea7d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/RecordingMode.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingMode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'RecordingMode'; - - protected $FullName = 'Casio::Main'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Recording Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Single Shutter', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Panorama', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night Scene', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Portrait', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Landscape', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Panorama', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Night Scene', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Portrait', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Landscape', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/ReleaseMode.php b/lib/PHPExiftool/Driver/Tag/Casio/ReleaseMode.php deleted file mode 100644 index b21713d67..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/ReleaseMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseMode extends AbstractTag -{ - - protected $Id = 12289; - - protected $Name = 'ReleaseMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Release Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AE Bracketing', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'WB Bracketing', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Contrast Bracketing', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'High Speed Burst', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Saturation.php b/lib/PHPExiftool/Driver/Tag/Casio/Saturation.php deleted file mode 100644 index f9be8d422..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Saturation.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 16, - 'Label' => 'Normal', - ), - 4 => array( - 'Id' => 17, - 'Label' => '+1', - ), - 5 => array( - 'Id' => 18, - 'Label' => '-1', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/SequenceNumber.php b/lib/PHPExiftool/Driver/Tag/Casio/SequenceNumber.php deleted file mode 100644 index 661743f5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/SequenceNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumber extends AbstractTag -{ - - protected $Id = 12316; - - protected $Name = 'SequenceNumber'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sequence Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Casio/Sharpness.php deleted file mode 100644 index a4092bf0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Sharpness.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Soft', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Hard', - ), - 3 => array( - 'Id' => 16, - 'Label' => 'Normal', - ), - 4 => array( - 'Id' => 17, - 'Label' => '+1', - ), - 5 => array( - 'Id' => 18, - 'Label' => '-1', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Soft', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'Hard', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/Software.php b/lib/PHPExiftool/Driver/Tag/Casio/Software.php deleted file mode 100644 index f613932c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/Software.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Software'; - - protected $FullName = 'Casio::AVI'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Software'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectLevel.php b/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectLevel.php deleted file mode 100644 index 3660eeaf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialEffectLevel extends AbstractTag -{ - - protected $Id = 12336; - - protected $Name = 'SpecialEffectLevel'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Special Effect Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectMode.php b/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectMode.php deleted file mode 100644 index 2d14e8e9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectMode.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialEffectMode extends AbstractTag -{ - - protected $Id = 8310; - - protected $Name = 'SpecialEffectMode'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Special Effect Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - '0 0 0' => array( - 'Id' => '0 0 0', - 'Label' => 'Off', - ), - '1 0 0' => array( - 'Id' => '1 0 0', - 'Label' => 'Makeup', - ), - '2 0 0' => array( - 'Id' => '2 0 0', - 'Label' => 'Mist Removal', - ), - '3 0 0' => array( - 'Id' => '3 0 0', - 'Label' => 'Vivid Landscape', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectSetting.php b/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectSetting.php deleted file mode 100644 index cd03a76cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/SpecialEffectSetting.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialEffectSetting extends AbstractTag -{ - - protected $Id = 12337; - - protected $Name = 'SpecialEffectSetting'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Special Effect Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Makeup', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mist Removal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Vivid Landscape', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Art Shot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/VideoQuality.php b/lib/PHPExiftool/Driver/Tag/Casio/VideoQuality.php deleted file mode 100644 index 26f47a341..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/VideoQuality.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoQuality extends AbstractTag -{ - - protected $Id = 16387; - - protected $Name = 'VideoQuality'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Video Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'HD (720p)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Full HD (1080p)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Low', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Casio/WhiteBalance.php deleted file mode 100644 index 2faca6716..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/WhiteBalance.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Tungsten', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Daylight', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Fluorescent', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Shade', - ), - 5 => array( - 'Id' => 129, - 'Label' => 'Manual', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'Shade', - ), - 9 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - 10 => array( - 'Id' => 4, - 'Label' => 'Fluorescent', - ), - 11 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 15 => array( - 'Id' => 3, - 'Label' => 'Shade', - ), - 16 => array( - 'Id' => 4, - 'Label' => 'Flash?', - ), - 17 => array( - 'Id' => 6, - 'Label' => 'Fluorescent', - ), - 18 => array( - 'Id' => 9, - 'Label' => 'Tungsten?', - ), - 19 => array( - 'Id' => 10, - 'Label' => 'Tungsten', - ), - 20 => array( - 'Id' => 12, - 'Label' => 'Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Casio/WhiteBalanceBias.php b/lib/PHPExiftool/Driver/Tag/Casio/WhiteBalanceBias.php deleted file mode 100644 index e37cc394c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Casio/WhiteBalanceBias.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Casio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceBias extends AbstractTag -{ - - protected $Id = 8209; - - protected $Name = 'WhiteBalanceBias'; - - protected $FullName = 'Casio::Type2'; - - protected $GroupName = 'Casio'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Casio'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance Bias'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/AdvancedSceneMode.php b/lib/PHPExiftool/Driver/Tag/Composite/AdvancedSceneMode.php deleted file mode 100644 index 4f7ffde8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/AdvancedSceneMode.php +++ /dev/null @@ -1,276 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvancedSceneMode extends AbstractTag -{ - - protected $Id = 'AdvancedSceneMode'; - - protected $Name = 'AdvancedSceneMode'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Advanced Scene Mode'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - '0 1' => array( - 'Id' => '0 1', - 'Label' => 'Off', - ), - '2 2' => array( - 'Id' => '2 2', - 'Label' => 'Outdoor Portrait', - ), - '2 3' => array( - 'Id' => '2 3', - 'Label' => 'Indoor Portrait', - ), - '2 4' => array( - 'Id' => '2 4', - 'Label' => 'Creative Portrait', - ), - '3 2' => array( - 'Id' => '3 2', - 'Label' => 'Nature', - ), - '3 3' => array( - 'Id' => '3 3', - 'Label' => 'Architecture', - ), - '3 4' => array( - 'Id' => '3 4', - 'Label' => 'Creative Scenery', - ), - '4 2' => array( - 'Id' => '4 2', - 'Label' => 'Outdoor Sports', - ), - '4 3' => array( - 'Id' => '4 3', - 'Label' => 'Indoor Sports', - ), - '4 4' => array( - 'Id' => '4 4', - 'Label' => 'Creative Sports', - ), - '9 2' => array( - 'Id' => '9 2', - 'Label' => 'Flower', - ), - '9 3' => array( - 'Id' => '9 3', - 'Label' => 'Objects', - ), - '9 4' => array( - 'Id' => '9 4', - 'Label' => 'Creative Macro', - ), - '21 2' => array( - 'Id' => '21 2', - 'Label' => 'Illuminations', - ), - '21 4' => array( - 'Id' => '21 4', - 'Label' => 'Creative Night Scenery', - ), - '45 2' => array( - 'Id' => '45 2', - 'Label' => 'Cinema', - ), - '45 7' => array( - 'Id' => '45 7', - 'Label' => 'Expressive', - ), - '45 8' => array( - 'Id' => '45 8', - 'Label' => 'Retro', - ), - '45 9' => array( - 'Id' => '45 9', - 'Label' => 'Pure', - ), - '45 10' => array( - 'Id' => '45 10', - 'Label' => 'Elegant', - ), - '45 12' => array( - 'Id' => '45 12', - 'Label' => 'Monochrome', - ), - '45 13' => array( - 'Id' => '45 13', - 'Label' => 'Dynamic Art', - ), - '45 14' => array( - 'Id' => '45 14', - 'Label' => 'Silhouette', - ), - '51 2' => array( - 'Id' => '51 2', - 'Label' => 'HDR Art', - ), - '51 3' => array( - 'Id' => '51 3', - 'Label' => 'HDR B&W', - ), - '59 1' => array( - 'Id' => '59 1', - 'Label' => 'Expressive', - ), - '59 2' => array( - 'Id' => '59 2', - 'Label' => 'Retro', - ), - '59 3' => array( - 'Id' => '59 3', - 'Label' => 'High Key', - ), - '59 4' => array( - 'Id' => '59 4', - 'Label' => 'Sepia', - ), - '59 5' => array( - 'Id' => '59 5', - 'Label' => 'High Dynamic', - ), - '59 6' => array( - 'Id' => '59 6', - 'Label' => 'Miniature', - ), - '59 9' => array( - 'Id' => '59 9', - 'Label' => 'Low Key', - ), - '59 10' => array( - 'Id' => '59 10', - 'Label' => 'Toy Effect', - ), - '59 11' => array( - 'Id' => '59 11', - 'Label' => 'Dynamic Monochrome', - ), - '59 12' => array( - 'Id' => '59 12', - 'Label' => 'Soft', - ), - '66 1' => array( - 'Id' => '66 1', - 'Label' => 'Impressive Art', - ), - '66 2' => array( - 'Id' => '66 2', - 'Label' => 'Cross Process', - ), - '66 3' => array( - 'Id' => '66 3', - 'Label' => 'Color Select', - ), - '66 4' => array( - 'Id' => '66 4', - 'Label' => 'Star', - ), - '90 3' => array( - 'Id' => '90 3', - 'Label' => 'Old Days', - ), - '90 4' => array( - 'Id' => '90 4', - 'Label' => 'Sunshine', - ), - '90 5' => array( - 'Id' => '90 5', - 'Label' => 'Bleach Bypass', - ), - '90 6' => array( - 'Id' => '90 6', - 'Label' => 'Toy Pop', - ), - '90 7' => array( - 'Id' => '90 7', - 'Label' => 'Fantasy', - ), - '90 8' => array( - 'Id' => '90 8', - 'Label' => 'Monochrome', - ), - '90 9' => array( - 'Id' => '90 9', - 'Label' => 'Rough Monochrome', - ), - '90 10' => array( - 'Id' => '90 10', - 'Label' => 'Silky Monochrome', - ), - 'DMC-TZ40 90 1' => array( - 'Id' => 'DMC-TZ40 90 1', - 'Label' => 'Expressive', - ), - 'DMC-TZ40 90 10' => array( - 'Id' => 'DMC-TZ40 90 10', - 'Label' => 'Toy Effect', - ), - 'DMC-TZ40 90 11' => array( - 'Id' => 'DMC-TZ40 90 11', - 'Label' => 'Dynamic Monochrome', - ), - 'DMC-TZ40 90 12' => array( - 'Id' => 'DMC-TZ40 90 12', - 'Label' => 'Soft', - ), - 'DMC-TZ40 90 2' => array( - 'Id' => 'DMC-TZ40 90 2', - 'Label' => 'Retro', - ), - 'DMC-TZ40 90 3' => array( - 'Id' => 'DMC-TZ40 90 3', - 'Label' => 'High Key', - ), - 'DMC-TZ40 90 4' => array( - 'Id' => 'DMC-TZ40 90 4', - 'Label' => 'Sepia', - ), - 'DMC-TZ40 90 5' => array( - 'Id' => 'DMC-TZ40 90 5', - 'Label' => 'High Dynamic', - ), - 'DMC-TZ40 90 6' => array( - 'Id' => 'DMC-TZ40 90 6', - 'Label' => 'Miniature', - ), - 'DMC-TZ40 90 9' => array( - 'Id' => 'DMC-TZ40 90 9', - 'Label' => 'Low Key', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/Aperture.php b/lib/PHPExiftool/Driver/Tag/Composite/Aperture.php deleted file mode 100644 index d4a7fa5da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/Aperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Aperture extends AbstractTag -{ - - protected $Id = 'Aperture'; - - protected $Name = 'Aperture'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aperture'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/AudioBitrate.php b/lib/PHPExiftool/Driver/Tag/Composite/AudioBitrate.php deleted file mode 100644 index d183bf02f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/AudioBitrate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitrate extends AbstractTag -{ - - protected $Id = 'AudioBitrate'; - - protected $Name = 'AudioBitrate'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bitrate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/AutoFocus.php b/lib/PHPExiftool/Driver/Tag/Composite/AutoFocus.php deleted file mode 100644 index 71f6e9571..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/AutoFocus.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoFocus extends AbstractTag -{ - - protected $Id = 'AutoFocus'; - - protected $Name = 'AutoFocus'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Focus'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/AvgBitrate.php b/lib/PHPExiftool/Driver/Tag/Composite/AvgBitrate.php deleted file mode 100644 index 87cd37cd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/AvgBitrate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgBitrate extends AbstractTag -{ - - protected $Id = 'AvgBitrate'; - - protected $Name = 'AvgBitrate'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Avg Bitrate'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/BlueBalance.php b/lib/PHPExiftool/Driver/Tag/Composite/BlueBalance.php deleted file mode 100644 index fbc306b5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/BlueBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueBalance extends AbstractTag -{ - - protected $Id = 'BlueBalance'; - - protected $Name = 'BlueBalance'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blue Balance'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/CDDBDiscPlayTime.php b/lib/PHPExiftool/Driver/Tag/Composite/CDDBDiscPlayTime.php deleted file mode 100644 index 1c6cb0df5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/CDDBDiscPlayTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CDDBDiscPlayTime extends AbstractTag -{ - - protected $Id = 'CDDBDiscPlayTime'; - - protected $Name = 'CDDBDiscPlayTime'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CDDB Disc Play Time'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/CDDBDiscTracks.php b/lib/PHPExiftool/Driver/Tag/Composite/CDDBDiscTracks.php deleted file mode 100644 index 432a09703..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/CDDBDiscTracks.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CDDBDiscTracks extends AbstractTag -{ - - protected $Id = 'CDDBDiscTracks'; - - protected $Name = 'CDDBDiscTracks'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CDDB Disc Tracks'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/CFAPattern.php b/lib/PHPExiftool/Driver/Tag/Composite/CFAPattern.php deleted file mode 100644 index 6d273800e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/CFAPattern.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPattern extends AbstractTag -{ - - protected $Id = 'CFAPattern'; - - protected $Name = 'CFAPattern'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CFA Pattern'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/CircleOfConfusion.php b/lib/PHPExiftool/Driver/Tag/Composite/CircleOfConfusion.php deleted file mode 100644 index f5a8751ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/CircleOfConfusion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircleOfConfusion extends AbstractTag -{ - - protected $Id = 'CircleOfConfusion'; - - protected $Name = 'CircleOfConfusion'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Circle Of Confusion'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ConditionalFEC.php b/lib/PHPExiftool/Driver/Tag/Composite/ConditionalFEC.php deleted file mode 100644 index 1fd57d5d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ConditionalFEC.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConditionalFEC extends AbstractTag -{ - - protected $Id = 'ConditionalFEC'; - - protected $Name = 'ConditionalFEC'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Exposure Compensation'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/DOF.php b/lib/PHPExiftool/Driver/Tag/Composite/DOF.php deleted file mode 100644 index 448fb539e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/DOF.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DOF extends AbstractTag -{ - - protected $Id = 'DOF'; - - protected $Name = 'DOF'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Depth Of Field'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/DateCreated.php b/lib/PHPExiftool/Driver/Tag/Composite/DateCreated.php deleted file mode 100644 index 0f0a2ffc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/DateCreated.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateCreated extends AbstractTag -{ - - protected $Id = 'DateCreated'; - - protected $Name = 'DateCreated'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Created'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/DateTimeCreated.php b/lib/PHPExiftool/Driver/Tag/Composite/DateTimeCreated.php deleted file mode 100644 index 8ee87ac45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/DateTimeCreated.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeCreated extends AbstractTag -{ - - protected $Id = 'DateTimeCreated'; - - protected $Name = 'DateTimeCreated'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Created'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Composite/DateTimeOriginal.php deleted file mode 100644 index 4611fa580..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/DigitalCreationDateTime.php b/lib/PHPExiftool/Driver/Tag/Composite/DigitalCreationDateTime.php deleted file mode 100644 index 507cd2f40..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/DigitalCreationDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalCreationDateTime extends AbstractTag -{ - - protected $Id = 'DigitalCreationDateTime'; - - protected $Name = 'DigitalCreationDateTime'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Creation Date/Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Composite/DigitalZoom.php deleted file mode 100644 index 05c3a0bc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/DigitalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 'DigitalZoom'; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Zoom'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Composite/DriveMode.php deleted file mode 100644 index 475f8e4a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/DriveMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 'DriveMode'; - - protected $Name = 'DriveMode'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Drive Mode'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Continuous Shooting', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Self-timer Operation', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Single-frame Shooting', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/Duration.php b/lib/PHPExiftool/Driver/Tag/Composite/Duration.php deleted file mode 100644 index d1aa07e7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/Duration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Duration'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ExtenderStatus.php b/lib/PHPExiftool/Driver/Tag/Composite/ExtenderStatus.php deleted file mode 100644 index 41fb050c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ExtenderStatus.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderStatus extends AbstractTag -{ - - protected $Id = 'ExtenderStatus'; - - protected $Name = 'ExtenderStatus'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extender Status'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not attached', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Attached', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Removed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/FOV.php b/lib/PHPExiftool/Driver/Tag/Composite/FOV.php deleted file mode 100644 index a5faa99d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/FOV.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FOV extends AbstractTag -{ - - protected $Id = 'FOV'; - - protected $Name = 'FOV'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/FileNumber.php b/lib/PHPExiftool/Driver/Tag/Composite/FileNumber.php deleted file mode 100644 index 4e6e31383..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/FileNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNumber extends AbstractTag -{ - - protected $Id = 'FileNumber'; - - protected $Name = 'FileNumber'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'File Number'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/Flash.php b/lib/PHPExiftool/Driver/Tag/Composite/Flash.php deleted file mode 100644 index 896955ae8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/Flash.php +++ /dev/null @@ -1,154 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 'Flash'; - - protected $Name = 'Flash'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Flash'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Fired, Return not detected', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Fired, Return detected', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'On, Did not fire', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'On, Fired', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'On, Return not detected', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'On, Return detected', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Off, Did not fire', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Off, Did not fire, Return not detected', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Auto, Did not fire', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Auto, Fired', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Auto, Fired, Return not detected', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Auto, Fired, Return detected', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'No flash function', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Off, No flash function', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Fired, Red-eye reduction', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Fired, Red-eye reduction, Return not detected', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Fired, Red-eye reduction, Return detected', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'On, Red-eye reduction', - ), - 77 => array( - 'Id' => 77, - 'Label' => 'On, Red-eye reduction, Return not detected', - ), - 79 => array( - 'Id' => 79, - 'Label' => 'On, Red-eye reduction, Return detected', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Off, Red-eye reduction', - ), - 88 => array( - 'Id' => 88, - 'Label' => 'Auto, Did not fire, Red-eye reduction', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Auto, Fired, Red-eye reduction', - ), - 93 => array( - 'Id' => 93, - 'Label' => 'Auto, Fired, Red-eye reduction, Return not detected', - ), - 95 => array( - 'Id' => 95, - 'Label' => 'Auto, Fired, Red-eye reduction, Return detected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/FlashType.php b/lib/PHPExiftool/Driver/Tag/Composite/FlashType.php deleted file mode 100644 index 66da54a58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/FlashType.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashType extends AbstractTag -{ - - protected $Id = 'FlashType'; - - protected $Name = 'FlashType'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Type'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Built-In Flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'External', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/FocalLength35efl.php b/lib/PHPExiftool/Driver/Tag/Composite/FocalLength35efl.php deleted file mode 100644 index cff2b33de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/FocalLength35efl.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength35efl extends AbstractTag -{ - - protected $Id = 'FocalLength35efl'; - - protected $Name = 'FocalLength35efl'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/FocusDistance.php b/lib/PHPExiftool/Driver/Tag/Composite/FocusDistance.php deleted file mode 100644 index 163c13dce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/FocusDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistance extends AbstractTag -{ - - protected $Id = 'FocusDistance'; - - protected $Name = 'FocusDistance'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focus Distance'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSAltitude.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSAltitude.php deleted file mode 100644 index 66bcab926..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSAltitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSAltitude'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSAltitudeRef.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSAltitudeRef.php deleted file mode 100644 index 8a5a6b78a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSAltitudeRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitudeRef extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSAltitudeRef'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude Ref'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Above Sea Level', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Below Sea Level', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSDateTime.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSDateTime.php deleted file mode 100644 index 7901f2f54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDateTime extends AbstractTag -{ - - protected $Id = 'GPSDateTime'; - - protected $Name = 'GPSDateTime'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Date/Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSLatitude.php deleted file mode 100644 index a9d8c033b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSLatitudeRef.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSLatitudeRef.php deleted file mode 100644 index 079096700..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSLatitudeRef.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitudeRef extends AbstractTag -{ - - protected $Id = 'GPSLatitudeRef'; - - protected $Name = 'GPSLatitudeRef'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude Ref'; - - protected $Values = array( - 'N' => array( - 'Id' => 'N', - 'Label' => 'North', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'South', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSLongitude.php deleted file mode 100644 index ff52636a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSLongitudeRef.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSLongitudeRef.php deleted file mode 100644 index daee7680d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSLongitudeRef.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitudeRef extends AbstractTag -{ - - protected $Id = 'GPSLongitudeRef'; - - protected $Name = 'GPSLongitudeRef'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude Ref'; - - protected $Values = array( - 'E' => array( - 'Id' => 'E', - 'Label' => 'East', - ), - 'W' => array( - 'Id' => 'W', - 'Label' => 'West', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/GPSPosition.php b/lib/PHPExiftool/Driver/Tag/Composite/GPSPosition.php deleted file mode 100644 index 9c2bb19a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/GPSPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSPosition extends AbstractTag -{ - - protected $Id = 'GPSPosition'; - - protected $Name = 'GPSPosition'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Position'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/HyperfocalDistance.php b/lib/PHPExiftool/Driver/Tag/Composite/HyperfocalDistance.php deleted file mode 100644 index 2488653be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/HyperfocalDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HyperfocalDistance extends AbstractTag -{ - - protected $Id = 'HyperfocalDistance'; - - protected $Name = 'HyperfocalDistance'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hyperfocal Distance'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/IDCPreviewImage.php b/lib/PHPExiftool/Driver/Tag/Composite/IDCPreviewImage.php deleted file mode 100644 index 920a51c29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/IDCPreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IDCPreviewImage extends AbstractTag -{ - - protected $Id = 'IDCPreviewImage'; - - protected $Name = 'IDCPreviewImage'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IDC Preview Image'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ISO.php b/lib/PHPExiftool/Driver/Tag/Composite/ISO.php deleted file mode 100644 index d0442c506..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'ISO'; - - protected $Name = 'ISO'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/Composite/ImageHeight.php deleted file mode 100644 index 0a5420455..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ImageSize.php b/lib/PHPExiftool/Driver/Tag/Composite/ImageSize.php deleted file mode 100644 index 244fde83d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ImageSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSize extends AbstractTag -{ - - protected $Id = 'ImageSize'; - - protected $Name = 'ImageSize'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Size'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/Composite/ImageWidth.php deleted file mode 100644 index 4e5da5725..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/JpgFromRaw.php b/lib/PHPExiftool/Driver/Tag/Composite/JpgFromRaw.php deleted file mode 100644 index 693699822..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/JpgFromRaw.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRaw extends AbstractTag -{ - - protected $Id = 'JpgFromRaw'; - - protected $Name = 'JpgFromRaw'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Jpg From Raw'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/Lens.php b/lib/PHPExiftool/Driver/Tag/Composite/Lens.php deleted file mode 100644 index a9531e599..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/Lens.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lens extends AbstractTag -{ - - protected $Id = 'Lens'; - - protected $Name = 'Lens'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/Lens35efl.php b/lib/PHPExiftool/Driver/Tag/Composite/Lens35efl.php deleted file mode 100644 index 22458d98e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/Lens35efl.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lens35efl extends AbstractTag -{ - - protected $Id = 'Lens35efl'; - - protected $Name = 'Lens35efl'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/LensID.php b/lib/PHPExiftool/Driver/Tag/Composite/LensID.php deleted file mode 100644 index da5678ec0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/LensID.php +++ /dev/null @@ -1,1924 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensID'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens ID'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 'RL1' => array( - 'Id' => 'RL1', - 'Label' => 'GR Lens A12 50mm F2.5 Macro', - ), - 'RL2' => array( - 'Id' => 'RL2', - 'Label' => 'Ricoh Lens S10 24-70mm F2.5-4.4 VC', - ), - 'RL3' => array( - 'Id' => 'RL3', - 'Label' => 'Ricoh Lens P10 28-300mm F3.5-5.6 VC', - ), - 'RL5' => array( - 'Id' => 'RL5', - 'Label' => 'GR Lens A12 28mm F2.5', - ), - 'RL6' => array( - 'Id' => 'RL6', - 'Label' => 'Ricoh Lens A16 24-85mm F3.5-5.5', - ), - 'RL8' => array( - 'Id' => 'RL8', - 'Label' => 'Mount A12', - ), - '00 00 00 00 00 00 00 01' => array( - 'Id' => '00 00 00 00 00 00 00 01', - 'Label' => 'Manual Lens No CPU', - ), - '00 00 00 00 00 00 E1 12' => array( - 'Id' => '00 00 00 00 00 00 E1 12', - 'Label' => 'TC-17E II', - ), - '00 00 00 00 00 00 F1 0C' => array( - 'Id' => '00 00 00 00 00 00 F1 0C', - 'Label' => 'TC-14E [II] or Sigma APO Tele Converter 1.4x EX DG or Kenko Teleplus PRO 300 DG 1.4x', - ), - '00 00 00 00 00 00 F2 18' => array( - 'Id' => '00 00 00 00 00 00 F2 18', - 'Label' => 'TC-20E [II] or Sigma APO Tele Converter 2x EX DG or Kenko Teleplus PRO 300 DG 2.0x', - ), - '00 00 48 48 53 53 00 01' => array( - 'Id' => '00 00 48 48 53 53 00 01', - 'Label' => 'Loreo 40mm F11-22 3D Lens in a Cap 9005', - ), - '00 36 1C 2D 34 3C 00 06' => array( - 'Id' => '00 36 1C 2D 34 3C 00 06', - 'Label' => 'Tamron SP AF 11-18mm f/4.5-5.6 Di II LD Aspherical (IF) (A13)', - ), - '00 3C 1F 37 30 30 00 06' => array( - 'Id' => '00 3C 1F 37 30 30 00 06', - 'Label' => 'Tokina AT-X 124 AF PRO DX (AF 12-24mm f/4)', - ), - '00 3E 80 A0 38 3F 00 02' => array( - 'Id' => '00 3E 80 A0 38 3F 00 02', - 'Label' => 'Tamron SP AF 200-500mm f/5-6.3 Di LD (IF) (A08)', - ), - '00 3F 2D 80 2B 40 00 06' => array( - 'Id' => '00 3F 2D 80 2B 40 00 06', - 'Label' => 'Tamron AF 18-200mm f/3.5-6.3 XR Di II LD Aspherical (IF) (A14)', - ), - '00 3F 2D 80 2C 40 00 06' => array( - 'Id' => '00 3F 2D 80 2C 40 00 06', - 'Label' => 'Tamron AF 18-200mm f/3.5-6.3 XR Di II LD Aspherical (IF) Macro (A14)', - ), - '00 3F 80 A0 38 3F 00 02' => array( - 'Id' => '00 3F 80 A0 38 3F 00 02', - 'Label' => 'Tamron SP AF 200-500mm f/5-6.3 Di (A08)', - ), - '00 40 11 11 2C 2C 00 00' => array( - 'Id' => '00 40 11 11 2C 2C 00 00', - 'Label' => 'Samyang 8mm f/3.5 Fish-Eye', - ), - '00 40 18 2B 2C 34 00 06' => array( - 'Id' => '00 40 18 2B 2C 34 00 06', - 'Label' => 'Tokina AT-X 107 AF DX Fisheye (AF 10-17mm f/3.5-4.5)', - ), - '00 40 2A 72 2C 3C 00 06' => array( - 'Id' => '00 40 2A 72 2C 3C 00 06', - 'Label' => 'Tokina AT-X 16.5-135 DX (AF 16.5-135mm F3.5-5.6)', - ), - '00 40 2B 2B 2C 2C 00 02' => array( - 'Id' => '00 40 2B 2B 2C 2C 00 02', - 'Label' => 'Tokina AT-X 17 AF PRO (AF 17mm f/3.5)', - ), - '00 40 2D 2D 2C 2C 00 00' => array( - 'Id' => '00 40 2D 2D 2C 2C 00 00', - 'Label' => 'Carl Zeiss Distagon T* 3.5/18 ZF.2', - ), - '00 40 2D 80 2C 40 00 06' => array( - 'Id' => '00 40 2D 80 2C 40 00 06', - 'Label' => 'Tamron AF 18-200mm f/3.5-6.3 XR Di II LD Aspherical (IF) Macro (A14NII)', - ), - '00 40 2D 88 2C 40 00 06' => array( - 'Id' => '00 40 2D 88 2C 40 00 06', - 'Label' => 'Tamron AF 18-250mm f/3.5-6.3 Di II LD Aspherical (IF) Macro (A18NII)', - ), - '00 40 2D 88 2C 40 62 06' => array( - 'Id' => '00 40 2D 88 2C 40 62 06', - 'Label' => 'Tamron AF 18-250mm f/3.5-6.3 Di II LD Aspherical (IF) Macro (A18)', - ), - '00 40 31 31 2C 2C 00 00' => array( - 'Id' => '00 40 31 31 2C 2C 00 00', - 'Label' => 'Voigtlander Color Skopar 20mm F3.5 SLII Aspherical', - ), - '00 40 37 80 2C 3C 00 02' => array( - 'Id' => '00 40 37 80 2C 3C 00 02', - 'Label' => 'Tokina AT-X 242 AF (AF 24-200mm f/3.5-5.6)', - ), - '00 40 64 64 2C 2C 00 00' => array( - 'Id' => '00 40 64 64 2C 2C 00 00', - 'Label' => 'Voigtlander APO-Lanthar 90mm F3.5 SLII Close Focus', - ), - '00 44 60 98 34 3C 00 02' => array( - 'Id' => '00 44 60 98 34 3C 00 02', - 'Label' => 'Tokina AT-X 840 D (AF 80-400mm f/4.5-5.6)', - ), - '00 47 10 10 24 24 00 00' => array( - 'Id' => '00 47 10 10 24 24 00 00', - 'Label' => 'Fisheye Nikkor 8mm f/2.8 AiS', - ), - '00 47 25 25 24 24 00 02' => array( - 'Id' => '00 47 25 25 24 24 00 02', - 'Label' => 'Tamron SP AF 14mm f/2.8 Aspherical (IF) (69E)', - ), - '00 47 44 44 24 24 00 06' => array( - 'Id' => '00 47 44 44 24 24 00 06', - 'Label' => 'Tokina AT-X M35 PRO DX (AF 35mm f/2.8 Macro)', - ), - '00 47 53 80 30 3C 00 06' => array( - 'Id' => '00 47 53 80 30 3C 00 06', - 'Label' => 'Tamron AF 55-200mm f/4-5.6 Di II LD (A15)', - ), - '00 48 1C 29 24 24 00 06' => array( - 'Id' => '00 48 1C 29 24 24 00 06', - 'Label' => 'Tokina AT-X 116 PRO DX (AF 11-16mm f/2.8)', - ), - '00 48 29 3C 24 24 00 06' => array( - 'Id' => '00 48 29 3C 24 24 00 06', - 'Label' => 'Tokina AT-X 16-28 AF PRO FX (AF 16-28mm f/2.8)', - ), - '00 48 29 50 24 24 00 06' => array( - 'Id' => '00 48 29 50 24 24 00 06', - 'Label' => 'Tokina AT-X 165 PRO DX (AF 16-50mm f/2.8)', - ), - '00 48 32 32 24 24 00 00' => array( - 'Id' => '00 48 32 32 24 24 00 00', - 'Label' => 'Carl Zeiss Distagon T* 2.8/21 ZF.2', - ), - '00 48 3C 60 24 24 00 02' => array( - 'Id' => '00 48 3C 60 24 24 00 02', - 'Label' => 'Tokina AT-X 280 AF PRO (AF 28-80mm f/2.8)', - ), - '00 48 3C 6A 24 24 00 02' => array( - 'Id' => '00 48 3C 6A 24 24 00 02', - 'Label' => 'Tamron SP AF 28-105mm f/2.8 LD Aspherical IF (176D)', - ), - '00 48 50 50 18 18 00 00' => array( - 'Id' => '00 48 50 50 18 18 00 00', - 'Label' => 'Nikkor H 50mm f/2', - ), - '00 48 50 72 24 24 00 06' => array( - 'Id' => '00 48 50 72 24 24 00 06', - 'Label' => 'Tokina AT-X 535 PRO DX (AF 50-135mm f/2.8)', - ), - '00 48 5C 8E 30 3C 00 06' => array( - 'Id' => '00 48 5C 8E 30 3C 00 06', - 'Label' => 'Tamron AF 70-300mm f/4-5.6 Di LD Macro 1:2 (A17NII)', - ), - '00 48 68 68 24 24 00 00' => array( - 'Id' => '00 48 68 68 24 24 00 00', - 'Label' => 'Series E 100mm f/2.8', - ), - '00 48 80 80 30 30 00 00' => array( - 'Id' => '00 48 80 80 30 30 00 00', - 'Label' => 'Nikkor 200mm f/4 AiS', - ), - '00 49 30 48 22 2B 00 02' => array( - 'Id' => '00 49 30 48 22 2B 00 02', - 'Label' => 'Tamron SP AF 20-40mm f/2.7-3.5 (166D)', - ), - '00 4C 6A 6A 20 20 00 00' => array( - 'Id' => '00 4C 6A 6A 20 20 00 00', - 'Label' => 'Nikkor 105mm f/2.5 AiS', - ), - '00 4C 7C 7C 2C 2C 00 02' => array( - 'Id' => '00 4C 7C 7C 2C 2C 00 02', - 'Label' => 'Tamron SP AF 180mm f/3.5 Di Model (B01)', - ), - '00 53 2B 50 24 24 00 06' => array( - 'Id' => '00 53 2B 50 24 24 00 06', - 'Label' => 'Tamron SP AF 17-50mm f/2.8 XR Di II LD Aspherical (IF) (A16)', - ), - '00 54 2B 50 24 24 00 06' => array( - 'Id' => '00 54 2B 50 24 24 00 06', - 'Label' => 'Tamron SP AF 17-50mm f/2.8 XR Di II LD Aspherical (IF) (A16NII)', - ), - '00 54 3C 3C 18 18 00 00' => array( - 'Id' => '00 54 3C 3C 18 18 00 00', - 'Label' => 'Carl Zeiss Distagon T* 2/28 ZF.2', - ), - '00 54 44 44 0C 0C 00 00' => array( - 'Id' => '00 54 44 44 0C 0C 00 00', - 'Label' => 'Nikkor 35mm f/1.4 AiS', - ), - '00 54 44 44 18 18 00 00' => array( - 'Id' => '00 54 44 44 18 18 00 00', - 'Label' => 'Carl Zeiss Distagon T* 2/35 ZF.2', - ), - '00 54 48 48 18 18 00 00' => array( - 'Id' => '00 54 48 48 18 18 00 00', - 'Label' => 'Voigtlander Ultron 40mm F2 SLII Aspherical', - ), - '00 54 50 50 0C 0C 00 00' => array( - 'Id' => '00 54 50 50 0C 0C 00 00', - 'Label' => 'Carl Zeiss Planar T* 1.4/50 ZF.2', - ), - '00 54 50 50 18 18 00 00' => array( - 'Id' => '00 54 50 50 18 18 00 00', - 'Label' => 'Carl Zeiss Makro-Planar T* 2/50 ZF.2', - ), - '00 54 55 55 0C 0C 00 00' => array( - 'Id' => '00 54 55 55 0C 0C 00 00', - 'Label' => 'Voigtlander Nokton 58mm F1.4 SLII', - ), - '00 54 56 56 30 30 00 00' => array( - 'Id' => '00 54 56 56 30 30 00 00', - 'Label' => 'Coastal Optical Systems 60mm 1:4 UV-VIS-IR Macro Apo', - ), - '00 54 62 62 0C 0C 00 00' => array( - 'Id' => '00 54 62 62 0C 0C 00 00', - 'Label' => 'Carl Zeiss Planar T* 1.4/85 ZF.2', - ), - '00 54 68 68 18 18 00 00' => array( - 'Id' => '00 54 68 68 18 18 00 00', - 'Label' => 'Carl Zeiss Makro-Planar T* 2/100 ZF.2', - ), - '00 54 68 68 24 24 00 02' => array( - 'Id' => '00 54 68 68 24 24 00 02', - 'Label' => 'Tokina AT-X M100 AF PRO D (AF 100mm f/2.8 Macro)', - ), - '00 54 8E 8E 24 24 00 02' => array( - 'Id' => '00 54 8E 8E 24 24 00 02', - 'Label' => 'Tokina AT-X 300 AF PRO (AF 300mm f/2.8)', - ), - '00 58 64 64 20 20 00 00' => array( - 'Id' => '00 58 64 64 20 20 00 00', - 'Label' => 'Soligor C/D Macro MC 90mm f/2.5', - ), - '01 00 00 00 00 00 02 00' => array( - 'Id' => '01 00 00 00 00 00 02 00', - 'Label' => 'TC-16A', - ), - '01 00 00 00 00 00 08 00' => array( - 'Id' => '01 00 00 00 00 00 08 00', - 'Label' => 'TC-16A', - ), - '01 58 50 50 14 14 02 00' => array( - 'Id' => '01 58 50 50 14 14 02 00', - 'Label' => 'AF Nikkor 50mm f/1.8', - ), - '01 58 50 50 14 14 05 00' => array( - 'Id' => '01 58 50 50 14 14 05 00', - 'Label' => 'AF Nikkor 50mm f/1.8', - ), - '02 2F 98 98 3D 3D 02 00' => array( - 'Id' => '02 2F 98 98 3D 3D 02 00', - 'Label' => 'Sigma APO 400mm F5.6', - ), - '02 34 A0 A0 44 44 02 00' => array( - 'Id' => '02 34 A0 A0 44 44 02 00', - 'Label' => 'Sigma APO 500mm F7.2', - ), - '02 37 5E 8E 35 3D 02 00' => array( - 'Id' => '02 37 5E 8E 35 3D 02 00', - 'Label' => 'Sigma 75-300mm F4.5-5.6 APO', - ), - '02 37 A0 A0 34 34 02 00' => array( - 'Id' => '02 37 A0 A0 34 34 02 00', - 'Label' => 'Sigma APO 500mm F4.5', - ), - '02 3A 37 50 31 3D 02 00' => array( - 'Id' => '02 3A 37 50 31 3D 02 00', - 'Label' => 'Sigma 24-50mm F4-5.6 UC', - ), - '02 3A 5E 8E 32 3D 02 00' => array( - 'Id' => '02 3A 5E 8E 32 3D 02 00', - 'Label' => 'Sigma 75-300mm F4.0-5.6', - ), - '02 3B 44 61 30 3D 02 00' => array( - 'Id' => '02 3B 44 61 30 3D 02 00', - 'Label' => 'Sigma 35-80mm F4-5.6', - ), - '02 3C B0 B0 3C 3C 02 00' => array( - 'Id' => '02 3C B0 B0 3C 3C 02 00', - 'Label' => 'Sigma APO 800mm F5.6', - ), - '02 3F 24 24 2C 2C 02 00' => array( - 'Id' => '02 3F 24 24 2C 2C 02 00', - 'Label' => 'Sigma 14mm F3.5', - ), - '02 3F 3C 5C 2D 35 02 00' => array( - 'Id' => '02 3F 3C 5C 2D 35 02 00', - 'Label' => 'Sigma 28-70mm F3.5-4.5 UC', - ), - '02 40 44 5C 2C 34 02 00' => array( - 'Id' => '02 40 44 5C 2C 34 02 00', - 'Label' => 'Exakta AF 35-70mm 1:3.5-4.5 MC', - ), - '02 40 44 73 2B 36 02 00' => array( - 'Id' => '02 40 44 73 2B 36 02 00', - 'Label' => 'Sigma 35-135mm F3.5-4.5 a', - ), - '02 40 5C 82 2C 35 02 00' => array( - 'Id' => '02 40 5C 82 2C 35 02 00', - 'Label' => 'Sigma APO 70-210mm F3.5-4.5', - ), - '02 42 44 5C 2A 34 02 00' => array( - 'Id' => '02 42 44 5C 2A 34 02 00', - 'Label' => 'AF Zoom-Nikkor 35-70mm f/3.3-4.5', - ), - '02 42 44 5C 2A 34 08 00' => array( - 'Id' => '02 42 44 5C 2A 34 08 00', - 'Label' => 'AF Zoom-Nikkor 35-70mm f/3.3-4.5', - ), - '02 46 37 37 25 25 02 00' => array( - 'Id' => '02 46 37 37 25 25 02 00', - 'Label' => 'Sigma 24mm F2.8 Super Wide II Macro', - ), - '02 46 3C 5C 25 25 02 00' => array( - 'Id' => '02 46 3C 5C 25 25 02 00', - 'Label' => 'Sigma 28-70mm F2.8', - ), - '02 46 5C 82 25 25 02 00' => array( - 'Id' => '02 46 5C 82 25 25 02 00', - 'Label' => 'Sigma 70-210mm F2.8 APO', - ), - '02 48 50 50 24 24 02 00' => array( - 'Id' => '02 48 50 50 24 24 02 00', - 'Label' => 'Sigma Macro 50mm F2.8', - ), - '02 48 65 65 24 24 02 00' => array( - 'Id' => '02 48 65 65 24 24 02 00', - 'Label' => 'Sigma Macro 90mm F2.8', - ), - '03 43 5C 81 35 35 02 00' => array( - 'Id' => '03 43 5C 81 35 35 02 00', - 'Label' => 'Soligor AF C/D Zoom UMCS 70-210mm 1:4.5', - ), - '03 48 5C 81 30 30 02 00' => array( - 'Id' => '03 48 5C 81 30 30 02 00', - 'Label' => 'AF Zoom-Nikkor 70-210mm f/4', - ), - '04 48 3C 3C 24 24 03 00' => array( - 'Id' => '04 48 3C 3C 24 24 03 00', - 'Label' => 'AF Nikkor 28mm f/2.8', - ), - '05 54 50 50 0C 0C 04 00' => array( - 'Id' => '05 54 50 50 0C 0C 04 00', - 'Label' => 'AF Nikkor 50mm f/1.4', - ), - '06 3F 68 68 2C 2C 06 00' => array( - 'Id' => '06 3F 68 68 2C 2C 06 00', - 'Label' => 'Cosina AF 100mm F3.5 Macro', - ), - '06 54 53 53 24 24 06 00' => array( - 'Id' => '06 54 53 53 24 24 06 00', - 'Label' => 'AF Micro-Nikkor 55mm f/2.8', - ), - '07 36 3D 5F 2C 3C 03 00' => array( - 'Id' => '07 36 3D 5F 2C 3C 03 00', - 'Label' => 'Cosina AF Zoom 28-80mm F3.5-5.6 MC Macro', - ), - '07 3E 30 43 2D 35 03 00' => array( - 'Id' => '07 3E 30 43 2D 35 03 00', - 'Label' => 'Soligor AF Zoom 19-35mm 1:3.5-4.5 MC', - ), - '07 40 2F 44 2C 34 03 02' => array( - 'Id' => '07 40 2F 44 2C 34 03 02', - 'Label' => 'Tamron AF 19-35mm f/3.5-4.5 (A10)', - ), - '07 40 30 45 2D 35 03 02' => array( - 'Id' => '07 40 30 45 2D 35 03 02', - 'Label' => 'Tamron AF 19-35mm f/3.5-4.5 (A10)', - ), - '07 40 3C 5C 2C 35 03 00' => array( - 'Id' => '07 40 3C 5C 2C 35 03 00', - 'Label' => 'Tokina AF 270 II (AF 28-70mm f/3.5-4.5)', - ), - '07 40 3C 62 2C 34 03 00' => array( - 'Id' => '07 40 3C 62 2C 34 03 00', - 'Label' => 'AF Zoom-Nikkor 28-85mm f/3.5-4.5', - ), - '07 46 2B 44 24 30 03 02' => array( - 'Id' => '07 46 2B 44 24 30 03 02', - 'Label' => 'Tamron SP AF 17-35mm f/2.8-4 Di LD Aspherical (IF) (A05)', - ), - '07 46 3D 6A 25 2F 03 00' => array( - 'Id' => '07 46 3D 6A 25 2F 03 00', - 'Label' => 'Cosina AF Zoom 28-105mm F2.8-3.8 MC', - ), - '07 47 3C 5C 25 35 03 00' => array( - 'Id' => '07 47 3C 5C 25 35 03 00', - 'Label' => 'Tokina AF 287 SD (AF 28-70mm f/2.8-4.5)', - ), - '07 48 3C 5C 24 24 03 00' => array( - 'Id' => '07 48 3C 5C 24 24 03 00', - 'Label' => 'Tokina AT-X 287 AF (AF 28-70mm f/2.8)', - ), - '08 40 44 6A 2C 34 04 00' => array( - 'Id' => '08 40 44 6A 2C 34 04 00', - 'Label' => 'AF Zoom-Nikkor 35-105mm f/3.5-4.5', - ), - '09 48 37 37 24 24 04 00' => array( - 'Id' => '09 48 37 37 24 24 04 00', - 'Label' => 'AF Nikkor 24mm f/2.8', - ), - '0A 48 8E 8E 24 24 03 00' => array( - 'Id' => '0A 48 8E 8E 24 24 03 00', - 'Label' => 'AF Nikkor 300mm f/2.8 IF-ED', - ), - '0A 48 8E 8E 24 24 05 00' => array( - 'Id' => '0A 48 8E 8E 24 24 05 00', - 'Label' => 'AF Nikkor 300mm f/2.8 IF-ED N', - ), - '0B 3E 3D 7F 2F 3D 0E 00' => array( - 'Id' => '0B 3E 3D 7F 2F 3D 0E 00', - 'Label' => 'Tamron AF 28-200mm f/3.8-5.6 (71D)', - ), - '0B 3E 3D 7F 2F 3D 0E 02' => array( - 'Id' => '0B 3E 3D 7F 2F 3D 0E 02', - 'Label' => 'Tamron AF 28-200mm f/3.8-5.6D (171D)', - ), - '0B 48 7C 7C 24 24 05 00' => array( - 'Id' => '0B 48 7C 7C 24 24 05 00', - 'Label' => 'AF Nikkor 180mm f/2.8 IF-ED', - ), - '0D 40 44 72 2C 34 07 00' => array( - 'Id' => '0D 40 44 72 2C 34 07 00', - 'Label' => 'AF Zoom-Nikkor 35-135mm f/3.5-4.5', - ), - '0E 48 5C 81 30 30 05 00' => array( - 'Id' => '0E 48 5C 81 30 30 05 00', - 'Label' => 'AF Zoom-Nikkor 70-210mm f/4', - ), - '0E 4A 31 48 23 2D 0E 02' => array( - 'Id' => '0E 4A 31 48 23 2D 0E 02', - 'Label' => 'Tamron SP AF 20-40mm f/2.7-3.5 (166D)', - ), - '0F 58 50 50 14 14 05 00' => array( - 'Id' => '0F 58 50 50 14 14 05 00', - 'Label' => 'AF Nikkor 50mm f/1.8 N', - ), - '10 3D 3C 60 2C 3C D2 02' => array( - 'Id' => '10 3D 3C 60 2C 3C D2 02', - 'Label' => 'Tamron AF 28-80mm f/3.5-5.6 Aspherical (177D)', - ), - '10 48 8E 8E 30 30 08 00' => array( - 'Id' => '10 48 8E 8E 30 30 08 00', - 'Label' => 'AF Nikkor 300mm f/4 IF-ED', - ), - '11 48 44 5C 24 24 08 00' => array( - 'Id' => '11 48 44 5C 24 24 08 00', - 'Label' => 'AF Zoom-Nikkor 35-70mm f/2.8', - ), - '12 36 5C 81 35 3D 09 00' => array( - 'Id' => '12 36 5C 81 35 3D 09 00', - 'Label' => 'Cosina AF Zoom 70-210mm F4.5-5.6 MC Macro', - ), - '12 36 69 97 35 42 09 00' => array( - 'Id' => '12 36 69 97 35 42 09 00', - 'Label' => 'Soligor AF Zoom 100-400mm 1:4.5-6.7 MC', - ), - '12 39 5C 8E 34 3D 08 02' => array( - 'Id' => '12 39 5C 8E 34 3D 08 02', - 'Label' => 'Cosina AF Zoom 70-300mm F4.5-5.6 MC Macro', - ), - '12 3B 68 8D 3D 43 09 02' => array( - 'Id' => '12 3B 68 8D 3D 43 09 02', - 'Label' => 'Cosina AF Zoom 100-300mm F5.6-6.7 MC Macro', - ), - '12 3B 98 98 3D 3D 09 00' => array( - 'Id' => '12 3B 98 98 3D 3D 09 00', - 'Label' => 'Tokina AT-X 400 AF SD (AF 400mm f/5.6)', - ), - '12 3D 3C 80 2E 3C DF 02' => array( - 'Id' => '12 3D 3C 80 2E 3C DF 02', - 'Label' => 'Tamron AF 28-200mm f/3.8-5.6 AF Aspherical LD (IF) (271D)', - ), - '12 44 5E 8E 34 3C 09 00' => array( - 'Id' => '12 44 5E 8E 34 3C 09 00', - 'Label' => 'Tokina AF 730 (AF 75-300mm F4.5-5.6)', - ), - '12 48 5C 81 30 3C 09 00' => array( - 'Id' => '12 48 5C 81 30 3C 09 00', - 'Label' => 'AF Nikkor 70-210mm f/4-5.6', - ), - '12 4A 5C 81 31 3D 09 00' => array( - 'Id' => '12 4A 5C 81 31 3D 09 00', - 'Label' => 'Soligor AF C/D Auto Zoom+Macro 70-210mm 1:4-5.6 UMCS', - ), - '13 42 37 50 2A 34 0B 00' => array( - 'Id' => '13 42 37 50 2A 34 0B 00', - 'Label' => 'AF Zoom-Nikkor 24-50mm f/3.3-4.5', - ), - '14 48 60 80 24 24 0B 00' => array( - 'Id' => '14 48 60 80 24 24 0B 00', - 'Label' => 'AF Zoom-Nikkor 80-200mm f/2.8 ED', - ), - '14 48 68 8E 30 30 0B 00' => array( - 'Id' => '14 48 68 8E 30 30 0B 00', - 'Label' => 'Tokina AT-X 340 AF (AF 100-300mm f/4)', - ), - '14 54 60 80 24 24 0B 00' => array( - 'Id' => '14 54 60 80 24 24 0B 00', - 'Label' => 'Tokina AT-X 828 AF (AF 80-200mm f/2.8)', - ), - '15 4C 62 62 14 14 0C 00' => array( - 'Id' => '15 4C 62 62 14 14 0C 00', - 'Label' => 'AF Nikkor 85mm f/1.8', - ), - '17 3C A0 A0 30 30 0F 00' => array( - 'Id' => '17 3C A0 A0 30 30 0F 00', - 'Label' => 'Nikkor 500mm f/4 P ED IF', - ), - '17 3C A0 A0 30 30 11 00' => array( - 'Id' => '17 3C A0 A0 30 30 11 00', - 'Label' => 'Nikkor 500mm f/4 P ED IF', - ), - '18 40 44 72 2C 34 0E 00' => array( - 'Id' => '18 40 44 72 2C 34 0E 00', - 'Label' => 'AF Zoom-Nikkor 35-135mm f/3.5-4.5 N', - ), - '1A 54 44 44 18 18 11 00' => array( - 'Id' => '1A 54 44 44 18 18 11 00', - 'Label' => 'AF Nikkor 35mm f/2', - ), - '1B 44 5E 8E 34 3C 10 00' => array( - 'Id' => '1B 44 5E 8E 34 3C 10 00', - 'Label' => 'AF Zoom-Nikkor 75-300mm f/4.5-5.6', - ), - '1C 48 30 30 24 24 12 00' => array( - 'Id' => '1C 48 30 30 24 24 12 00', - 'Label' => 'AF Nikkor 20mm f/2.8', - ), - '1D 42 44 5C 2A 34 12 00' => array( - 'Id' => '1D 42 44 5C 2A 34 12 00', - 'Label' => 'AF Zoom-Nikkor 35-70mm f/3.3-4.5 N', - ), - '1E 54 56 56 24 24 13 00' => array( - 'Id' => '1E 54 56 56 24 24 13 00', - 'Label' => 'AF Micro-Nikkor 60mm f/2.8', - ), - '1E 5D 64 64 20 20 13 00' => array( - 'Id' => '1E 5D 64 64 20 20 13 00', - 'Label' => 'Tamron SP AF 90mm f/2.5 (52E)', - ), - '1F 54 6A 6A 24 24 14 00' => array( - 'Id' => '1F 54 6A 6A 24 24 14 00', - 'Label' => 'AF Micro-Nikkor 105mm f/2.8', - ), - '20 3C 80 98 3D 3D 1E 02' => array( - 'Id' => '20 3C 80 98 3D 3D 1E 02', - 'Label' => 'Tamron AF 200-400mm f/5.6 LD IF (75D)', - ), - '20 48 60 80 24 24 15 00' => array( - 'Id' => '20 48 60 80 24 24 15 00', - 'Label' => 'AF Zoom-Nikkor 80-200mm f/2.8 ED', - ), - '20 5A 64 64 20 20 14 00' => array( - 'Id' => '20 5A 64 64 20 20 14 00', - 'Label' => 'Tamron SP AF 90mm f/2.5 Macro (152E)', - ), - '21 40 3C 5C 2C 34 16 00' => array( - 'Id' => '21 40 3C 5C 2C 34 16 00', - 'Label' => 'AF Zoom-Nikkor 28-70mm f/3.5-4.5', - ), - '21 56 8E 8E 24 24 14 00' => array( - 'Id' => '21 56 8E 8E 24 24 14 00', - 'Label' => 'Tamron SP AF 300mm f/2.8 LD-IF (60E)', - ), - '22 48 72 72 18 18 16 00' => array( - 'Id' => '22 48 72 72 18 18 16 00', - 'Label' => 'AF DC-Nikkor 135mm f/2', - ), - '22 53 64 64 24 24 E0 02' => array( - 'Id' => '22 53 64 64 24 24 E0 02', - 'Label' => 'Tamron SP AF 90mm f/2.8 Macro 1:1 (72E)', - ), - '23 30 BE CA 3C 48 17 00' => array( - 'Id' => '23 30 BE CA 3C 48 17 00', - 'Label' => 'Zoom-Nikkor 1200-1700mm f/5.6-8 P ED IF', - ), - '24 44 60 98 34 3C 1A 02' => array( - 'Id' => '24 44 60 98 34 3C 1A 02', - 'Label' => 'Tokina AT-X 840 AF-II (AF 80-400mm f/4.5-5.6)', - ), - '24 48 60 80 24 24 1A 02' => array( - 'Id' => '24 48 60 80 24 24 1A 02', - 'Label' => 'AF Zoom-Nikkor 80-200mm f/2.8D ED', - ), - '24 54 60 80 24 24 1A 02' => array( - 'Id' => '24 54 60 80 24 24 1A 02', - 'Label' => 'Tokina AT-X 828 AF PRO (AF 80-200mm f/2.8)', - ), - '25 44 44 8E 34 42 1B 02' => array( - 'Id' => '25 44 44 8E 34 42 1B 02', - 'Label' => 'Tokina AF 353 (AF 35-300mm f/4.5-6.7)', - ), - '25 48 3C 5C 24 24 1B 02.1' => array( - 'Id' => '25 48 3C 5C 24 24 1B 02.1', - 'Label' => 'Tokina AT-X 270 AF PRO II (AF 28-70mm f/2.6-2.8)', - ), - '25 48 3C 5C 24 24 1B 02.2' => array( - 'Id' => '25 48 3C 5C 24 24 1B 02.2', - 'Label' => 'Tokina AT-X 287 AF PRO SV (AF 28-70mm f/2.8)', - ), - '25 48 44 5C 24 24 1B 02' => array( - 'Id' => '25 48 44 5C 24 24 1B 02', - 'Label' => 'AF Zoom-Nikkor 35-70mm f/2.8D', - ), - '25 48 44 5C 24 24 52 02' => array( - 'Id' => '25 48 44 5C 24 24 52 02', - 'Label' => 'AF Zoom-Nikkor 35-70mm f/2.8D', - ), - '26 3C 54 80 30 3C 1C 06' => array( - 'Id' => '26 3C 54 80 30 3C 1C 06', - 'Label' => 'Sigma 55-200mm F4-5.6 DC', - ), - '26 3C 5C 82 30 3C 1C 02' => array( - 'Id' => '26 3C 5C 82 30 3C 1C 02', - 'Label' => 'Sigma 70-210mm F4-5.6 UC-II', - ), - '26 3C 5C 8E 30 3C 1C 02' => array( - 'Id' => '26 3C 5C 8E 30 3C 1C 02', - 'Label' => 'Sigma 70-300mm F4-5.6 DG Macro', - ), - '26 3C 98 98 3C 3C 1C 02' => array( - 'Id' => '26 3C 98 98 3C 3C 1C 02', - 'Label' => 'Sigma APO Tele Macro 400mm F5.6', - ), - '26 3D 3C 80 2F 3D 1C 02' => array( - 'Id' => '26 3D 3C 80 2F 3D 1C 02', - 'Label' => 'Sigma 28-300mm F3.8-5.6 Aspherical', - ), - '26 3E 3C 6A 2E 3C 1C 02' => array( - 'Id' => '26 3E 3C 6A 2E 3C 1C 02', - 'Label' => 'Sigma 28-105mm F3.8-5.6 UC-III Aspherical IF', - ), - '26 40 27 3F 2C 34 1C 02' => array( - 'Id' => '26 40 27 3F 2C 34 1C 02', - 'Label' => 'Sigma 15-30mm F3.5-4.5 EX DG Aspherical DF', - ), - '26 40 2D 44 2B 34 1C 02' => array( - 'Id' => '26 40 2D 44 2B 34 1C 02', - 'Label' => 'Sigma 18-35mm F3.5-4.5 Aspherical', - ), - '26 40 2D 50 2C 3C 1C 06' => array( - 'Id' => '26 40 2D 50 2C 3C 1C 06', - 'Label' => 'Sigma 18-50mm F3.5-5.6 DC', - ), - '26 40 2D 70 2B 3C 1C 06' => array( - 'Id' => '26 40 2D 70 2B 3C 1C 06', - 'Label' => 'Sigma 18-125mm F3.5-5.6 DC', - ), - '26 40 2D 80 2C 40 1C 06' => array( - 'Id' => '26 40 2D 80 2C 40 1C 06', - 'Label' => 'Sigma 18-200mm F3.5-6.3 DC', - ), - '26 40 37 5C 2C 3C 1C 02' => array( - 'Id' => '26 40 37 5C 2C 3C 1C 02', - 'Label' => 'Sigma 24-70mm F3.5-5.6 Aspherical HF', - ), - '26 40 3C 5C 2C 34 1C 02' => array( - 'Id' => '26 40 3C 5C 2C 34 1C 02', - 'Label' => 'AF Zoom-Nikkor 28-70mm f/3.5-4.5D', - ), - '26 40 3C 60 2C 3C 1C 02' => array( - 'Id' => '26 40 3C 60 2C 3C 1C 02', - 'Label' => 'Sigma 28-80mm F3.5-5.6 Mini Zoom Macro II Aspherical', - ), - '26 40 3C 65 2C 3C 1C 02' => array( - 'Id' => '26 40 3C 65 2C 3C 1C 02', - 'Label' => 'Sigma 28-90mm F3.5-5.6 Macro', - ), - '26 40 3C 80 2B 3C 1C 02' => array( - 'Id' => '26 40 3C 80 2B 3C 1C 02', - 'Label' => 'Sigma 28-200mm F3.5-5.6 Compact Aspherical Hyperzoom Macro', - ), - '26 40 3C 80 2C 3C 1C 02' => array( - 'Id' => '26 40 3C 80 2C 3C 1C 02', - 'Label' => 'Sigma 28-200mm F3.5-5.6 Compact Aspherical Hyperzoom Macro', - ), - '26 40 3C 8E 2C 40 1C 02' => array( - 'Id' => '26 40 3C 8E 2C 40 1C 02', - 'Label' => 'Sigma 28-300mm F3.5-6.3 Macro', - ), - '26 40 7B A0 34 40 1C 02' => array( - 'Id' => '26 40 7B A0 34 40 1C 02', - 'Label' => 'Sigma APO 170-500mm F5-6.3 Aspherical RF', - ), - '26 41 3C 8E 2C 40 1C 02' => array( - 'Id' => '26 41 3C 8E 2C 40 1C 02', - 'Label' => 'Sigma 28-300mm F3.5-6.3 DG Macro', - ), - '26 44 73 98 34 3C 1C 02' => array( - 'Id' => '26 44 73 98 34 3C 1C 02', - 'Label' => 'Sigma 135-400mm F4.5-5.6 APO Aspherical', - ), - '26 48 11 11 30 30 1C 02' => array( - 'Id' => '26 48 11 11 30 30 1C 02', - 'Label' => 'Sigma 8mm F4 EX Circular Fisheye', - ), - '26 48 27 27 24 24 1C 02' => array( - 'Id' => '26 48 27 27 24 24 1C 02', - 'Label' => 'Sigma 15mm F2.8 EX Diagonal Fisheye', - ), - '26 48 2D 50 24 24 1C 06' => array( - 'Id' => '26 48 2D 50 24 24 1C 06', - 'Label' => 'Sigma 18-50mm F2.8 EX DC', - ), - '26 48 31 49 24 24 1C 02' => array( - 'Id' => '26 48 31 49 24 24 1C 02', - 'Label' => 'Sigma 20-40mm F2.8', - ), - '26 48 37 56 24 24 1C 02' => array( - 'Id' => '26 48 37 56 24 24 1C 02', - 'Label' => 'Sigma 24-60mm F2.8 EX DG', - ), - '26 48 3C 5C 24 24 1C 06' => array( - 'Id' => '26 48 3C 5C 24 24 1C 06', - 'Label' => 'Sigma 28-70mm F2.8 EX DG', - ), - '26 48 3C 5C 24 30 1C 02' => array( - 'Id' => '26 48 3C 5C 24 30 1C 02', - 'Label' => 'Sigma 28-70mm F2.8-4 DG', - ), - '26 48 3C 6A 24 30 1C 02' => array( - 'Id' => '26 48 3C 6A 24 30 1C 02', - 'Label' => 'Sigma 28-105mm F2.8-4 Aspherical', - ), - '26 48 8E 8E 30 30 1C 02' => array( - 'Id' => '26 48 8E 8E 30 30 1C 02', - 'Label' => 'Sigma APO Tele Macro 300mm F4', - ), - '26 54 2B 44 24 30 1C 02' => array( - 'Id' => '26 54 2B 44 24 30 1C 02', - 'Label' => 'Sigma 17-35mm F2.8-4 EX Aspherical', - ), - '26 54 37 5C 24 24 1C 02' => array( - 'Id' => '26 54 37 5C 24 24 1C 02', - 'Label' => 'Sigma 24-70mm F2.8 EX DG Macro', - ), - '26 54 37 73 24 34 1C 02' => array( - 'Id' => '26 54 37 73 24 34 1C 02', - 'Label' => 'Sigma 24-135mm F2.8-4.5', - ), - '26 54 3C 5C 24 24 1C 02' => array( - 'Id' => '26 54 3C 5C 24 24 1C 02', - 'Label' => 'Sigma 28-70mm F2.8 EX', - ), - '26 58 31 31 14 14 1C 02' => array( - 'Id' => '26 58 31 31 14 14 1C 02', - 'Label' => 'Sigma 20mm F1.8 EX DG Aspherical RF', - ), - '26 58 37 37 14 14 1C 02' => array( - 'Id' => '26 58 37 37 14 14 1C 02', - 'Label' => 'Sigma 24mm F1.8 EX DG Aspherical Macro', - ), - '26 58 3C 3C 14 14 1C 02' => array( - 'Id' => '26 58 3C 3C 14 14 1C 02', - 'Label' => 'Sigma 28mm F1.8 EX DG Aspherical Macro', - ), - '27 48 8E 8E 24 24 1D 02' => array( - 'Id' => '27 48 8E 8E 24 24 1D 02', - 'Label' => 'AF-I Nikkor 300mm f/2.8D IF-ED', - ), - '27 48 8E 8E 24 24 E1 02' => array( - 'Id' => '27 48 8E 8E 24 24 E1 02', - 'Label' => 'AF-I Nikkor 300mm f/2.8D IF-ED + TC-17E', - ), - '27 48 8E 8E 24 24 F1 02' => array( - 'Id' => '27 48 8E 8E 24 24 F1 02', - 'Label' => 'AF-I Nikkor 300mm f/2.8D IF-ED + TC-14E', - ), - '27 48 8E 8E 24 24 F2 02' => array( - 'Id' => '27 48 8E 8E 24 24 F2 02', - 'Label' => 'AF-I Nikkor 300mm f/2.8D IF-ED + TC-20E', - ), - '27 48 8E 8E 30 30 1D 02' => array( - 'Id' => '27 48 8E 8E 30 30 1D 02', - 'Label' => 'Tokina AT-X 304 AF (AF 300mm f/4.0)', - ), - '27 54 8E 8E 24 24 1D 02' => array( - 'Id' => '27 54 8E 8E 24 24 1D 02', - 'Label' => 'Tamron SP AF 300mm f/2.8 LD-IF (360E)', - ), - '28 3C A6 A6 30 30 1D 02' => array( - 'Id' => '28 3C A6 A6 30 30 1D 02', - 'Label' => 'AF-I Nikkor 600mm f/4D IF-ED', - ), - '28 3C A6 A6 30 30 E1 02' => array( - 'Id' => '28 3C A6 A6 30 30 E1 02', - 'Label' => 'AF-I Nikkor 600mm f/4D IF-ED + TC-17E', - ), - '28 3C A6 A6 30 30 F1 02' => array( - 'Id' => '28 3C A6 A6 30 30 F1 02', - 'Label' => 'AF-I Nikkor 600mm f/4D IF-ED + TC-14E', - ), - '28 3C A6 A6 30 30 F2 02' => array( - 'Id' => '28 3C A6 A6 30 30 F2 02', - 'Label' => 'AF-I Nikkor 600mm f/4D IF-ED + TC-20E', - ), - '2A 54 3C 3C 0C 0C 26 02' => array( - 'Id' => '2A 54 3C 3C 0C 0C 26 02', - 'Label' => 'AF Nikkor 28mm f/1.4D', - ), - '2B 3C 44 60 30 3C 1F 02' => array( - 'Id' => '2B 3C 44 60 30 3C 1F 02', - 'Label' => 'AF Zoom-Nikkor 35-80mm f/4-5.6D', - ), - '2C 48 6A 6A 18 18 27 02' => array( - 'Id' => '2C 48 6A 6A 18 18 27 02', - 'Label' => 'AF DC-Nikkor 105mm f/2D', - ), - '2D 48 80 80 30 30 21 02' => array( - 'Id' => '2D 48 80 80 30 30 21 02', - 'Label' => 'AF Micro-Nikkor 200mm f/4D IF-ED', - ), - '2E 48 5C 82 30 3C 22 02' => array( - 'Id' => '2E 48 5C 82 30 3C 22 02', - 'Label' => 'AF Nikkor 70-210mm f/4-5.6D', - ), - '2E 48 5C 82 30 3C 28 02' => array( - 'Id' => '2E 48 5C 82 30 3C 28 02', - 'Label' => 'AF Nikkor 70-210mm f/4-5.6D', - ), - '2F 40 30 44 2C 34 29 02.1' => array( - 'Id' => '2F 40 30 44 2C 34 29 02.1', - 'Label' => 'Tokina AF 235 II (AF 20-35mm f/3.5-4.5)', - ), - '2F 40 30 44 2C 34 29 02.2' => array( - 'Id' => '2F 40 30 44 2C 34 29 02.2', - 'Label' => 'Tokina AF 193 (AF 19-35mm f/3.5-4.5)', - ), - '2F 48 30 44 24 24 29 02.1' => array( - 'Id' => '2F 48 30 44 24 24 29 02.1', - 'Label' => 'AF Zoom-Nikkor 20-35mm f/2.8D IF', - ), - '2F 48 30 44 24 24 29 02.2' => array( - 'Id' => '2F 48 30 44 24 24 29 02.2', - 'Label' => 'Tokina AT-X 235 AF PRO (AF 20-35mm f/2.8)', - ), - '30 48 98 98 24 24 24 02' => array( - 'Id' => '30 48 98 98 24 24 24 02', - 'Label' => 'AF-I Nikkor 400mm f/2.8D IF-ED', - ), - '30 48 98 98 24 24 E1 02' => array( - 'Id' => '30 48 98 98 24 24 E1 02', - 'Label' => 'AF-I Nikkor 400mm f/2.8D IF-ED + TC-17E', - ), - '30 48 98 98 24 24 F1 02' => array( - 'Id' => '30 48 98 98 24 24 F1 02', - 'Label' => 'AF-I Nikkor 400mm f/2.8D IF-ED + TC-14E', - ), - '30 48 98 98 24 24 F2 02' => array( - 'Id' => '30 48 98 98 24 24 F2 02', - 'Label' => 'AF-I Nikkor 400mm f/2.8D IF-ED + TC-20E', - ), - '31 54 56 56 24 24 25 02' => array( - 'Id' => '31 54 56 56 24 24 25 02', - 'Label' => 'AF Micro-Nikkor 60mm f/2.8D', - ), - '32 53 64 64 24 24 35 02' => array( - 'Id' => '32 53 64 64 24 24 35 02', - 'Label' => 'Tamron SP AF 90mm f/2.8 [Di] Macro 1:1 (172E/272E)', - ), - '32 54 50 50 24 24 35 02' => array( - 'Id' => '32 54 50 50 24 24 35 02', - 'Label' => 'Sigma Macro 50mm F2.8 EX DG', - ), - '32 54 6A 6A 24 24 35 02.1' => array( - 'Id' => '32 54 6A 6A 24 24 35 02.1', - 'Label' => 'AF Micro-Nikkor 105mm f/2.8D', - ), - '32 54 6A 6A 24 24 35 02.2' => array( - 'Id' => '32 54 6A 6A 24 24 35 02.2', - 'Label' => 'Sigma Macro 105mm F2.8 EX DG', - ), - '33 48 2D 2D 24 24 31 02' => array( - 'Id' => '33 48 2D 2D 24 24 31 02', - 'Label' => 'AF Nikkor 18mm f/2.8D', - ), - '33 54 3C 5E 24 24 62 02' => array( - 'Id' => '33 54 3C 5E 24 24 62 02', - 'Label' => 'Tamron SP AF 28-75mm f/2.8 XR Di LD Aspherical (IF) Macro (A09)', - ), - '34 48 29 29 24 24 32 02' => array( - 'Id' => '34 48 29 29 24 24 32 02', - 'Label' => 'AF Fisheye Nikkor 16mm f/2.8D', - ), - '35 3C A0 A0 30 30 33 02' => array( - 'Id' => '35 3C A0 A0 30 30 33 02', - 'Label' => 'AF-I Nikkor 500mm f/4D IF-ED', - ), - '35 3C A0 A0 30 30 E1 02' => array( - 'Id' => '35 3C A0 A0 30 30 E1 02', - 'Label' => 'AF-I Nikkor 500mm f/4D IF-ED + TC-17E', - ), - '35 3C A0 A0 30 30 F1 02' => array( - 'Id' => '35 3C A0 A0 30 30 F1 02', - 'Label' => 'AF-I Nikkor 500mm f/4D IF-ED + TC-14E', - ), - '35 3C A0 A0 30 30 F2 02' => array( - 'Id' => '35 3C A0 A0 30 30 F2 02', - 'Label' => 'AF-I Nikkor 500mm f/4D IF-ED + TC-20E', - ), - '36 48 37 37 24 24 34 02' => array( - 'Id' => '36 48 37 37 24 24 34 02', - 'Label' => 'AF Nikkor 24mm f/2.8D', - ), - '37 48 30 30 24 24 36 02' => array( - 'Id' => '37 48 30 30 24 24 36 02', - 'Label' => 'AF Nikkor 20mm f/2.8D', - ), - '38 4C 62 62 14 14 37 02' => array( - 'Id' => '38 4C 62 62 14 14 37 02', - 'Label' => 'AF Nikkor 85mm f/1.8D', - ), - '3A 40 3C 5C 2C 34 39 02' => array( - 'Id' => '3A 40 3C 5C 2C 34 39 02', - 'Label' => 'AF Zoom-Nikkor 28-70mm f/3.5-4.5D', - ), - '3B 48 44 5C 24 24 3A 02' => array( - 'Id' => '3B 48 44 5C 24 24 3A 02', - 'Label' => 'AF Zoom-Nikkor 35-70mm f/2.8D N', - ), - '3C 48 60 80 24 24 3B 02' => array( - 'Id' => '3C 48 60 80 24 24 3B 02', - 'Label' => 'AF Zoom-Nikkor 80-200mm f/2.8D ED', - ), - '3D 3C 44 60 30 3C 3E 02' => array( - 'Id' => '3D 3C 44 60 30 3C 3E 02', - 'Label' => 'AF Zoom-Nikkor 35-80mm f/4-5.6D', - ), - '3E 48 3C 3C 24 24 3D 02' => array( - 'Id' => '3E 48 3C 3C 24 24 3D 02', - 'Label' => 'AF Nikkor 28mm f/2.8D', - ), - '3F 40 44 6A 2C 34 45 02' => array( - 'Id' => '3F 40 44 6A 2C 34 45 02', - 'Label' => 'AF Zoom-Nikkor 35-105mm f/3.5-4.5D', - ), - '41 48 7C 7C 24 24 43 02' => array( - 'Id' => '41 48 7C 7C 24 24 43 02', - 'Label' => 'AF Nikkor 180mm f/2.8D IF-ED', - ), - '42 54 44 44 18 18 44 02' => array( - 'Id' => '42 54 44 44 18 18 44 02', - 'Label' => 'AF Nikkor 35mm f/2D', - ), - '43 54 50 50 0C 0C 46 02' => array( - 'Id' => '43 54 50 50 0C 0C 46 02', - 'Label' => 'AF Nikkor 50mm f/1.4D', - ), - '44 44 60 80 34 3C 47 02' => array( - 'Id' => '44 44 60 80 34 3C 47 02', - 'Label' => 'AF Zoom-Nikkor 80-200mm f/4.5-5.6D', - ), - '45 3D 3C 60 2C 3C 48 02' => array( - 'Id' => '45 3D 3C 60 2C 3C 48 02', - 'Label' => 'Tamron AF 28-80mm f/3.5-5.6 Aspherical (177D)', - ), - '45 40 3C 60 2C 3C 48 02' => array( - 'Id' => '45 40 3C 60 2C 3C 48 02', - 'Label' => 'AF Zoom-Nikkor 28-80mm f/3.5-5.6D', - ), - '45 41 37 72 2C 3C 48 02' => array( - 'Id' => '45 41 37 72 2C 3C 48 02', - 'Label' => 'Tamron SP AF 24-135mm f/3.5-5.6 AD Aspherical (IF) Macro (190D)', - ), - '46 3C 44 60 30 3C 49 02' => array( - 'Id' => '46 3C 44 60 30 3C 49 02', - 'Label' => 'AF Zoom-Nikkor 35-80mm f/4-5.6D N', - ), - '47 42 37 50 2A 34 4A 02' => array( - 'Id' => '47 42 37 50 2A 34 4A 02', - 'Label' => 'AF Zoom-Nikkor 24-50mm f/3.3-4.5D', - ), - '48 38 1F 37 34 3C 4B 06' => array( - 'Id' => '48 38 1F 37 34 3C 4B 06', - 'Label' => 'Sigma 12-24mm F4.5-5.6 EX DG Aspherical HSM', - ), - '48 3C 19 31 30 3C 4B 06' => array( - 'Id' => '48 3C 19 31 30 3C 4B 06', - 'Label' => 'Sigma 10-20mm F4-5.6 EX DC HSM', - ), - '48 3C 50 A0 30 40 4B 02' => array( - 'Id' => '48 3C 50 A0 30 40 4B 02', - 'Label' => 'Sigma 50-500mm F4-6.3 EX APO RF HSM', - ), - '48 3C 8E B0 3C 3C 4B 02' => array( - 'Id' => '48 3C 8E B0 3C 3C 4B 02', - 'Label' => 'Sigma APO 300-800mm F5.6 EX DG HSM', - ), - '48 3C B0 B0 3C 3C 4B 02' => array( - 'Id' => '48 3C B0 B0 3C 3C 4B 02', - 'Label' => 'Sigma APO 800mm F5.6 EX HSM', - ), - '48 44 A0 A0 34 34 4B 02' => array( - 'Id' => '48 44 A0 A0 34 34 4B 02', - 'Label' => 'Sigma APO 500mm F4.5 EX HSM', - ), - '48 48 24 24 24 24 4B 02' => array( - 'Id' => '48 48 24 24 24 24 4B 02', - 'Label' => 'Sigma 14mm F2.8 EX Aspherical HSM', - ), - '48 48 2B 44 24 30 4B 06' => array( - 'Id' => '48 48 2B 44 24 30 4B 06', - 'Label' => 'Sigma 17-35mm F2.8-4 EX DG Aspherical HSM', - ), - '48 48 68 8E 30 30 4B 02' => array( - 'Id' => '48 48 68 8E 30 30 4B 02', - 'Label' => 'Sigma APO 100-300mm F4 EX IF HSM', - ), - '48 48 76 76 24 24 4B 06' => array( - 'Id' => '48 48 76 76 24 24 4B 06', - 'Label' => 'Sigma APO Macro 150mm F2.8 EX DG HSM', - ), - '48 48 8E 8E 24 24 4B 02' => array( - 'Id' => '48 48 8E 8E 24 24 4B 02', - 'Label' => 'AF-S Nikkor 300mm f/2.8D IF-ED', - ), - '48 48 8E 8E 24 24 E1 02' => array( - 'Id' => '48 48 8E 8E 24 24 E1 02', - 'Label' => 'AF-S Nikkor 300mm f/2.8D IF-ED + TC-17E', - ), - '48 48 8E 8E 24 24 F1 02' => array( - 'Id' => '48 48 8E 8E 24 24 F1 02', - 'Label' => 'AF-S Nikkor 300mm f/2.8D IF-ED + TC-14E', - ), - '48 48 8E 8E 24 24 F2 02' => array( - 'Id' => '48 48 8E 8E 24 24 F2 02', - 'Label' => 'AF-S Nikkor 300mm f/2.8D IF-ED + TC-20E', - ), - '48 4C 7C 7C 2C 2C 4B 02' => array( - 'Id' => '48 4C 7C 7C 2C 2C 4B 02', - 'Label' => 'Sigma APO Macro 180mm F3.5 EX DG HSM', - ), - '48 4C 7D 7D 2C 2C 4B 02' => array( - 'Id' => '48 4C 7D 7D 2C 2C 4B 02', - 'Label' => 'Sigma APO Macro 180mm F3.5 EX DG HSM', - ), - '48 54 3E 3E 0C 0C 4B 06' => array( - 'Id' => '48 54 3E 3E 0C 0C 4B 06', - 'Label' => 'Sigma 30mm F1.4 EX DC HSM', - ), - '48 54 5C 80 24 24 4B 02' => array( - 'Id' => '48 54 5C 80 24 24 4B 02', - 'Label' => 'Sigma 70-200mm F2.8 EX APO IF HSM', - ), - '48 54 6F 8E 24 24 4B 02' => array( - 'Id' => '48 54 6F 8E 24 24 4B 02', - 'Label' => 'Sigma APO 120-300mm F2.8 EX DG HSM', - ), - '48 54 8E 8E 24 24 4B 02' => array( - 'Id' => '48 54 8E 8E 24 24 4B 02', - 'Label' => 'Sigma APO 300mm F2.8 EX DG HSM', - ), - '49 3C A6 A6 30 30 4C 02' => array( - 'Id' => '49 3C A6 A6 30 30 4C 02', - 'Label' => 'AF-S Nikkor 600mm f/4D IF-ED', - ), - '49 3C A6 A6 30 30 E1 02' => array( - 'Id' => '49 3C A6 A6 30 30 E1 02', - 'Label' => 'AF-S Nikkor 600mm f/4D IF-ED + TC-17E', - ), - '49 3C A6 A6 30 30 F1 02' => array( - 'Id' => '49 3C A6 A6 30 30 F1 02', - 'Label' => 'AF-S Nikkor 600mm f/4D IF-ED + TC-14E', - ), - '49 3C A6 A6 30 30 F2 02' => array( - 'Id' => '49 3C A6 A6 30 30 F2 02', - 'Label' => 'AF-S Nikkor 600mm f/4D IF-ED + TC-20E', - ), - '4A 40 11 11 2C 0C 4D 02' => array( - 'Id' => '4A 40 11 11 2C 0C 4D 02', - 'Label' => 'Samyang 8mm f/3.5 Fish-Eye CS', - ), - '4A 48 24 24 24 0C 4D 02' => array( - 'Id' => '4A 48 24 24 24 0C 4D 02', - 'Label' => 'Samyang AE 14mm f/2.8 ED AS IF UMC', - ), - '4A 54 29 29 18 0C 4D 02' => array( - 'Id' => '4A 54 29 29 18 0C 4D 02', - 'Label' => 'Samyang 16mm F2.0 ED AS UMC CS', - ), - '4A 54 62 62 0C 0C 4D 02' => array( - 'Id' => '4A 54 62 62 0C 0C 4D 02', - 'Label' => 'AF Nikkor 85mm f/1.4D IF', - ), - '4A 60 44 44 0C 0C 4D 02' => array( - 'Id' => '4A 60 44 44 0C 0C 4D 02', - 'Label' => 'Samyang 35mm f/1.4 AS UMC', - ), - '4A 60 62 62 0C 0C 4D 02' => array( - 'Id' => '4A 60 62 62 0C 0C 4D 02', - 'Label' => 'Samyang AE 85mm f/1.4 AS IF UMC', - ), - '4B 3C A0 A0 30 30 4E 02' => array( - 'Id' => '4B 3C A0 A0 30 30 4E 02', - 'Label' => 'AF-S Nikkor 500mm f/4D IF-ED', - ), - '4B 3C A0 A0 30 30 E1 02' => array( - 'Id' => '4B 3C A0 A0 30 30 E1 02', - 'Label' => 'AF-S Nikkor 500mm f/4D IF-ED + TC-17E', - ), - '4B 3C A0 A0 30 30 F1 02' => array( - 'Id' => '4B 3C A0 A0 30 30 F1 02', - 'Label' => 'AF-S Nikkor 500mm f/4D IF-ED + TC-14E', - ), - '4B 3C A0 A0 30 30 F2 02' => array( - 'Id' => '4B 3C A0 A0 30 30 F2 02', - 'Label' => 'AF-S Nikkor 500mm f/4D IF-ED + TC-20E', - ), - '4C 40 37 6E 2C 3C 4F 02' => array( - 'Id' => '4C 40 37 6E 2C 3C 4F 02', - 'Label' => 'AF Zoom-Nikkor 24-120mm f/3.5-5.6D IF', - ), - '4D 40 3C 80 2C 3C 62 02' => array( - 'Id' => '4D 40 3C 80 2C 3C 62 02', - 'Label' => 'AF Zoom-Nikkor 28-200mm f/3.5-5.6D IF', - ), - '4D 41 3C 8E 2B 40 62 02' => array( - 'Id' => '4D 41 3C 8E 2B 40 62 02', - 'Label' => 'Tamron AF 28-300mm f/3.5-6.3 XR Di LD Aspherical (IF) (A061)', - ), - '4D 41 3C 8E 2C 40 62 02' => array( - 'Id' => '4D 41 3C 8E 2C 40 62 02', - 'Label' => 'Tamron AF 28-300mm f/3.5-6.3 XR LD Aspherical (IF) (185D)', - ), - '4E 48 72 72 18 18 51 02' => array( - 'Id' => '4E 48 72 72 18 18 51 02', - 'Label' => 'AF DC-Nikkor 135mm f/2D', - ), - '4F 40 37 5C 2C 3C 53 06' => array( - 'Id' => '4F 40 37 5C 2C 3C 53 06', - 'Label' => 'IX-Nikkor 24-70mm f/3.5-5.6', - ), - '50 48 56 7C 30 3C 54 06' => array( - 'Id' => '50 48 56 7C 30 3C 54 06', - 'Label' => 'IX-Nikkor 60-180mm f/4-5.6', - ), - '53 48 60 80 24 24 57 02' => array( - 'Id' => '53 48 60 80 24 24 57 02', - 'Label' => 'AF Zoom-Nikkor 80-200mm f/2.8D ED', - ), - '53 48 60 80 24 24 60 02' => array( - 'Id' => '53 48 60 80 24 24 60 02', - 'Label' => 'AF Zoom-Nikkor 80-200mm f/2.8D ED', - ), - '54 44 5C 7C 34 3C 58 02' => array( - 'Id' => '54 44 5C 7C 34 3C 58 02', - 'Label' => 'AF Zoom-Micro Nikkor 70-180mm f/4.5-5.6D ED', - ), - '54 44 5C 7C 34 3C 61 02' => array( - 'Id' => '54 44 5C 7C 34 3C 61 02', - 'Label' => 'AF Zoom-Micro Nikkor 70-180mm f/4.5-5.6D ED', - ), - '56 3C 5C 8E 30 3C 1C 02' => array( - 'Id' => '56 3C 5C 8E 30 3C 1C 02', - 'Label' => 'Sigma 70-300mm F4-5.6 APO Macro Super II', - ), - '56 48 5C 8E 30 3C 5A 02' => array( - 'Id' => '56 48 5C 8E 30 3C 5A 02', - 'Label' => 'AF Zoom-Nikkor 70-300mm f/4-5.6D ED', - ), - '59 48 98 98 24 24 5D 02' => array( - 'Id' => '59 48 98 98 24 24 5D 02', - 'Label' => 'AF-S Nikkor 400mm f/2.8D IF-ED', - ), - '59 48 98 98 24 24 E1 02' => array( - 'Id' => '59 48 98 98 24 24 E1 02', - 'Label' => 'AF-S Nikkor 400mm f/2.8D IF-ED + TC-17E', - ), - '59 48 98 98 24 24 F1 02' => array( - 'Id' => '59 48 98 98 24 24 F1 02', - 'Label' => 'AF-S Nikkor 400mm f/2.8D IF-ED + TC-14E', - ), - '59 48 98 98 24 24 F2 02' => array( - 'Id' => '59 48 98 98 24 24 F2 02', - 'Label' => 'AF-S Nikkor 400mm f/2.8D IF-ED + TC-20E', - ), - '5A 3C 3E 56 30 3C 5E 06' => array( - 'Id' => '5A 3C 3E 56 30 3C 5E 06', - 'Label' => 'IX-Nikkor 30-60mm f/4-5.6', - ), - '5B 44 56 7C 34 3C 5F 06' => array( - 'Id' => '5B 44 56 7C 34 3C 5F 06', - 'Label' => 'IX-Nikkor 60-180mm f/4.5-5.6', - ), - '5D 48 3C 5C 24 24 63 02' => array( - 'Id' => '5D 48 3C 5C 24 24 63 02', - 'Label' => 'AF-S Zoom-Nikkor 28-70mm f/2.8D IF-ED', - ), - '5E 48 60 80 24 24 64 02' => array( - 'Id' => '5E 48 60 80 24 24 64 02', - 'Label' => 'AF-S Zoom-Nikkor 80-200mm f/2.8D IF-ED', - ), - '5F 40 3C 6A 2C 34 65 02' => array( - 'Id' => '5F 40 3C 6A 2C 34 65 02', - 'Label' => 'AF Zoom-Nikkor 28-105mm f/3.5-4.5D IF', - ), - '60 40 3C 60 2C 3C 66 02' => array( - 'Id' => '60 40 3C 60 2C 3C 66 02', - 'Label' => 'AF Zoom-Nikkor 28-80mm f/3.5-5.6D', - ), - '61 44 5E 86 34 3C 67 02' => array( - 'Id' => '61 44 5E 86 34 3C 67 02', - 'Label' => 'AF Zoom-Nikkor 75-240mm f/4.5-5.6D', - ), - '63 48 2B 44 24 24 68 02' => array( - 'Id' => '63 48 2B 44 24 24 68 02', - 'Label' => 'AF-S Nikkor 17-35mm f/2.8D IF-ED', - ), - '64 00 62 62 24 24 6A 02' => array( - 'Id' => '64 00 62 62 24 24 6A 02', - 'Label' => 'PC Micro-Nikkor 85mm f/2.8D', - ), - '65 44 60 98 34 3C 6B 0A' => array( - 'Id' => '65 44 60 98 34 3C 6B 0A', - 'Label' => 'AF VR Zoom-Nikkor 80-400mm f/4.5-5.6D ED', - ), - '66 40 2D 44 2C 34 6C 02' => array( - 'Id' => '66 40 2D 44 2C 34 6C 02', - 'Label' => 'AF Zoom-Nikkor 18-35mm f/3.5-4.5D IF-ED', - ), - '67 48 37 62 24 30 6D 02' => array( - 'Id' => '67 48 37 62 24 30 6D 02', - 'Label' => 'AF Zoom-Nikkor 24-85mm f/2.8-4D IF', - ), - '67 54 37 5C 24 24 1C 02' => array( - 'Id' => '67 54 37 5C 24 24 1C 02', - 'Label' => 'Sigma 24-70mm F2.8 EX DG Macro', - ), - '68 42 3C 60 2A 3C 6E 06' => array( - 'Id' => '68 42 3C 60 2A 3C 6E 06', - 'Label' => 'AF Zoom-Nikkor 28-80mm f/3.3-5.6G', - ), - '69 47 5C 8E 30 3C 00 02' => array( - 'Id' => '69 47 5C 8E 30 3C 00 02', - 'Label' => 'Tamron AF 70-300mm f/4-5.6 Di LD Macro 1:2 (A17N)', - ), - '69 48 5C 8E 30 3C 6F 02' => array( - 'Id' => '69 48 5C 8E 30 3C 6F 02', - 'Label' => 'Tamron AF 70-300mm f/4-5.6 LD Macro 1:2 (572D/772D)', - ), - '69 48 5C 8E 30 3C 6F 06' => array( - 'Id' => '69 48 5C 8E 30 3C 6F 06', - 'Label' => 'AF Zoom-Nikkor 70-300mm f/4-5.6G', - ), - '6A 48 8E 8E 30 30 70 02' => array( - 'Id' => '6A 48 8E 8E 30 30 70 02', - 'Label' => 'AF-S Nikkor 300mm f/4D IF-ED', - ), - '6B 48 24 24 24 24 71 02' => array( - 'Id' => '6B 48 24 24 24 24 71 02', - 'Label' => 'AF Nikkor ED 14mm f/2.8D', - ), - '6D 48 8E 8E 24 24 73 02' => array( - 'Id' => '6D 48 8E 8E 24 24 73 02', - 'Label' => 'AF-S Nikkor 300mm f/2.8D IF-ED II', - ), - '6E 48 98 98 24 24 74 02' => array( - 'Id' => '6E 48 98 98 24 24 74 02', - 'Label' => 'AF-S Nikkor 400mm f/2.8D IF-ED II', - ), - '6F 3C A0 A0 30 30 75 02' => array( - 'Id' => '6F 3C A0 A0 30 30 75 02', - 'Label' => 'AF-S Nikkor 500mm f/4D IF-ED II', - ), - '70 3C A6 A6 30 30 76 02' => array( - 'Id' => '70 3C A6 A6 30 30 76 02', - 'Label' => 'AF-S Nikkor 600mm f/4D IF-ED II', - ), - '72 48 4C 4C 24 24 77 00' => array( - 'Id' => '72 48 4C 4C 24 24 77 00', - 'Label' => 'Nikkor 45mm f/2.8 P', - ), - '74 40 37 62 2C 34 78 06' => array( - 'Id' => '74 40 37 62 2C 34 78 06', - 'Label' => 'AF-S Zoom-Nikkor 24-85mm f/3.5-4.5G IF-ED', - ), - '75 40 3C 68 2C 3C 79 06' => array( - 'Id' => '75 40 3C 68 2C 3C 79 06', - 'Label' => 'AF Zoom-Nikkor 28-100mm f/3.5-5.6G', - ), - '76 58 50 50 14 14 7A 02' => array( - 'Id' => '76 58 50 50 14 14 7A 02', - 'Label' => 'AF Nikkor 50mm f/1.8D', - ), - '77 44 61 98 34 3C 7B 0E' => array( - 'Id' => '77 44 61 98 34 3C 7B 0E', - 'Label' => 'Sigma 80-400mm F4.5-5.6 EX OS', - ), - '77 48 5C 80 24 24 7B 0E' => array( - 'Id' => '77 48 5C 80 24 24 7B 0E', - 'Label' => 'AF-S VR Zoom-Nikkor 70-200mm f/2.8G IF-ED', - ), - '78 40 37 6E 2C 3C 7C 0E' => array( - 'Id' => '78 40 37 6E 2C 3C 7C 0E', - 'Label' => 'AF-S VR Zoom-Nikkor 24-120mm f/3.5-5.6G IF-ED', - ), - '79 40 11 11 2C 2C 1C 06' => array( - 'Id' => '79 40 11 11 2C 2C 1C 06', - 'Label' => 'Sigma 8mm F3.5 EX Circular Fisheye', - ), - '79 40 3C 80 2C 3C 7F 06' => array( - 'Id' => '79 40 3C 80 2C 3C 7F 06', - 'Label' => 'AF Zoom-Nikkor 28-200mm f/3.5-5.6G IF-ED', - ), - '79 48 3C 5C 24 24 1C 06' => array( - 'Id' => '79 48 3C 5C 24 24 1C 06', - 'Label' => 'Sigma 28-70mm F2.8 EX DG', - ), - '79 48 5C 5C 24 24 1C 06' => array( - 'Id' => '79 48 5C 5C 24 24 1C 06', - 'Label' => 'Sigma Macro 70mm F2.8 EX DG', - ), - '7A 3B 53 80 30 3C 4B 06' => array( - 'Id' => '7A 3B 53 80 30 3C 4B 06', - 'Label' => 'Sigma 55-200mm F4-5.6 DC HSM', - ), - '7A 3C 1F 37 30 30 7E 06.1' => array( - 'Id' => '7A 3C 1F 37 30 30 7E 06.1', - 'Label' => 'AF-S DX Zoom-Nikkor 12-24mm f/4G IF-ED', - ), - '7A 3C 1F 37 30 30 7E 06.2' => array( - 'Id' => '7A 3C 1F 37 30 30 7E 06.2', - 'Label' => 'Tokina AT-X 124 AF PRO DX II (AF 12-24mm f/4)', - ), - '7A 40 2D 50 2C 3C 4B 06' => array( - 'Id' => '7A 40 2D 50 2C 3C 4B 06', - 'Label' => 'Sigma 18-50mm F3.5-5.6 DC HSM', - ), - '7A 40 2D 80 2C 40 4B 0E' => array( - 'Id' => '7A 40 2D 80 2C 40 4B 0E', - 'Label' => 'Sigma 18-200mm F3.5-6.3 DC OS HSM', - ), - '7A 47 2B 5C 24 34 4B 06' => array( - 'Id' => '7A 47 2B 5C 24 34 4B 06', - 'Label' => 'Sigma 17-70mm F2.8-4.5 DC Macro Asp. IF HSM', - ), - '7A 47 50 76 24 24 4B 06' => array( - 'Id' => '7A 47 50 76 24 24 4B 06', - 'Label' => 'Sigma 50-150mm F2.8 EX APO DC HSM', - ), - '7A 48 2B 5C 24 34 4B 06' => array( - 'Id' => '7A 48 2B 5C 24 34 4B 06', - 'Label' => 'Sigma 17-70mm F2.8-4.5 DC Macro Asp. IF HSM', - ), - '7A 48 2D 50 24 24 4B 06' => array( - 'Id' => '7A 48 2D 50 24 24 4B 06', - 'Label' => 'Sigma 18-50mm F2.8 EX DC Macro', - ), - '7A 48 5C 80 24 24 4B 06' => array( - 'Id' => '7A 48 5C 80 24 24 4B 06', - 'Label' => 'Sigma 70-200mm F2.8 EX APO DG Macro HSM II', - ), - '7A 54 6E 8E 24 24 4B 02' => array( - 'Id' => '7A 54 6E 8E 24 24 4B 02', - 'Label' => 'Sigma APO 120-300mm F2.8 EX DG HSM', - ), - '7B 48 80 98 30 30 80 0E' => array( - 'Id' => '7B 48 80 98 30 30 80 0E', - 'Label' => 'AF-S VR Zoom-Nikkor 200-400mm f/4G IF-ED', - ), - '7D 48 2B 53 24 24 82 06' => array( - 'Id' => '7D 48 2B 53 24 24 82 06', - 'Label' => 'AF-S DX Zoom-Nikkor 17-55mm f/2.8G IF-ED', - ), - '7F 40 2D 5C 2C 34 84 06' => array( - 'Id' => '7F 40 2D 5C 2C 34 84 06', - 'Label' => 'AF-S DX Zoom-Nikkor 18-70mm f/3.5-4.5G IF-ED', - ), - '7F 48 2B 5C 24 34 1C 06' => array( - 'Id' => '7F 48 2B 5C 24 34 1C 06', - 'Label' => 'Sigma 17-70mm F2.8-4.5 DC Macro Asp. IF', - ), - '7F 48 2D 50 24 24 1C 06' => array( - 'Id' => '7F 48 2D 50 24 24 1C 06', - 'Label' => 'Sigma 18-50mm F2.8 EX DC Macro', - ), - '80 48 1A 1A 24 24 85 06' => array( - 'Id' => '80 48 1A 1A 24 24 85 06', - 'Label' => 'AF DX Fisheye-Nikkor 10.5mm f/2.8G ED', - ), - '81 54 80 80 18 18 86 0E' => array( - 'Id' => '81 54 80 80 18 18 86 0E', - 'Label' => 'AF-S VR Nikkor 200mm f/2G IF-ED', - ), - '82 48 8E 8E 24 24 87 0E' => array( - 'Id' => '82 48 8E 8E 24 24 87 0E', - 'Label' => 'AF-S VR Nikkor 300mm f/2.8G IF-ED', - ), - '83 00 B0 B0 5A 5A 88 04' => array( - 'Id' => '83 00 B0 B0 5A 5A 88 04', - 'Label' => 'FSA-L2, EDG 65, 800mm F13 G', - ), - '89 3C 53 80 30 3C 8B 06' => array( - 'Id' => '89 3C 53 80 30 3C 8B 06', - 'Label' => 'AF-S DX Zoom-Nikkor 55-200mm f/4-5.6G ED', - ), - '8A 54 6A 6A 24 24 8C 0E' => array( - 'Id' => '8A 54 6A 6A 24 24 8C 0E', - 'Label' => 'AF-S VR Micro-Nikkor 105mm f/2.8G IF-ED', - ), - '8B 40 2D 80 2C 3C 8D 0E' => array( - 'Id' => '8B 40 2D 80 2C 3C 8D 0E', - 'Label' => 'AF-S DX VR Zoom-Nikkor 18-200mm f/3.5-5.6G IF-ED', - ), - '8B 40 2D 80 2C 3C FD 0E' => array( - 'Id' => '8B 40 2D 80 2C 3C FD 0E', - 'Label' => 'AF-S DX VR Zoom-Nikkor 18-200mm f/3.5-5.6G IF-ED [II]', - ), - '8B 4C 2D 44 14 14 4B 06' => array( - 'Id' => '8B 4C 2D 44 14 14 4B 06', - 'Label' => 'Sigma 18-35mm F1.8 DC HSM', - ), - '8C 40 2D 53 2C 3C 8E 06' => array( - 'Id' => '8C 40 2D 53 2C 3C 8E 06', - 'Label' => 'AF-S DX Zoom-Nikkor 18-55mm f/3.5-5.6G ED', - ), - '8D 44 5C 8E 34 3C 8F 0E' => array( - 'Id' => '8D 44 5C 8E 34 3C 8F 0E', - 'Label' => 'AF-S VR Zoom-Nikkor 70-300mm f/4.5-5.6G IF-ED', - ), - '8E 3C 2B 5C 24 30 4B 0E' => array( - 'Id' => '8E 3C 2B 5C 24 30 4B 0E', - 'Label' => 'Sigma 17-70mm F2.8-4 DC Macro OS HSM Contemporary', - ), - '8F 40 2D 72 2C 3C 91 06' => array( - 'Id' => '8F 40 2D 72 2C 3C 91 06', - 'Label' => 'AF-S DX Zoom-Nikkor 18-135mm f/3.5-5.6G IF-ED', - ), - '8F 48 2B 50 24 24 4B 0E' => array( - 'Id' => '8F 48 2B 50 24 24 4B 0E', - 'Label' => 'Sigma 17-50mm F2.8 EX DC OS HSM', - ), - '90 3B 53 80 30 3C 92 0E' => array( - 'Id' => '90 3B 53 80 30 3C 92 0E', - 'Label' => 'AF-S DX VR Zoom-Nikkor 55-200mm f/4-5.6G IF-ED', - ), - '91 54 44 44 0C 0C 4B 06' => array( - 'Id' => '91 54 44 44 0C 0C 4B 06', - 'Label' => 'Sigma 35mm F1.4 DG HSM', - ), - '92 2C 2D 88 2C 40 4B 0E' => array( - 'Id' => '92 2C 2D 88 2C 40 4B 0E', - 'Label' => 'Sigma 18-250mm F3.5-6.3 DC Macro OS HSM', - ), - '92 48 24 37 24 24 94 06' => array( - 'Id' => '92 48 24 37 24 24 94 06', - 'Label' => 'AF-S Zoom-Nikkor 14-24mm f/2.8G ED', - ), - '93 48 37 5C 24 24 95 06' => array( - 'Id' => '93 48 37 5C 24 24 95 06', - 'Label' => 'AF-S Zoom-Nikkor 24-70mm f/2.8G ED', - ), - '94 40 2D 53 2C 3C 96 06' => array( - 'Id' => '94 40 2D 53 2C 3C 96 06', - 'Label' => 'AF-S DX Zoom-Nikkor 18-55mm f/3.5-5.6G ED II', - ), - '95 00 37 37 2C 2C 97 06' => array( - 'Id' => '95 00 37 37 2C 2C 97 06', - 'Label' => 'PC-E Nikkor 24mm f/3.5D ED', - ), - '95 4C 37 37 2C 2C 97 02' => array( - 'Id' => '95 4C 37 37 2C 2C 97 02', - 'Label' => 'PC-E Nikkor 24mm f/3.5D ED', - ), - '96 38 1F 37 34 3C 4B 06' => array( - 'Id' => '96 38 1F 37 34 3C 4B 06', - 'Label' => 'Sigma 12-24mm F4.5-5.6 II DG HSM', - ), - '96 48 98 98 24 24 98 0E' => array( - 'Id' => '96 48 98 98 24 24 98 0E', - 'Label' => 'AF-S VR Nikkor 400mm f/2.8G ED', - ), - '97 3C A0 A0 30 30 99 0E' => array( - 'Id' => '97 3C A0 A0 30 30 99 0E', - 'Label' => 'AF-S VR Nikkor 500mm f/4G ED', - ), - '98 3C A6 A6 30 30 9A 0E' => array( - 'Id' => '98 3C A6 A6 30 30 9A 0E', - 'Label' => 'AF-S VR Nikkor 600mm f/4G ED', - ), - '99 40 29 62 2C 3C 9B 0E' => array( - 'Id' => '99 40 29 62 2C 3C 9B 0E', - 'Label' => 'AF-S DX VR Zoom-Nikkor 16-85mm f/3.5-5.6G ED', - ), - '99 48 76 76 24 24 4B 0E' => array( - 'Id' => '99 48 76 76 24 24 4B 0E', - 'Label' => 'Sigma APO Macro 150mm F2.8 EX DG OS HSM', - ), - '9A 40 2D 53 2C 3C 9C 0E' => array( - 'Id' => '9A 40 2D 53 2C 3C 9C 0E', - 'Label' => 'AF-S DX VR Zoom-Nikkor 18-55mm f/3.5-5.6G', - ), - '9B 00 4C 4C 24 24 9D 06' => array( - 'Id' => '9B 00 4C 4C 24 24 9D 06', - 'Label' => 'PC-E Micro Nikkor 45mm f/2.8D ED', - ), - '9B 54 4C 4C 24 24 9D 02' => array( - 'Id' => '9B 54 4C 4C 24 24 9D 02', - 'Label' => 'PC-E Micro Nikkor 45mm f/2.8D ED', - ), - '9B 54 62 62 0C 0C 4B 06' => array( - 'Id' => '9B 54 62 62 0C 0C 4B 06', - 'Label' => 'Sigma 85mm F1.4 EX DG HSM', - ), - '9C 48 5C 80 24 24 4B 0E' => array( - 'Id' => '9C 48 5C 80 24 24 4B 0E', - 'Label' => 'Sigma 70-200mm F2.8 EX DG OS HSM', - ), - '9C 54 56 56 24 24 9E 06' => array( - 'Id' => '9C 54 56 56 24 24 9E 06', - 'Label' => 'AF-S Micro Nikkor 60mm f/2.8G ED', - ), - '9D 00 62 62 24 24 9F 06' => array( - 'Id' => '9D 00 62 62 24 24 9F 06', - 'Label' => 'PC-E Micro Nikkor 85mm f/2.8D', - ), - '9D 48 2B 50 24 24 4B 0E' => array( - 'Id' => '9D 48 2B 50 24 24 4B 0E', - 'Label' => 'Sigma 17-50mm F2.8 EX DC OS HSM', - ), - '9D 54 62 62 24 24 9F 02' => array( - 'Id' => '9D 54 62 62 24 24 9F 02', - 'Label' => 'PC-E Micro Nikkor 85mm f/2.8D', - ), - '9E 38 11 29 34 3C 4B 06' => array( - 'Id' => '9E 38 11 29 34 3C 4B 06', - 'Label' => 'Sigma 8-16mm F4.5-5.6 DC HSM', - ), - '9E 40 2D 6A 2C 3C A0 0E' => array( - 'Id' => '9E 40 2D 6A 2C 3C A0 0E', - 'Label' => 'AF-S DX VR Zoom-Nikkor 18-105mm f/3.5-5.6G ED', - ), - '9F 37 50 A0 34 40 4B 0E' => array( - 'Id' => '9F 37 50 A0 34 40 4B 0E', - 'Label' => 'Sigma 50-500mm F4.5-6.3 DG OS HSM', - ), - '9F 58 44 44 14 14 A1 06' => array( - 'Id' => '9F 58 44 44 14 14 A1 06', - 'Label' => 'AF-S DX Nikkor 35mm f/1.8G', - ), - 'A0 40 2D 74 2C 3C BB 0E' => array( - 'Id' => 'A0 40 2D 74 2C 3C BB 0E', - 'Label' => 'AF-S DX Nikkor 18-140mm f/3.5-5.6G ED VR', - ), - 'A0 48 2A 5C 24 30 4B 0E' => array( - 'Id' => 'A0 48 2A 5C 24 30 4B 0E', - 'Label' => 'Sigma 17-70mm F2.8-4 DC Macro OS HSM', - ), - 'A0 54 50 50 0C 0C A2 06' => array( - 'Id' => 'A0 54 50 50 0C 0C A2 06', - 'Label' => 'AF-S Nikkor 50mm f/1.4G', - ), - 'A1 40 18 37 2C 34 A3 06' => array( - 'Id' => 'A1 40 18 37 2C 34 A3 06', - 'Label' => 'AF-S DX Nikkor 10-24mm f/3.5-4.5G ED', - ), - 'A1 41 19 31 2C 2C 4B 06' => array( - 'Id' => 'A1 41 19 31 2C 2C 4B 06', - 'Label' => 'Sigma 10-20mm F3.5 EX DC HSM', - ), - 'A1 54 55 55 0C 0C BC 06' => array( - 'Id' => 'A1 54 55 55 0C 0C BC 06', - 'Label' => 'AF-S Nikkor 58mm f/1.4G', - ), - 'A2 40 2D 53 2C 3C BD 0E' => array( - 'Id' => 'A2 40 2D 53 2C 3C BD 0E', - 'Label' => 'AF-S DX VR Nikkor 18-55mm f/3.5-5.6G II', - ), - 'A2 48 5C 80 24 24 A4 0E' => array( - 'Id' => 'A2 48 5C 80 24 24 A4 0E', - 'Label' => 'AF-S Nikkor 70-200mm f/2.8G ED VR II', - ), - 'A3 3C 29 44 30 30 A5 0E' => array( - 'Id' => 'A3 3C 29 44 30 30 A5 0E', - 'Label' => 'AF-S Nikkor 16-35mm f/4G ED VR', - ), - 'A3 3C 5C 8E 30 3C 4B 0E' => array( - 'Id' => 'A3 3C 5C 8E 30 3C 4B 0E', - 'Label' => 'Sigma 70-300mm F4-5.6 DG OS', - ), - 'A4 47 2D 50 24 34 4B 0E' => array( - 'Id' => 'A4 47 2D 50 24 34 4B 0E', - 'Label' => 'Sigma 18-50mm F2.8-4.5 DC OS HSM', - ), - 'A4 54 37 37 0C 0C A6 06' => array( - 'Id' => 'A4 54 37 37 0C 0C A6 06', - 'Label' => 'AF-S Nikkor 24mm f/1.4G ED', - ), - 'A5 40 2D 88 2C 40 4B 0E' => array( - 'Id' => 'A5 40 2D 88 2C 40 4B 0E', - 'Label' => 'Sigma 18-250mm F3.5-6.3 DC OS HSM', - ), - 'A5 40 3C 8E 2C 3C A7 0E' => array( - 'Id' => 'A5 40 3C 8E 2C 3C A7 0E', - 'Label' => 'AF-S Nikkor 28-300mm f/3.5-5.6G ED VR', - ), - 'A6 48 37 5C 24 24 4B 06' => array( - 'Id' => 'A6 48 37 5C 24 24 4B 06', - 'Label' => 'Sigma 24-70mm F2.8 IF EX DG HSM', - ), - 'A6 48 8E 8E 24 24 A8 0E' => array( - 'Id' => 'A6 48 8E 8E 24 24 A8 0E', - 'Label' => 'AF-S VR Nikkor 300mm f/2.8G IF-ED II', - ), - 'A7 49 80 A0 24 24 4B 06' => array( - 'Id' => 'A7 49 80 A0 24 24 4B 06', - 'Label' => 'Sigma APO 200-500mm F2.8 EX DG', - ), - 'A7 4B 62 62 2C 2C A9 0E' => array( - 'Id' => 'A7 4B 62 62 2C 2C A9 0E', - 'Label' => 'AF-S DX Micro Nikkor 85mm f/3.5G ED VR', - ), - 'A8 48 80 98 30 30 AA 0E' => array( - 'Id' => 'A8 48 80 98 30 30 AA 0E', - 'Label' => 'AF-S VR Zoom-Nikkor 200-400mm f/4G IF-ED II', - ), - 'A9 54 80 80 18 18 AB 0E' => array( - 'Id' => 'A9 54 80 80 18 18 AB 0E', - 'Label' => 'AF-S Nikkor 200mm f/2G ED VR II', - ), - 'AA 3C 37 6E 30 30 AC 0E' => array( - 'Id' => 'AA 3C 37 6E 30 30 AC 0E', - 'Label' => 'AF-S Nikkor 24-120mm f/4G ED VR', - ), - 'AC 38 53 8E 34 3C AE 0E' => array( - 'Id' => 'AC 38 53 8E 34 3C AE 0E', - 'Label' => 'AF-S DX VR Nikkor 55-300mm 4.5-5.6G ED', - ), - 'AD 3C 2D 8E 2C 3C AF 0E' => array( - 'Id' => 'AD 3C 2D 8E 2C 3C AF 0E', - 'Label' => 'AF-S DX Nikkor 18-300mm 3.5-5.6G ED VR', - ), - 'AE 54 62 62 0C 0C B0 06' => array( - 'Id' => 'AE 54 62 62 0C 0C B0 06', - 'Label' => 'AF-S Nikkor 85mm f/1.4G', - ), - 'AF 54 44 44 0C 0C B1 06' => array( - 'Id' => 'AF 54 44 44 0C 0C B1 06', - 'Label' => 'AF-S Nikkor 35mm f/1.4G', - ), - 'B0 4C 50 50 14 14 B2 06' => array( - 'Id' => 'B0 4C 50 50 14 14 B2 06', - 'Label' => 'AF-S Nikkor 50mm f/1.8G', - ), - 'B1 48 48 48 24 24 B3 06' => array( - 'Id' => 'B1 48 48 48 24 24 B3 06', - 'Label' => 'AF-S DX Micro Nikkor 40mm f/2.8G', - ), - 'B2 48 5C 80 30 30 B4 0E' => array( - 'Id' => 'B2 48 5C 80 30 30 B4 0E', - 'Label' => 'AF-S Nikkor 70-200mm f/4G ED VR', - ), - 'B3 4C 62 62 14 14 B5 06' => array( - 'Id' => 'B3 4C 62 62 14 14 B5 06', - 'Label' => 'AF-S Nikkor 85mm f/1.8G', - ), - 'B4 40 37 62 2C 34 B6 0E' => array( - 'Id' => 'B4 40 37 62 2C 34 B6 0E', - 'Label' => 'AF-S VR Zoom-Nikkor 24-85mm f/3.5-4.5G IF-ED', - ), - 'B5 4C 3C 3C 14 14 B7 06' => array( - 'Id' => 'B5 4C 3C 3C 14 14 B7 06', - 'Label' => 'AF-S Nikkor 28mm f/1.8G', - ), - 'B6 48 37 56 24 24 1C 02' => array( - 'Id' => 'B6 48 37 56 24 24 1C 02', - 'Label' => 'Sigma 24-60mm F2.8 EX DG', - ), - 'B7 44 60 98 34 3C B9 0E' => array( - 'Id' => 'B7 44 60 98 34 3C B9 0E', - 'Label' => 'AF-S Nikkor 80-400mm f/4.5-5.6G ED VR', - ), - 'B8 40 2D 44 2C 34 BA 06' => array( - 'Id' => 'B8 40 2D 44 2C 34 BA 06', - 'Label' => 'AF-S Nikkor 18-35mm f/3.5-4.5G ED', - ), - 'CD 3D 2D 70 2E 3C 4B 0E' => array( - 'Id' => 'CD 3D 2D 70 2E 3C 4B 0E', - 'Label' => 'Sigma 18-125mm F3.8-5.6 DC OS HSM', - ), - 'CE 34 76 A0 38 40 4B 0E' => array( - 'Id' => 'CE 34 76 A0 38 40 4B 0E', - 'Label' => 'Sigma 150-500mm F5-6.3 DG OS APO HSM', - ), - 'CF 38 6E 98 34 3C 4B 0E' => array( - 'Id' => 'CF 38 6E 98 34 3C 4B 0E', - 'Label' => 'Sigma APO 120-400mm F4.5-5.6 DG OS HSM', - ), - 'DC 48 19 19 24 24 4B 06' => array( - 'Id' => 'DC 48 19 19 24 24 4B 06', - 'Label' => 'Sigma 10mm F2.8 EX DC HSM Fisheye', - ), - 'DE 54 50 50 0C 0C 4B 06' => array( - 'Id' => 'DE 54 50 50 0C 0C 4B 06', - 'Label' => 'Sigma 50mm F1.4 EX DG HSM', - ), - 'E0 3C 5C 8E 30 3C 4B 06' => array( - 'Id' => 'E0 3C 5C 8E 30 3C 4B 06', - 'Label' => 'Sigma 70-300mm F4-5.6 APO DG Macro HSM', - ), - 'E1 58 37 37 14 14 1C 02' => array( - 'Id' => 'E1 58 37 37 14 14 1C 02', - 'Label' => 'Sigma 24mm F1.8 EX DG Aspherical Macro', - ), - 'E3 54 50 50 24 24 35 02' => array( - 'Id' => 'E3 54 50 50 24 24 35 02', - 'Label' => 'Sigma Macro 50mm F2.8 EX DG', - ), - 'E5 54 6A 6A 24 24 35 02' => array( - 'Id' => 'E5 54 6A 6A 24 24 35 02', - 'Label' => 'Sigma Macro 105mm F2.8 EX DG', - ), - 'E6 41 3C 8E 2C 40 1C 02' => array( - 'Id' => 'E6 41 3C 8E 2C 40 1C 02', - 'Label' => 'Sigma 28-300mm F3.5-6.3 DG Macro', - ), - 'E9 54 37 5C 24 24 1C 02' => array( - 'Id' => 'E9 54 37 5C 24 24 1C 02', - 'Label' => 'Sigma 24-70mm F2.8 EX DG Macro', - ), - 'EA 48 27 27 24 24 1C 02' => array( - 'Id' => 'EA 48 27 27 24 24 1C 02', - 'Label' => 'Sigma 15mm F2.8 EX Diagonal Fisheye', - ), - 'EB 40 76 A6 38 40 DF 0E' => array( - 'Id' => 'EB 40 76 A6 38 40 DF 0E', - 'Label' => 'Tamron SP AF 150-600mm f/5-6.3 VC USD (A011)', - ), - 'ED 40 2D 80 2C 40 4B 0E' => array( - 'Id' => 'ED 40 2D 80 2C 40 4B 0E', - 'Label' => 'Sigma 18-200mm F3.5-6.3 DC OS HSM', - ), - 'EE 48 5C 80 24 24 4B 06' => array( - 'Id' => 'EE 48 5C 80 24 24 4B 06', - 'Label' => 'Sigma 70-200mm F2.8 EX APO DG Macro HSM II', - ), - 'F0 38 1F 37 34 3C 4B 06' => array( - 'Id' => 'F0 38 1F 37 34 3C 4B 06', - 'Label' => 'Sigma 12-24mm F4.5-5.6 EX DG Aspherical HSM', - ), - 'F0 3F 2D 8A 2C 40 DF 0E' => array( - 'Id' => 'F0 3F 2D 8A 2C 40 DF 0E', - 'Label' => 'Tamron AF 18-270mm f/3.5-6.3 Di II VC PZD (B008)', - ), - 'F1 44 A0 A0 34 34 4B 02' => array( - 'Id' => 'F1 44 A0 A0 34 34 4B 02', - 'Label' => 'Sigma APO 500mm F4.5 EX DG HSM', - ), - 'F1 47 5C 8E 30 3C DF 0E' => array( - 'Id' => 'F1 47 5C 8E 30 3C DF 0E', - 'Label' => 'Tamron SP 70-300mm f/4-5.6 Di VC USD (A005)', - ), - 'F3 48 68 8E 30 30 4B 02' => array( - 'Id' => 'F3 48 68 8E 30 30 4B 02', - 'Label' => 'Sigma APO 100-300mm F4 EX IF HSM', - ), - 'F3 54 2B 50 24 24 84 0E' => array( - 'Id' => 'F3 54 2B 50 24 24 84 0E', - 'Label' => 'Tamron SP AF 17-50mm f/2.8 XR Di II VC LD Aspherical (IF) (B005)', - ), - 'F4 54 56 56 18 18 84 06' => array( - 'Id' => 'F4 54 56 56 18 18 84 06', - 'Label' => 'Tamron SP AF 60mm f/2.0 Di II Macro 1:1 (G005)', - ), - 'F5 40 2C 8A 2C 40 40 0E' => array( - 'Id' => 'F5 40 2C 8A 2C 40 40 0E', - 'Label' => 'Tamron AF 18-270mm f/3.5-6.3 Di II VC LD Aspherical (IF) Macro (B003)', - ), - 'F5 48 76 76 24 24 4B 06' => array( - 'Id' => 'F5 48 76 76 24 24 4B 06', - 'Label' => 'Sigma APO Macro 150mm F2.8 EX DG HSM', - ), - 'F6 3F 18 37 2C 34 84 06' => array( - 'Id' => 'F6 3F 18 37 2C 34 84 06', - 'Label' => 'Tamron SP AF 10-24mm f/3.5-4.5 Di II LD Aspherical (IF) (B001)', - ), - 'F6 48 2D 50 24 24 4B 06' => array( - 'Id' => 'F6 48 2D 50 24 24 4B 06', - 'Label' => 'Sigma 18-50mm F2.8 EX DC Macro', - ), - 'F7 53 5C 80 24 24 40 06' => array( - 'Id' => 'F7 53 5C 80 24 24 40 06', - 'Label' => 'Tamron SP AF 70-200mm f/2.8 Di LD (IF) Macro (A001)', - ), - 'F7 53 5C 80 24 24 84 06' => array( - 'Id' => 'F7 53 5C 80 24 24 84 06', - 'Label' => 'Tamron SP AF 70-200mm f/2.8 Di LD (IF) Macro (A001)', - ), - 'F8 54 3E 3E 0C 0C 4B 06' => array( - 'Id' => 'F8 54 3E 3E 0C 0C 4B 06', - 'Label' => 'Sigma 30mm F1.4 EX DC HSM', - ), - 'F8 54 64 64 24 24 DF 06' => array( - 'Id' => 'F8 54 64 64 24 24 DF 06', - 'Label' => 'Tamron SP AF 90mm f/2.8 Di Macro 1:1 (272NII)', - ), - 'F8 55 64 64 24 24 84 06' => array( - 'Id' => 'F8 55 64 64 24 24 84 06', - 'Label' => 'Tamron SP AF 90mm f/2.8 Di Macro 1:1 (272NII)', - ), - 'F9 3C 19 31 30 3C 4B 06' => array( - 'Id' => 'F9 3C 19 31 30 3C 4B 06', - 'Label' => 'Sigma 10-20mm F4-5.6 EX DC HSM', - ), - 'F9 40 3C 8E 2C 40 40 0E' => array( - 'Id' => 'F9 40 3C 8E 2C 40 40 0E', - 'Label' => 'Tamron AF 28-300mm f/3.5-6.3 XR Di VC LD Aspherical (IF) Macro (A20)', - ), - 'FA 54 3C 5E 24 24 84 06' => array( - 'Id' => 'FA 54 3C 5E 24 24 84 06', - 'Label' => 'Tamron SP AF 28-75mm f/2.8 XR Di LD Aspherical (IF) Macro (A09NII)', - ), - 'FA 54 3C 5E 24 24 DF 06' => array( - 'Id' => 'FA 54 3C 5E 24 24 DF 06', - 'Label' => 'Tamron SP AF 28-75mm f/2.8 XR Di LD Aspherical (IF) Macro (A09NII)', - ), - 'FA 54 6E 8E 24 24 4B 02' => array( - 'Id' => 'FA 54 6E 8E 24 24 4B 02', - 'Label' => 'Sigma APO 120-300mm F2.8 EX DG HSM', - ), - 'FB 54 2B 50 24 24 84 06' => array( - 'Id' => 'FB 54 2B 50 24 24 84 06', - 'Label' => 'Tamron SP AF 17-50mm f/2.8 XR Di II LD Aspherical (IF) (A16NII)', - ), - 'FB 54 8E 8E 24 24 4B 02' => array( - 'Id' => 'FB 54 8E 8E 24 24 4B 02', - 'Label' => 'Sigma APO 300mm F2.8 EX DG HSM', - ), - 'FC 40 2D 80 2C 40 DF 06' => array( - 'Id' => 'FC 40 2D 80 2C 40 DF 06', - 'Label' => 'Tamron AF 18-200mm f/3.5-6.3 XR Di II LD Aspherical (IF) Macro (A14NII)', - ), - 'FD 47 50 76 24 24 4B 06' => array( - 'Id' => 'FD 47 50 76 24 24 4B 06', - 'Label' => 'Sigma 50-150mm F2.8 EX APO DC HSM II', - ), - 'FE 47 00 00 24 24 4B 06' => array( - 'Id' => 'FE 47 00 00 24 24 4B 06', - 'Label' => 'Sigma 4.5mm F2.8 EX DC HSM Circular Fisheye', - ), - 'FE 48 37 5C 24 24 DF 0E' => array( - 'Id' => 'FE 48 37 5C 24 24 DF 0E', - 'Label' => 'Tamron SP 24-70mm f/2.8 Di VC USD (A007)', - ), - 'FE 53 5C 80 24 24 84 06' => array( - 'Id' => 'FE 53 5C 80 24 24 84 06', - 'Label' => 'Tamron SP AF 70-200mm f/2.8 Di LD (IF) Macro (A001)', - ), - 'FE 54 5C 80 24 24 DF 0E' => array( - 'Id' => 'FE 54 5C 80 24 24 DF 0E', - 'Label' => 'Tamron SP 70-200mm f/2.8 Di VC USD (A009)', - ), - 'FE 54 64 64 24 24 DF 0E' => array( - 'Id' => 'FE 54 64 64 24 24 DF 0E', - 'Label' => 'Tamron SP 90mm f/2.8 Di VC USD Macro 1:1 (F004)', - ), - 'FF 40 2D 80 2C 40 4B 06' => array( - 'Id' => 'FF 40 2D 80 2C 40 4B 06', - 'Label' => 'Sigma 18-200mm F3.5-6.3 DC', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/LensSpec.php b/lib/PHPExiftool/Driver/Tag/Composite/LensSpec.php deleted file mode 100644 index a907b00d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/LensSpec.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSpec extends AbstractTag -{ - - protected $Id = 'LensSpec'; - - protected $Name = 'LensSpec'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/LightValue.php b/lib/PHPExiftool/Driver/Tag/Composite/LightValue.php deleted file mode 100644 index 4fe5145ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/LightValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightValue extends AbstractTag -{ - - protected $Id = 'LightValue'; - - protected $Name = 'LightValue'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Light Value'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/MPImage.php b/lib/PHPExiftool/Driver/Tag/Composite/MPImage.php deleted file mode 100644 index fc83a4ec1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/MPImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPImage extends AbstractTag -{ - - protected $Id = 'MPImage'; - - protected $Name = 'MPImage'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MP Image'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/OriginalDecisionData.php b/lib/PHPExiftool/Driver/Tag/Composite/OriginalDecisionData.php deleted file mode 100644 index e2b74c128..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/OriginalDecisionData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalDecisionData extends AbstractTag -{ - - protected $Id = 'OriginalDecisionData'; - - protected $Name = 'OriginalDecisionData'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Original Decision Data'; - - protected $local_g2 = 'Camera'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/OtherImage.php b/lib/PHPExiftool/Driver/Tag/Composite/OtherImage.php deleted file mode 100644 index d2accb796..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/OtherImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImage extends AbstractTag -{ - - protected $Id = 'OtherImage'; - - protected $Name = 'OtherImage'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Other Image'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Composite/PreviewImage.php deleted file mode 100644 index a9293bcac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/PreviewImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = false; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/PreviewImageSize.php b/lib/PHPExiftool/Driver/Tag/Composite/PreviewImageSize.php deleted file mode 100644 index 9cc077868..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/PreviewImageSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageSize extends AbstractTag -{ - - protected $Id = 'PreviewImageSize'; - - protected $Name = 'PreviewImageSize'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image Size'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/RedBalance.php b/lib/PHPExiftool/Driver/Tag/Composite/RedBalance.php deleted file mode 100644 index dbec52d01..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/RedBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedBalance extends AbstractTag -{ - - protected $Id = 'RedBalance'; - - protected $Name = 'RedBalance'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Balance'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/RedEyeReduction.php b/lib/PHPExiftool/Driver/Tag/Composite/RedEyeReduction.php deleted file mode 100644 index ebe919ad4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/RedEyeReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedEyeReduction extends AbstractTag -{ - - protected $Id = 'RedEyeReduction'; - - protected $Name = 'RedEyeReduction'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Eye Reduction'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/RicohPitch.php b/lib/PHPExiftool/Driver/Tag/Composite/RicohPitch.php deleted file mode 100644 index de76502e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/RicohPitch.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RicohPitch extends AbstractTag -{ - - protected $Id = 'RicohPitch'; - - protected $Name = 'RicohPitch'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ricoh Pitch'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/RicohRoll.php b/lib/PHPExiftool/Driver/Tag/Composite/RicohRoll.php deleted file mode 100644 index 37c62b869..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/RicohRoll.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RicohRoll extends AbstractTag -{ - - protected $Id = 'RicohRoll'; - - protected $Name = 'RicohRoll'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ricoh Roll'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/Rotation.php b/lib/PHPExiftool/Driver/Tag/Composite/Rotation.php deleted file mode 100644 index 51c31e4bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/Rotation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 'Rotation'; - - protected $Name = 'Rotation'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/RunTimeSincePowerUp.php b/lib/PHPExiftool/Driver/Tag/Composite/RunTimeSincePowerUp.php deleted file mode 100644 index 8f988d1e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/RunTimeSincePowerUp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RunTimeSincePowerUp extends AbstractTag -{ - - protected $Id = 'RunTimeSincePowerUp'; - - protected $Name = 'RunTimeSincePowerUp'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Run Time Since Power Up'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ScaleFactor35efl.php b/lib/PHPExiftool/Driver/Tag/Composite/ScaleFactor35efl.php deleted file mode 100644 index ec662620f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ScaleFactor35efl.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScaleFactor35efl extends AbstractTag -{ - - protected $Id = 'ScaleFactor35efl'; - - protected $Name = 'ScaleFactor35efl'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scale Factor To 35 mm Equivalent'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ShootingMode.php b/lib/PHPExiftool/Driver/Tag/Composite/ShootingMode.php deleted file mode 100644 index 10b5e2c22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ShootingMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingMode extends AbstractTag -{ - - protected $Id = 'ShootingMode'; - - protected $Name = 'ShootingMode'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shooting Mode'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ShutterCurtainHack.php b/lib/PHPExiftool/Driver/Tag/Composite/ShutterCurtainHack.php deleted file mode 100644 index cbe77fdfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ShutterCurtainHack.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterCurtainHack extends AbstractTag -{ - - protected $Id = 'ShutterCurtainHack'; - - protected $Name = 'ShutterCurtainHack'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Curtain Sync'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1st-curtain sync', - ), - 1 => array( - 'Id' => 1, - 'Label' => '2nd-curtain sync', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ShutterSpeed.php b/lib/PHPExiftool/Driver/Tag/Composite/ShutterSpeed.php deleted file mode 100644 index 457bb6dc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ShutterSpeed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeed extends AbstractTag -{ - - protected $Id = 'ShutterSpeed'; - - protected $Name = 'ShutterSpeed'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Speed'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/SubSecCreateDate.php b/lib/PHPExiftool/Driver/Tag/Composite/SubSecCreateDate.php deleted file mode 100644 index e73701610..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/SubSecCreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubSecCreateDate extends AbstractTag -{ - - protected $Id = 'SubSecCreateDate'; - - protected $Name = 'SubSecCreateDate'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/SubSecDateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Composite/SubSecDateTimeOriginal.php deleted file mode 100644 index cef82aeca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/SubSecDateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubSecDateTimeOriginal extends AbstractTag -{ - - protected $Id = 'SubSecDateTimeOriginal'; - - protected $Name = 'SubSecDateTimeOriginal'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/SubSecModifyDate.php b/lib/PHPExiftool/Driver/Tag/Composite/SubSecModifyDate.php deleted file mode 100644 index ffe02a79d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/SubSecModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubSecModifyDate extends AbstractTag -{ - - protected $Id = 'SubSecModifyDate'; - - protected $Name = 'SubSecModifyDate'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Composite/ThumbnailImage.php deleted file mode 100644 index fcc561193..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ThumbnailImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'ThumbnailImage'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/WBRGBLevels.php b/lib/PHPExiftool/Driver/Tag/Composite/WBRGBLevels.php deleted file mode 100644 index 32784a756..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/WBRGBLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGBLevels'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/WBRGGBLevels.php b/lib/PHPExiftool/Driver/Tag/Composite/WBRGGBLevels.php deleted file mode 100644 index d07256890..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/WBRGGBLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevels'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGGB Levels'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Composite/ZoomedPreviewImage.php b/lib/PHPExiftool/Driver/Tag/Composite/ZoomedPreviewImage.php deleted file mode 100644 index 3f3e2c8a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Composite/ZoomedPreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Composite; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomedPreviewImage extends AbstractTag -{ - - protected $Id = 'ZoomedPreviewImage'; - - protected $Name = 'ZoomedPreviewImage'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'Composite'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Zoomed Preview Image'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ACoordOfBottomRightCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/ACoordOfBottomRightCorner.php deleted file mode 100644 index d666e7f3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ACoordOfBottomRightCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ACoordOfBottomRightCorner extends AbstractTag -{ - - protected $Id = '0027,104C'; - - protected $Name = 'ACoordOfBottomRightCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'A Coord Of Bottom Right Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ACoordOfTopRightCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/ACoordOfTopRightCorner.php deleted file mode 100644 index 743f74489..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ACoordOfTopRightCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ACoordOfTopRightCorner extends AbstractTag -{ - - protected $Id = '0027,1049'; - - protected $Name = 'ACoordOfTopRightCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'A Coord Of Top Right Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AbsoluteChannelDisplayScale.php b/lib/PHPExiftool/Driver/Tag/DICOM/AbsoluteChannelDisplayScale.php deleted file mode 100644 index 51709c09d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AbsoluteChannelDisplayScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AbsoluteChannelDisplayScale extends AbstractTag -{ - - protected $Id = '003A,0248'; - - protected $Name = 'AbsoluteChannelDisplayScale'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Absolute Channel Display Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AbstractPriorCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AbstractPriorCodeSequence.php deleted file mode 100644 index bff27cb7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AbstractPriorCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AbstractPriorCodeSequence extends AbstractTag -{ - - protected $Id = '0072,003E'; - - protected $Name = 'AbstractPriorCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Abstract Prior Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AbstractPriorValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/AbstractPriorValue.php deleted file mode 100644 index 966bd1182..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AbstractPriorValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AbstractPriorValue extends AbstractTag -{ - - protected $Id = '0072,003C'; - - protected $Name = 'AbstractPriorValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Abstract Prior Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AccessionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/AccessionNumber.php deleted file mode 100644 index 335c5d1b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AccessionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccessionNumber extends AbstractTag -{ - - protected $Id = '0008,0050'; - - protected $Name = 'AccessionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Accession Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AccessoryCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/AccessoryCode.php deleted file mode 100644 index f888bd8f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AccessoryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccessoryCode extends AbstractTag -{ - - protected $Id = '300A,00F9'; - - protected $Name = 'AccessoryCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Accessory Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcqreconRecordChecksum.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcqreconRecordChecksum.php deleted file mode 100644 index 8fdfaa1aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcqreconRecordChecksum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcqreconRecordChecksum extends AbstractTag -{ - - protected $Id = '0021,1019'; - - protected $Name = 'AcqreconRecordChecksum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acqrecon Record Checksum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquiredImageAreaDoseProduct.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquiredImageAreaDoseProduct.php deleted file mode 100644 index 27fb716ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquiredImageAreaDoseProduct.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquiredImageAreaDoseProduct extends AbstractTag -{ - - protected $Id = '0018,9473'; - - protected $Name = 'AcquiredImageAreaDoseProduct'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquired Image Area Dose Product'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionComments.php deleted file mode 100644 index 4eaeddc74..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionComments extends AbstractTag -{ - - protected $Id = '0018,4000'; - - protected $Name = 'AcquisitionComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContextDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContextDescription.php deleted file mode 100644 index d09e71d8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContextDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionContextDescription extends AbstractTag -{ - - protected $Id = '0040,0556'; - - protected $Name = 'AcquisitionContextDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Context Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContextSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContextSequence.php deleted file mode 100644 index 990e706a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContextSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionContextSequence extends AbstractTag -{ - - protected $Id = '0040,0555'; - - protected $Name = 'AcquisitionContextSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Context Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContrast.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContrast.php deleted file mode 100644 index 96c6d66e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionContrast extends AbstractTag -{ - - protected $Id = '0008,9209'; - - protected $Name = 'AcquisitionContrast'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDate.php deleted file mode 100644 index 963813835..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionDate extends AbstractTag -{ - - protected $Id = '0008,0022'; - - protected $Name = 'AcquisitionDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDateTime.php deleted file mode 100644 index 038e0f48e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionDateTime extends AbstractTag -{ - - protected $Id = '0008,002A'; - - protected $Name = 'AcquisitionDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceProcessingCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceProcessingCode.php deleted file mode 100644 index 5cdae67f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceProcessingCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionDeviceProcessingCode extends AbstractTag -{ - - protected $Id = '0018,1401'; - - protected $Name = 'AcquisitionDeviceProcessingCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Device Processing Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceProcessingDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceProcessingDescr.php deleted file mode 100644 index 7faa602b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceProcessingDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionDeviceProcessingDescr extends AbstractTag -{ - - protected $Id = '0018,1400'; - - protected $Name = 'AcquisitionDeviceProcessingDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Device Processing Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceTypeCodeSequence.php deleted file mode 100644 index 0ae64e991..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDeviceTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionDeviceTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0022,0015'; - - protected $Name = 'AcquisitionDeviceTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Device Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDuration.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDuration.php deleted file mode 100644 index fcb277bd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionDuration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AcquisitionDuration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionEndConditionData.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionEndConditionData.php deleted file mode 100644 index 194b0311c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionEndConditionData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionEndConditionData extends AbstractTag -{ - - protected $Id = '0018,0075'; - - protected $Name = 'AcquisitionEndConditionData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition End Condition Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionGroupLength.php deleted file mode 100644 index bbc92925c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionGroupLength extends AbstractTag -{ - - protected $Id = '0018,0000'; - - protected $Name = 'AcquisitionGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionIndex.php deleted file mode 100644 index 169687b34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionIndex extends AbstractTag -{ - - protected $Id = '0020,9518'; - - protected $Name = 'AcquisitionIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionMatrix.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionMatrix.php deleted file mode 100644 index 53fa4af8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionMatrix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionMatrix extends AbstractTag -{ - - protected $Id = '0018,1310'; - - protected $Name = 'AcquisitionMatrix'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Matrix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionNumber.php deleted file mode 100644 index 929f12017..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionNumber extends AbstractTag -{ - - protected $Id = '0020,0012'; - - protected $Name = 'AcquisitionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionProtocolDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionProtocolDescription.php deleted file mode 100644 index 0a8eb9d1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionProtocolDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionProtocolDescription extends AbstractTag -{ - - protected $Id = '0018,9424'; - - protected $Name = 'AcquisitionProtocolDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Protocol Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionProtocolName.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionProtocolName.php deleted file mode 100644 index 310044e00..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionProtocolName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionProtocolName extends AbstractTag -{ - - protected $Id = '0018,9423'; - - protected $Name = 'AcquisitionProtocolName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Protocol Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionStartCondition.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionStartCondition.php deleted file mode 100644 index 9609e80da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionStartCondition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionStartCondition extends AbstractTag -{ - - protected $Id = '0018,0073'; - - protected $Name = 'AcquisitionStartCondition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Start Condition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionStartConditionData.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionStartConditionData.php deleted file mode 100644 index 9db29035e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionStartConditionData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionStartConditionData extends AbstractTag -{ - - protected $Id = '0018,0074'; - - protected $Name = 'AcquisitionStartConditionData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Start Condition Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTerminationCondition.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTerminationCondition.php deleted file mode 100644 index 78fcf1116..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTerminationCondition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTerminationCondition extends AbstractTag -{ - - protected $Id = '0018,0071'; - - protected $Name = 'AcquisitionTerminationCondition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Termination Condition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTime.php deleted file mode 100644 index 9808c87d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTime extends AbstractTag -{ - - protected $Id = '0008,0032'; - - protected $Name = 'AcquisitionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTimeSynchronized.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTimeSynchronized.php deleted file mode 100644 index 872a5c2ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionTimeSynchronized.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTimeSynchronized extends AbstractTag -{ - - protected $Id = '0018,1800'; - - protected $Name = 'AcquisitionTimeSynchronized'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time Synchronized'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionType.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionType.php deleted file mode 100644 index c546a02f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionType extends AbstractTag -{ - - protected $Id = '0018,9302'; - - protected $Name = 'AcquisitionType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionsInSeries.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionsInSeries.php deleted file mode 100644 index d712f801b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionsInSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionsInSeries extends AbstractTag -{ - - protected $Id = '0020,1001'; - - protected $Name = 'AcquisitionsInSeries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisitions In Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionsInStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionsInStudy.php deleted file mode 100644 index 148fd35fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcquisitionsInStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionsInStudy extends AbstractTag -{ - - protected $Id = '0020,1004'; - - protected $Name = 'AcquisitionsInStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisitions In Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AcrossScanSpatialResolution.php b/lib/PHPExiftool/Driver/Tag/DICOM/AcrossScanSpatialResolution.php deleted file mode 100644 index fe6e117f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AcrossScanSpatialResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcrossScanSpatialResolution extends AbstractTag -{ - - protected $Id = '0022,0048'; - - protected $Name = 'AcrossScanSpatialResolution'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Across Scan Spatial Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActiveSourceDiameter.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActiveSourceDiameter.php deleted file mode 100644 index 9ee6d4b99..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActiveSourceDiameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveSourceDiameter extends AbstractTag -{ - - protected $Id = '300A,0218'; - - protected $Name = 'ActiveSourceDiameter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Active Source Diameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActiveSourceLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActiveSourceLength.php deleted file mode 100644 index feeb397fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActiveSourceLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveSourceLength extends AbstractTag -{ - - protected $Id = '300A,021A'; - - protected $Name = 'ActiveSourceLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Active Source Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActualCardiacTriggerDelayTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActualCardiacTriggerDelayTime.php deleted file mode 100644 index 0e8257dd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActualCardiacTriggerDelayTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualCardiacTriggerDelayTime extends AbstractTag -{ - - protected $Id = '0020,9252'; - - protected $Name = 'ActualCardiacTriggerDelayTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Cardiac Trigger Delay Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActualFrameDuration.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActualFrameDuration.php deleted file mode 100644 index 9c756e0e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActualFrameDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualFrameDuration extends AbstractTag -{ - - protected $Id = '0018,1242'; - - protected $Name = 'ActualFrameDuration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Frame Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActualHumanPerformersSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActualHumanPerformersSequence.php deleted file mode 100644 index 830ccdc58..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActualHumanPerformersSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualHumanPerformersSequence extends AbstractTag -{ - - protected $Id = '0040,4035'; - - protected $Name = 'ActualHumanPerformersSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Human Performers Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActualReceiveGainAnalog.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActualReceiveGainAnalog.php deleted file mode 100644 index a1072718b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActualReceiveGainAnalog.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualReceiveGainAnalog extends AbstractTag -{ - - protected $Id = '0019,108A'; - - protected $Name = 'ActualReceiveGainAnalog'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Receive Gain Analog'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActualReceiveGainDigital.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActualReceiveGainDigital.php deleted file mode 100644 index 2af83cc30..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActualReceiveGainDigital.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualReceiveGainDigital extends AbstractTag -{ - - protected $Id = '0019,108B'; - - protected $Name = 'ActualReceiveGainDigital'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Receive Gain Digital'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActualRespiratoryTriggerDelayTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActualRespiratoryTriggerDelayTime.php deleted file mode 100644 index 08745c13b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActualRespiratoryTriggerDelayTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualRespiratoryTriggerDelayTime extends AbstractTag -{ - - protected $Id = '0020,9257'; - - protected $Name = 'ActualRespiratoryTriggerDelayTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Respiratory Trigger Delay Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ActualSeriesDataTimeStamp.php b/lib/PHPExiftool/Driver/Tag/DICOM/ActualSeriesDataTimeStamp.php deleted file mode 100644 index 1f103edc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ActualSeriesDataTimeStamp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualSeriesDataTimeStamp extends AbstractTag -{ - - protected $Id = '0009,10E9'; - - protected $Name = 'ActualSeriesDataTimeStamp'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Series Data Time Stamp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdaptiveMapFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdaptiveMapFormat.php deleted file mode 100644 index 9c8507626..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdaptiveMapFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdaptiveMapFormat extends AbstractTag -{ - - protected $Id = '0028,0730'; - - protected $Name = 'AdaptiveMapFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Adaptive Map Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AddIntermediateSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AddIntermediateSequence.php deleted file mode 100644 index 08f9f128e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AddIntermediateSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddIntermediateSequence extends AbstractTag -{ - - protected $Id = '0046,0101'; - - protected $Name = 'AddIntermediateSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Add Intermediate Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AddNearSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AddNearSequence.php deleted file mode 100644 index 10904ed56..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AddNearSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddNearSequence extends AbstractTag -{ - - protected $Id = '0046,0100'; - - protected $Name = 'AddNearSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Add Near Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AddOtherSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AddOtherSequence.php deleted file mode 100644 index 0f6fbbcc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AddOtherSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddOtherSequence extends AbstractTag -{ - - protected $Id = '0046,0102'; - - protected $Name = 'AddOtherSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Add Other Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AddPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/AddPower.php deleted file mode 100644 index ef57cc576..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AddPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddPower extends AbstractTag -{ - - protected $Id = '0046,0104'; - - protected $Name = 'AddPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Add Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdditionalDrugSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdditionalDrugSequence.php deleted file mode 100644 index 8aaec470b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdditionalDrugSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdditionalDrugSequence extends AbstractTag -{ - - protected $Id = '0018,002A'; - - protected $Name = 'AdditionalDrugSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Additional Drug Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdditionalPatientHistory.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdditionalPatientHistory.php deleted file mode 100644 index 36b04ab24..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdditionalPatientHistory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdditionalPatientHistory extends AbstractTag -{ - - protected $Id = '0010,21B0'; - - protected $Name = 'AdditionalPatientHistory'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Additional Patient History'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AddressTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/AddressTrial.php deleted file mode 100644 index 7653a62ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AddressTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddressTrial extends AbstractTag -{ - - protected $Id = '0040,A353'; - - protected $Name = 'AddressTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Address Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdministrationRouteCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdministrationRouteCodeSequence.php deleted file mode 100644 index a57bf5348..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdministrationRouteCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdministrationRouteCodeSequence extends AbstractTag -{ - - protected $Id = '0054,0302'; - - protected $Name = 'AdministrationRouteCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Administration Route Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdmissionID.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdmissionID.php deleted file mode 100644 index f1ad5b4a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdmissionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdmissionID extends AbstractTag -{ - - protected $Id = '0038,0010'; - - protected $Name = 'AdmissionID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Admission ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDate.php deleted file mode 100644 index dd5228b50..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdmittingDate extends AbstractTag -{ - - protected $Id = '0038,0020'; - - protected $Name = 'AdmittingDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Admitting Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDiagnosesCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDiagnosesCodeSequence.php deleted file mode 100644 index 82aabb49b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDiagnosesCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdmittingDiagnosesCodeSequence extends AbstractTag -{ - - protected $Id = '0008,1084'; - - protected $Name = 'AdmittingDiagnosesCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Admitting Diagnoses Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDiagnosesDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDiagnosesDescription.php deleted file mode 100644 index b54c7d9db..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingDiagnosesDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdmittingDiagnosesDescription extends AbstractTag -{ - - protected $Id = '0008,1080'; - - protected $Name = 'AdmittingDiagnosesDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Admitting Diagnoses Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingTime.php deleted file mode 100644 index 19685b628..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdmittingTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdmittingTime extends AbstractTag -{ - - protected $Id = '0038,0021'; - - protected $Name = 'AdmittingTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Admitting Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdvantageCompOverflow.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdvantageCompOverflow.php deleted file mode 100644 index da4c33a99..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdvantageCompOverflow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvantageCompOverflow extends AbstractTag -{ - - protected $Id = '0029,1034'; - - protected $Name = 'AdvantageCompOverflow'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Advantage Comp Overflow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AdvantageCompUnderflow.php b/lib/PHPExiftool/Driver/Tag/DICOM/AdvantageCompUnderflow.php deleted file mode 100644 index 34cb3f2c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AdvantageCompUnderflow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvantageCompUnderflow extends AbstractTag -{ - - protected $Id = '0029,1035'; - - protected $Name = 'AdvantageCompUnderflow'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Advantage Comp Underflow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AirFilterCalibrationDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/AirFilterCalibrationDate.php deleted file mode 100644 index e875ff8c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AirFilterCalibrationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AirFilterCalibrationDate extends AbstractTag -{ - - protected $Id = '0045,1019'; - - protected $Name = 'AirFilterCalibrationDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Air Filter Calibration Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AirFilterCalibrationTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/AirFilterCalibrationTime.php deleted file mode 100644 index c668f5af7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AirFilterCalibrationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AirFilterCalibrationTime extends AbstractTag -{ - - protected $Id = '0045,101A'; - - protected $Name = 'AirFilterCalibrationTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Air Filter Calibration Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmDescription.php deleted file mode 100644 index 67a66f7f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlgorithmDescription extends AbstractTag -{ - - protected $Id = '0018,9528'; - - protected $Name = 'AlgorithmDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Algorithm Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmFamilyCodeSequ.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmFamilyCodeSequ.php deleted file mode 100644 index 3933a34dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmFamilyCodeSequ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlgorithmFamilyCodeSequ extends AbstractTag -{ - - protected $Id = '0066,002F'; - - protected $Name = 'AlgorithmFamilyCodeSequ'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Algorithm Family Code Sequ'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmName.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmName.php deleted file mode 100644 index 755d81191..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlgorithmName extends AbstractTag -{ - - protected $Id = '0066,0036'; - - protected $Name = 'AlgorithmName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Algorithm Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmParameters.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmParameters.php deleted file mode 100644 index 91692d271..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmParameters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlgorithmParameters extends AbstractTag -{ - - protected $Id = '0066,0032'; - - protected $Name = 'AlgorithmParameters'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Algorithm Parameters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmType.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmType.php deleted file mode 100644 index 5cde758a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlgorithmType extends AbstractTag -{ - - protected $Id = '0018,9527'; - - protected $Name = 'AlgorithmType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Algorithm Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmVersion.php deleted file mode 100644 index bfcca384b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlgorithmVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlgorithmVersion extends AbstractTag -{ - - protected $Id = '0066,0031'; - - protected $Name = 'AlgorithmVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Algorithm Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AliasedDataType.php b/lib/PHPExiftool/Driver/Tag/DICOM/AliasedDataType.php deleted file mode 100644 index fc3d1f1bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AliasedDataType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AliasedDataType extends AbstractTag -{ - - protected $Id = '0018,980B'; - - protected $Name = 'AliasedDataType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aliased Data Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Allergies.php b/lib/PHPExiftool/Driver/Tag/DICOM/Allergies.php deleted file mode 100644 index fe9a9f716..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Allergies.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Allergies extends AbstractTag -{ - - protected $Id = '0010,2110'; - - protected $Name = 'Allergies'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Allergies'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AllowLossyCompression.php b/lib/PHPExiftool/Driver/Tag/DICOM/AllowLossyCompression.php deleted file mode 100644 index 567ce5317..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AllowLossyCompression.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AllowLossyCompression extends AbstractTag -{ - - protected $Id = '2200,000F'; - - protected $Name = 'AllowLossyCompression'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Allow Lossy Compression'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AllowMediaSplitting.php b/lib/PHPExiftool/Driver/Tag/DICOM/AllowMediaSplitting.php deleted file mode 100644 index 67d7e4204..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AllowMediaSplitting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AllowMediaSplitting extends AbstractTag -{ - - protected $Id = '2200,0007'; - - protected $Name = 'AllowMediaSplitting'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Allow Media Splitting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlongScanSpatialResolution.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlongScanSpatialResolution.php deleted file mode 100644 index 41cbb7f04..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlongScanSpatialResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlongScanSpatialResolution extends AbstractTag -{ - - protected $Id = '0022,0037'; - - protected $Name = 'AlongScanSpatialResolution'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Along Scan Spatial Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlphaLUTTransferFunction.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlphaLUTTransferFunction.php deleted file mode 100644 index 746955184..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlphaLUTTransferFunction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaLUTTransferFunction extends AbstractTag -{ - - protected $Id = '0028,1410'; - - protected $Name = 'AlphaLUTTransferFunction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alpha LUT Transfer Function'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AlternateRepresentationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AlternateRepresentationSequence.php deleted file mode 100644 index 4d5e1f3e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AlternateRepresentationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlternateRepresentationSequence extends AbstractTag -{ - - protected $Id = '0008,3001'; - - protected $Name = 'AlternateRepresentationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alternate Representation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnalogReceiverGain.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnalogReceiverGain.php deleted file mode 100644 index e5120fcfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnalogReceiverGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnalogReceiverGain extends AbstractTag -{ - - protected $Id = '0019,1095'; - - protected $Name = 'AnalogReceiverGain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Analog Receiver Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicApproachDirCodeSeqTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicApproachDirCodeSeqTrial.php deleted file mode 100644 index d59f59a64..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicApproachDirCodeSeqTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicApproachDirCodeSeqTrial extends AbstractTag -{ - - protected $Id = '0008,2255'; - - protected $Name = 'AnatomicApproachDirCodeSeqTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Approach Dir Code Seq Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicEntrancePortalCodeSeqTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicEntrancePortalCodeSeqTrial.php deleted file mode 100644 index f80d5d69e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicEntrancePortalCodeSeqTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicEntrancePortalCodeSeqTrial extends AbstractTag -{ - - protected $Id = '0008,2253'; - - protected $Name = 'AnatomicEntrancePortalCodeSeqTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Entrance Portal Code Seq Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicPerspectiveCodeSeqTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicPerspectiveCodeSeqTrial.php deleted file mode 100644 index 1ca2277d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicPerspectiveCodeSeqTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicPerspectiveCodeSeqTrial extends AbstractTag -{ - - protected $Id = '0008,2257'; - - protected $Name = 'AnatomicPerspectiveCodeSeqTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Perspective Code Seq Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicPerspectiveDescrTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicPerspectiveDescrTrial.php deleted file mode 100644 index 8ec28455b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicPerspectiveDescrTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicPerspectiveDescrTrial extends AbstractTag -{ - - protected $Id = '0008,2256'; - - protected $Name = 'AnatomicPerspectiveDescrTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Perspective Descr Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicRegionModifierSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicRegionModifierSequence.php deleted file mode 100644 index 5f07ff2cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicRegionModifierSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicRegionModifierSequence extends AbstractTag -{ - - protected $Id = '0008,2220'; - - protected $Name = 'AnatomicRegionModifierSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Region Modifier Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicRegionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicRegionSequence.php deleted file mode 100644 index 6f63d9656..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicRegionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicRegionSequence extends AbstractTag -{ - - protected $Id = '0008,2218'; - - protected $Name = 'AnatomicRegionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Region Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructure.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructure.php deleted file mode 100644 index 5035b6d61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicStructure extends AbstractTag -{ - - protected $Id = '0008,2208'; - - protected $Name = 'AnatomicStructure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Structure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructureModifierSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructureModifierSequence.php deleted file mode 100644 index 1bce4fac9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructureModifierSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicStructureModifierSequence extends AbstractTag -{ - - protected $Id = '0008,2230'; - - protected $Name = 'AnatomicStructureModifierSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Structure Modifier Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructureOrRegionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructureOrRegionSequence.php deleted file mode 100644 index 306cc1808..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicStructureOrRegionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicStructureOrRegionSequence extends AbstractTag -{ - - protected $Id = '0008,2229'; - - protected $Name = 'AnatomicStructureOrRegionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomic Structure Or Region Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicalOrientationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicalOrientationType.php deleted file mode 100644 index 0065531c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicalOrientationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicalOrientationType extends AbstractTag -{ - - protected $Id = '0010,2210'; - - protected $Name = 'AnatomicalOrientationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomical Orientation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicalReferenceForScout.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicalReferenceForScout.php deleted file mode 100644 index 2d58c8978..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnatomicalReferenceForScout.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnatomicalReferenceForScout extends AbstractTag -{ - - protected $Id = '0021,104A'; - - protected $Name = 'AnatomicalReferenceForScout'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anatomical Reference For Scout'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPoint.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPoint.php deleted file mode 100644 index 23299f8c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnchorPoint extends AbstractTag -{ - - protected $Id = '0070,0014'; - - protected $Name = 'AnchorPoint'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anchor Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPointAnnotationUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPointAnnotationUnits.php deleted file mode 100644 index 84434c384..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPointAnnotationUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnchorPointAnnotationUnits extends AbstractTag -{ - - protected $Id = '0070,0004'; - - protected $Name = 'AnchorPointAnnotationUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anchor Point Annotation Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPointVisibility.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPointVisibility.php deleted file mode 100644 index c475e8988..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnchorPointVisibility.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnchorPointVisibility extends AbstractTag -{ - - protected $Id = '0070,0015'; - - protected $Name = 'AnchorPointVisibility'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anchor Point Visibility'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AngioFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/AngioFlag.php deleted file mode 100644 index 5eb1d5591..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AngioFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngioFlag extends AbstractTag -{ - - protected $Id = '0018,0025'; - - protected $Name = 'AngioFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Angio Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AngleNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/AngleNumber.php deleted file mode 100644 index ab2ebecf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AngleNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngleNumber extends AbstractTag -{ - - protected $Id = '0020,0018'; - - protected $Name = 'AngleNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Angle Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AngleOfFirstView.php b/lib/PHPExiftool/Driver/Tag/DICOM/AngleOfFirstView.php deleted file mode 100644 index 0de1d0bab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AngleOfFirstView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngleOfFirstView extends AbstractTag -{ - - protected $Id = '0019,102E'; - - protected $Name = 'AngleOfFirstView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Angle Of First View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AngularPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/AngularPosition.php deleted file mode 100644 index 5eaa96360..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AngularPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngularPosition extends AbstractTag -{ - - protected $Id = '0018,1141'; - - protected $Name = 'AngularPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Angular Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AngularStep.php b/lib/PHPExiftool/Driver/Tag/DICOM/AngularStep.php deleted file mode 100644 index 2d1323a2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AngularStep.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngularStep extends AbstractTag -{ - - protected $Id = '0018,1144'; - - protected $Name = 'AngularStep'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Angular Step'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AngularViewVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/AngularViewVector.php deleted file mode 100644 index ddbf400ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AngularViewVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngularViewVector extends AbstractTag -{ - - protected $Id = '0054,0090'; - - protected $Name = 'AngularViewVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Angular View Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationContentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationContentSequence.php deleted file mode 100644 index 3ccb12172..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationContentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationContentSequence extends AbstractTag -{ - - protected $Id = '2130,0050'; - - protected $Name = 'AnnotationContentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Content Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationDisplayFormatID.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationDisplayFormatID.php deleted file mode 100644 index 852fd4f99..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationDisplayFormatID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationDisplayFormatID extends AbstractTag -{ - - protected $Id = '2010,0030'; - - protected $Name = 'AnnotationDisplayFormatID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Display Format ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationFlag.php deleted file mode 100644 index 1526b9c06..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationFlag extends AbstractTag -{ - - protected $Id = '2000,0065'; - - protected $Name = 'AnnotationFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationGroupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationGroupNumber.php deleted file mode 100644 index f279d77ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationGroupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationGroupNumber extends AbstractTag -{ - - protected $Id = '0040,A180'; - - protected $Name = 'AnnotationGroupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Group Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationPosition.php deleted file mode 100644 index 5a61f910c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationPosition extends AbstractTag -{ - - protected $Id = '2030,0010'; - - protected $Name = 'AnnotationPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationSequence.php deleted file mode 100644 index b6e3b7a7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnnotationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationSequence extends AbstractTag -{ - - protected $Id = '0040,B020'; - - protected $Name = 'AnnotationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AnodeTargetMaterial.php b/lib/PHPExiftool/Driver/Tag/DICOM/AnodeTargetMaterial.php deleted file mode 100644 index f0b774a9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AnodeTargetMaterial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnodeTargetMaterial extends AbstractTag -{ - - protected $Id = '0018,1191'; - - protected $Name = 'AnodeTargetMaterial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anode Target Material'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApexPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApexPosition.php deleted file mode 100644 index a84a1ad11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApexPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApexPosition extends AbstractTag -{ - - protected $Id = '0020,9308'; - - protected $Name = 'ApexPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Apex Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableFrameRange.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableFrameRange.php deleted file mode 100644 index 2cd71c625..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableFrameRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicableFrameRange extends AbstractTag -{ - - protected $Id = '0028,6102'; - - protected $Name = 'ApplicableFrameRange'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Applicable Frame Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableSafetyStandardAgency.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableSafetyStandardAgency.php deleted file mode 100644 index e576982ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableSafetyStandardAgency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicableSafetyStandardAgency extends AbstractTag -{ - - protected $Id = '0018,9174'; - - protected $Name = 'ApplicableSafetyStandardAgency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Applicable Safety Standard Agency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableSafetyStandardDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableSafetyStandardDescr.php deleted file mode 100644 index 6c688555f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicableSafetyStandardDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicableSafetyStandardDescr extends AbstractTag -{ - - protected $Id = '0018,9175'; - - protected $Name = 'ApplicableSafetyStandardDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Applicable Safety Standard Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationManufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationManufacturer.php deleted file mode 100644 index ab5289035..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationManufacturer extends AbstractTag -{ - - protected $Id = '0018,9526'; - - protected $Name = 'ApplicationManufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationMaximumRepaintTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationMaximumRepaintTime.php deleted file mode 100644 index 2022a164f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationMaximumRepaintTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationMaximumRepaintTime extends AbstractTag -{ - - protected $Id = '0072,010E'; - - protected $Name = 'ApplicationMaximumRepaintTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Maximum Repaint Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationName.php deleted file mode 100644 index 64e22c724..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationName extends AbstractTag -{ - - protected $Id = '0018,9524'; - - protected $Name = 'ApplicationName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupCheck.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupCheck.php deleted file mode 100644 index 8e15b1e9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupCheck.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSetupCheck extends AbstractTag -{ - - protected $Id = '3008,0116'; - - protected $Name = 'ApplicationSetupCheck'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Setup Check'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupManufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupManufacturer.php deleted file mode 100644 index 7b017abeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSetupManufacturer extends AbstractTag -{ - - protected $Id = '300A,0238'; - - protected $Name = 'ApplicationSetupManufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Setup Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupName.php deleted file mode 100644 index 2849022be..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSetupName extends AbstractTag -{ - - protected $Id = '300A,0236'; - - protected $Name = 'ApplicationSetupName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Setup Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupNumber.php deleted file mode 100644 index e42484ef9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSetupNumber extends AbstractTag -{ - - protected $Id = '300A,0234'; - - protected $Name = 'ApplicationSetupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Setup Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupSequence.php deleted file mode 100644 index aa1b0dcd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSetupSequence extends AbstractTag -{ - - protected $Id = '300A,0230'; - - protected $Name = 'ApplicationSetupSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Setup Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupType.php deleted file mode 100644 index 85cf37f74..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationSetupType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSetupType extends AbstractTag -{ - - protected $Id = '300A,0232'; - - protected $Name = 'ApplicationSetupType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Setup Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationVersion.php deleted file mode 100644 index 46dcb1e08..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicationVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationVersion extends AbstractTag -{ - - protected $Id = '0018,9525'; - - protected $Name = 'ApplicationVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorDescription.php deleted file mode 100644 index 1f30a7719..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicatorDescription extends AbstractTag -{ - - protected $Id = '300A,010A'; - - protected $Name = 'ApplicatorDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Applicator Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorID.php deleted file mode 100644 index 3883ee907..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicatorID extends AbstractTag -{ - - protected $Id = '300A,0108'; - - protected $Name = 'ApplicatorID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Applicator ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorSequence.php deleted file mode 100644 index bcf7db3d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicatorSequence extends AbstractTag -{ - - protected $Id = '300A,0107'; - - protected $Name = 'ApplicatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Applicator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorType.php deleted file mode 100644 index 87b214a45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApplicatorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicatorType extends AbstractTag -{ - - protected $Id = '300A,0109'; - - protected $Name = 'ApplicatorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Applicator Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatus.php deleted file mode 100644 index 68fdd9324..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApprovalStatus extends AbstractTag -{ - - protected $Id = '300E,0002'; - - protected $Name = 'ApprovalStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Approval Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatusDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatusDateTime.php deleted file mode 100644 index 95313a7ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatusDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApprovalStatusDateTime extends AbstractTag -{ - - protected $Id = '0044,0004'; - - protected $Name = 'ApprovalStatusDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Approval Status Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatusFurtherDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatusFurtherDescription.php deleted file mode 100644 index dad65eed1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ApprovalStatusFurtherDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApprovalStatusFurtherDescription extends AbstractTag -{ - - protected $Id = '0044,0003'; - - protected $Name = 'ApprovalStatusFurtherDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Approval Status Further Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Arbitrary.php b/lib/PHPExiftool/Driver/Tag/DICOM/Arbitrary.php deleted file mode 100644 index 6d12155b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Arbitrary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Arbitrary extends AbstractTag -{ - - protected $Id = '4000,0010'; - - protected $Name = 'Arbitrary'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Arbitrary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ArchiveRequested.php b/lib/PHPExiftool/Driver/Tag/DICOM/ArchiveRequested.php deleted file mode 100644 index 7a5584b02..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ArchiveRequested.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArchiveRequested extends AbstractTag -{ - - protected $Id = '0040,A494'; - - protected $Name = 'ArchiveRequested'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Archive Requested'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AssigningFacilitySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AssigningFacilitySequence.php deleted file mode 100644 index f5fb4ed59..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AssigningFacilitySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssigningFacilitySequence extends AbstractTag -{ - - protected $Id = '0040,0036'; - - protected $Name = 'AssigningFacilitySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Assigning Facility Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttachedContours.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttachedContours.php deleted file mode 100644 index 9f1773cbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttachedContours.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttachedContours extends AbstractTag -{ - - protected $Id = '3006,0049'; - - protected $Name = 'AttachedContours'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attached Contours'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttenuationCorrected.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttenuationCorrected.php deleted file mode 100644 index b6b7a107e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttenuationCorrected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttenuationCorrected extends AbstractTag -{ - - protected $Id = '0018,9759'; - - protected $Name = 'AttenuationCorrected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attenuation Corrected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttenuationCorrectionMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttenuationCorrectionMethod.php deleted file mode 100644 index 75141ab26..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttenuationCorrectionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttenuationCorrectionMethod extends AbstractTag -{ - - protected $Id = '0054,1101'; - - protected $Name = 'AttenuationCorrectionMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attenuation Correction Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeItemSelector.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttributeItemSelector.php deleted file mode 100644 index 12cec32fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeItemSelector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttributeItemSelector extends AbstractTag -{ - - protected $Id = '0074,1054'; - - protected $Name = 'AttributeItemSelector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attribute Item Selector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeModificationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttributeModificationDateTime.php deleted file mode 100644 index e97b0e551..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeModificationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttributeModificationDateTime extends AbstractTag -{ - - protected $Id = '0400,0562'; - - protected $Name = 'AttributeModificationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attribute Modification Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrencePointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrencePointer.php deleted file mode 100644 index 1cae0a215..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrencePointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttributeOccurrencePointer extends AbstractTag -{ - - protected $Id = '0074,1052'; - - protected $Name = 'AttributeOccurrencePointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attribute Occurrence Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrencePrivateCreator.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrencePrivateCreator.php deleted file mode 100644 index 22c2828c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrencePrivateCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttributeOccurrencePrivateCreator extends AbstractTag -{ - - protected $Id = '0074,1056'; - - protected $Name = 'AttributeOccurrencePrivateCreator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attribute Occurrence Private Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrenceSequence.php deleted file mode 100644 index 22c17348b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AttributeOccurrenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttributeOccurrenceSequence extends AbstractTag -{ - - protected $Id = '0074,1050'; - - protected $Name = 'AttributeOccurrenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attribute Occurrence Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AudioComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/AudioComments.php deleted file mode 100644 index 330dddc67..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AudioComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioComments extends AbstractTag -{ - - protected $Id = '50xx,200E'; - - protected $Name = 'AudioComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AudioSampleData.php b/lib/PHPExiftool/Driver/Tag/DICOM/AudioSampleData.php deleted file mode 100644 index c2d715c5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AudioSampleData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleData extends AbstractTag -{ - - protected $Id = '50xx,200C'; - - protected $Name = 'AudioSampleData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AudioSampleFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/AudioSampleFormat.php deleted file mode 100644 index f6086d6c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AudioSampleFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleFormat extends AbstractTag -{ - - protected $Id = '50xx,2002'; - - protected $Name = 'AudioSampleFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AudioType.php b/lib/PHPExiftool/Driver/Tag/DICOM/AudioType.php deleted file mode 100644 index e229cc4f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AudioType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioType extends AbstractTag -{ - - protected $Id = '50xx,2000'; - - protected $Name = 'AudioType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AuthorObserverSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/AuthorObserverSequence.php deleted file mode 100644 index c2d9e30d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AuthorObserverSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthorObserverSequence extends AbstractTag -{ - - protected $Id = '0040,A078'; - - protected $Name = 'AuthorObserverSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author Observer Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AuthorizationEquipmentCertNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/AuthorizationEquipmentCertNumber.php deleted file mode 100644 index 23b265e37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AuthorizationEquipmentCertNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthorizationEquipmentCertNumber extends AbstractTag -{ - - protected $Id = '0100,0426'; - - protected $Name = 'AuthorizationEquipmentCertNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Authorization Equipment Cert Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelAlpha.php b/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelAlpha.php deleted file mode 100644 index c0edd3377..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelAlpha.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoWindowLevelAlpha extends AbstractTag -{ - - protected $Id = '0021,1081'; - - protected $Name = 'AutoWindowLevelAlpha'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Window Level Alpha'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelBeta.php b/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelBeta.php deleted file mode 100644 index c8e96d358..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelBeta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoWindowLevelBeta extends AbstractTag -{ - - protected $Id = '0021,1082'; - - protected $Name = 'AutoWindowLevelBeta'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Window Level Beta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelWindow.php b/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelWindow.php deleted file mode 100644 index 2472d07dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AutoWindowLevelWindow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoWindowLevelWindow extends AbstractTag -{ - - protected $Id = '0021,1083'; - - protected $Name = 'AutoWindowLevelWindow'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Window Level Window'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AveragePulseWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/AveragePulseWidth.php deleted file mode 100644 index 0ae6dd413..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AveragePulseWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AveragePulseWidth extends AbstractTag -{ - - protected $Id = '0018,1154'; - - protected $Name = 'AveragePulseWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Average Pulse Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AvgOfLeftRefChansOverViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/AvgOfLeftRefChansOverViews.php deleted file mode 100644 index 3a3be3686..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AvgOfLeftRefChansOverViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgOfLeftRefChansOverViews extends AbstractTag -{ - - protected $Id = '0019,1073'; - - protected $Name = 'AvgOfLeftRefChansOverViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Avg Of Left Ref Chans Over Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AvgOfRightRefChansOverViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/AvgOfRightRefChansOverViews.php deleted file mode 100644 index 7dedde34b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AvgOfRightRefChansOverViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgOfRightRefChansOverViews extends AbstractTag -{ - - protected $Id = '0019,1075'; - - protected $Name = 'AvgOfRightRefChansOverViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Avg Of Right Ref Chans Over Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AvgOverrangesAllViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/AvgOverrangesAllViews.php deleted file mode 100644 index 62bb8491d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AvgOverrangesAllViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgOverrangesAllViews extends AbstractTag -{ - - protected $Id = '0043,1020'; - - protected $Name = 'AvgOverrangesAllViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Avg Overranges All Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AxialAcceptance.php b/lib/PHPExiftool/Driver/Tag/DICOM/AxialAcceptance.php deleted file mode 100644 index 39672430b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AxialAcceptance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxialAcceptance extends AbstractTag -{ - - protected $Id = '0054,1200'; - - protected $Name = 'AxialAcceptance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axial Acceptance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AxialDetectorDimension.php b/lib/PHPExiftool/Driver/Tag/DICOM/AxialDetectorDimension.php deleted file mode 100644 index 719444925..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AxialDetectorDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxialDetectorDimension extends AbstractTag -{ - - protected $Id = '0018,9727'; - - protected $Name = 'AxialDetectorDimension'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axial Detector Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AxialLengthOfTheEye.php b/lib/PHPExiftool/Driver/Tag/DICOM/AxialLengthOfTheEye.php deleted file mode 100644 index dad442621..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AxialLengthOfTheEye.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxialLengthOfTheEye extends AbstractTag -{ - - protected $Id = '0022,0030'; - - protected $Name = 'AxialLengthOfTheEye'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axial Length Of The Eye'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AxialMash.php b/lib/PHPExiftool/Driver/Tag/DICOM/AxialMash.php deleted file mode 100644 index 5a068948b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AxialMash.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxialMash extends AbstractTag -{ - - protected $Id = '0054,1201'; - - protected $Name = 'AxialMash'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axial Mash'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AxisLabels.php b/lib/PHPExiftool/Driver/Tag/DICOM/AxisLabels.php deleted file mode 100644 index caa1f3866..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AxisLabels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxisLabels extends AbstractTag -{ - - protected $Id = '50xx,0040'; - - protected $Name = 'AxisLabels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axis Labels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AxisOfRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/AxisOfRotation.php deleted file mode 100644 index 891f29626..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AxisOfRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxisOfRotation extends AbstractTag -{ - - protected $Id = '0066,001B'; - - protected $Name = 'AxisOfRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axis Of Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/AxisUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/AxisUnits.php deleted file mode 100644 index 03076edbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/AxisUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxisUnits extends AbstractTag -{ - - protected $Id = '50xx,0030'; - - protected $Name = 'AxisUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axis Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BBHCoefficients.php b/lib/PHPExiftool/Driver/Tag/DICOM/BBHCoefficients.php deleted file mode 100644 index f6d42fdfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BBHCoefficients.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BBHCoefficients extends AbstractTag -{ - - protected $Id = '0043,1018'; - - protected $Name = 'BBHCoefficients'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'BBH Coefficients'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BackProjectorCoefficient.php b/lib/PHPExiftool/Driver/Tag/DICOM/BackProjectorCoefficient.php deleted file mode 100644 index 10d74e4cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BackProjectorCoefficient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackProjectorCoefficient extends AbstractTag -{ - - protected $Id = '0019,10DB'; - - protected $Name = 'BackProjectorCoefficient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Back Projector Coefficient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/DICOM/BackgroundColor.php deleted file mode 100644 index 1a075517e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BackgroundColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = '0046,0092'; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BarcodeSymbology.php b/lib/PHPExiftool/Driver/Tag/DICOM/BarcodeSymbology.php deleted file mode 100644 index 68a5f0583..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BarcodeSymbology.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BarcodeSymbology extends AbstractTag -{ - - protected $Id = '2200,0006'; - - protected $Name = 'BarcodeSymbology'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Barcode Symbology'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BarcodeValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/BarcodeValue.php deleted file mode 100644 index 04b87ae5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BarcodeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BarcodeValue extends AbstractTag -{ - - protected $Id = '2200,0005'; - - protected $Name = 'BarcodeValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Barcode Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BaselineCorrection.php b/lib/PHPExiftool/Driver/Tag/DICOM/BaselineCorrection.php deleted file mode 100644 index 8344c18ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BaselineCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaselineCorrection extends AbstractTag -{ - - protected $Id = '0018,9067'; - - protected $Name = 'BaselineCorrection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Baseline Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BasicColorImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BasicColorImageSequence.php deleted file mode 100644 index 7ad56ee40..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BasicColorImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BasicColorImageSequence extends AbstractTag -{ - - protected $Id = '2020,0111'; - - protected $Name = 'BasicColorImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Basic Color Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BasicGrayscaleImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BasicGrayscaleImageSequence.php deleted file mode 100644 index 04bb909e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BasicGrayscaleImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BasicGrayscaleImageSequence extends AbstractTag -{ - - protected $Id = '2020,0110'; - - protected $Name = 'BasicGrayscaleImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Basic Grayscale Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamAngle.php deleted file mode 100644 index 859a51d9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamAngle extends AbstractTag -{ - - protected $Id = '0018,9449'; - - protected $Name = 'BeamAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamCurrentModulationID.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamCurrentModulationID.php deleted file mode 100644 index d86808c1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamCurrentModulationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamCurrentModulationID extends AbstractTag -{ - - protected $Id = '300A,034C'; - - protected $Name = 'BeamCurrentModulationID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Current Modulation ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamDescription.php deleted file mode 100644 index 9f41f547c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamDescription extends AbstractTag -{ - - protected $Id = '300A,00C3'; - - protected $Name = 'BeamDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamDose.php deleted file mode 100644 index 28c246f41..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamDose extends AbstractTag -{ - - protected $Id = '300A,0084'; - - protected $Name = 'BeamDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointDepth.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointDepth.php deleted file mode 100644 index b44d93afc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamDosePointDepth extends AbstractTag -{ - - protected $Id = '300A,0088'; - - protected $Name = 'BeamDosePointDepth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Dose Point Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointEquivalentDepth.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointEquivalentDepth.php deleted file mode 100644 index 5b59d2467..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointEquivalentDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamDosePointEquivalentDepth extends AbstractTag -{ - - protected $Id = '300A,0089'; - - protected $Name = 'BeamDosePointEquivalentDepth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Dose Point Equivalent Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointSSD.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointSSD.php deleted file mode 100644 index 67df65547..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDosePointSSD.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamDosePointSSD extends AbstractTag -{ - - protected $Id = '300A,008A'; - - protected $Name = 'BeamDosePointSSD'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Dose Point SSD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDoseSpecificationPoint.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamDoseSpecificationPoint.php deleted file mode 100644 index 7c403199a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamDoseSpecificationPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamDoseSpecificationPoint extends AbstractTag -{ - - protected $Id = '300A,0082'; - - protected $Name = 'BeamDoseSpecificationPoint'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Dose Specification Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceAngle.php deleted file mode 100644 index 66123c2f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDeviceAngle extends AbstractTag -{ - - protected $Id = '300A,0120'; - - protected $Name = 'BeamLimitingDeviceAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceAngleTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceAngleTolerance.php deleted file mode 100644 index 369b0de3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceAngleTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDeviceAngleTolerance extends AbstractTag -{ - - protected $Id = '300A,0046'; - - protected $Name = 'BeamLimitingDeviceAngleTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Angle Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceLeafPairsSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceLeafPairsSeq.php deleted file mode 100644 index edc05d383..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceLeafPairsSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDeviceLeafPairsSeq extends AbstractTag -{ - - protected $Id = '3008,00A0'; - - protected $Name = 'BeamLimitingDeviceLeafPairsSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Leaf Pairs Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDevicePositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDevicePositionSequence.php deleted file mode 100644 index 9b73e04b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDevicePositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDevicePositionSequence extends AbstractTag -{ - - protected $Id = '300A,011A'; - - protected $Name = 'BeamLimitingDevicePositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDevicePositionTol.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDevicePositionTol.php deleted file mode 100644 index 7a88d457a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDevicePositionTol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDevicePositionTol extends AbstractTag -{ - - protected $Id = '300A,004A'; - - protected $Name = 'BeamLimitingDevicePositionTol'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Position Tol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceRotateDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceRotateDirection.php deleted file mode 100644 index b1e4a6802..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceRotateDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDeviceRotateDirection extends AbstractTag -{ - - protected $Id = '300A,0121'; - - protected $Name = 'BeamLimitingDeviceRotateDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Rotate Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceSequence.php deleted file mode 100644 index 76f38feb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDeviceSequence extends AbstractTag -{ - - protected $Id = '300A,00B6'; - - protected $Name = 'BeamLimitingDeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceToleranceSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceToleranceSeq.php deleted file mode 100644 index cf0d36818..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamLimitingDeviceToleranceSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamLimitingDeviceToleranceSeq extends AbstractTag -{ - - protected $Id = '300A,0048'; - - protected $Name = 'BeamLimitingDeviceToleranceSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Limiting Device Tolerance Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamMeterset.php deleted file mode 100644 index 20eccb7dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamMeterset extends AbstractTag -{ - - protected $Id = '300A,0086'; - - protected $Name = 'BeamMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamName.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamName.php deleted file mode 100644 index 29f43b525..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamName extends AbstractTag -{ - - protected $Id = '300A,00C2'; - - protected $Name = 'BeamName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamNumber.php deleted file mode 100644 index 50f41bf17..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamNumber extends AbstractTag -{ - - protected $Id = '300A,00C0'; - - protected $Name = 'BeamNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamOrderIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamOrderIndex.php deleted file mode 100644 index 32367f985..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamOrderIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamOrderIndex extends AbstractTag -{ - - protected $Id = '0074,1024'; - - protected $Name = 'BeamOrderIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Order Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamSequence.php deleted file mode 100644 index 902cf0697..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamSequence extends AbstractTag -{ - - protected $Id = '300A,00B0'; - - protected $Name = 'BeamSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamStopperPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamStopperPosition.php deleted file mode 100644 index 3b62b8297..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamStopperPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamStopperPosition extends AbstractTag -{ - - protected $Id = '3008,0230'; - - protected $Name = 'BeamStopperPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Stopper Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamTaskSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamTaskSequence.php deleted file mode 100644 index ce21f2afb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamTaskSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamTaskSequence extends AbstractTag -{ - - protected $Id = '0074,1020'; - - protected $Name = 'BeamTaskSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Task Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamTaskType.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamTaskType.php deleted file mode 100644 index 036b98525..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamTaskType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamTaskType extends AbstractTag -{ - - protected $Id = '0074,1022'; - - protected $Name = 'BeamTaskType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Task Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeamType.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeamType.php deleted file mode 100644 index 780adb63f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeamType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeamType extends AbstractTag -{ - - protected $Id = '300A,00C4'; - - protected $Name = 'BeamType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beam Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BeatRejectionFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/BeatRejectionFlag.php deleted file mode 100644 index d447f1a0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BeatRejectionFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatRejectionFlag extends AbstractTag -{ - - protected $Id = '0018,1080'; - - protected $Name = 'BeatRejectionFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beat Rejection Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BiPlaneAcquisitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BiPlaneAcquisitionSequence.php deleted file mode 100644 index d21ef1bed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BiPlaneAcquisitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BiPlaneAcquisitionSequence extends AbstractTag -{ - - protected $Id = '0028,5000'; - - protected $Name = 'BiPlaneAcquisitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bi Plane Acquisition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BillingItemSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BillingItemSequence.php deleted file mode 100644 index e780fa13c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BillingItemSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BillingItemSequence extends AbstractTag -{ - - protected $Id = '0040,0296'; - - protected $Name = 'BillingItemSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Billing Item Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BillingProcedureStepSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BillingProcedureStepSequence.php deleted file mode 100644 index 7e84ef750..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BillingProcedureStepSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BillingProcedureStepSequence extends AbstractTag -{ - - protected $Id = '0040,0320'; - - protected $Name = 'BillingProcedureStepSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Billing Procedure Step Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BillingSuppliesAndDevicesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BillingSuppliesAndDevicesSequence.php deleted file mode 100644 index dd37d669d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BillingSuppliesAndDevicesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BillingSuppliesAndDevicesSequence extends AbstractTag -{ - - protected $Id = '0040,0324'; - - protected $Name = 'BillingSuppliesAndDevicesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Billing Supplies And Devices Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyPosition.php deleted file mode 100644 index 3774e0f7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BiopsyPosition extends AbstractTag -{ - - protected $Id = '0021,1091'; - - protected $Name = 'BiopsyPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Biopsy Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyRefLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyRefLocation.php deleted file mode 100644 index 94fd9eb42..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyRefLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BiopsyRefLocation extends AbstractTag -{ - - protected $Id = '0021,1093'; - - protected $Name = 'BiopsyRefLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Biopsy Ref Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyTLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyTLocation.php deleted file mode 100644 index a37723886..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BiopsyTLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BiopsyTLocation extends AbstractTag -{ - - protected $Id = '0021,1092'; - - protected $Name = 'BiopsyTLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Biopsy T Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BitmapDefiningCVs.php b/lib/PHPExiftool/Driver/Tag/DICOM/BitmapDefiningCVs.php deleted file mode 100644 index 409559c16..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BitmapDefiningCVs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitmapDefiningCVs extends AbstractTag -{ - - protected $Id = '0019,1097'; - - protected $Name = 'BitmapDefiningCVs'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bitmap Defining C Vs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BitmapOfPrescanOptions.php b/lib/PHPExiftool/Driver/Tag/DICOM/BitmapOfPrescanOptions.php deleted file mode 100644 index 1d00501c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BitmapOfPrescanOptions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitmapOfPrescanOptions extends AbstractTag -{ - - protected $Id = '0043,1001'; - - protected $Name = 'BitmapOfPrescanOptions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bitmap Of Prescan Options'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BitsAllocated.php b/lib/PHPExiftool/Driver/Tag/DICOM/BitsAllocated.php deleted file mode 100644 index 44d10d78f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BitsAllocated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsAllocated extends AbstractTag -{ - - protected $Id = '0028,0100'; - - protected $Name = 'BitsAllocated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Allocated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BitsForCodeWord.php b/lib/PHPExiftool/Driver/Tag/DICOM/BitsForCodeWord.php deleted file mode 100644 index a283927d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BitsForCodeWord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsForCodeWord extends AbstractTag -{ - - protected $Id = '0028,08x4'; - - protected $Name = 'BitsForCodeWord'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits For Code Word'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BitsGrouped.php b/lib/PHPExiftool/Driver/Tag/DICOM/BitsGrouped.php deleted file mode 100644 index e90f2a0f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BitsGrouped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsGrouped extends AbstractTag -{ - - protected $Id = '0028,0069'; - - protected $Name = 'BitsGrouped'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Grouped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BitsStored.php b/lib/PHPExiftool/Driver/Tag/DICOM/BitsStored.php deleted file mode 100644 index 9e01e9646..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BitsStored.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsStored extends AbstractTag -{ - - protected $Id = '0028,0101'; - - protected $Name = 'BitsStored'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Stored'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLUT1Sequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLUT1Sequence.php deleted file mode 100644 index e43d6877d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLUT1Sequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlendingLUT1Sequence extends AbstractTag -{ - - protected $Id = '0028,1404'; - - protected $Name = 'BlendingLUT1Sequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blending LUT1 Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLUT2Sequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLUT2Sequence.php deleted file mode 100644 index f8d1be7e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLUT2Sequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlendingLUT2Sequence extends AbstractTag -{ - - protected $Id = '0028,140C'; - - protected $Name = 'BlendingLUT2Sequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blending LUT2 Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLookupTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLookupTableData.php deleted file mode 100644 index c85efe93d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingLookupTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlendingLookupTableData extends AbstractTag -{ - - protected $Id = '0028,1408'; - - protected $Name = 'BlendingLookupTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blending Lookup Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingOperationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlendingOperationType.php deleted file mode 100644 index be3784c82..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingOperationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlendingOperationType extends AbstractTag -{ - - protected $Id = '0072,0500'; - - protected $Name = 'BlendingOperationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blending Operation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlendingPosition.php deleted file mode 100644 index f87b8f934..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlendingPosition extends AbstractTag -{ - - protected $Id = '0070,0405'; - - protected $Name = 'BlendingPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blending Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlendingSequence.php deleted file mode 100644 index 6ffcf57b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlendingSequence extends AbstractTag -{ - - protected $Id = '0070,0402'; - - protected $Name = 'BlendingSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blending Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingWeightConstant.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlendingWeightConstant.php deleted file mode 100644 index 8a9b8082b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlendingWeightConstant.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlendingWeightConstant extends AbstractTag -{ - - protected $Id = '0028,1406'; - - protected $Name = 'BlendingWeightConstant'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blending Weight Constant'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockColumns.php deleted file mode 100644 index edce55905..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockColumns extends AbstractTag -{ - - protected $Id = '0028,0092'; - - protected $Name = 'BlockColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockData.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockData.php deleted file mode 100644 index 03b3e46c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockData extends AbstractTag -{ - - protected $Id = '300A,0106'; - - protected $Name = 'BlockData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockDivergence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockDivergence.php deleted file mode 100644 index 50f6e936a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockDivergence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockDivergence extends AbstractTag -{ - - protected $Id = '300A,00FA'; - - protected $Name = 'BlockDivergence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Divergence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockMountingPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockMountingPosition.php deleted file mode 100644 index 1d35fe324..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockMountingPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockMountingPosition extends AbstractTag -{ - - protected $Id = '300A,00FB'; - - protected $Name = 'BlockMountingPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Mounting Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockName.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockName.php deleted file mode 100644 index 903ab9f27..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockName extends AbstractTag -{ - - protected $Id = '300A,00FE'; - - protected $Name = 'BlockName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockNumber.php deleted file mode 100644 index b64860e41..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockNumber extends AbstractTag -{ - - protected $Id = '300A,00FC'; - - protected $Name = 'BlockNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockNumberOfPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockNumberOfPoints.php deleted file mode 100644 index 6af51cedc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockNumberOfPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockNumberOfPoints extends AbstractTag -{ - - protected $Id = '300A,0104'; - - protected $Name = 'BlockNumberOfPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Number Of Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockRows.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockRows.php deleted file mode 100644 index f548b6bbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockRows extends AbstractTag -{ - - protected $Id = '0028,0091'; - - protected $Name = 'BlockRows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockSequence.php deleted file mode 100644 index 26868f555..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockSequence extends AbstractTag -{ - - protected $Id = '300A,00F4'; - - protected $Name = 'BlockSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockThickness.php deleted file mode 100644 index 42120c4d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockThickness extends AbstractTag -{ - - protected $Id = '300A,0100'; - - protected $Name = 'BlockThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockTransmission.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockTransmission.php deleted file mode 100644 index c1170ee03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockTransmission.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockTransmission extends AbstractTag -{ - - protected $Id = '300A,0102'; - - protected $Name = 'BlockTransmission'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Transmission'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockTrayID.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockTrayID.php deleted file mode 100644 index 111917c4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockTrayID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockTrayID extends AbstractTag -{ - - protected $Id = '300A,00F5'; - - protected $Name = 'BlockTrayID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Tray ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockType.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockType.php deleted file mode 100644 index ff40f98cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockType extends AbstractTag -{ - - protected $Id = '300A,00F8'; - - protected $Name = 'BlockType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BlockedPixels.php b/lib/PHPExiftool/Driver/Tag/DICOM/BlockedPixels.php deleted file mode 100644 index 0686eb16e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BlockedPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockedPixels extends AbstractTag -{ - - protected $Id = '0028,0090'; - - protected $Name = 'BlockedPixels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blocked Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BloodSignalNulling.php b/lib/PHPExiftool/Driver/Tag/DICOM/BloodSignalNulling.php deleted file mode 100644 index 372c22072..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BloodSignalNulling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BloodSignalNulling extends AbstractTag -{ - - protected $Id = '0018,9022'; - - protected $Name = 'BloodSignalNulling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blood Signal Nulling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BluePaletteColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/BluePaletteColorTableData.php deleted file mode 100644 index f40862c77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BluePaletteColorTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BluePaletteColorTableData extends AbstractTag -{ - - protected $Id = '0028,1203'; - - protected $Name = 'BluePaletteColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blue Palette Color Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BluePaletteColorTableDescriptor.php b/lib/PHPExiftool/Driver/Tag/DICOM/BluePaletteColorTableDescriptor.php deleted file mode 100644 index 9377f7cff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BluePaletteColorTableDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BluePaletteColorTableDescriptor extends AbstractTag -{ - - protected $Id = '0028,1103'; - - protected $Name = 'BluePaletteColorTableDescriptor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blue Palette Color Table Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BodyPartExamined.php b/lib/PHPExiftool/Driver/Tag/DICOM/BodyPartExamined.php deleted file mode 100644 index 627804722..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BodyPartExamined.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyPartExamined extends AbstractTag -{ - - protected $Id = '0018,0015'; - - protected $Name = 'BodyPartExamined'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Body Part Examined'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BodyPartThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/BodyPartThickness.php deleted file mode 100644 index 926c807f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BodyPartThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyPartThickness extends AbstractTag -{ - - protected $Id = '0018,11A0'; - - protected $Name = 'BodyPartThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Body Part Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BolusDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/BolusDescription.php deleted file mode 100644 index e674f9125..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BolusDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BolusDescription extends AbstractTag -{ - - protected $Id = '300A,00DD'; - - protected $Name = 'BolusDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bolus Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BolusID.php b/lib/PHPExiftool/Driver/Tag/DICOM/BolusID.php deleted file mode 100644 index 59f1ef0af..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BolusID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BolusID extends AbstractTag -{ - - protected $Id = '300A,00DC'; - - protected $Name = 'BolusID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bolus ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BoneThermalIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/BoneThermalIndex.php deleted file mode 100644 index e125656eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BoneThermalIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoneThermalIndex extends AbstractTag -{ - - protected $Id = '0018,5024'; - - protected $Name = 'BoneThermalIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bone Thermal Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BorderDensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/BorderDensity.php deleted file mode 100644 index 93bdfd989..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BorderDensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BorderDensity extends AbstractTag -{ - - protected $Id = '2010,0100'; - - protected $Name = 'BorderDensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Border Density'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxAnnotationUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxAnnotationUnits.php deleted file mode 100644 index 00d54dac7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxAnnotationUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoundingBoxAnnotationUnits extends AbstractTag -{ - - protected $Id = '0070,0003'; - - protected $Name = 'BoundingBoxAnnotationUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bounding Box Annotation Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxBottomRightHandCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxBottomRightHandCorner.php deleted file mode 100644 index 481ff3ab4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxBottomRightHandCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoundingBoxBottomRightHandCorner extends AbstractTag -{ - - protected $Id = '0070,0011'; - - protected $Name = 'BoundingBoxBottomRightHandCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bounding Box Bottom Right Hand Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxTextHorizJustification.php b/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxTextHorizJustification.php deleted file mode 100644 index c08145571..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxTextHorizJustification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoundingBoxTextHorizJustification extends AbstractTag -{ - - protected $Id = '0070,0012'; - - protected $Name = 'BoundingBoxTextHorizJustification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bounding Box Text Horiz Justification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxTopLeftHandCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxTopLeftHandCorner.php deleted file mode 100644 index ff98af239..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BoundingBoxTopLeftHandCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoundingBoxTopLeftHandCorner extends AbstractTag -{ - - protected $Id = '0070,0010'; - - protected $Name = 'BoundingBoxTopLeftHandCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bounding Box Top Left Hand Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDevNomTransmission.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDevNomTransmission.php deleted file mode 100644 index c9f4b0c34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDevNomTransmission.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAccessoryDevNomTransmission extends AbstractTag -{ - - protected $Id = '300A,026C'; - - protected $Name = 'BrachyAccessoryDevNomTransmission'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Accessory Dev Nom Transmission'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceID.php deleted file mode 100644 index 8bc6e18bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAccessoryDeviceID extends AbstractTag -{ - - protected $Id = '300A,0263'; - - protected $Name = 'BrachyAccessoryDeviceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Accessory Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceName.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceName.php deleted file mode 100644 index b97d070ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAccessoryDeviceName extends AbstractTag -{ - - protected $Id = '300A,0266'; - - protected $Name = 'BrachyAccessoryDeviceName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Accessory Device Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceNomThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceNomThickness.php deleted file mode 100644 index 922c32fe2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceNomThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAccessoryDeviceNomThickness extends AbstractTag -{ - - protected $Id = '300A,026A'; - - protected $Name = 'BrachyAccessoryDeviceNomThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Accessory Device Nom Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceNumber.php deleted file mode 100644 index 61b13bb61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAccessoryDeviceNumber extends AbstractTag -{ - - protected $Id = '300A,0262'; - - protected $Name = 'BrachyAccessoryDeviceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Accessory Device Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceSequence.php deleted file mode 100644 index e34269739..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAccessoryDeviceSequence extends AbstractTag -{ - - protected $Id = '300A,0260'; - - protected $Name = 'BrachyAccessoryDeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Accessory Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceType.php deleted file mode 100644 index 740264690..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAccessoryDeviceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAccessoryDeviceType extends AbstractTag -{ - - protected $Id = '300A,0264'; - - protected $Name = 'BrachyAccessoryDeviceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Accessory Device Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAppSetupDoseSpecPoint.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAppSetupDoseSpecPoint.php deleted file mode 100644 index d6e54b88d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyAppSetupDoseSpecPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyAppSetupDoseSpecPoint extends AbstractTag -{ - - protected $Id = '300A,00A2'; - - protected $Name = 'BrachyAppSetupDoseSpecPoint'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy App Setup Dose Spec Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyApplicationSetupDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyApplicationSetupDose.php deleted file mode 100644 index 635b9651d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyApplicationSetupDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyApplicationSetupDose extends AbstractTag -{ - - protected $Id = '300A,00A4'; - - protected $Name = 'BrachyApplicationSetupDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Application Setup Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyControlPointDeliveredSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyControlPointDeliveredSeq.php deleted file mode 100644 index adaa42ffd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyControlPointDeliveredSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyControlPointDeliveredSeq extends AbstractTag -{ - - protected $Id = '3008,0160'; - - protected $Name = 'BrachyControlPointDeliveredSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Control Point Delivered Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyControlPointSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyControlPointSequence.php deleted file mode 100644 index ce0c3c62e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyControlPointSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyControlPointSequence extends AbstractTag -{ - - protected $Id = '300A,02D0'; - - protected $Name = 'BrachyControlPointSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Control Point Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyReferencedDoseReferenceSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyReferencedDoseReferenceSeq.php deleted file mode 100644 index a74e042ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyReferencedDoseReferenceSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyReferencedDoseReferenceSeq extends AbstractTag -{ - - protected $Id = '300C,0055'; - - protected $Name = 'BrachyReferencedDoseReferenceSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Referenced Dose Reference Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyTreatmentTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyTreatmentTechnique.php deleted file mode 100644 index 883f8cd5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyTreatmentTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyTreatmentTechnique extends AbstractTag -{ - - protected $Id = '300A,0200'; - - protected $Name = 'BrachyTreatmentTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Treatment Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyTreatmentType.php b/lib/PHPExiftool/Driver/Tag/DICOM/BrachyTreatmentType.php deleted file mode 100644 index 5af392543..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BrachyTreatmentType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrachyTreatmentType extends AbstractTag -{ - - protected $Id = '300A,0202'; - - protected $Name = 'BrachyTreatmentType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brachy Treatment Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BranchOfService.php b/lib/PHPExiftool/Driver/Tag/DICOM/BranchOfService.php deleted file mode 100644 index 0ab3c7127..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BranchOfService.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BranchOfService extends AbstractTag -{ - - protected $Id = '0010,1081'; - - protected $Name = 'BranchOfService'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Branch Of Service'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BreastImplantPresent.php b/lib/PHPExiftool/Driver/Tag/DICOM/BreastImplantPresent.php deleted file mode 100644 index 6000d94d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BreastImplantPresent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BreastImplantPresent extends AbstractTag -{ - - protected $Id = '0028,1300'; - - protected $Name = 'BreastImplantPresent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Breast Implant Present'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistrationNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistrationNumber.php deleted file mode 100644 index e5a803526..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistrationNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BreedRegistrationNumber extends AbstractTag -{ - - protected $Id = '0010,2295'; - - protected $Name = 'BreedRegistrationNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Breed Registration Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistrationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistrationSequence.php deleted file mode 100644 index 958a25c0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistrationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BreedRegistrationSequence extends AbstractTag -{ - - protected $Id = '0010,2294'; - - protected $Name = 'BreedRegistrationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Breed Registration Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistryCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistryCodeSequence.php deleted file mode 100644 index 2ca00d2aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BreedRegistryCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BreedRegistryCodeSequence extends AbstractTag -{ - - protected $Id = '0010,2296'; - - protected $Name = 'BreedRegistryCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Breed Registry Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionCompensationTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionCompensationTechnique.php deleted file mode 100644 index 82aaec4f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionCompensationTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BulkMotionCompensationTechnique extends AbstractTag -{ - - protected $Id = '0018,9172'; - - protected $Name = 'BulkMotionCompensationTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bulk Motion Compensation Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionSignalSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionSignalSource.php deleted file mode 100644 index 86daf3ac2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionSignalSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BulkMotionSignalSource extends AbstractTag -{ - - protected $Id = '0018,9173'; - - protected $Name = 'BulkMotionSignalSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bulk Motion Signal Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionStatus.php deleted file mode 100644 index 479209406..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BulkMotionStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BulkMotionStatus extends AbstractTag -{ - - protected $Id = '0018,9166'; - - protected $Name = 'BulkMotionStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bulk Motion Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/BurnedInAnnotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/BurnedInAnnotation.php deleted file mode 100644 index ed64d8e0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/BurnedInAnnotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BurnedInAnnotation extends AbstractTag -{ - - protected $Id = '0028,0301'; - - protected $Name = 'BurnedInAnnotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Burned In Annotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CArmPositionerTabletopRelationship.php b/lib/PHPExiftool/Driver/Tag/DICOM/CArmPositionerTabletopRelationship.php deleted file mode 100644 index ba76b07cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CArmPositionerTabletopRelationship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CArmPositionerTabletopRelationship extends AbstractTag -{ - - protected $Id = '0018,9474'; - - protected $Name = 'CArmPositionerTabletopRelationship'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'C Arm Positioner Tabletop Relationship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTAcquisitionDetailsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTAcquisitionDetailsSequence.php deleted file mode 100644 index 75084e379..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTAcquisitionDetailsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTAcquisitionDetailsSequence extends AbstractTag -{ - - protected $Id = '0018,9304'; - - protected $Name = 'CTAcquisitionDetailsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Acquisition Details Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTAcquisitionTypeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTAcquisitionTypeSequence.php deleted file mode 100644 index ef8097123..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTAcquisitionTypeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTAcquisitionTypeSequence extends AbstractTag -{ - - protected $Id = '0018,9301'; - - protected $Name = 'CTAcquisitionTypeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Acquisition Type Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTAdditionalXRaySourceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTAdditionalXRaySourceSequence.php deleted file mode 100644 index df56d09f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTAdditionalXRaySourceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTAdditionalXRaySourceSequence extends AbstractTag -{ - - protected $Id = '0018,9360'; - - protected $Name = 'CTAdditionalXRaySourceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Additional X Ray Source Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTBoneNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTBoneNumber.php deleted file mode 100644 index 31cfca591..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTBoneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTBoneNumber extends AbstractTag -{ - - protected $Id = '0019,1058'; - - protected $Name = 'CTBoneNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Bone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTDIPhantomTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTDIPhantomTypeCodeSequence.php deleted file mode 100644 index c20319b82..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTDIPhantomTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTDIPhantomTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0018,9346'; - - protected $Name = 'CTDIPhantomTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CTDI Phantom Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTDIvol.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTDIvol.php deleted file mode 100644 index 0496c5f5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTDIvol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTDIvol extends AbstractTag -{ - - protected $Id = '0018,9345'; - - protected $Name = 'CTDIvol'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CTD Ivol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTExposureSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTExposureSequence.php deleted file mode 100644 index e7a5d6494..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTExposureSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTExposureSequence extends AbstractTag -{ - - protected $Id = '0018,9321'; - - protected $Name = 'CTExposureSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Exposure Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTGeometrySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTGeometrySequence.php deleted file mode 100644 index 6240cfdb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTGeometrySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTGeometrySequence extends AbstractTag -{ - - protected $Id = '0018,9312'; - - protected $Name = 'CTGeometrySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Geometry Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTImageFrameTypeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTImageFrameTypeSequence.php deleted file mode 100644 index 79f3c59fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTImageFrameTypeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTImageFrameTypeSequence extends AbstractTag -{ - - protected $Id = '0018,9329'; - - protected $Name = 'CTImageFrameTypeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Image Frame Type Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTPositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTPositionSequence.php deleted file mode 100644 index e4cf47cee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTPositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTPositionSequence extends AbstractTag -{ - - protected $Id = '0018,9326'; - - protected $Name = 'CTPositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTReconstructionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTReconstructionSequence.php deleted file mode 100644 index c33054aa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTReconstructionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTReconstructionSequence extends AbstractTag -{ - - protected $Id = '0018,9314'; - - protected $Name = 'CTReconstructionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Reconstruction Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTTableDynamicsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTTableDynamicsSequence.php deleted file mode 100644 index 4c79ba022..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTTableDynamicsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTTableDynamicsSequence extends AbstractTag -{ - - protected $Id = '0018,9308'; - - protected $Name = 'CTTableDynamicsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Table Dynamics Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTWaterNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTWaterNumber.php deleted file mode 100644 index ae3b91c05..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTWaterNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTWaterNumber extends AbstractTag -{ - - protected $Id = '0019,1057'; - - protected $Name = 'CTWaterNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CT Water Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CTXRayDetailsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CTXRayDetailsSequence.php deleted file mode 100644 index 894b960d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CTXRayDetailsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CTXRayDetailsSequence extends AbstractTag -{ - - protected $Id = '0018,9325'; - - protected $Name = 'CTXRayDetailsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CTX Ray Details Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalciumScoringMassFactorDevice.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalciumScoringMassFactorDevice.php deleted file mode 100644 index 9ebda6ed4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalciumScoringMassFactorDevice.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalciumScoringMassFactorDevice extends AbstractTag -{ - - protected $Id = '0018,9352'; - - protected $Name = 'CalciumScoringMassFactorDevice'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calcium Scoring Mass Factor Device'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalciumScoringMassFactorPatient.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalciumScoringMassFactorPatient.php deleted file mode 100644 index 087b8439c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalciumScoringMassFactorPatient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalciumScoringMassFactorPatient extends AbstractTag -{ - - protected $Id = '0018,9351'; - - protected $Name = 'CalciumScoringMassFactorPatient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calcium Scoring Mass Factor Patient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedAnatomyThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedAnatomyThickness.php deleted file mode 100644 index 5ff83a3b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedAnatomyThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedAnatomyThickness extends AbstractTag -{ - - protected $Id = '0018,9452'; - - protected $Name = 'CalculatedAnatomyThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calculated Anatomy Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceDescription.php deleted file mode 100644 index 51cd904bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedDoseReferenceDescription extends AbstractTag -{ - - protected $Id = '3008,0074'; - - protected $Name = 'CalculatedDoseReferenceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calculated Dose Reference Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceDoseValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceDoseValue.php deleted file mode 100644 index 4f5fbdcd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceDoseValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedDoseReferenceDoseValue extends AbstractTag -{ - - protected $Id = '3008,0076'; - - protected $Name = 'CalculatedDoseReferenceDoseValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calculated Dose Reference Dose Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceNumber.php deleted file mode 100644 index f3fc9ee49..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedDoseReferenceNumber extends AbstractTag -{ - - protected $Id = '3008,0072'; - - protected $Name = 'CalculatedDoseReferenceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calculated Dose Reference Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceSequence.php deleted file mode 100644 index 007c026cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedDoseReferenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedDoseReferenceSequence extends AbstractTag -{ - - protected $Id = '3008,0070'; - - protected $Name = 'CalculatedDoseReferenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calculated Dose Reference Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedFrameList.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedFrameList.php deleted file mode 100644 index c56406b00..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalculatedFrameList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedFrameList extends AbstractTag -{ - - protected $Id = '0008,1162'; - - protected $Name = 'CalculatedFrameList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calculated Frame List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalibratedFieldStrength.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalibratedFieldStrength.php deleted file mode 100644 index 164c3bc7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalibratedFieldStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalibratedFieldStrength extends AbstractTag -{ - - protected $Id = '0019,10A3'; - - protected $Name = 'CalibratedFieldStrength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calibrated Field Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationDataSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationDataSequence.php deleted file mode 100644 index 89422c290..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationDataSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalibrationDataSequence extends AbstractTag -{ - - protected $Id = '0054,0306'; - - protected $Name = 'CalibrationDataSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calibration Data Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationImage.php deleted file mode 100644 index 79da7d332..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalibrationImage extends AbstractTag -{ - - protected $Id = '0050,0004'; - - protected $Name = 'CalibrationImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calibration Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationParameters.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationParameters.php deleted file mode 100644 index 43a50cba9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationParameters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalibrationParameters extends AbstractTag -{ - - protected $Id = '0043,1014'; - - protected $Name = 'CalibrationParameters'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calibration Parameters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationSequence.php deleted file mode 100644 index ad1a5487a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CalibrationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalibrationSequence extends AbstractTag -{ - - protected $Id = '0018,9455'; - - protected $Name = 'CalibrationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calibration Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacBeatRejectionTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacBeatRejectionTechnique.php deleted file mode 100644 index ab043ae1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacBeatRejectionTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacBeatRejectionTechnique extends AbstractTag -{ - - protected $Id = '0018,9169'; - - protected $Name = 'CardiacBeatRejectionTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Beat Rejection Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacCyclePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacCyclePosition.php deleted file mode 100644 index 3d89d35b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacCyclePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacCyclePosition extends AbstractTag -{ - - protected $Id = '0018,9236'; - - protected $Name = 'CardiacCyclePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Cycle Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacFramingType.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacFramingType.php deleted file mode 100644 index 2cc42cc59..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacFramingType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacFramingType extends AbstractTag -{ - - protected $Id = '0018,1064'; - - protected $Name = 'CardiacFramingType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Framing Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacNumberOfImages.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacNumberOfImages.php deleted file mode 100644 index 86ffa7dd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacNumberOfImages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacNumberOfImages extends AbstractTag -{ - - protected $Id = '0018,1090'; - - protected $Name = 'CardiacNumberOfImages'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Number Of Images'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacPhases.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacPhases.php deleted file mode 100644 index 40bce5d02..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacPhases.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacPhases extends AbstractTag -{ - - protected $Id = '0019,10D7'; - - protected $Name = 'CardiacPhases'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Phases'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacRRIntervalSpecified.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacRRIntervalSpecified.php deleted file mode 100644 index 1b4bdbc77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacRRIntervalSpecified.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacRRIntervalSpecified extends AbstractTag -{ - - protected $Id = '0018,9070'; - - protected $Name = 'CardiacRRIntervalSpecified'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac RR Interval Specified'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacRepetitionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacRepetitionTime.php deleted file mode 100644 index 897be0218..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacRepetitionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacRepetitionTime extends AbstractTag -{ - - protected $Id = '0019,1087'; - - protected $Name = 'CardiacRepetitionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Repetition Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacSignalSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacSignalSource.php deleted file mode 100644 index 82353e22a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacSignalSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacSignalSource extends AbstractTag -{ - - protected $Id = '0018,9085'; - - protected $Name = 'CardiacSignalSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Signal Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacSynchronizationTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacSynchronizationTechnique.php deleted file mode 100644 index 429d1e2dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacSynchronizationTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacSynchronizationTechnique extends AbstractTag -{ - - protected $Id = '0018,9037'; - - protected $Name = 'CardiacSynchronizationTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Synchronization Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacTriggerSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CardiacTriggerSequence.php deleted file mode 100644 index 9463096d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CardiacTriggerSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardiacTriggerSequence extends AbstractTag -{ - - protected $Id = '0018,9118'; - - protected $Name = 'CardiacTriggerSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cardiac Trigger Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CassetteID.php b/lib/PHPExiftool/Driver/Tag/DICOM/CassetteID.php deleted file mode 100644 index 754fa5985..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CassetteID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CassetteID extends AbstractTag -{ - - protected $Id = '0018,1007'; - - protected $Name = 'CassetteID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cassette ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CassetteOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/CassetteOrientation.php deleted file mode 100644 index 4ecc1b425..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CassetteOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CassetteOrientation extends AbstractTag -{ - - protected $Id = '0018,1402'; - - protected $Name = 'CassetteOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cassette Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CassetteSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/CassetteSize.php deleted file mode 100644 index 953f602ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CassetteSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CassetteSize extends AbstractTag -{ - - protected $Id = '0018,1403'; - - protected $Name = 'CassetteSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cassette Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CellNumberAtTheta.php b/lib/PHPExiftool/Driver/Tag/DICOM/CellNumberAtTheta.php deleted file mode 100644 index d3dec4a40..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CellNumberAtTheta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CellNumberAtTheta extends AbstractTag -{ - - protected $Id = '0019,1003'; - - protected $Name = 'CellNumberAtTheta'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cell Number At Theta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CellSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/CellSpacing.php deleted file mode 100644 index e1c73117a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CellSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CellSpacing extends AbstractTag -{ - - protected $Id = '0019,1004'; - - protected $Name = 'CellSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cell Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterACoordOfPlaneImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterACoordOfPlaneImage.php deleted file mode 100644 index 79a0dad9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterACoordOfPlaneImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterACoordOfPlaneImage extends AbstractTag -{ - - protected $Id = '0027,1043'; - - protected $Name = 'CenterACoordOfPlaneImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center A Coord Of Plane Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterFreqMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterFreqMethod.php deleted file mode 100644 index 817821335..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterFreqMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterFreqMethod extends AbstractTag -{ - - protected $Id = '0019,1098'; - - protected $Name = 'CenterFreqMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Freq Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterFrequency.php deleted file mode 100644 index c8b509f6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterFrequency extends AbstractTag -{ - - protected $Id = '0019,1093'; - - protected $Name = 'CenterFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircExposControlSensRegion.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircExposControlSensRegion.php deleted file mode 100644 index 08f01826b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircExposControlSensRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterOfCircExposControlSensRegion extends AbstractTag -{ - - protected $Id = '0018,9440'; - - protected $Name = 'CenterOfCircExposControlSensRegion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Of Circ Expos Control Sens Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircularCollimator.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircularCollimator.php deleted file mode 100644 index da56562e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircularCollimator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterOfCircularCollimator extends AbstractTag -{ - - protected $Id = '0018,1710'; - - protected $Name = 'CenterOfCircularCollimator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Of Circular Collimator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircularShutter.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircularShutter.php deleted file mode 100644 index 103378d11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfCircularShutter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterOfCircularShutter extends AbstractTag -{ - - protected $Id = '0018,1610'; - - protected $Name = 'CenterOfCircularShutter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Of Circular Shutter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfRotation.php deleted file mode 100644 index c77584735..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterOfRotation extends AbstractTag -{ - - protected $Id = '0066,001C'; - - protected $Name = 'CenterOfRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Of Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfRotationOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfRotationOffset.php deleted file mode 100644 index 9c9f95644..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterOfRotationOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterOfRotationOffset extends AbstractTag -{ - - protected $Id = '0018,1145'; - - protected $Name = 'CenterOfRotationOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Of Rotation Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterRCoordOfPlaneImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterRCoordOfPlaneImage.php deleted file mode 100644 index 74fecd211..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterRCoordOfPlaneImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterRCoordOfPlaneImage extends AbstractTag -{ - - protected $Id = '0027,1042'; - - protected $Name = 'CenterRCoordOfPlaneImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center R Coord Of Plane Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CenterSCoordOfPlaneImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/CenterSCoordOfPlaneImage.php deleted file mode 100644 index f854ad7a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CenterSCoordOfPlaneImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterSCoordOfPlaneImage extends AbstractTag -{ - - protected $Id = '0027,1044'; - - protected $Name = 'CenterSCoordOfPlaneImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center S Coord Of Plane Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CertificateOfSigner.php b/lib/PHPExiftool/Driver/Tag/DICOM/CertificateOfSigner.php deleted file mode 100644 index 811379648..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CertificateOfSigner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CertificateOfSigner extends AbstractTag -{ - - protected $Id = '0400,0115'; - - protected $Name = 'CertificateOfSigner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Certificate Of Signer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CertificateType.php b/lib/PHPExiftool/Driver/Tag/DICOM/CertificateType.php deleted file mode 100644 index 5818fa90c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CertificateType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CertificateType extends AbstractTag -{ - - protected $Id = '0400,0110'; - - protected $Name = 'CertificateType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Certificate Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CertifiedTimestamp.php b/lib/PHPExiftool/Driver/Tag/DICOM/CertifiedTimestamp.php deleted file mode 100644 index dad3cec91..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CertifiedTimestamp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CertifiedTimestamp extends AbstractTag -{ - - protected $Id = '0400,0310'; - - protected $Name = 'CertifiedTimestamp'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Certified Timestamp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CertifiedTimestampType.php b/lib/PHPExiftool/Driver/Tag/DICOM/CertifiedTimestampType.php deleted file mode 100644 index 15fc772e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CertifiedTimestampType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CertifiedTimestampType extends AbstractTag -{ - - protected $Id = '0400,0305'; - - protected $Name = 'CertifiedTimestampType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Certified Timestamp Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelBaseline.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelBaseline.php deleted file mode 100644 index ad008b604..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelBaseline.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelBaseline extends AbstractTag -{ - - protected $Id = '003A,0213'; - - protected $Name = 'ChannelBaseline'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Baseline'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDefinitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDefinitionSequence.php deleted file mode 100644 index 0732b47c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDefinitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelDefinitionSequence extends AbstractTag -{ - - protected $Id = '003A,0200'; - - protected $Name = 'ChannelDefinitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Definition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDerivationDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDerivationDescription.php deleted file mode 100644 index 7731efc70..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDerivationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelDerivationDescription extends AbstractTag -{ - - protected $Id = '003A,020C'; - - protected $Name = 'ChannelDerivationDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Derivation Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDescriptionCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDescriptionCodeSequence.php deleted file mode 100644 index 734602b92..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDescriptionCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelDescriptionCodeSequence extends AbstractTag -{ - - protected $Id = '0022,001A'; - - protected $Name = 'ChannelDescriptionCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Description Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDisplaySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDisplaySequence.php deleted file mode 100644 index af681c066..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelDisplaySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelDisplaySequence extends AbstractTag -{ - - protected $Id = '003A,0242'; - - protected $Name = 'ChannelDisplaySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Display Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelIdentificationCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelIdentificationCode.php deleted file mode 100644 index bd0ca40a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelIdentificationCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelIdentificationCode extends AbstractTag -{ - - protected $Id = '003A,0301'; - - protected $Name = 'ChannelIdentificationCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Identification Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelLabel.php deleted file mode 100644 index 8dc474b0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelLabel extends AbstractTag -{ - - protected $Id = '003A,0203'; - - protected $Name = 'ChannelLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelLength.php deleted file mode 100644 index 02c163320..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelLength extends AbstractTag -{ - - protected $Id = '300A,0284'; - - protected $Name = 'ChannelLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMaximumValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMaximumValue.php deleted file mode 100644 index 8bb19a914..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMaximumValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelMaximumValue extends AbstractTag -{ - - protected $Id = '5400,0112'; - - protected $Name = 'ChannelMaximumValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Maximum Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMinimumValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMinimumValue.php deleted file mode 100644 index 88f21440f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMinimumValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelMinimumValue extends AbstractTag -{ - - protected $Id = '5400,0110'; - - protected $Name = 'ChannelMinimumValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Minimum Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMode.php deleted file mode 100644 index 11fc4ed09..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelMode extends AbstractTag -{ - - protected $Id = '003A,0302'; - - protected $Name = 'ChannelMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelNumber.php deleted file mode 100644 index 7fdc5ad8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelNumber extends AbstractTag -{ - - protected $Id = '300A,0282'; - - protected $Name = 'ChannelNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelOffset.php deleted file mode 100644 index ee6e495fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelOffset extends AbstractTag -{ - - protected $Id = '003A,0218'; - - protected $Name = 'ChannelOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelPosition.php deleted file mode 100644 index 2e0f9b147..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelPosition extends AbstractTag -{ - - protected $Id = '003A,0245'; - - protected $Name = 'ChannelPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelRecommendDisplayCIELabValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelRecommendDisplayCIELabValue.php deleted file mode 100644 index 8651f0992..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelRecommendDisplayCIELabValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelRecommendDisplayCIELabValue extends AbstractTag -{ - - protected $Id = '003A,0244'; - - protected $Name = 'ChannelRecommendDisplayCIELabValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Recommend Display CIE Lab Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSampleSkew.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSampleSkew.php deleted file mode 100644 index 56e6c7a3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSampleSkew.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelSampleSkew extends AbstractTag -{ - - protected $Id = '003A,0215'; - - protected $Name = 'ChannelSampleSkew'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Sample Skew'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivity.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivity.php deleted file mode 100644 index 4a16290d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelSensitivity extends AbstractTag -{ - - protected $Id = '003A,0210'; - - protected $Name = 'ChannelSensitivity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Sensitivity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivityCorrectionFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivityCorrectionFactor.php deleted file mode 100644 index f8abe183f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivityCorrectionFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelSensitivityCorrectionFactor extends AbstractTag -{ - - protected $Id = '003A,0212'; - - protected $Name = 'ChannelSensitivityCorrectionFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Sensitivity Correction Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivityUnitsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivityUnitsSequence.php deleted file mode 100644 index d152968b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSensitivityUnitsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelSensitivityUnitsSequence extends AbstractTag -{ - - protected $Id = '003A,0211'; - - protected $Name = 'ChannelSensitivityUnitsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Sensitivity Units Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSequence.php deleted file mode 100644 index 7d29600b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelSequence extends AbstractTag -{ - - protected $Id = '300A,0280'; - - protected $Name = 'ChannelSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldID.php deleted file mode 100644 index 7e4306eed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelShieldID extends AbstractTag -{ - - protected $Id = '300A,02B3'; - - protected $Name = 'ChannelShieldID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Shield ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldName.php deleted file mode 100644 index 5830d582e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelShieldName extends AbstractTag -{ - - protected $Id = '300A,02B4'; - - protected $Name = 'ChannelShieldName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Shield Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNominalThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNominalThickness.php deleted file mode 100644 index fc1ca2b44..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNominalThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelShieldNominalThickness extends AbstractTag -{ - - protected $Id = '300A,02B8'; - - protected $Name = 'ChannelShieldNominalThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Shield Nominal Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNominalTransmission.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNominalTransmission.php deleted file mode 100644 index c35d796e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNominalTransmission.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelShieldNominalTransmission extends AbstractTag -{ - - protected $Id = '300A,02BA'; - - protected $Name = 'ChannelShieldNominalTransmission'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Shield Nominal Transmission'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNumber.php deleted file mode 100644 index f01845fd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelShieldNumber extends AbstractTag -{ - - protected $Id = '300A,02B2'; - - protected $Name = 'ChannelShieldNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Shield Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldSequence.php deleted file mode 100644 index c50898cac..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelShieldSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelShieldSequence extends AbstractTag -{ - - protected $Id = '300A,02B0'; - - protected $Name = 'ChannelShieldSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Shield Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSourceModifiersSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSourceModifiersSequence.php deleted file mode 100644 index 2c560a05f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSourceModifiersSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelSourceModifiersSequence extends AbstractTag -{ - - protected $Id = '003A,0209'; - - protected $Name = 'ChannelSourceModifiersSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Source Modifiers Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSourceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSourceSequence.php deleted file mode 100644 index d82067515..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelSourceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelSourceSequence extends AbstractTag -{ - - protected $Id = '003A,0208'; - - protected $Name = 'ChannelSourceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Source Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelStatus.php deleted file mode 100644 index 4cf9d1bc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelStatus extends AbstractTag -{ - - protected $Id = '003A,0205'; - - protected $Name = 'ChannelStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelTimeSkew.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelTimeSkew.php deleted file mode 100644 index 56656a2c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelTimeSkew.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelTimeSkew extends AbstractTag -{ - - protected $Id = '003A,0214'; - - protected $Name = 'ChannelTimeSkew'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Time Skew'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelTotalTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelTotalTime.php deleted file mode 100644 index 25049d496..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelTotalTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelTotalTime extends AbstractTag -{ - - protected $Id = '300A,0286'; - - protected $Name = 'ChannelTotalTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Total Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChannelWidth.php deleted file mode 100644 index 82dfc519e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChannelWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelWidth extends AbstractTag -{ - - protected $Id = '0046,0042'; - - protected $Name = 'ChannelWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftReference.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftReference.php deleted file mode 100644 index 43dfa01f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChemicalShiftReference extends AbstractTag -{ - - protected $Id = '0018,9053'; - - protected $Name = 'ChemicalShiftReference'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chemical Shift Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftSequence.php deleted file mode 100644 index fde8d5de8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChemicalShiftSequence extends AbstractTag -{ - - protected $Id = '0018,9084'; - - protected $Name = 'ChemicalShiftSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chemical Shift Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMaxIntegrateLimitHz.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMaxIntegrateLimitHz.php deleted file mode 100644 index 1c68d6de2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMaxIntegrateLimitHz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChemicalShiftsMaxIntegrateLimitHz extends AbstractTag -{ - - protected $Id = '0018,9196'; - - protected $Name = 'ChemicalShiftsMaxIntegrateLimitHz'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chemical Shifts Max Integrate Limit Hz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMaxIntegrateLimitPPM.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMaxIntegrateLimitPPM.php deleted file mode 100644 index 4d8e58e20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMaxIntegrateLimitPPM.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChemicalShiftsMaxIntegrateLimitPPM extends AbstractTag -{ - - protected $Id = '0018,9296'; - - protected $Name = 'ChemicalShiftsMaxIntegrateLimitPPM'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chemical Shifts Max Integrate Limit PPM'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMinIntegrateLimitHz.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMinIntegrateLimitHz.php deleted file mode 100644 index 0f02c894a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMinIntegrateLimitHz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChemicalShiftsMinIntegrateLimitHz extends AbstractTag -{ - - protected $Id = '0018,9195'; - - protected $Name = 'ChemicalShiftsMinIntegrateLimitHz'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chemical Shifts Min Integrate Limit Hz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMinIntegrateLimitPPM.php b/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMinIntegrateLimitPPM.php deleted file mode 100644 index ecda1cb73..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ChemicalShiftsMinIntegrateLimitPPM.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChemicalShiftsMinIntegrateLimitPPM extends AbstractTag -{ - - protected $Id = '0018,9295'; - - protected $Name = 'ChemicalShiftsMinIntegrateLimitPPM'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chemical Shifts Min Integrate Limit PPM'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CineRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/CineRate.php deleted file mode 100644 index 0c0953cea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CineRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CineRate extends AbstractTag -{ - - protected $Id = '0018,0040'; - - protected $Name = 'CineRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cine Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CineRelativeToRealTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/CineRelativeToRealTime.php deleted file mode 100644 index 8d9c4060d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CineRelativeToRealTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CineRelativeToRealTime extends AbstractTag -{ - - protected $Id = '0072,0330'; - - protected $Name = 'CineRelativeToRealTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cine Relative To Real Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialCoordinatingCenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialCoordinatingCenter.php deleted file mode 100644 index c6ff8398d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialCoordinatingCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialCoordinatingCenter extends AbstractTag -{ - - protected $Id = '0012,0060'; - - protected $Name = 'ClinicalTrialCoordinatingCenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Coordinating Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialProtocolID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialProtocolID.php deleted file mode 100644 index 9354e64ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialProtocolID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialProtocolID extends AbstractTag -{ - - protected $Id = '0012,0020'; - - protected $Name = 'ClinicalTrialProtocolID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Protocol ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialProtocolName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialProtocolName.php deleted file mode 100644 index c4e79dd82..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialProtocolName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialProtocolName extends AbstractTag -{ - - protected $Id = '0012,0021'; - - protected $Name = 'ClinicalTrialProtocolName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Protocol Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSeriesDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSeriesDescription.php deleted file mode 100644 index 66fe0dd01..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSeriesDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialSeriesDescription extends AbstractTag -{ - - protected $Id = '0012,0072'; - - protected $Name = 'ClinicalTrialSeriesDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Series Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSeriesID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSeriesID.php deleted file mode 100644 index f535a6cf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSeriesID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialSeriesID extends AbstractTag -{ - - protected $Id = '0012,0071'; - - protected $Name = 'ClinicalTrialSeriesID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Series ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSiteID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSiteID.php deleted file mode 100644 index df1b829b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSiteID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialSiteID extends AbstractTag -{ - - protected $Id = '0012,0030'; - - protected $Name = 'ClinicalTrialSiteID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Site ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSiteName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSiteName.php deleted file mode 100644 index d78f23067..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSiteName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialSiteName extends AbstractTag -{ - - protected $Id = '0012,0031'; - - protected $Name = 'ClinicalTrialSiteName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Site Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSponsorName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSponsorName.php deleted file mode 100644 index dc1e90bea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSponsorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialSponsorName extends AbstractTag -{ - - protected $Id = '0012,0010'; - - protected $Name = 'ClinicalTrialSponsorName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Sponsor Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSubjectID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSubjectID.php deleted file mode 100644 index 86f5cf204..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSubjectID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialSubjectID extends AbstractTag -{ - - protected $Id = '0012,0040'; - - protected $Name = 'ClinicalTrialSubjectID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Subject ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSubjectReadingID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSubjectReadingID.php deleted file mode 100644 index 3be29536c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialSubjectReadingID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialSubjectReadingID extends AbstractTag -{ - - protected $Id = '0012,0042'; - - protected $Name = 'ClinicalTrialSubjectReadingID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Subject Reading ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialTimePointDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialTimePointDescription.php deleted file mode 100644 index 8403222fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialTimePointDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialTimePointDescription extends AbstractTag -{ - - protected $Id = '0012,0051'; - - protected $Name = 'ClinicalTrialTimePointDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Time Point Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialTimePointID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialTimePointID.php deleted file mode 100644 index 24b6da5da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ClinicalTrialTimePointID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClinicalTrialTimePointID extends AbstractTag -{ - - protected $Id = '0012,0050'; - - protected $Name = 'ClinicalTrialTimePointID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clinical Trial Time Point ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodeLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodeLabel.php deleted file mode 100644 index 52eec11c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodeLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodeLabel extends AbstractTag -{ - - protected $Id = '0028,08x0'; - - protected $Name = 'CodeLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Code Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodeMeaning.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodeMeaning.php deleted file mode 100644 index 5bddece78..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodeMeaning.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodeMeaning extends AbstractTag -{ - - protected $Id = '0008,0104'; - - protected $Name = 'CodeMeaning'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Code Meaning'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodeNumberFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodeNumberFormat.php deleted file mode 100644 index 4f0c9b4f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodeNumberFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodeNumberFormat extends AbstractTag -{ - - protected $Id = '0028,0740'; - - protected $Name = 'CodeNumberFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Code Number Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodeTableLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodeTableLocation.php deleted file mode 100644 index 7f171d528..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodeTableLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodeTableLocation extends AbstractTag -{ - - protected $Id = '0028,08x3'; - - protected $Name = 'CodeTableLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Code Table Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodeValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodeValue.php deleted file mode 100644 index c649a16b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodeValue extends AbstractTag -{ - - protected $Id = '0008,0100'; - - protected $Name = 'CodeValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Code Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeDesignator.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeDesignator.php deleted file mode 100644 index d5307acf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeDesignator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingSchemeDesignator extends AbstractTag -{ - - protected $Id = '0008,0102'; - - protected $Name = 'CodingSchemeDesignator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Scheme Designator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeExternalID.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeExternalID.php deleted file mode 100644 index cf988b731..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeExternalID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingSchemeExternalID extends AbstractTag -{ - - protected $Id = '0008,0114'; - - protected $Name = 'CodingSchemeExternalID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Scheme External ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeIDSequence.php deleted file mode 100644 index 63517434d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingSchemeIDSequence extends AbstractTag -{ - - protected $Id = '0008,0110'; - - protected $Name = 'CodingSchemeIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Scheme ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeName.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeName.php deleted file mode 100644 index 311861e1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingSchemeName extends AbstractTag -{ - - protected $Id = '0008,0115'; - - protected $Name = 'CodingSchemeName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Scheme Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeRegistry.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeRegistry.php deleted file mode 100644 index 6b5963f11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeRegistry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingSchemeRegistry extends AbstractTag -{ - - protected $Id = '0008,0112'; - - protected $Name = 'CodingSchemeRegistry'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Scheme Registry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeUID.php deleted file mode 100644 index f8cedfc3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingSchemeUID extends AbstractTag -{ - - protected $Id = '0008,010C'; - - protected $Name = 'CodingSchemeUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Scheme UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeVersion.php deleted file mode 100644 index b68d3260b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CodingSchemeVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingSchemeVersion extends AbstractTag -{ - - protected $Id = '0008,0103'; - - protected $Name = 'CodingSchemeVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Scheme Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CoefficientCoding.php b/lib/PHPExiftool/Driver/Tag/DICOM/CoefficientCoding.php deleted file mode 100644 index 1fcd7ea2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CoefficientCoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoefficientCoding extends AbstractTag -{ - - protected $Id = '0028,04x2'; - - protected $Name = 'CoefficientCoding'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coefficient Coding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CoefficientCodingPointers.php b/lib/PHPExiftool/Driver/Tag/DICOM/CoefficientCodingPointers.php deleted file mode 100644 index bcaf3e9a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CoefficientCodingPointers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoefficientCodingPointers extends AbstractTag -{ - - protected $Id = '0028,04x3'; - - protected $Name = 'CoefficientCodingPointers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coefficient Coding Pointers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CoincidenceWindowWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/CoincidenceWindowWidth.php deleted file mode 100644 index 218bc1062..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CoincidenceWindowWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoincidenceWindowWidth extends AbstractTag -{ - - protected $Id = '0054,1210'; - - protected $Name = 'CoincidenceWindowWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coincidence Window Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollationFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollationFlag.php deleted file mode 100644 index 138469c11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollationFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollationFlag extends AbstractTag -{ - - protected $Id = '2000,0063'; - - protected $Name = 'CollationFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collation Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorGridName.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorGridName.php deleted file mode 100644 index 3ed2877c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorGridName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorGridName extends AbstractTag -{ - - protected $Id = '0018,1180'; - - protected $Name = 'CollimatorGridName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Grid Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorLeftVerticalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorLeftVerticalEdge.php deleted file mode 100644 index 6c137bc12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorLeftVerticalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorLeftVerticalEdge extends AbstractTag -{ - - protected $Id = '0018,1702'; - - protected $Name = 'CollimatorLeftVerticalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Left Vertical Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorLowerHorizontalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorLowerHorizontalEdge.php deleted file mode 100644 index 81d70b33f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorLowerHorizontalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorLowerHorizontalEdge extends AbstractTag -{ - - protected $Id = '0018,1708'; - - protected $Name = 'CollimatorLowerHorizontalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Lower Horizontal Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorRightVerticalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorRightVerticalEdge.php deleted file mode 100644 index e39525769..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorRightVerticalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorRightVerticalEdge extends AbstractTag -{ - - protected $Id = '0018,1704'; - - protected $Name = 'CollimatorRightVerticalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Right Vertical Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorShape.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorShape.php deleted file mode 100644 index 13bd38cf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorShape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorShape extends AbstractTag -{ - - protected $Id = '0018,1700'; - - protected $Name = 'CollimatorShape'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Shape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorShapeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorShapeSequence.php deleted file mode 100644 index 8c320b1da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorShapeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorShapeSequence extends AbstractTag -{ - - protected $Id = '0018,9407'; - - protected $Name = 'CollimatorShapeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Shape Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorType.php deleted file mode 100644 index 806ca01f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorType extends AbstractTag -{ - - protected $Id = '0018,1181'; - - protected $Name = 'CollimatorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorUpperHorizontalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorUpperHorizontalEdge.php deleted file mode 100644 index c89db189d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CollimatorUpperHorizontalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollimatorUpperHorizontalEdge extends AbstractTag -{ - - protected $Id = '0018,1706'; - - protected $Name = 'CollimatorUpperHorizontalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collimator Upper Horizontal Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ColorImagePrintingFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ColorImagePrintingFlag.php deleted file mode 100644 index 87c6db18f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ColorImagePrintingFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorImagePrintingFlag extends AbstractTag -{ - - protected $Id = '2000,0062'; - - protected $Name = 'ColorImagePrintingFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Image Printing Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ColumnAngulation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ColumnAngulation.php deleted file mode 100644 index 88dadcf73..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ColumnAngulation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColumnAngulation extends AbstractTag -{ - - protected $Id = '0018,1450'; - - protected $Name = 'ColumnAngulation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Column Angulation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ColumnAngulationPatient.php b/lib/PHPExiftool/Driver/Tag/DICOM/ColumnAngulationPatient.php deleted file mode 100644 index a23651baa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ColumnAngulationPatient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColumnAngulationPatient extends AbstractTag -{ - - protected $Id = '0018,9447'; - - protected $Name = 'ColumnAngulationPatient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Column Angulation Patient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ColumnOverlap.php b/lib/PHPExiftool/Driver/Tag/DICOM/ColumnOverlap.php deleted file mode 100644 index 81af6f691..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ColumnOverlap.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColumnOverlap extends AbstractTag -{ - - protected $Id = '0028,0094'; - - protected $Name = 'ColumnOverlap'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Column Overlap'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Columns.php b/lib/PHPExiftool/Driver/Tag/DICOM/Columns.php deleted file mode 100644 index 3a8db6f20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Columns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Columns extends AbstractTag -{ - - protected $Id = '0028,0011'; - - protected $Name = 'Columns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnPerformedProcedureStep.php b/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnPerformedProcedureStep.php deleted file mode 100644 index f53387c6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnPerformedProcedureStep.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommentsOnPerformedProcedureStep extends AbstractTag -{ - - protected $Id = '0040,0280'; - - protected $Name = 'CommentsOnPerformedProcedureStep'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments On Performed Procedure Step'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnRadiationDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnRadiationDose.php deleted file mode 100644 index 460b20602..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnRadiationDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommentsOnRadiationDose extends AbstractTag -{ - - protected $Id = '0040,0310'; - - protected $Name = 'CommentsOnRadiationDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments On Radiation Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnScheduledProcedureStep.php b/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnScheduledProcedureStep.php deleted file mode 100644 index fada2f5ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CommentsOnScheduledProcedureStep.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommentsOnScheduledProcedureStep extends AbstractTag -{ - - protected $Id = '0040,0400'; - - protected $Name = 'CommentsOnScheduledProcedureStep'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments On Scheduled Procedure Step'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorColumnOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorColumnOffset.php deleted file mode 100644 index f6392183c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorColumnOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorColumnOffset extends AbstractTag -{ - - protected $Id = '300A,02E5'; - - protected $Name = 'CompensatorColumnOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Column Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorColumns.php deleted file mode 100644 index 27e4ac677..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorColumns extends AbstractTag -{ - - protected $Id = '300A,00E8'; - - protected $Name = 'CompensatorColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorDescription.php deleted file mode 100644 index 3ed62a0b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorDescription extends AbstractTag -{ - - protected $Id = '300A,02EB'; - - protected $Name = 'CompensatorDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorDivergence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorDivergence.php deleted file mode 100644 index c55e104ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorDivergence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorDivergence extends AbstractTag -{ - - protected $Id = '300A,02E0'; - - protected $Name = 'CompensatorDivergence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Divergence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorID.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorID.php deleted file mode 100644 index f7e39f2e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorID extends AbstractTag -{ - - protected $Id = '300A,00E5'; - - protected $Name = 'CompensatorID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorMillingToolDiameter.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorMillingToolDiameter.php deleted file mode 100644 index eef7ed787..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorMillingToolDiameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorMillingToolDiameter extends AbstractTag -{ - - protected $Id = '300A,02E8'; - - protected $Name = 'CompensatorMillingToolDiameter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Milling Tool Diameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorMountingPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorMountingPosition.php deleted file mode 100644 index f1f49a040..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorMountingPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorMountingPosition extends AbstractTag -{ - - protected $Id = '300A,02E1'; - - protected $Name = 'CompensatorMountingPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Mounting Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorNumber.php deleted file mode 100644 index b3a5ef45d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorNumber extends AbstractTag -{ - - protected $Id = '300A,00E4'; - - protected $Name = 'CompensatorNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorPixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorPixelSpacing.php deleted file mode 100644 index 5f9ac424f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorPixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorPixelSpacing extends AbstractTag -{ - - protected $Id = '300A,00E9'; - - protected $Name = 'CompensatorPixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorPosition.php deleted file mode 100644 index c1239b5e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorPosition extends AbstractTag -{ - - protected $Id = '300A,00EA'; - - protected $Name = 'CompensatorPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorRelStoppingPowerRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorRelStoppingPowerRatio.php deleted file mode 100644 index 38be61b57..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorRelStoppingPowerRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorRelStoppingPowerRatio extends AbstractTag -{ - - protected $Id = '300A,02E7'; - - protected $Name = 'CompensatorRelStoppingPowerRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Rel Stopping Power Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorRows.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorRows.php deleted file mode 100644 index 12e27ac15..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorRows extends AbstractTag -{ - - protected $Id = '300A,00E7'; - - protected $Name = 'CompensatorRows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorSequence.php deleted file mode 100644 index 04194179e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorSequence extends AbstractTag -{ - - protected $Id = '300A,00E3'; - - protected $Name = 'CompensatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorThicknessData.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorThicknessData.php deleted file mode 100644 index 1ffda90c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorThicknessData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorThicknessData extends AbstractTag -{ - - protected $Id = '300A,00EC'; - - protected $Name = 'CompensatorThicknessData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Thickness Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorTransmissionData.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorTransmissionData.php deleted file mode 100644 index 5dfc4af74..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorTransmissionData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorTransmissionData extends AbstractTag -{ - - protected $Id = '300A,00EB'; - - protected $Name = 'CompensatorTransmissionData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Transmission Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorType.php deleted file mode 100644 index a34cd6cc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompensatorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompensatorType extends AbstractTag -{ - - protected $Id = '300A,00EE'; - - protected $Name = 'CompensatorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compensator Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompletionFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompletionFlag.php deleted file mode 100644 index e828fb96b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompletionFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompletionFlag extends AbstractTag -{ - - protected $Id = '0040,A491'; - - protected $Name = 'CompletionFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Completion Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompletionFlagDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompletionFlagDescription.php deleted file mode 100644 index ea7e32a97..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompletionFlagDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompletionFlagDescription extends AbstractTag -{ - - protected $Id = '0040,A492'; - - protected $Name = 'CompletionFlagDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Completion Flag Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ComplexImageComponent.php b/lib/PHPExiftool/Driver/Tag/DICOM/ComplexImageComponent.php deleted file mode 100644 index 559f2fd92..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ComplexImageComponent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComplexImageComponent extends AbstractTag -{ - - protected $Id = '0008,9208'; - - protected $Name = 'ComplexImageComponent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Complex Image Component'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionCode.php deleted file mode 100644 index 4058e1f74..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionCode extends AbstractTag -{ - - protected $Id = '0028,0060'; - - protected $Name = 'CompressionCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionDescription.php deleted file mode 100644 index 5fe98deb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionDescription extends AbstractTag -{ - - protected $Id = '0028,0063'; - - protected $Name = 'CompressionDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionForce.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionForce.php deleted file mode 100644 index 45f38d994..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionForce.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionForce extends AbstractTag -{ - - protected $Id = '0018,11A2'; - - protected $Name = 'CompressionForce'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Force'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionLabel.php deleted file mode 100644 index c3b0c1d93..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionLabel extends AbstractTag -{ - - protected $Id = '0028,0062'; - - protected $Name = 'CompressionLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionOriginator.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionOriginator.php deleted file mode 100644 index 6c5d2020e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionOriginator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionOriginator extends AbstractTag -{ - - protected $Id = '0028,0061'; - - protected $Name = 'CompressionOriginator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Originator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionRecognitionCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionRecognitionCode.php deleted file mode 100644 index 09fe7d53c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionRecognitionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionRecognitionCode extends AbstractTag -{ - - protected $Id = '0028,005F'; - - protected $Name = 'CompressionRecognitionCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Recognition Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionSequence.php deleted file mode 100644 index 287cff1cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionSequence extends AbstractTag -{ - - protected $Id = '0028,0065'; - - protected $Name = 'CompressionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionStepPointers.php b/lib/PHPExiftool/Driver/Tag/DICOM/CompressionStepPointers.php deleted file mode 100644 index 0490f7e00..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CompressionStepPointers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionStepPointers extends AbstractTag -{ - - protected $Id = '0028,0066'; - - protected $Name = 'CompressionStepPointers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Step Pointers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ComputeType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ComputeType.php deleted file mode 100644 index a0a7d1342..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ComputeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputeType extends AbstractTag -{ - - protected $Id = '0019,1041'; - - protected $Name = 'ComputeType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compute Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenatedSAT.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenatedSAT.php deleted file mode 100644 index e45ee4125..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenatedSAT.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConcatenatedSAT extends AbstractTag -{ - - protected $Id = '0019,10D9'; - - protected $Name = 'ConcatenatedSAT'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Concatenated SAT'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenationFrameOffsetNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenationFrameOffsetNumber.php deleted file mode 100644 index 0c002c2d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenationFrameOffsetNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConcatenationFrameOffsetNumber extends AbstractTag -{ - - protected $Id = '0020,9228'; - - protected $Name = 'ConcatenationFrameOffsetNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Concatenation Frame Offset Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenationUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenationUID.php deleted file mode 100644 index b6a96a9cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConcatenationUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConcatenationUID extends AbstractTag -{ - - protected $Id = '0020,9161'; - - protected $Name = 'ConcatenationUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Concatenation UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConceptCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConceptCodeSequence.php deleted file mode 100644 index 4abfeb6f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConceptCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConceptCodeSequence extends AbstractTag -{ - - protected $Id = '0040,A168'; - - protected $Name = 'ConceptCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Concept Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConceptNameCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConceptNameCodeSequence.php deleted file mode 100644 index dd4104f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConceptNameCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConceptNameCodeSequence extends AbstractTag -{ - - protected $Id = '0040,A043'; - - protected $Name = 'ConceptNameCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Concept Name Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConfidentialityCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConfidentialityCode.php deleted file mode 100644 index 01156c788..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConfidentialityCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConfidentialityCode extends AbstractTag -{ - - protected $Id = '0040,1008'; - - protected $Name = 'ConfidentialityCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Confidentiality Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConfidentialityOnPatientDataDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConfidentialityOnPatientDataDescr.php deleted file mode 100644 index 8ecffd5f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConfidentialityOnPatientDataDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConfidentialityOnPatientDataDescr extends AbstractTag -{ - - protected $Id = '0040,3001'; - - protected $Name = 'ConfidentialityOnPatientDataDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Confidentiality On Patient Data Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConfigurationInformation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConfigurationInformation.php deleted file mode 100644 index b531ba36e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConfigurationInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConfigurationInformation extends AbstractTag -{ - - protected $Id = '2010,0150'; - - protected $Name = 'ConfigurationInformation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Configuration Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConfigurationInformationDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConfigurationInformationDescr.php deleted file mode 100644 index 0aae8aee4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConfigurationInformationDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConfigurationInformationDescr extends AbstractTag -{ - - protected $Id = '2010,0152'; - - protected $Name = 'ConfigurationInformationDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Configuration Information Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConsentForDistributionFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConsentForDistributionFlag.php deleted file mode 100644 index f5abd8f87..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConsentForDistributionFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConsentForDistributionFlag extends AbstractTag -{ - - protected $Id = '0012,0085'; - - protected $Name = 'ConsentForDistributionFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Consent For Distribution Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConstantVolumeFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConstantVolumeFlag.php deleted file mode 100644 index dee69240f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConstantVolumeFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConstantVolumeFlag extends AbstractTag -{ - - protected $Id = '0018,9333'; - - protected $Name = 'ConstantVolumeFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Constant Volume Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConstraintWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConstraintWeight.php deleted file mode 100644 index 7e94790de..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConstraintWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConstraintWeight extends AbstractTag -{ - - protected $Id = '300A,0021'; - - protected $Name = 'ConstraintWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Constraint Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContactDisplayName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContactDisplayName.php deleted file mode 100644 index 43f93d0e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContactDisplayName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactDisplayName extends AbstractTag -{ - - protected $Id = '0074,100c'; - - protected $Name = 'ContactDisplayName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contact Display Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContactURI.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContactURI.php deleted file mode 100644 index 34cffabce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContactURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactURI extends AbstractTag -{ - - protected $Id = '0074,100a'; - - protected $Name = 'ContactURI'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contact URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerComponentID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContainerComponentID.php deleted file mode 100644 index 95b4cdf40..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerComponentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerComponentID extends AbstractTag -{ - - protected $Id = '0050,001B'; - - protected $Name = 'ContainerComponentID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Component ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerComponentWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContainerComponentWidth.php deleted file mode 100644 index b716eb5a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerComponentWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerComponentWidth extends AbstractTag -{ - - protected $Id = '0050,0015'; - - protected $Name = 'ContainerComponentWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Component Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContainerDescription.php deleted file mode 100644 index f453d803e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerDescription extends AbstractTag -{ - - protected $Id = '0040,051A'; - - protected $Name = 'ContainerDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContainerIdentifier.php deleted file mode 100644 index 2f7ba0496..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContainerIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerIdentifier extends AbstractTag -{ - - protected $Id = '0040,0512'; - - protected $Name = 'ContainerIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentCreatorIDCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentCreatorIDCodeSequence.php deleted file mode 100644 index 73ab73380..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentCreatorIDCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentCreatorIDCodeSequence extends AbstractTag -{ - - protected $Id = '0070,0086'; - - protected $Name = 'ContentCreatorIDCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Creator ID Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentCreatorName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentCreatorName.php deleted file mode 100644 index 43d805652..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentCreatorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentCreatorName extends AbstractTag -{ - - protected $Id = '0070,0084'; - - protected $Name = 'ContentCreatorName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Creator Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentDate.php deleted file mode 100644 index 917996d03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDate extends AbstractTag -{ - - protected $Id = '0008,0023'; - - protected $Name = 'ContentDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentDescription.php deleted file mode 100644 index 01825302a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDescription extends AbstractTag -{ - - protected $Id = '0070,0081'; - - protected $Name = 'ContentDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentItemModifierSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentItemModifierSequence.php deleted file mode 100644 index b5e2c87ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentItemModifierSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentItemModifierSequence extends AbstractTag -{ - - protected $Id = '0040,0441'; - - protected $Name = 'ContentItemModifierSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Item Modifier Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentLabel.php deleted file mode 100644 index 08d05da0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentLabel extends AbstractTag -{ - - protected $Id = '0070,0080'; - - protected $Name = 'ContentLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentQualification.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentQualification.php deleted file mode 100644 index 4b5b2a55d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentQualification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentQualification extends AbstractTag -{ - - protected $Id = '0018,9004'; - - protected $Name = 'ContentQualification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Qualification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentSequence.php deleted file mode 100644 index 329f1a70d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentSequence extends AbstractTag -{ - - protected $Id = '0040,A730'; - - protected $Name = 'ContentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentTemplateSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentTemplateSequence.php deleted file mode 100644 index 180234732..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentTemplateSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentTemplateSequence extends AbstractTag -{ - - protected $Id = '0040,A504'; - - protected $Name = 'ContentTemplateSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Template Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContentTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContentTime.php deleted file mode 100644 index 877083b78..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContentTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentTime extends AbstractTag -{ - - protected $Id = '0008,0033'; - - protected $Name = 'ContentTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupExtensionCreatorUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupExtensionCreatorUID.php deleted file mode 100644 index 69f60e58f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupExtensionCreatorUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContextGroupExtensionCreatorUID extends AbstractTag -{ - - protected $Id = '0008,010D'; - - protected $Name = 'ContextGroupExtensionCreatorUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Context Group Extension Creator UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupExtensionFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupExtensionFlag.php deleted file mode 100644 index c12fd21ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupExtensionFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContextGroupExtensionFlag extends AbstractTag -{ - - protected $Id = '0008,010B'; - - protected $Name = 'ContextGroupExtensionFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Context Group Extension Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupLocalVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupLocalVersion.php deleted file mode 100644 index e7b230cb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupLocalVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContextGroupLocalVersion extends AbstractTag -{ - - protected $Id = '0008,0107'; - - protected $Name = 'ContextGroupLocalVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Context Group Local Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupVersion.php deleted file mode 100644 index e5a927923..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContextGroupVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContextGroupVersion extends AbstractTag -{ - - protected $Id = '0008,0106'; - - protected $Name = 'ContextGroupVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Context Group Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContextIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContextIdentifier.php deleted file mode 100644 index e88ac942f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContextIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContextIdentifier extends AbstractTag -{ - - protected $Id = '0008,010F'; - - protected $Name = 'ContextIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Context Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContextUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContextUID.php deleted file mode 100644 index 9ebd0898a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContextUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContextUID extends AbstractTag -{ - - protected $Id = '0008,0117'; - - protected $Name = 'ContextUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Context UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Contiguous.php b/lib/PHPExiftool/Driver/Tag/DICOM/Contiguous.php deleted file mode 100644 index d94149cea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Contiguous.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contiguous extends AbstractTag -{ - - protected $Id = '0019,1081'; - - protected $Name = 'Contiguous'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contiguous'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContinuityOfContent.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContinuityOfContent.php deleted file mode 100644 index eb417284a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContinuityOfContent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContinuityOfContent extends AbstractTag -{ - - protected $Id = '0040,A050'; - - protected $Name = 'ContinuityOfContent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Continuity Of Content'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourData.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourData.php deleted file mode 100644 index fa782b687..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourData extends AbstractTag -{ - - protected $Id = '3006,0050'; - - protected $Name = 'ContourData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourGeometricType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourGeometricType.php deleted file mode 100644 index f6dfb3486..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourGeometricType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourGeometricType extends AbstractTag -{ - - protected $Id = '3006,0042'; - - protected $Name = 'ContourGeometricType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Geometric Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourImageSequence.php deleted file mode 100644 index 6404c52f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourImageSequence extends AbstractTag -{ - - protected $Id = '3006,0016'; - - protected $Name = 'ContourImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourNumber.php deleted file mode 100644 index 266b3ba5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourNumber extends AbstractTag -{ - - protected $Id = '3006,0048'; - - protected $Name = 'ContourNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourOffsetVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourOffsetVector.php deleted file mode 100644 index ee04eac7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourOffsetVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourOffsetVector extends AbstractTag -{ - - protected $Id = '3006,0045'; - - protected $Name = 'ContourOffsetVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Offset Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourSequence.php deleted file mode 100644 index 6616256de..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourSequence extends AbstractTag -{ - - protected $Id = '3006,0040'; - - protected $Name = 'ContourSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourSlabThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourSlabThickness.php deleted file mode 100644 index c6e663139..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourSlabThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourSlabThickness extends AbstractTag -{ - - protected $Id = '3006,0044'; - - protected $Name = 'ContourSlabThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Slab Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContourUncertaintyRadius.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContourUncertaintyRadius.php deleted file mode 100644 index 7308815ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContourUncertaintyRadius.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContourUncertaintyRadius extends AbstractTag -{ - - protected $Id = '0070,0312'; - - protected $Name = 'ContourUncertaintyRadius'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contour Uncertainty Radius'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastAdministrationProfileSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastAdministrationProfileSeq.php deleted file mode 100644 index b9ca04fc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastAdministrationProfileSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastAdministrationProfileSeq extends AbstractTag -{ - - protected $Id = '0018,9340'; - - protected $Name = 'ContrastAdministrationProfileSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Administration Profile Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAdministrationRoute.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAdministrationRoute.php deleted file mode 100644 index 71d297996..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAdministrationRoute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusAdministrationRoute extends AbstractTag -{ - - protected $Id = '0018,0014'; - - protected $Name = 'ContrastBolusAdministrationRoute'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Administration Route'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgent.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgent.php deleted file mode 100644 index d4908f3b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusAgent extends AbstractTag -{ - - protected $Id = '0018,0010'; - - protected $Name = 'ContrastBolusAgent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Agent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentAdministered.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentAdministered.php deleted file mode 100644 index b35037f2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentAdministered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusAgentAdministered extends AbstractTag -{ - - protected $Id = '0018,9342'; - - protected $Name = 'ContrastBolusAgentAdministered'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Agent Administered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentDetected.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentDetected.php deleted file mode 100644 index 58e6fb5f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentDetected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusAgentDetected extends AbstractTag -{ - - protected $Id = '0018,9343'; - - protected $Name = 'ContrastBolusAgentDetected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Agent Detected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentNumber.php deleted file mode 100644 index 0b2a69029..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusAgentNumber extends AbstractTag -{ - - protected $Id = '0018,9337'; - - protected $Name = 'ContrastBolusAgentNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Agent Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentPhase.php deleted file mode 100644 index 964b00997..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusAgentPhase extends AbstractTag -{ - - protected $Id = '0018,9344'; - - protected $Name = 'ContrastBolusAgentPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Agent Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentSequence.php deleted file mode 100644 index ed459d0ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusAgentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusAgentSequence extends AbstractTag -{ - - protected $Id = '0018,0012'; - - protected $Name = 'ContrastBolusAgentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Agent Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusConcentration.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusConcentration.php deleted file mode 100644 index b9fb15e9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusConcentration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusConcentration extends AbstractTag -{ - - protected $Id = '0018,1049'; - - protected $Name = 'ContrastBolusConcentration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Concentration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredient.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredient.php deleted file mode 100644 index 3f5686fd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusIngredient extends AbstractTag -{ - - protected $Id = '0018,1048'; - - protected $Name = 'ContrastBolusIngredient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Ingredient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredientCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredientCodeSeq.php deleted file mode 100644 index db7072b17..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredientCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusIngredientCodeSeq extends AbstractTag -{ - - protected $Id = '0018,9338'; - - protected $Name = 'ContrastBolusIngredientCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Ingredient Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredientOpaque.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredientOpaque.php deleted file mode 100644 index 69de65de8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusIngredientOpaque.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusIngredientOpaque extends AbstractTag -{ - - protected $Id = '0018,9425'; - - protected $Name = 'ContrastBolusIngredientOpaque'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Ingredient Opaque'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusRoute.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusRoute.php deleted file mode 100644 index 6a7ec4ec5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusRoute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusRoute extends AbstractTag -{ - - protected $Id = '0018,1040'; - - protected $Name = 'ContrastBolusRoute'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Route'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusStartTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusStartTime.php deleted file mode 100644 index b32843711..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusStartTime extends AbstractTag -{ - - protected $Id = '0018,1042'; - - protected $Name = 'ContrastBolusStartTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusStopTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusStopTime.php deleted file mode 100644 index 8f894780f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusStopTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusStopTime extends AbstractTag -{ - - protected $Id = '0018,1043'; - - protected $Name = 'ContrastBolusStopTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Stop Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusTotalDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusTotalDose.php deleted file mode 100644 index c19191eb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusTotalDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusTotalDose extends AbstractTag -{ - - protected $Id = '0018,1044'; - - protected $Name = 'ContrastBolusTotalDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Total Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusUsageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusUsageSequence.php deleted file mode 100644 index a87d84067..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusUsageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusUsageSequence extends AbstractTag -{ - - protected $Id = '0018,9341'; - - protected $Name = 'ContrastBolusUsageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Usage Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusVolume.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusVolume.php deleted file mode 100644 index 2f64625da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastBolusVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastBolusVolume extends AbstractTag -{ - - protected $Id = '0018,1041'; - - protected $Name = 'ContrastBolusVolume'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Bolus Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFlowDuration.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFlowDuration.php deleted file mode 100644 index af109a85f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFlowDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastFlowDuration extends AbstractTag -{ - - protected $Id = '0018,1047'; - - protected $Name = 'ContrastFlowDuration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Flow Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFlowRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFlowRate.php deleted file mode 100644 index bc607bbde..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFlowRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastFlowRate extends AbstractTag -{ - - protected $Id = '0018,1046'; - - protected $Name = 'ContrastFlowRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Flow Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFrameAveraging.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFrameAveraging.php deleted file mode 100644 index 987acf348..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContrastFrameAveraging.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastFrameAveraging extends AbstractTag -{ - - protected $Id = '0028,6112'; - - protected $Name = 'ContrastFrameAveraging'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Frame Averaging'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContributingEquipmentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContributingEquipmentSequence.php deleted file mode 100644 index 827a49030..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContributingEquipmentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributingEquipmentSequence extends AbstractTag -{ - - protected $Id = '0018,A001'; - - protected $Name = 'ContributingEquipmentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contributing Equipment Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContributingSOPInstancesRefSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContributingSOPInstancesRefSeq.php deleted file mode 100644 index f48608435..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContributingSOPInstancesRefSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributingSOPInstancesRefSeq extends AbstractTag -{ - - protected $Id = '0020,9529'; - - protected $Name = 'ContributingSOPInstancesRefSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contributing SOP Instances Ref Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContributingSourcesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContributingSourcesSequence.php deleted file mode 100644 index e6cbc9b91..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContributingSourcesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributingSourcesSequence extends AbstractTag -{ - - protected $Id = '0018,9506'; - - protected $Name = 'ContributingSourcesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contributing Sources Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContributionDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContributionDateTime.php deleted file mode 100644 index 9baace31f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContributionDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributionDateTime extends AbstractTag -{ - - protected $Id = '0018,A002'; - - protected $Name = 'ContributionDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contribution Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ContributionDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ContributionDescription.php deleted file mode 100644 index d21d497ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ContributionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributionDescription extends AbstractTag -{ - - protected $Id = '0018,A003'; - - protected $Name = 'ContributionDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contribution Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPoint3DPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ControlPoint3DPosition.php deleted file mode 100644 index 27e7b49f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPoint3DPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPoint3DPosition extends AbstractTag -{ - - protected $Id = '300A,02D4'; - - protected $Name = 'ControlPoint3DPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Control Point 3D Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointDeliverySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointDeliverySequence.php deleted file mode 100644 index dd079a2d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointDeliverySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPointDeliverySequence extends AbstractTag -{ - - protected $Id = '3008,0040'; - - protected $Name = 'ControlPointDeliverySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Control Point Delivery Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointIndex.php deleted file mode 100644 index 010334b01..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPointIndex extends AbstractTag -{ - - protected $Id = '300A,0112'; - - protected $Name = 'ControlPointIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Control Point Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointOrientation.php deleted file mode 100644 index fcd007da3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPointOrientation extends AbstractTag -{ - - protected $Id = '300A,0412'; - - protected $Name = 'ControlPointOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Control Point Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointRelativePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointRelativePosition.php deleted file mode 100644 index 0f4528b5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointRelativePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPointRelativePosition extends AbstractTag -{ - - protected $Id = '300A,02D2'; - - protected $Name = 'ControlPointRelativePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Control Point Relative Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointSequence.php deleted file mode 100644 index 0a3a1818e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ControlPointSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPointSequence extends AbstractTag -{ - - protected $Id = '300A,0111'; - - protected $Name = 'ControlPointSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Control Point Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConventionalControlPointVerifySeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConventionalControlPointVerifySeq.php deleted file mode 100644 index 1ee7fc5ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConventionalControlPointVerifySeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConventionalControlPointVerifySeq extends AbstractTag -{ - - protected $Id = '0074,104C'; - - protected $Name = 'ConventionalControlPointVerifySeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conventional Control Point Verify Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConventionalMachineVerificationSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConventionalMachineVerificationSeq.php deleted file mode 100644 index d83947faf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConventionalMachineVerificationSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConventionalMachineVerificationSeq extends AbstractTag -{ - - protected $Id = '0074,1044'; - - protected $Name = 'ConventionalMachineVerificationSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conventional Machine Verification Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConversionType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConversionType.php deleted file mode 100644 index b6afc2fc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConversionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConversionType extends AbstractTag -{ - - protected $Id = '0008,0064'; - - protected $Name = 'ConversionType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conversion Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConvolutionKernel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConvolutionKernel.php deleted file mode 100644 index 8084c16ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConvolutionKernel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConvolutionKernel extends AbstractTag -{ - - protected $Id = '0018,1210'; - - protected $Name = 'ConvolutionKernel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Convolution Kernel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ConvolutionKernelGroup.php b/lib/PHPExiftool/Driver/Tag/DICOM/ConvolutionKernelGroup.php deleted file mode 100644 index 82ad03a71..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ConvolutionKernelGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConvolutionKernelGroup extends AbstractTag -{ - - protected $Id = '0018,9316'; - - protected $Name = 'ConvolutionKernelGroup'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Convolution Kernel Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateStartValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateStartValue.php deleted file mode 100644 index 6f1071102..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateStartValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoordinateStartValue extends AbstractTag -{ - - protected $Id = '50xx,0112'; - - protected $Name = 'CoordinateStartValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coordinate Start Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateStepValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateStepValue.php deleted file mode 100644 index 491f3b561..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateStepValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoordinateStepValue extends AbstractTag -{ - - protected $Id = '50xx,0114'; - - protected $Name = 'CoordinateStepValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coordinate Step Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateSystemAxisCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateSystemAxisCodeSequence.php deleted file mode 100644 index d1077ebd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CoordinateSystemAxisCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoordinateSystemAxisCodeSequence extends AbstractTag -{ - - protected $Id = '0040,08DA'; - - protected $Name = 'CoordinateSystemAxisCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coordinate System Axis Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CornealSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/CornealSize.php deleted file mode 100644 index 09e265c79..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CornealSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornealSize extends AbstractTag -{ - - protected $Id = '0046,0046'; - - protected $Name = 'CornealSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Corneal Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedAfterGlowTerms.php b/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedAfterGlowTerms.php deleted file mode 100644 index 1da4f0bed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedAfterGlowTerms.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CorrectedAfterGlowTerms extends AbstractTag -{ - - protected $Id = '0043,1021'; - - protected $Name = 'CorrectedAfterGlowTerms'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Corrected After Glow Terms'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedImage.php deleted file mode 100644 index ac98c1d2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CorrectedImage extends AbstractTag -{ - - protected $Id = '0028,0051'; - - protected $Name = 'CorrectedImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Corrected Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedParameterSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedParameterSequence.php deleted file mode 100644 index 720cad35a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectedParameterSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CorrectedParameterSequence extends AbstractTag -{ - - protected $Id = '3008,0068'; - - protected $Name = 'CorrectedParameterSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Corrected Parameter Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectionValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/CorrectionValue.php deleted file mode 100644 index f5a89fef2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CorrectionValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CorrectionValue extends AbstractTag -{ - - protected $Id = '3008,006A'; - - protected $Name = 'CorrectionValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Correction Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CountRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/CountRate.php deleted file mode 100644 index 4b8c7fe12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CountRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountRate extends AbstractTag -{ - - protected $Id = '0018,1243'; - - protected $Name = 'CountRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Count Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CountryOfResidence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CountryOfResidence.php deleted file mode 100644 index 3fb3058f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CountryOfResidence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryOfResidence extends AbstractTag -{ - - protected $Id = '0010,2150'; - - protected $Name = 'CountryOfResidence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Country Of Residence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CountsAccumulated.php b/lib/PHPExiftool/Driver/Tag/DICOM/CountsAccumulated.php deleted file mode 100644 index f2b9e65e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CountsAccumulated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountsAccumulated extends AbstractTag -{ - - protected $Id = '0018,0070'; - - protected $Name = 'CountsAccumulated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Counts Accumulated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CountsIncluded.php b/lib/PHPExiftool/Driver/Tag/DICOM/CountsIncluded.php deleted file mode 100644 index 3f437182a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CountsIncluded.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountsIncluded extends AbstractTag -{ - - protected $Id = '0054,1400'; - - protected $Name = 'CountsIncluded'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Counts Included'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CountsSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/CountsSource.php deleted file mode 100644 index dbc296401..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CountsSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountsSource extends AbstractTag -{ - - protected $Id = '0054,1002'; - - protected $Name = 'CountsSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Counts Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CoverageOfKSpace.php b/lib/PHPExiftool/Driver/Tag/DICOM/CoverageOfKSpace.php deleted file mode 100644 index 5d645c6ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CoverageOfKSpace.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoverageOfKSpace extends AbstractTag -{ - - protected $Id = '0018,9094'; - - protected $Name = 'CoverageOfKSpace'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coverage Of K Space'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CranialThermalIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/CranialThermalIndex.php deleted file mode 100644 index a94d2b64a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CranialThermalIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CranialThermalIndex extends AbstractTag -{ - - protected $Id = '0018,5026'; - - protected $Name = 'CranialThermalIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cranial Thermal Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CreationDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/CreationDate.php deleted file mode 100644 index 6ed96b67b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CreationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationDate extends AbstractTag -{ - - protected $Id = '2100,0040'; - - protected $Name = 'CreationDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creation Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CreationTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/CreationTime.php deleted file mode 100644 index 63fc998a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CreationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationTime extends AbstractTag -{ - - protected $Id = '2100,0050'; - - protected $Name = 'CreationTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creation Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CreatorVersionUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/CreatorVersionUID.php deleted file mode 100644 index 7051fed69..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CreatorVersionUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorVersionUID extends AbstractTag -{ - - protected $Id = '0008,9123'; - - protected $Name = 'CreatorVersionUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creator Version UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CrosstalkCalibrationDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/CrosstalkCalibrationDate.php deleted file mode 100644 index 2a3b68937..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CrosstalkCalibrationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CrosstalkCalibrationDate extends AbstractTag -{ - - protected $Id = '0045,101F'; - - protected $Name = 'CrosstalkCalibrationDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Crosstalk Calibration Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CrosstalkCalibrationTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/CrosstalkCalibrationTime.php deleted file mode 100644 index 1eb5ebd7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CrosstalkCalibrationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CrosstalkCalibrationTime extends AbstractTag -{ - - protected $Id = '0045,1020'; - - protected $Name = 'CrosstalkCalibrationTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Crosstalk Calibration Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeDoseReferenceCoefficient.php b/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeDoseReferenceCoefficient.php deleted file mode 100644 index 86424fbaa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeDoseReferenceCoefficient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CumulativeDoseReferenceCoefficient extends AbstractTag -{ - - protected $Id = '300A,010C'; - - protected $Name = 'CumulativeDoseReferenceCoefficient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cumulative Dose Reference Coefficient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeDoseToDoseReference.php b/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeDoseToDoseReference.php deleted file mode 100644 index 72c0630a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeDoseToDoseReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CumulativeDoseToDoseReference extends AbstractTag -{ - - protected $Id = '3008,0052'; - - protected $Name = 'CumulativeDoseToDoseReference'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cumulative Dose To Dose Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeMetersetWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeMetersetWeight.php deleted file mode 100644 index e100e3c1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeMetersetWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CumulativeMetersetWeight extends AbstractTag -{ - - protected $Id = '300A,0134'; - - protected $Name = 'CumulativeMetersetWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cumulative Meterset Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeTimeWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeTimeWeight.php deleted file mode 100644 index 5eb10fcc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CumulativeTimeWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CumulativeTimeWeight extends AbstractTag -{ - - protected $Id = '300A,02D6'; - - protected $Name = 'CumulativeTimeWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cumulative Time Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentFractionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurrentFractionNumber.php deleted file mode 100644 index b712ff0c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentFractionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentFractionNumber extends AbstractTag -{ - - protected $Id = '3008,0022'; - - protected $Name = 'CurrentFractionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current Fraction Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentPatientLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurrentPatientLocation.php deleted file mode 100644 index 7310322b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentPatientLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentPatientLocation extends AbstractTag -{ - - protected $Id = '0038,0300'; - - protected $Name = 'CurrentPatientLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current Patient Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentRequestedProcEvidenceSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurrentRequestedProcEvidenceSeq.php deleted file mode 100644 index 2e00d7855..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentRequestedProcEvidenceSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentRequestedProcEvidenceSeq extends AbstractTag -{ - - protected $Id = '0040,A375'; - - protected $Name = 'CurrentRequestedProcEvidenceSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current Requested Proc Evidence Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentTreatmentStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurrentTreatmentStatus.php deleted file mode 100644 index a5fe9d3c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurrentTreatmentStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentTreatmentStatus extends AbstractTag -{ - - protected $Id = '3008,0200'; - - protected $Name = 'CurrentTreatmentStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current Treatment Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveActivationLayer.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveActivationLayer.php deleted file mode 100644 index a28cd2f97..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveActivationLayer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveActivationLayer extends AbstractTag -{ - - protected $Id = '50xx,1001'; - - protected $Name = 'CurveActivationLayer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Activation Layer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveData.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveData.php deleted file mode 100644 index 5c01fc7f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveData extends AbstractTag -{ - - protected $Id = '50xx,3000'; - - protected $Name = 'CurveData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDataDescriptor.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveDataDescriptor.php deleted file mode 100644 index b071b3444..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDataDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveDataDescriptor extends AbstractTag -{ - - protected $Id = '50xx,0110'; - - protected $Name = 'CurveDataDescriptor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Data Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveDate.php deleted file mode 100644 index 5da4034a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveDate extends AbstractTag -{ - - protected $Id = '0008,0025'; - - protected $Name = 'CurveDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveDescription.php deleted file mode 100644 index 401852509..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveDescription extends AbstractTag -{ - - protected $Id = '50xx,0022'; - - protected $Name = 'CurveDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDimensions.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveDimensions.php deleted file mode 100644 index e50924399..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveDimensions extends AbstractTag -{ - - protected $Id = '50xx,0005'; - - protected $Name = 'CurveDimensions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveLabel.php deleted file mode 100644 index 9b3881e8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveLabel extends AbstractTag -{ - - protected $Id = '50xx,2500'; - - protected $Name = 'CurveLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveNumber.php deleted file mode 100644 index 52d0fe7bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveNumber extends AbstractTag -{ - - protected $Id = '0020,0024'; - - protected $Name = 'CurveNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveRange.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveRange.php deleted file mode 100644 index eaad38047..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveRange extends AbstractTag -{ - - protected $Id = '50xx,0106'; - - protected $Name = 'CurveRange'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CurveTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/CurveTime.php deleted file mode 100644 index f22315883..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CurveTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurveTime extends AbstractTag -{ - - protected $Id = '0008,0035'; - - protected $Name = 'CurveTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curve Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CustodialOrganizationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CustodialOrganizationSequence.php deleted file mode 100644 index 3c87f66de..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CustodialOrganizationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustodialOrganizationSequence extends AbstractTag -{ - - protected $Id = '0040,A07C'; - - protected $Name = 'CustodialOrganizationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Custodial Organization Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderAxis.php b/lib/PHPExiftool/Driver/Tag/DICOM/CylinderAxis.php deleted file mode 100644 index 852ecd744..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderAxis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CylinderAxis extends AbstractTag -{ - - protected $Id = '0022,0009'; - - protected $Name = 'CylinderAxis'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cylinder Axis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderLensPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/CylinderLensPower.php deleted file mode 100644 index 38bb8ad17..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderLensPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CylinderLensPower extends AbstractTag -{ - - protected $Id = '0022,0008'; - - protected $Name = 'CylinderLensPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cylinder Lens Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/CylinderPower.php deleted file mode 100644 index 0557938a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CylinderPower extends AbstractTag -{ - - protected $Id = '0046,0147'; - - protected $Name = 'CylinderPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cylinder Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/CylinderSequence.php deleted file mode 100644 index 6293dc519..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/CylinderSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CylinderSequence extends AbstractTag -{ - - protected $Id = '0046,0018'; - - protected $Name = 'CylinderSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cylinder Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASAdInput.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASAdInput.php deleted file mode 100644 index a91464641..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASAdInput.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASAdInput extends AbstractTag -{ - - protected $Id = '0043,1045'; - - protected $Name = 'DASAdInput'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Ad Input'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASAutoZero.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASAutoZero.php deleted file mode 100644 index 970a2824d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASAutoZero.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASAutoZero extends AbstractTag -{ - - protected $Id = '0043,1049'; - - protected $Name = 'DASAutoZero'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Auto Zero'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASCalFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASCalFrequency.php deleted file mode 100644 index aa2517303..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASCalFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASCalFrequency extends AbstractTag -{ - - protected $Id = '0043,1047'; - - protected $Name = 'DASCalFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Cal Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASCalMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASCalMode.php deleted file mode 100644 index 8afbaae3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASCalMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASCalMode extends AbstractTag -{ - - protected $Id = '0043,1046'; - - protected $Name = 'DASCalMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Cal Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASFpaGain.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASFpaGain.php deleted file mode 100644 index dea284f37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASFpaGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASFpaGain extends AbstractTag -{ - - protected $Id = '0043,1043'; - - protected $Name = 'DASFpaGain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Fpa Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASGain.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASGain.php deleted file mode 100644 index 52f99f3bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASGain extends AbstractTag -{ - - protected $Id = '0045,1004'; - - protected $Name = 'DASGain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASOutputSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASOutputSource.php deleted file mode 100644 index 852eb234f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASOutputSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASOutputSource extends AbstractTag -{ - - protected $Id = '0043,1044'; - - protected $Name = 'DASOutputSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Output Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASRegXm.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASRegXm.php deleted file mode 100644 index 6c75ab31f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASRegXm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASRegXm extends AbstractTag -{ - - protected $Id = '0043,1048'; - - protected $Name = 'DASRegXm'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Reg Xm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASTemperature.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASTemperature.php deleted file mode 100644 index a4d89cad1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASTemperature extends AbstractTag -{ - - protected $Id = '0045,1005'; - - protected $Name = 'DASTemperature'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASTriggerSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASTriggerSource.php deleted file mode 100644 index ca3d64733..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASTriggerSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASTriggerSource extends AbstractTag -{ - - protected $Id = '0043,1042'; - - protected $Name = 'DASTriggerSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Trigger Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASType.php deleted file mode 100644 index 3112d4f3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASType extends AbstractTag -{ - - protected $Id = '0045,1003'; - - protected $Name = 'DASType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DASXmPattern.php b/lib/PHPExiftool/Driver/Tag/DICOM/DASXmPattern.php deleted file mode 100644 index 0d96af374..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DASXmPattern.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DASXmPattern extends AbstractTag -{ - - protected $Id = '0043,104B'; - - protected $Name = 'DASXmPattern'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DAS Xm Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DBDt.php b/lib/PHPExiftool/Driver/Tag/DICOM/DBDt.php deleted file mode 100644 index 1921892a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DBDt.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DBDt extends AbstractTag -{ - - protected $Id = '0018,1318'; - - protected $Name = 'DB-Dt'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DB-Dt'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DCTLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/DCTLabel.php deleted file mode 100644 index d607a4582..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DCTLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCTLabel extends AbstractTag -{ - - protected $Id = '0028,0700'; - - protected $Name = 'DCTLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DCT Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHData.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHData.php deleted file mode 100644 index 92b70dcc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHData extends AbstractTag -{ - - protected $Id = '3004,0058'; - - protected $Name = 'DVHData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHDoseScaling.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHDoseScaling.php deleted file mode 100644 index 9089df9b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHDoseScaling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHDoseScaling extends AbstractTag -{ - - protected $Id = '3004,0052'; - - protected $Name = 'DVHDoseScaling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Dose Scaling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHMaximumDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHMaximumDose.php deleted file mode 100644 index 4b2128e24..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHMaximumDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHMaximumDose extends AbstractTag -{ - - protected $Id = '3004,0072'; - - protected $Name = 'DVHMaximumDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Maximum Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHMeanDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHMeanDose.php deleted file mode 100644 index 1a627a8a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHMeanDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHMeanDose extends AbstractTag -{ - - protected $Id = '3004,0074'; - - protected $Name = 'DVHMeanDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Mean Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHMinimumDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHMinimumDose.php deleted file mode 100644 index a5207dc0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHMinimumDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHMinimumDose extends AbstractTag -{ - - protected $Id = '3004,0070'; - - protected $Name = 'DVHMinimumDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Minimum Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHNormalizationDoseValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHNormalizationDoseValue.php deleted file mode 100644 index 4712a2909..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHNormalizationDoseValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHNormalizationDoseValue extends AbstractTag -{ - - protected $Id = '3004,0042'; - - protected $Name = 'DVHNormalizationDoseValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Normalization Dose Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHNormalizationPoint.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHNormalizationPoint.php deleted file mode 100644 index 3e46f72e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHNormalizationPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHNormalizationPoint extends AbstractTag -{ - - protected $Id = '3004,0040'; - - protected $Name = 'DVHNormalizationPoint'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Normalization Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHNumberOfBins.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHNumberOfBins.php deleted file mode 100644 index fa56254ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHNumberOfBins.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHNumberOfBins extends AbstractTag -{ - - protected $Id = '3004,0056'; - - protected $Name = 'DVHNumberOfBins'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Number Of Bins'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHROIContributionType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHROIContributionType.php deleted file mode 100644 index c2daf4315..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHROIContributionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHROIContributionType extends AbstractTag -{ - - protected $Id = '3004,0062'; - - protected $Name = 'DVHROIContributionType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVHROI Contribution Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHReferencedROISequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHReferencedROISequence.php deleted file mode 100644 index c78fb8929..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHReferencedROISequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHReferencedROISequence extends AbstractTag -{ - - protected $Id = '3004,0060'; - - protected $Name = 'DVHReferencedROISequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Referenced ROI Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHSequence.php deleted file mode 100644 index c43cff47a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHSequence extends AbstractTag -{ - - protected $Id = '3004,0050'; - - protected $Name = 'DVHSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHType.php deleted file mode 100644 index 2e42bc0d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHType extends AbstractTag -{ - - protected $Id = '3004,0001'; - - protected $Name = 'DVHType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DVHVolumeUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/DVHVolumeUnits.php deleted file mode 100644 index 87ef3be60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DVHVolumeUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVHVolumeUnits extends AbstractTag -{ - - protected $Id = '3004,0054'; - - protected $Name = 'DVHVolumeUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVH Volume Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataBlock.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataBlock.php deleted file mode 100644 index 5a701b9a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataBlock.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataBlock extends AbstractTag -{ - - protected $Id = '0028,0702'; - - protected $Name = 'DataBlock'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Block'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataBlockDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataBlockDescription.php deleted file mode 100644 index efd4043c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataBlockDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataBlockDescription extends AbstractTag -{ - - protected $Id = '0028,0701'; - - protected $Name = 'DataBlockDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Block Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataCollectionCenterPatient.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataCollectionCenterPatient.php deleted file mode 100644 index 527210427..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataCollectionCenterPatient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataCollectionCenterPatient extends AbstractTag -{ - - protected $Id = '0018,9313'; - - protected $Name = 'DataCollectionCenterPatient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Collection Center Patient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataCollectionDiameter.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataCollectionDiameter.php deleted file mode 100644 index 2997fe419..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataCollectionDiameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataCollectionDiameter extends AbstractTag -{ - - protected $Id = '0018,0090'; - - protected $Name = 'DataCollectionDiameter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Collection Diameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataElementsSigned.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataElementsSigned.php deleted file mode 100644 index 2a4827e1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataElementsSigned.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataElementsSigned extends AbstractTag -{ - - protected $Id = '0400,0020'; - - protected $Name = 'DataElementsSigned'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Elements Signed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataInformationSequence.php deleted file mode 100644 index 4636612fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataInformationSequence extends AbstractTag -{ - - protected $Id = '0054,0063'; - - protected $Name = 'DataInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataPathAssignment.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataPathAssignment.php deleted file mode 100644 index 0c032eab3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataPathAssignment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataPathAssignment extends AbstractTag -{ - - protected $Id = '0028,1402'; - - protected $Name = 'DataPathAssignment'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Path Assignment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataPathID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataPathID.php deleted file mode 100644 index 3ec575989..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataPathID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataPathID extends AbstractTag -{ - - protected $Id = '0028,140E'; - - protected $Name = 'DataPathID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Path ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataPointColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataPointColumns.php deleted file mode 100644 index 52f92d983..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataPointColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataPointColumns extends AbstractTag -{ - - protected $Id = '0028,9002'; - - protected $Name = 'DataPointColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Point Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataPointRows.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataPointRows.php deleted file mode 100644 index 01d6ee0e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataPointRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataPointRows extends AbstractTag -{ - - protected $Id = '0028,9001'; - - protected $Name = 'DataPointRows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Point Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataRepresentation.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataRepresentation.php deleted file mode 100644 index 80808219d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataRepresentation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataRepresentation extends AbstractTag -{ - - protected $Id = '0028,9108'; - - protected $Name = 'DataRepresentation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Representation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataSetSubtype.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataSetSubtype.php deleted file mode 100644 index dceac471e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataSetSubtype.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataSetSubtype extends AbstractTag -{ - - protected $Id = '0008,0041'; - - protected $Name = 'DataSetSubtype'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Set Subtype'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataSetTrailingPadding.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataSetTrailingPadding.php deleted file mode 100644 index 53df11f33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataSetTrailingPadding.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataSetTrailingPadding extends AbstractTag -{ - - protected $Id = 'FFFC,FFFC'; - - protected $Name = 'DataSetTrailingPadding'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Set Trailing Padding'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataSetType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataSetType.php deleted file mode 100644 index 67bc32171..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataSetType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataSetType extends AbstractTag -{ - - protected $Id = '0008,0040'; - - protected $Name = 'DataSetType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Set Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataSizeForScanData.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataSizeForScanData.php deleted file mode 100644 index 79f713589..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataSizeForScanData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataSizeForScanData extends AbstractTag -{ - - protected $Id = '0019,104B'; - - protected $Name = 'DataSizeForScanData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Size For Scan Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataType.php deleted file mode 100644 index 7673772bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataType extends AbstractTag -{ - - protected $Id = '0018,9808'; - - protected $Name = 'DataType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DataValueRepresentation.php b/lib/PHPExiftool/Driver/Tag/DICOM/DataValueRepresentation.php deleted file mode 100644 index 44d1b877a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DataValueRepresentation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataValueRepresentation extends AbstractTag -{ - - protected $Id = '50xx,0103'; - - protected $Name = 'DataValueRepresentation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Value Representation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Date.php b/lib/PHPExiftool/Driver/Tag/DICOM/Date.php deleted file mode 100644 index 78475d844..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Date.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = '0040,A121'; - - protected $Name = 'Date'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DateOfLastCalibration.php b/lib/PHPExiftool/Driver/Tag/DICOM/DateOfLastCalibration.php deleted file mode 100644 index 95b16253f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DateOfLastCalibration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateOfLastCalibration extends AbstractTag -{ - - protected $Id = '0018,1200'; - - protected $Name = 'DateOfLastCalibration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Of Last Calibration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DateOfLastDetectorCalibration.php b/lib/PHPExiftool/Driver/Tag/DICOM/DateOfLastDetectorCalibration.php deleted file mode 100644 index ef8545637..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DateOfLastDetectorCalibration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateOfLastDetectorCalibration extends AbstractTag -{ - - protected $Id = '0018,700C'; - - protected $Name = 'DateOfLastDetectorCalibration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Of Last Detector Calibration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DateOfSecondaryCapture.php b/lib/PHPExiftool/Driver/Tag/DICOM/DateOfSecondaryCapture.php deleted file mode 100644 index 7756467a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DateOfSecondaryCapture.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateOfSecondaryCapture extends AbstractTag -{ - - protected $Id = '0018,1012'; - - protected $Name = 'DateOfSecondaryCapture'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Of Secondary Capture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DateTime.php deleted file mode 100644 index c1834c11e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTime extends AbstractTag -{ - - protected $Id = '0040,A120'; - - protected $Name = 'DateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeCorrected.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeCorrected.php deleted file mode 100644 index 968a285ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeCorrected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeadTimeCorrected extends AbstractTag -{ - - protected $Id = '0018,9761'; - - protected $Name = 'DeadTimeCorrected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dead Time Corrected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeCorrectionFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeCorrectionFlag.php deleted file mode 100644 index 29d768928..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeCorrectionFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeadTimeCorrectionFlag extends AbstractTag -{ - - protected $Id = '0054,1401'; - - protected $Name = 'DeadTimeCorrectionFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dead Time Correction Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeFactor.php deleted file mode 100644 index 3e44a9bfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeadTimeFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeadTimeFactor extends AbstractTag -{ - - protected $Id = '0054,1324'; - - protected $Name = 'DeadTimeFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dead Time Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrected.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrected.php deleted file mode 100644 index 8025fbef4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecayCorrected extends AbstractTag -{ - - protected $Id = '0018,9758'; - - protected $Name = 'DecayCorrected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decay Corrected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrection.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrection.php deleted file mode 100644 index 0d053203d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecayCorrection extends AbstractTag -{ - - protected $Id = '0054,1102'; - - protected $Name = 'DecayCorrection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decay Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrectionDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrectionDateTime.php deleted file mode 100644 index a5f8e0441..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecayCorrectionDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecayCorrectionDateTime extends AbstractTag -{ - - protected $Id = '0018,9701'; - - protected $Name = 'DecayCorrectionDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decay Correction Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecayFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecayFactor.php deleted file mode 100644 index 2b0311866..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecayFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecayFactor extends AbstractTag -{ - - protected $Id = '0054,1321'; - - protected $Name = 'DecayFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decay Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecimalVisualAcuity.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecimalVisualAcuity.php deleted file mode 100644 index 819963289..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecimalVisualAcuity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecimalVisualAcuity extends AbstractTag -{ - - protected $Id = '0046,0137'; - - protected $Name = 'DecimalVisualAcuity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decimal Visual Acuity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecimateCropResult.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecimateCropResult.php deleted file mode 100644 index 992062e17..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecimateCropResult.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecimateCropResult extends AbstractTag -{ - - protected $Id = '2020,00A2'; - - protected $Name = 'DecimateCropResult'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decimate Crop Result'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeconKernelParameters.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeconKernelParameters.php deleted file mode 100644 index 1886fecd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeconKernelParameters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeconKernelParameters extends AbstractTag -{ - - protected $Id = '0043,1013'; - - protected $Name = 'DeconKernelParameters'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decon Kernel Parameters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecoupledNucleus.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecoupledNucleus.php deleted file mode 100644 index 72eb38cb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecoupledNucleus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecoupledNucleus extends AbstractTag -{ - - protected $Id = '0018,9060'; - - protected $Name = 'DecoupledNucleus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decoupled Nucleus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Decoupling.php b/lib/PHPExiftool/Driver/Tag/DICOM/Decoupling.php deleted file mode 100644 index 1fe8d6d58..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Decoupling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Decoupling extends AbstractTag -{ - - protected $Id = '0018,9059'; - - protected $Name = 'Decoupling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decoupling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingChemicalShiftReference.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingChemicalShiftReference.php deleted file mode 100644 index a6cd090e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingChemicalShiftReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecouplingChemicalShiftReference extends AbstractTag -{ - - protected $Id = '0018,9063'; - - protected $Name = 'DecouplingChemicalShiftReference'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decoupling Chemical Shift Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingFrequency.php deleted file mode 100644 index bb1fccb13..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecouplingFrequency extends AbstractTag -{ - - protected $Id = '0018,9061'; - - protected $Name = 'DecouplingFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decoupling Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingMethod.php deleted file mode 100644 index 17eb5b2d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DecouplingMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecouplingMethod extends AbstractTag -{ - - protected $Id = '0018,9062'; - - protected $Name = 'DecouplingMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decoupling Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DefaultMagnificationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DefaultMagnificationType.php deleted file mode 100644 index f8f13e853..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DefaultMagnificationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultMagnificationType extends AbstractTag -{ - - protected $Id = '2010,00A6'; - - protected $Name = 'DefaultMagnificationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Magnification Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DefaultPrinterResolutionID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DefaultPrinterResolutionID.php deleted file mode 100644 index fef96e220..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DefaultPrinterResolutionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultPrinterResolutionID extends AbstractTag -{ - - protected $Id = '2010,0054'; - - protected $Name = 'DefaultPrinterResolutionID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Printer Resolution ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DefaultSmoothingType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DefaultSmoothingType.php deleted file mode 100644 index f4cd1c81e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DefaultSmoothingType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultSmoothingType extends AbstractTag -{ - - protected $Id = '2010,00A8'; - - protected $Name = 'DefaultSmoothingType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Smoothing Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeformableRegistrationGridSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeformableRegistrationGridSequence.php deleted file mode 100644 index 44ea4334e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeformableRegistrationGridSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeformableRegistrationGridSequence extends AbstractTag -{ - - protected $Id = '0064,0005'; - - protected $Name = 'DeformableRegistrationGridSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Deformable Registration Grid Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeformableRegistrationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeformableRegistrationSequence.php deleted file mode 100644 index f23fc0041..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeformableRegistrationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeformableRegistrationSequence extends AbstractTag -{ - - protected $Id = '0064,0002'; - - protected $Name = 'DeformableRegistrationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Deformable Registration Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DegreeOfDilation.php b/lib/PHPExiftool/Driver/Tag/DICOM/DegreeOfDilation.php deleted file mode 100644 index 47554f50c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DegreeOfDilation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DegreeOfDilation extends AbstractTag -{ - - protected $Id = '0022,000E'; - - protected $Name = 'DegreeOfDilation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Degree Of Dilation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DegreeOfRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/DegreeOfRotation.php deleted file mode 100644 index 24e3b04db..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DegreeOfRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DegreeOfRotation extends AbstractTag -{ - - protected $Id = '0043,1041'; - - protected $Name = 'DegreeOfRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Degree Of Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DegreesOfAzimuth.php b/lib/PHPExiftool/Driver/Tag/DICOM/DegreesOfAzimuth.php deleted file mode 100644 index d57481300..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DegreesOfAzimuth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DegreesOfAzimuth extends AbstractTag -{ - - protected $Id = '0019,1026'; - - protected $Name = 'DegreesOfAzimuth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Degrees Of Azimuth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeidentificationMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeidentificationMethod.php deleted file mode 100644 index bf2679c22..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeidentificationMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeidentificationMethod extends AbstractTag -{ - - protected $Id = '0012,0063'; - - protected $Name = 'DeidentificationMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Deidentification Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeidentificationMethodCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeidentificationMethodCodeSequence.php deleted file mode 100644 index 6a1dbf510..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeidentificationMethodCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeidentificationMethodCodeSequence extends AbstractTag -{ - - protected $Id = '0012,0064'; - - protected $Name = 'DeidentificationMethodCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Deidentification Method Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DelayAfterTrigger.php b/lib/PHPExiftool/Driver/Tag/DICOM/DelayAfterTrigger.php deleted file mode 100644 index 64bf98cc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DelayAfterTrigger.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DelayAfterTrigger extends AbstractTag -{ - - protected $Id = '0019,108D'; - - protected $Name = 'DelayAfterTrigger'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delay After Trigger'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeletionLock.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeletionLock.php deleted file mode 100644 index db6711e60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeletionLock.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeletionLock extends AbstractTag -{ - - protected $Id = '0074,1230'; - - protected $Name = 'DeletionLock'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Deletion Lock'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredChannelTotalTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredChannelTotalTime.php deleted file mode 100644 index 713b4cdf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredChannelTotalTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveredChannelTotalTime extends AbstractTag -{ - - protected $Id = '3008,0134'; - - protected $Name = 'DeliveredChannelTotalTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivered Channel Total Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredMeterset.php deleted file mode 100644 index 3251b7efd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveredMeterset extends AbstractTag -{ - - protected $Id = '3008,0044'; - - protected $Name = 'DeliveredMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivered Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredNumberOfPulses.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredNumberOfPulses.php deleted file mode 100644 index 5cbaf8bcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredNumberOfPulses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveredNumberOfPulses extends AbstractTag -{ - - protected $Id = '3008,0138'; - - protected $Name = 'DeliveredNumberOfPulses'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivered Number Of Pulses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredPrimaryMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredPrimaryMeterset.php deleted file mode 100644 index 065fb39ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredPrimaryMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveredPrimaryMeterset extends AbstractTag -{ - - protected $Id = '3008,0036'; - - protected $Name = 'DeliveredPrimaryMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivered Primary Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredPulseRepetitionInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredPulseRepetitionInterval.php deleted file mode 100644 index a3fd097c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredPulseRepetitionInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveredPulseRepetitionInterval extends AbstractTag -{ - - protected $Id = '3008,013C'; - - protected $Name = 'DeliveredPulseRepetitionInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivered Pulse Repetition Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredSecondaryMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredSecondaryMeterset.php deleted file mode 100644 index bf211a93b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredSecondaryMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveredSecondaryMeterset extends AbstractTag -{ - - protected $Id = '3008,0037'; - - protected $Name = 'DeliveredSecondaryMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivered Secondary Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredTreatmentTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredTreatmentTime.php deleted file mode 100644 index 059e44a4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveredTreatmentTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveredTreatmentTime extends AbstractTag -{ - - protected $Id = '3008,003B'; - - protected $Name = 'DeliveredTreatmentTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivered Treatment Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryMaximumDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryMaximumDose.php deleted file mode 100644 index df9421fb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryMaximumDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveryMaximumDose extends AbstractTag -{ - - protected $Id = '300A,0023'; - - protected $Name = 'DeliveryMaximumDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivery Maximum Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryVerificationImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryVerificationImageSequence.php deleted file mode 100644 index b24baf532..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryVerificationImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveryVerificationImageSequence extends AbstractTag -{ - - protected $Id = '0074,1030'; - - protected $Name = 'DeliveryVerificationImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivery Verification Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryWarningDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryWarningDose.php deleted file mode 100644 index d41990e0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeliveryWarningDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeliveryWarningDose extends AbstractTag -{ - - protected $Id = '300A,0022'; - - protected $Name = 'DeliveryWarningDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delivery Warning Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeltaStartTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeltaStartTime.php deleted file mode 100644 index 758da4345..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeltaStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeltaStartTime extends AbstractTag -{ - - protected $Id = '0043,101E'; - - protected $Name = 'DeltaStartTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delta Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DependantOnNoViewsProcessed.php b/lib/PHPExiftool/Driver/Tag/DICOM/DependantOnNoViewsProcessed.php deleted file mode 100644 index 29c15224d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DependantOnNoViewsProcessed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DependantOnNoViewsProcessed extends AbstractTag -{ - - protected $Id = '0019,106A'; - - protected $Name = 'DependantOnNoViewsProcessed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dependant On No Views Processed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DepthOfScanField.php b/lib/PHPExiftool/Driver/Tag/DICOM/DepthOfScanField.php deleted file mode 100644 index 786247d39..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DepthOfScanField.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DepthOfScanField extends AbstractTag -{ - - protected $Id = '0018,5050'; - - protected $Name = 'DepthOfScanField'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Depth Of Scan Field'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DepthOfTransverseImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/DepthOfTransverseImage.php deleted file mode 100644 index 9e3ad0aba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DepthOfTransverseImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DepthOfTransverseImage extends AbstractTag -{ - - protected $Id = '0022,0041'; - - protected $Name = 'DepthOfTransverseImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Depth Of Transverse Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DepthSpatialResolution.php b/lib/PHPExiftool/Driver/Tag/DICOM/DepthSpatialResolution.php deleted file mode 100644 index 9721d8872..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DepthSpatialResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DepthSpatialResolution extends AbstractTag -{ - - protected $Id = '0022,0035'; - - protected $Name = 'DepthSpatialResolution'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Depth Spatial Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DepthsOfFocus.php b/lib/PHPExiftool/Driver/Tag/DICOM/DepthsOfFocus.php deleted file mode 100644 index 52e43ac11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DepthsOfFocus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DepthsOfFocus extends AbstractTag -{ - - protected $Id = '0018,9801'; - - protected $Name = 'DepthsOfFocus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Depths Of Focus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DerivationCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DerivationCodeSequence.php deleted file mode 100644 index 96cca90c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DerivationCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivationCodeSequence extends AbstractTag -{ - - protected $Id = '0008,9215'; - - protected $Name = 'DerivationCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Derivation Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DerivationDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/DerivationDescription.php deleted file mode 100644 index 8c8293955..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DerivationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivationDescription extends AbstractTag -{ - - protected $Id = '0008,2111'; - - protected $Name = 'DerivationDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Derivation Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DerivationImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DerivationImageSequence.php deleted file mode 100644 index cf1494dd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DerivationImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivationImageSequence extends AbstractTag -{ - - protected $Id = '0008,9124'; - - protected $Name = 'DerivationImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Derivation Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DestinationAE.php b/lib/PHPExiftool/Driver/Tag/DICOM/DestinationAE.php deleted file mode 100644 index 0ef9813b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DestinationAE.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DestinationAE extends AbstractTag -{ - - protected $Id = '2100,0140'; - - protected $Name = 'DestinationAE'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Destination AE'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetailsOfCoefficients.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetailsOfCoefficients.php deleted file mode 100644 index c54478d85..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetailsOfCoefficients.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetailsOfCoefficients extends AbstractTag -{ - - protected $Id = '0028,0404'; - - protected $Name = 'DetailsOfCoefficients'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Details Of Coefficients'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveDimensions.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveDimensions.php deleted file mode 100644 index a7243c4b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorActiveDimensions extends AbstractTag -{ - - protected $Id = '0018,7026'; - - protected $Name = 'DetectorActiveDimensions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Active Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveOffsetFromExposure.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveOffsetFromExposure.php deleted file mode 100644 index 16464c71c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveOffsetFromExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorActiveOffsetFromExposure extends AbstractTag -{ - - protected $Id = '0018,7016'; - - protected $Name = 'DetectorActiveOffsetFromExposure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Active Offset From Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveOrigin.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveOrigin.php deleted file mode 100644 index fd14d8640..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveOrigin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorActiveOrigin extends AbstractTag -{ - - protected $Id = '0018,7028'; - - protected $Name = 'DetectorActiveOrigin'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Active Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveShape.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveShape.php deleted file mode 100644 index 3c1837946..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveShape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorActiveShape extends AbstractTag -{ - - protected $Id = '0018,7024'; - - protected $Name = 'DetectorActiveShape'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Active Shape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveTime.php deleted file mode 100644 index ed431a2e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorActiveTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorActiveTime extends AbstractTag -{ - - protected $Id = '0018,7014'; - - protected $Name = 'DetectorActiveTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Active Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorBinning.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorBinning.php deleted file mode 100644 index 655126cb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorBinning.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorBinning extends AbstractTag -{ - - protected $Id = '0018,701A'; - - protected $Name = 'DetectorBinning'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Binning'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorConditionsNominalFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorConditionsNominalFlag.php deleted file mode 100644 index 28dfc8ac7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorConditionsNominalFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorConditionsNominalFlag extends AbstractTag -{ - - protected $Id = '0018,7000'; - - protected $Name = 'DetectorConditionsNominalFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Conditions Nominal Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorConfiguration.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorConfiguration.php deleted file mode 100644 index 896deb497..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorConfiguration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorConfiguration extends AbstractTag -{ - - protected $Id = '0018,7005'; - - protected $Name = 'DetectorConfiguration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Configuration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorDescription.php deleted file mode 100644 index 47eab577d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorDescription extends AbstractTag -{ - - protected $Id = '0018,7006'; - - protected $Name = 'DetectorDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementPhysicalSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementPhysicalSize.php deleted file mode 100644 index 5e4390e09..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementPhysicalSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorElementPhysicalSize extends AbstractTag -{ - - protected $Id = '0018,7020'; - - protected $Name = 'DetectorElementPhysicalSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Element Physical Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementSize.php deleted file mode 100644 index 580a0a9c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorElementSize extends AbstractTag -{ - - protected $Id = '0054,1203'; - - protected $Name = 'DetectorElementSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Element Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementSpacing.php deleted file mode 100644 index 84dc0efe6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorElementSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorElementSpacing extends AbstractTag -{ - - protected $Id = '0018,7022'; - - protected $Name = 'DetectorElementSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Element Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorExposuresSinceCalibration.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorExposuresSinceCalibration.php deleted file mode 100644 index ae67afcb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorExposuresSinceCalibration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorExposuresSinceCalibration extends AbstractTag -{ - - protected $Id = '0018,7010'; - - protected $Name = 'DetectorExposuresSinceCalibration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Exposures Since Calibration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorExposuresSinceManufactured.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorExposuresSinceManufactured.php deleted file mode 100644 index 09874e109..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorExposuresSinceManufactured.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorExposuresSinceManufactured extends AbstractTag -{ - - protected $Id = '0018,7011'; - - protected $Name = 'DetectorExposuresSinceManufactured'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Exposures Since Manufactured'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorGeometry.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorGeometry.php deleted file mode 100644 index 09090a3e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorGeometry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorGeometry extends AbstractTag -{ - - protected $Id = '0018,9725'; - - protected $Name = 'DetectorGeometry'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Geometry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorID.php deleted file mode 100644 index 13def3d30..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorID extends AbstractTag -{ - - protected $Id = '0018,700A'; - - protected $Name = 'DetectorID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorInformationSequence.php deleted file mode 100644 index 519077dad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorInformationSequence extends AbstractTag -{ - - protected $Id = '0054,0022'; - - protected $Name = 'DetectorInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorLinesOfResponseUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorLinesOfResponseUsed.php deleted file mode 100644 index b0d05fe5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorLinesOfResponseUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorLinesOfResponseUsed extends AbstractTag -{ - - protected $Id = '0054,1104'; - - protected $Name = 'DetectorLinesOfResponseUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Lines Of Response Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorManufacturerName.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorManufacturerName.php deleted file mode 100644 index 22c1e8a31..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorManufacturerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorManufacturerName extends AbstractTag -{ - - protected $Id = '0018,702A'; - - protected $Name = 'DetectorManufacturerName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Manufacturer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorManufacturersModelName.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorManufacturersModelName.php deleted file mode 100644 index e8751cc6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorManufacturersModelName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorManufacturersModelName extends AbstractTag -{ - - protected $Id = '0018,702B'; - - protected $Name = 'DetectorManufacturersModelName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Manufacturers Model Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorMode.php deleted file mode 100644 index e92d5a727..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorMode extends AbstractTag -{ - - protected $Id = '0018,7008'; - - protected $Name = 'DetectorMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorPrimaryAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorPrimaryAngle.php deleted file mode 100644 index 8e66e3608..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorPrimaryAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorPrimaryAngle extends AbstractTag -{ - - protected $Id = '0018,1530'; - - protected $Name = 'DetectorPrimaryAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Primary Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorSecondaryAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorSecondaryAngle.php deleted file mode 100644 index 6d136a0b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorSecondaryAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorSecondaryAngle extends AbstractTag -{ - - protected $Id = '0018,1531'; - - protected $Name = 'DetectorSecondaryAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Secondary Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorTemperature.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorTemperature.php deleted file mode 100644 index 60a6a0bc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorTemperature extends AbstractTag -{ - - protected $Id = '0018,7001'; - - protected $Name = 'DetectorTemperature'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorTimeSinceLastExposure.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorTimeSinceLastExposure.php deleted file mode 100644 index a81fdee8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorTimeSinceLastExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorTimeSinceLastExposure extends AbstractTag -{ - - protected $Id = '0018,7012'; - - protected $Name = 'DetectorTimeSinceLastExposure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Time Since Last Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorType.php deleted file mode 100644 index b0e7b1652..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorType extends AbstractTag -{ - - protected $Id = '0018,7004'; - - protected $Name = 'DetectorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/DetectorVector.php deleted file mode 100644 index 12410a76d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DetectorVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorVector extends AbstractTag -{ - - protected $Id = '0054,0020'; - - protected $Name = 'DetectorVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Detector Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDescription.php deleted file mode 100644 index 1c71e30fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceDescription extends AbstractTag -{ - - protected $Id = '0050,0020'; - - protected $Name = 'DeviceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDiameter.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDiameter.php deleted file mode 100644 index c37f6bb67..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDiameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceDiameter extends AbstractTag -{ - - protected $Id = '0050,0016'; - - protected $Name = 'DeviceDiameter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Diameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDiameterUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDiameterUnits.php deleted file mode 100644 index 01431a9ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceDiameterUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceDiameterUnits extends AbstractTag -{ - - protected $Id = '0050,0017'; - - protected $Name = 'DeviceDiameterUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Diameter Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceID.php deleted file mode 100644 index 631a52ae3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceID extends AbstractTag -{ - - protected $Id = '0018,1003'; - - protected $Name = 'DeviceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceLength.php deleted file mode 100644 index 0ab0dca23..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceLength extends AbstractTag -{ - - protected $Id = '0050,0014'; - - protected $Name = 'DeviceLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceSequence.php deleted file mode 100644 index 9bc830fd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSequence extends AbstractTag -{ - - protected $Id = '0050,0010'; - - protected $Name = 'DeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceSerialNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceSerialNumber.php deleted file mode 100644 index 6b15289e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSerialNumber extends AbstractTag -{ - - protected $Id = '0018,1000'; - - protected $Name = 'DeviceSerialNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceUID.php deleted file mode 100644 index 3f706de2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceUID extends AbstractTag -{ - - protected $Id = '0018,1002'; - - protected $Name = 'DeviceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceVolume.php b/lib/PHPExiftool/Driver/Tag/DICOM/DeviceVolume.php deleted file mode 100644 index f3a16c1ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DeviceVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceVolume extends AbstractTag -{ - - protected $Id = '0050,0018'; - - protected $Name = 'DeviceVolume'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiaphragmPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiaphragmPosition.php deleted file mode 100644 index 2d2262eff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiaphragmPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiaphragmPosition extends AbstractTag -{ - - protected $Id = '3002,0034'; - - protected $Name = 'DiaphragmPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diaphragm Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionAnisotropyType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionAnisotropyType.php deleted file mode 100644 index 7694b7ac9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionAnisotropyType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionAnisotropyType extends AbstractTag -{ - - protected $Id = '0018,9147'; - - protected $Name = 'DiffusionAnisotropyType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion Anisotropy Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBMatrixSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBMatrixSequence.php deleted file mode 100644 index 7a5ca8ed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBMatrixSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBMatrixSequence extends AbstractTag -{ - - protected $Id = '0018,9601'; - - protected $Name = 'DiffusionBMatrixSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Matrix Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValue.php deleted file mode 100644 index 7cae037ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBValue extends AbstractTag -{ - - protected $Id = '0018,9087'; - - protected $Name = 'DiffusionBValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXX.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXX.php deleted file mode 100644 index b64f6367e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBValueXX extends AbstractTag -{ - - protected $Id = '0018,9602'; - - protected $Name = 'DiffusionBValueXX'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Value XX'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXY.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXY.php deleted file mode 100644 index d6bf76169..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBValueXY extends AbstractTag -{ - - protected $Id = '0018,9603'; - - protected $Name = 'DiffusionBValueXY'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Value XY'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXZ.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXZ.php deleted file mode 100644 index fd55ec12a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueXZ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBValueXZ extends AbstractTag -{ - - protected $Id = '0018,9604'; - - protected $Name = 'DiffusionBValueXZ'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Value XZ'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueYY.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueYY.php deleted file mode 100644 index 904e6b6a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueYY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBValueYY extends AbstractTag -{ - - protected $Id = '0018,9605'; - - protected $Name = 'DiffusionBValueYY'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Value YY'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueYZ.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueYZ.php deleted file mode 100644 index a52d842aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueYZ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBValueYZ extends AbstractTag -{ - - protected $Id = '0018,9606'; - - protected $Name = 'DiffusionBValueYZ'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Value YZ'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueZZ.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueZZ.php deleted file mode 100644 index 7ebff1806..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionBValueZZ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionBValueZZ extends AbstractTag -{ - - protected $Id = '0018,9607'; - - protected $Name = 'DiffusionBValueZZ'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion B Value ZZ'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionDirectionality.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionDirectionality.php deleted file mode 100644 index 637b5278b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionDirectionality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionDirectionality extends AbstractTag -{ - - protected $Id = '0018,9075'; - - protected $Name = 'DiffusionDirectionality'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion Directionality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionGradientDirectionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionGradientDirectionSequence.php deleted file mode 100644 index 953bb12f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionGradientDirectionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionGradientDirectionSequence extends AbstractTag -{ - - protected $Id = '0018,9076'; - - protected $Name = 'DiffusionGradientDirectionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion Gradient Direction Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionGradientOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionGradientOrientation.php deleted file mode 100644 index 5808e5be2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DiffusionGradientOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiffusionGradientOrientation extends AbstractTag -{ - - protected $Id = '0018,9089'; - - protected $Name = 'DiffusionGradientOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Diffusion Gradient Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalImageFormatAcquired.php b/lib/PHPExiftool/Driver/Tag/DICOM/DigitalImageFormatAcquired.php deleted file mode 100644 index 4cc65f8a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalImageFormatAcquired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalImageFormatAcquired extends AbstractTag -{ - - protected $Id = '0018,1023'; - - protected $Name = 'DigitalImageFormatAcquired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Image Format Acquired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalReceiverGain.php b/lib/PHPExiftool/Driver/Tag/DICOM/DigitalReceiverGain.php deleted file mode 100644 index f23e9d323..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalReceiverGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalReceiverGain extends AbstractTag -{ - - protected $Id = '0019,1096'; - - protected $Name = 'DigitalReceiverGain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Receiver Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignatureDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignatureDateTime.php deleted file mode 100644 index c4b8538ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignatureDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSignatureDateTime extends AbstractTag -{ - - protected $Id = '0400,0105'; - - protected $Name = 'DigitalSignatureDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Signature Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignaturePurposeCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignaturePurposeCodeSeq.php deleted file mode 100644 index fc0061941..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignaturePurposeCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSignaturePurposeCodeSeq extends AbstractTag -{ - - protected $Id = '0400,0401'; - - protected $Name = 'DigitalSignaturePurposeCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Signature Purpose Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignatureUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignatureUID.php deleted file mode 100644 index f4fca68e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignatureUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSignatureUID extends AbstractTag -{ - - protected $Id = '0400,0100'; - - protected $Name = 'DigitalSignatureUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Signature UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignaturesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignaturesSequence.php deleted file mode 100644 index 6f101c03f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DigitalSignaturesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSignaturesSequence extends AbstractTag -{ - - protected $Id = 'FFFA,FFFA'; - - protected $Name = 'DigitalSignaturesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Signatures Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DigitizingDeviceTransportDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/DigitizingDeviceTransportDirection.php deleted file mode 100644 index 6844faf0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DigitizingDeviceTransportDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitizingDeviceTransportDirection extends AbstractTag -{ - - protected $Id = '0018,2020'; - - protected $Name = 'DigitizingDeviceTransportDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digitizing Device Transport Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionDescriptionLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/DimensionDescriptionLabel.php deleted file mode 100644 index d1123dacf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionDescriptionLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DimensionDescriptionLabel extends AbstractTag -{ - - protected $Id = '0020,9421'; - - protected $Name = 'DimensionDescriptionLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimension Description Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexPointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexPointer.php deleted file mode 100644 index 2b3340d1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexPointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DimensionIndexPointer extends AbstractTag -{ - - protected $Id = '0020,9165'; - - protected $Name = 'DimensionIndexPointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimension Index Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexPrivateCreator.php b/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexPrivateCreator.php deleted file mode 100644 index 046b970cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexPrivateCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DimensionIndexPrivateCreator extends AbstractTag -{ - - protected $Id = '0020,9213'; - - protected $Name = 'DimensionIndexPrivateCreator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimension Index Private Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexSequence.php deleted file mode 100644 index 6cadfe495..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DimensionIndexSequence extends AbstractTag -{ - - protected $Id = '0020,9222'; - - protected $Name = 'DimensionIndexSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimension Index Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexValues.php b/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexValues.php deleted file mode 100644 index ae5dbb16d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionIndexValues.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DimensionIndexValues extends AbstractTag -{ - - protected $Id = '0020,9157'; - - protected $Name = 'DimensionIndexValues'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimension Index Values'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionOrganizationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DimensionOrganizationSequence.php deleted file mode 100644 index bc7c44385..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionOrganizationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DimensionOrganizationSequence extends AbstractTag -{ - - protected $Id = '0020,9221'; - - protected $Name = 'DimensionOrganizationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimension Organization Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionOrganizationUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DimensionOrganizationUID.php deleted file mode 100644 index cfbaa0400..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DimensionOrganizationUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DimensionOrganizationUID extends AbstractTag -{ - - protected $Id = '0020,9164'; - - protected $Name = 'DimensionOrganizationUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimension Organization UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DirectoryRecordSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DirectoryRecordSequence.php deleted file mode 100644 index 66ba69808..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DirectoryRecordSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectoryRecordSequence extends AbstractTag -{ - - protected $Id = '0004,1220'; - - protected $Name = 'DirectoryRecordSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Directory Record Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DirectoryRecordType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DirectoryRecordType.php deleted file mode 100644 index 8837bfccc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DirectoryRecordType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectoryRecordType extends AbstractTag -{ - - protected $Id = '0004,1430'; - - protected $Name = 'DirectoryRecordType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Directory Record Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDate.php deleted file mode 100644 index 3ebe8a116..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DischargeDate extends AbstractTag -{ - - protected $Id = '0038,0030'; - - protected $Name = 'DischargeDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Discharge Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDiagnosisCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDiagnosisCodeSequence.php deleted file mode 100644 index 359120773..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDiagnosisCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DischargeDiagnosisCodeSequence extends AbstractTag -{ - - protected $Id = '0038,0044'; - - protected $Name = 'DischargeDiagnosisCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Discharge Diagnosis Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDiagnosisDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDiagnosisDescription.php deleted file mode 100644 index 55620d965..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeDiagnosisDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DischargeDiagnosisDescription extends AbstractTag -{ - - protected $Id = '0038,0040'; - - protected $Name = 'DischargeDiagnosisDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Discharge Diagnosis Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/DischargeTime.php deleted file mode 100644 index 1e758a276..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DischargeTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DischargeTime extends AbstractTag -{ - - protected $Id = '0038,0032'; - - protected $Name = 'DischargeTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Discharge Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayEnvironmentSpatialPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayEnvironmentSpatialPosition.php deleted file mode 100644 index 143337f57..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayEnvironmentSpatialPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayEnvironmentSpatialPosition extends AbstractTag -{ - - protected $Id = '0072,0108'; - - protected $Name = 'DisplayEnvironmentSpatialPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Environment Spatial Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayFieldOfView.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayFieldOfView.php deleted file mode 100644 index acb2adb12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayFieldOfView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayFieldOfView extends AbstractTag -{ - - protected $Id = '0019,101E'; - - protected $Name = 'DisplayFieldOfView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Field Of View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayFilterPercentage.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayFilterPercentage.php deleted file mode 100644 index faba957da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayFilterPercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayFilterPercentage extends AbstractTag -{ - - protected $Id = '0028,9411'; - - protected $Name = 'DisplayFilterPercentage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Filter Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetHorizontalJustification.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetHorizontalJustification.php deleted file mode 100644 index 86fb63b2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetHorizontalJustification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetHorizontalJustification extends AbstractTag -{ - - protected $Id = '0072,0717'; - - protected $Name = 'DisplaySetHorizontalJustification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Horizontal Justification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetLabel.php deleted file mode 100644 index 1b8910ec6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetLabel extends AbstractTag -{ - - protected $Id = '0072,0203'; - - protected $Name = 'DisplaySetLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetNumber.php deleted file mode 100644 index 5b7a3a1f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetNumber extends AbstractTag -{ - - protected $Id = '0072,0202'; - - protected $Name = 'DisplaySetNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPatientOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPatientOrientation.php deleted file mode 100644 index 130f209fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPatientOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetPatientOrientation extends AbstractTag -{ - - protected $Id = '0072,0700'; - - protected $Name = 'DisplaySetPatientOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Patient Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPresentationGroup.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPresentationGroup.php deleted file mode 100644 index d5189206e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPresentationGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetPresentationGroup extends AbstractTag -{ - - protected $Id = '0072,0204'; - - protected $Name = 'DisplaySetPresentationGroup'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Presentation Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPresentationGroupDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPresentationGroupDescr.php deleted file mode 100644 index d9e672c7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetPresentationGroupDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetPresentationGroupDescr extends AbstractTag -{ - - protected $Id = '0072,0206'; - - protected $Name = 'DisplaySetPresentationGroupDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Presentation Group Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetScrollingGroup.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetScrollingGroup.php deleted file mode 100644 index 1199e0642..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetScrollingGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetScrollingGroup extends AbstractTag -{ - - protected $Id = '0072,0212'; - - protected $Name = 'DisplaySetScrollingGroup'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Scrolling Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetVerticalJustification.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetVerticalJustification.php deleted file mode 100644 index 13a3841e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetVerticalJustification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetVerticalJustification extends AbstractTag -{ - - protected $Id = '0072,0718'; - - protected $Name = 'DisplaySetVerticalJustification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Set Vertical Justification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetsSequence.php deleted file mode 100644 index 014feb7da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplaySetsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySetsSequence extends AbstractTag -{ - - protected $Id = '0072,0200'; - - protected $Name = 'DisplaySetsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Sets Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayShadingFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayShadingFlag.php deleted file mode 100644 index af55f7942..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayShadingFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayShadingFlag extends AbstractTag -{ - - protected $Id = '003A,0246'; - - protected $Name = 'DisplayShadingFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Shading Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayWindowLabelVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayWindowLabelVector.php deleted file mode 100644 index ad0a815fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayWindowLabelVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayWindowLabelVector extends AbstractTag -{ - - protected $Id = '0018,2006'; - - protected $Name = 'DisplayWindowLabelVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Window Label Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaBottomRight.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaBottomRight.php deleted file mode 100644 index aba773baa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaBottomRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayedAreaBottomRight extends AbstractTag -{ - - protected $Id = '0070,0053'; - - protected $Name = 'DisplayedAreaBottomRight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Displayed Area Bottom Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaBottomRightTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaBottomRightTrial.php deleted file mode 100644 index 71bf983fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaBottomRightTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayedAreaBottomRightTrial extends AbstractTag -{ - - protected $Id = '0070,0051'; - - protected $Name = 'DisplayedAreaBottomRightTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Displayed Area Bottom Right Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaSelectionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaSelectionSequence.php deleted file mode 100644 index 6e4f7f0f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaSelectionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayedAreaSelectionSequence extends AbstractTag -{ - - protected $Id = '0070,005A'; - - protected $Name = 'DisplayedAreaSelectionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Displayed Area Selection Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaTopLeft.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaTopLeft.php deleted file mode 100644 index 4c5bc40b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaTopLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayedAreaTopLeft extends AbstractTag -{ - - protected $Id = '0070,0052'; - - protected $Name = 'DisplayedAreaTopLeft'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Displayed Area Top Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaTopLeftTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaTopLeftTrial.php deleted file mode 100644 index 032f3deb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DisplayedAreaTopLeftTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayedAreaTopLeftTrial extends AbstractTag -{ - - protected $Id = '0070,0050'; - - protected $Name = 'DisplayedAreaTopLeftTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Displayed Area Top Left Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceObjectToTableTop.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistanceObjectToTableTop.php deleted file mode 100644 index fe104b575..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceObjectToTableTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistanceObjectToTableTop extends AbstractTag -{ - - protected $Id = '0018,9403'; - - protected $Name = 'DistanceObjectToTableTop'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Object To Table Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistancePupillaryDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistancePupillaryDistance.php deleted file mode 100644 index e392cfede..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistancePupillaryDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistancePupillaryDistance extends AbstractTag -{ - - protected $Id = '0046,0060'; - - protected $Name = 'DistancePupillaryDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Pupillary Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceReceptorPlaneToDetHousing.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistanceReceptorPlaneToDetHousing.php deleted file mode 100644 index ca30d3c23..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceReceptorPlaneToDetHousing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistanceReceptorPlaneToDetHousing extends AbstractTag -{ - - protected $Id = '0018,9426'; - - protected $Name = 'DistanceReceptorPlaneToDetHousing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Receptor Plane To Det Housing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToDetector.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToDetector.php deleted file mode 100644 index 156d73c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToDetector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistanceSourceToDetector extends AbstractTag -{ - - protected $Id = '0018,1110'; - - protected $Name = 'DistanceSourceToDetector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Source To Detector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToEntrance.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToEntrance.php deleted file mode 100644 index 08d8301c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToEntrance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistanceSourceToEntrance extends AbstractTag -{ - - protected $Id = '0040,0306'; - - protected $Name = 'DistanceSourceToEntrance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Source To Entrance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToIsocenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToIsocenter.php deleted file mode 100644 index fcc9318e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToIsocenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistanceSourceToIsocenter extends AbstractTag -{ - - protected $Id = '0018,9402'; - - protected $Name = 'DistanceSourceToIsocenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Source To Isocenter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToPatient.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToPatient.php deleted file mode 100644 index 134b8160f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToPatient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistanceSourceToPatient extends AbstractTag -{ - - protected $Id = '0018,1111'; - - protected $Name = 'DistanceSourceToPatient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Source To Patient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToSupport.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToSupport.php deleted file mode 100644 index 41d8b2003..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistanceSourceToSupport.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistanceSourceToSupport extends AbstractTag -{ - - protected $Id = '0040,0307'; - - protected $Name = 'DistanceSourceToSupport'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distance Source To Support'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistributionAddress.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistributionAddress.php deleted file mode 100644 index 38c73d469..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistributionAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistributionAddress extends AbstractTag -{ - - protected $Id = '4008,011A'; - - protected $Name = 'DistributionAddress'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distribution Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistributionName.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistributionName.php deleted file mode 100644 index 6672b456d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistributionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistributionName extends AbstractTag -{ - - protected $Id = '4008,0119'; - - protected $Name = 'DistributionName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distribution Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DistributionType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DistributionType.php deleted file mode 100644 index 67633009a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DistributionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistributionType extends AbstractTag -{ - - protected $Id = '0012,0084'; - - protected $Name = 'DistributionType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distribution Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DocumentTitle.php b/lib/PHPExiftool/Driver/Tag/DICOM/DocumentTitle.php deleted file mode 100644 index 0590c5e67..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DocumentTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentTitle extends AbstractTag -{ - - protected $Id = '0042,0010'; - - protected $Name = 'DocumentTitle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Document Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerCorrectionAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/DopplerCorrectionAngle.php deleted file mode 100644 index 16640dead..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerCorrectionAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DopplerCorrectionAngle extends AbstractTag -{ - - protected $Id = '0018,6034'; - - protected $Name = 'DopplerCorrectionAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doppler Correction Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeXPosRetired.php b/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeXPosRetired.php deleted file mode 100644 index 5e2182988..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeXPosRetired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DopplerSampleVolumeXPosRetired extends AbstractTag -{ - - protected $Id = '0018,6038'; - - protected $Name = 'DopplerSampleVolumeXPosRetired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doppler Sample Volume X Pos Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeXPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeXPosition.php deleted file mode 100644 index 5b25c12d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeXPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DopplerSampleVolumeXPosition extends AbstractTag -{ - - protected $Id = '0018,6039'; - - protected $Name = 'DopplerSampleVolumeXPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doppler Sample Volume X Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeYPosRetired.php b/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeYPosRetired.php deleted file mode 100644 index cde53d368..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeYPosRetired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DopplerSampleVolumeYPosRetired extends AbstractTag -{ - - protected $Id = '0018,603A'; - - protected $Name = 'DopplerSampleVolumeYPosRetired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doppler Sample Volume Y Pos Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeYPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeYPosition.php deleted file mode 100644 index 34d0e2972..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DopplerSampleVolumeYPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DopplerSampleVolumeYPosition extends AbstractTag -{ - - protected $Id = '0018,603B'; - - protected $Name = 'DopplerSampleVolumeYPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doppler Sample Volume Y Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseCalibrationFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseCalibrationFactor.php deleted file mode 100644 index 7ea3adb9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseCalibrationFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseCalibrationFactor extends AbstractTag -{ - - protected $Id = '0054,1322'; - - protected $Name = 'DoseCalibrationFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Calibration Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseComment.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseComment.php deleted file mode 100644 index 42dba8dec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseComment extends AbstractTag -{ - - protected $Id = '3004,0006'; - - protected $Name = 'DoseComment'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseGridScaling.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseGridScaling.php deleted file mode 100644 index 17db2901a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseGridScaling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseGridScaling extends AbstractTag -{ - - protected $Id = '3004,000E'; - - protected $Name = 'DoseGridScaling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Grid Scaling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseRateDelivered.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseRateDelivered.php deleted file mode 100644 index 9ca228e3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseRateDelivered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseRateDelivered extends AbstractTag -{ - - protected $Id = '3008,0048'; - - protected $Name = 'DoseRateDelivered'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Rate Delivered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseRateSet.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseRateSet.php deleted file mode 100644 index c76736f44..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseRateSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseRateSet extends AbstractTag -{ - - protected $Id = '300A,0115'; - - protected $Name = 'DoseRateSet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Rate Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceDescription.php deleted file mode 100644 index b919cc745..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseReferenceDescription extends AbstractTag -{ - - protected $Id = '300A,0016'; - - protected $Name = 'DoseReferenceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Reference Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceNumber.php deleted file mode 100644 index f56a9dfd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseReferenceNumber extends AbstractTag -{ - - protected $Id = '300A,0012'; - - protected $Name = 'DoseReferenceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Reference Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferencePointCoordinates.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferencePointCoordinates.php deleted file mode 100644 index 6859b24cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferencePointCoordinates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseReferencePointCoordinates extends AbstractTag -{ - - protected $Id = '300A,0018'; - - protected $Name = 'DoseReferencePointCoordinates'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Reference Point Coordinates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceSequence.php deleted file mode 100644 index c4cf300fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseReferenceSequence extends AbstractTag -{ - - protected $Id = '300A,0010'; - - protected $Name = 'DoseReferenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Reference Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceStructureType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceStructureType.php deleted file mode 100644 index e3e721505..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceStructureType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseReferenceStructureType extends AbstractTag -{ - - protected $Id = '300A,0014'; - - protected $Name = 'DoseReferenceStructureType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Reference Structure Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceType.php deleted file mode 100644 index 4bab7ed31..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseReferenceType extends AbstractTag -{ - - protected $Id = '300A,0020'; - - protected $Name = 'DoseReferenceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Reference Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceUID.php deleted file mode 100644 index c57d0adb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseReferenceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseReferenceUID extends AbstractTag -{ - - protected $Id = '300A,0013'; - - protected $Name = 'DoseReferenceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Reference UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseSummationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseSummationType.php deleted file mode 100644 index 4651aea58..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseSummationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseSummationType extends AbstractTag -{ - - protected $Id = '3004,000A'; - - protected $Name = 'DoseSummationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Summation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseType.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseType.php deleted file mode 100644 index 1bca07468..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseType extends AbstractTag -{ - - protected $Id = '3004,0004'; - - protected $Name = 'DoseType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseUnits.php deleted file mode 100644 index cf5e3a208..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseUnits extends AbstractTag -{ - - protected $Id = '3004,0002'; - - protected $Name = 'DoseUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoseValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoseValue.php deleted file mode 100644 index 1a0b217f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoseValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoseValue extends AbstractTag -{ - - protected $Id = '3004,0012'; - - protected $Name = 'DoseValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dose Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureFieldDelta.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureFieldDelta.php deleted file mode 100644 index 37b3c7ae7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureFieldDelta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoubleExposureFieldDelta extends AbstractTag -{ - - protected $Id = '0074,103A'; - - protected $Name = 'DoubleExposureFieldDelta'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Double Exposure Field Delta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureFlag.php deleted file mode 100644 index 9efe28839..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoubleExposureFlag extends AbstractTag -{ - - protected $Id = '0074,1034'; - - protected $Name = 'DoubleExposureFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Double Exposure Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureMeterset.php deleted file mode 100644 index ff9a023fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoubleExposureMeterset extends AbstractTag -{ - - protected $Id = '0074,1038'; - - protected $Name = 'DoubleExposureMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Double Exposure Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureOrdering.php b/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureOrdering.php deleted file mode 100644 index 1b1dc58fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DoubleExposureOrdering.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoubleExposureOrdering extends AbstractTag -{ - - protected $Id = '0074,1036'; - - protected $Name = 'DoubleExposureOrdering'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Double Exposure Ordering'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DurationOfXrayOn.php b/lib/PHPExiftool/Driver/Tag/DICOM/DurationOfXrayOn.php deleted file mode 100644 index 428711dcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DurationOfXrayOn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DurationOfXrayOn extends AbstractTag -{ - - protected $Id = '0043,104E'; - - protected $Name = 'DurationOfXrayOn'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration Of Xray On'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DynamicRange.php b/lib/PHPExiftool/Driver/Tag/DICOM/DynamicRange.php deleted file mode 100644 index 55867a0e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DynamicRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRange extends AbstractTag -{ - - protected $Id = '0018,5030'; - - protected $Name = 'DynamicRange'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dynamic Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/DynamicZAlphaValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/DynamicZAlphaValue.php deleted file mode 100644 index 87dcb6f6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/DynamicZAlphaValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicZAlphaValue extends AbstractTag -{ - - protected $Id = '0019,10DE'; - - protected $Name = 'DynamicZAlphaValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dynamic Z Alpha Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EchoNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/EchoNumber.php deleted file mode 100644 index 3865e80a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EchoNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EchoNumber extends AbstractTag -{ - - protected $Id = '0018,0086'; - - protected $Name = 'EchoNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Echo Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EchoPlanarPulseSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EchoPlanarPulseSequence.php deleted file mode 100644 index ba125b52b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EchoPlanarPulseSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EchoPlanarPulseSequence extends AbstractTag -{ - - protected $Id = '0018,9018'; - - protected $Name = 'EchoPlanarPulseSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Echo Planar Pulse Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EchoPulseSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EchoPulseSequence.php deleted file mode 100644 index e25ba9aa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EchoPulseSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EchoPulseSequence extends AbstractTag -{ - - protected $Id = '0018,9008'; - - protected $Name = 'EchoPulseSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Echo Pulse Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EchoTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/EchoTime.php deleted file mode 100644 index 61e00ab53..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EchoTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EchoTime extends AbstractTag -{ - - protected $Id = '0018,0081'; - - protected $Name = 'EchoTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Echo Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EchoTrainLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/EchoTrainLength.php deleted file mode 100644 index 6290625a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EchoTrainLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EchoTrainLength extends AbstractTag -{ - - protected $Id = '0018,0091'; - - protected $Name = 'EchoTrainLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Echo Train Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EdgePointIndexList.php b/lib/PHPExiftool/Driver/Tag/DICOM/EdgePointIndexList.php deleted file mode 100644 index 5d5fb8bf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EdgePointIndexList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgePointIndexList extends AbstractTag -{ - - protected $Id = '0066,0024'; - - protected $Name = 'EdgePointIndexList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edge Point Index List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveDuration.php b/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveDuration.php deleted file mode 100644 index 02a5b9f49..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectiveDuration extends AbstractTag -{ - - protected $Id = '0018,0072'; - - protected $Name = 'EffectiveDuration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Effective Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveEchoSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveEchoSpacing.php deleted file mode 100644 index 0c640f4c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveEchoSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectiveEchoSpacing extends AbstractTag -{ - - protected $Id = '0043,102C'; - - protected $Name = 'EffectiveEchoSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Effective Echo Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveEchoTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveEchoTime.php deleted file mode 100644 index 83cdac418..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EffectiveEchoTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectiveEchoTime extends AbstractTag -{ - - protected $Id = '0018,9082'; - - protected $Name = 'EffectiveEchoTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Effective Echo Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EmmetropicMagnification.php b/lib/PHPExiftool/Driver/Tag/DICOM/EmmetropicMagnification.php deleted file mode 100644 index f9ccd5fd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EmmetropicMagnification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmmetropicMagnification extends AbstractTag -{ - - protected $Id = '0022,000A'; - - protected $Name = 'EmmetropicMagnification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Emmetropic Magnification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EmptyImageDensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/EmptyImageDensity.php deleted file mode 100644 index a639cd46a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EmptyImageDensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmptyImageDensity extends AbstractTag -{ - - protected $Id = '2010,0110'; - - protected $Name = 'EmptyImageDensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Empty Image Density'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EncapsulatedDocument.php b/lib/PHPExiftool/Driver/Tag/DICOM/EncapsulatedDocument.php deleted file mode 100644 index aaae429f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EncapsulatedDocument.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncapsulatedDocument extends AbstractTag -{ - - protected $Id = '0042,0011'; - - protected $Name = 'EncapsulatedDocument'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encapsulated Document'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedAttributesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedAttributesSequence.php deleted file mode 100644 index 59a5e3a30..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedAttributesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptedAttributesSequence extends AbstractTag -{ - - protected $Id = '0400,0500'; - - protected $Name = 'EncryptedAttributesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encrypted Attributes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedContent.php b/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedContent.php deleted file mode 100644 index 20183f955..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedContent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptedContent extends AbstractTag -{ - - protected $Id = '0400,0520'; - - protected $Name = 'EncryptedContent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encrypted Content'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedContentTransferSyntaxUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedContentTransferSyntaxUID.php deleted file mode 100644 index c3dea2a5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EncryptedContentTransferSyntaxUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptedContentTransferSyntaxUID extends AbstractTag -{ - - protected $Id = '0400,0510'; - - protected $Name = 'EncryptedContentTransferSyntaxUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encrypted Content Transfer Syntax UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndAcquisitionDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndAcquisitionDateTime.php deleted file mode 100644 index 6bb41db41..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndAcquisitionDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndAcquisitionDateTime extends AbstractTag -{ - - protected $Id = '0018,9517'; - - protected $Name = 'EndAcquisitionDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Acquisition Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndCumulativeMetersetWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndCumulativeMetersetWeight.php deleted file mode 100644 index 9f9205d17..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndCumulativeMetersetWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndCumulativeMetersetWeight extends AbstractTag -{ - - protected $Id = '300C,0009'; - - protected $Name = 'EndCumulativeMetersetWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Cumulative Meterset Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndMeterset.php deleted file mode 100644 index 1bcf75a4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndMeterset extends AbstractTag -{ - - protected $Id = '3008,007A'; - - protected $Name = 'EndMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndNumberForBaseline.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndNumberForBaseline.php deleted file mode 100644 index 7bc8ddefd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndNumberForBaseline.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndNumberForBaseline extends AbstractTag -{ - - protected $Id = '0019,1014'; - - protected $Name = 'EndNumberForBaseline'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Number For Baseline'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndNumberForEnhancedScans.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndNumberForEnhancedScans.php deleted file mode 100644 index ed488aaf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndNumberForEnhancedScans.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndNumberForEnhancedScans extends AbstractTag -{ - - protected $Id = '0019,1016'; - - protected $Name = 'EndNumberForEnhancedScans'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Number For Enhanced Scans'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndOfItems.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndOfItems.php deleted file mode 100644 index cd4cc5a95..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndOfItems.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndOfItems extends AbstractTag -{ - - protected $Id = 'FFFE,E00D'; - - protected $Name = 'EndOfItems'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Of Items'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndOfSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndOfSequence.php deleted file mode 100644 index 5ecd7191a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndOfSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndOfSequence extends AbstractTag -{ - - protected $Id = 'FFFE,E0DD'; - - protected $Name = 'EndOfSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Of Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndingRespiratoryAmplitude.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndingRespiratoryAmplitude.php deleted file mode 100644 index f0640cbff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndingRespiratoryAmplitude.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndingRespiratoryAmplitude extends AbstractTag -{ - - protected $Id = '0020,9248'; - - protected $Name = 'EndingRespiratoryAmplitude'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ending Respiratory Amplitude'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EndingRespiratoryPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/EndingRespiratoryPhase.php deleted file mode 100644 index b93317b3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EndingRespiratoryPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndingRespiratoryPhase extends AbstractTag -{ - - protected $Id = '0020,9249'; - - protected $Name = 'EndingRespiratoryPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ending Respiratory Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWeightingFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWeightingFactor.php deleted file mode 100644 index 99aace9d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWeightingFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWeightingFactor extends AbstractTag -{ - - protected $Id = '0018,9353'; - - protected $Name = 'EnergyWeightingFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Weighting Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowCenterline.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowCenterline.php deleted file mode 100644 index c5aca3dc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowCenterline.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowCenterline extends AbstractTag -{ - - protected $Id = '0018,0032'; - - protected $Name = 'EnergyWindowCenterline'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Centerline'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowInformationSequence.php deleted file mode 100644 index f268dca17..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowInformationSequence extends AbstractTag -{ - - protected $Id = '0054,0012'; - - protected $Name = 'EnergyWindowInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowLowerLimit.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowLowerLimit.php deleted file mode 100644 index 9cfd78b4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowLowerLimit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowLowerLimit extends AbstractTag -{ - - protected $Id = '0054,0014'; - - protected $Name = 'EnergyWindowLowerLimit'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Lower Limit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowName.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowName.php deleted file mode 100644 index d6c6962e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowName extends AbstractTag -{ - - protected $Id = '0054,0018'; - - protected $Name = 'EnergyWindowName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowNumber.php deleted file mode 100644 index 5d2865a3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowNumber extends AbstractTag -{ - - protected $Id = '0054,0308'; - - protected $Name = 'EnergyWindowNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowRangeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowRangeSequence.php deleted file mode 100644 index b0d6036ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowRangeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowRangeSequence extends AbstractTag -{ - - protected $Id = '0054,0013'; - - protected $Name = 'EnergyWindowRangeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Range Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowTotalWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowTotalWidth.php deleted file mode 100644 index 1e193df2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowTotalWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowTotalWidth extends AbstractTag -{ - - protected $Id = '0018,0033'; - - protected $Name = 'EnergyWindowTotalWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Total Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowUpperLimit.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowUpperLimit.php deleted file mode 100644 index b491c1590..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowUpperLimit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowUpperLimit extends AbstractTag -{ - - protected $Id = '0054,0015'; - - protected $Name = 'EnergyWindowUpperLimit'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Upper Limit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowVector.php deleted file mode 100644 index 9c28109b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EnergyWindowVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnergyWindowVector extends AbstractTag -{ - - protected $Id = '0054,0010'; - - protected $Name = 'EnergyWindowVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Energy Window Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EntranceDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/EntranceDose.php deleted file mode 100644 index a552cbf3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EntranceDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EntranceDose extends AbstractTag -{ - - protected $Id = '0040,0302'; - - protected $Name = 'EntranceDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Entrance Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EntranceDoseInMilliGy.php b/lib/PHPExiftool/Driver/Tag/DICOM/EntranceDoseInMilliGy.php deleted file mode 100644 index 27de0a2b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EntranceDoseInMilliGy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EntranceDoseInMilliGy extends AbstractTag -{ - - protected $Id = '0040,8302'; - - protected $Name = 'EntranceDoseInMilliGy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Entrance Dose In Milli Gy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EquipmentCoordinateSystemID.php b/lib/PHPExiftool/Driver/Tag/DICOM/EquipmentCoordinateSystemID.php deleted file mode 100644 index 61ca430bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EquipmentCoordinateSystemID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EquipmentCoordinateSystemID extends AbstractTag -{ - - protected $Id = '0028,9537'; - - protected $Name = 'EquipmentCoordinateSystemID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Equipment Coordinate System ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EquipmentUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/EquipmentUID.php deleted file mode 100644 index 53389f46d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EquipmentUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EquipmentUID extends AbstractTag -{ - - protected $Id = '0009,10E3'; - - protected $Name = 'EquipmentUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Equipment UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EquivalentCDADocumentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EquivalentCDADocumentSequence.php deleted file mode 100644 index 0375a3dce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EquivalentCDADocumentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EquivalentCDADocumentSequence extends AbstractTag -{ - - protected $Id = '0040,A090'; - - protected $Name = 'EquivalentCDADocumentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Equivalent CDA Document Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EscapeTriplet.php b/lib/PHPExiftool/Driver/Tag/DICOM/EscapeTriplet.php deleted file mode 100644 index 3258b74aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EscapeTriplet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EscapeTriplet extends AbstractTag -{ - - protected $Id = '1000,xxx0'; - - protected $Name = 'EscapeTriplet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Escape Triplet'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EstimatedDoseSaving.php b/lib/PHPExiftool/Driver/Tag/DICOM/EstimatedDoseSaving.php deleted file mode 100644 index 9424afe33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EstimatedDoseSaving.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EstimatedDoseSaving extends AbstractTag -{ - - protected $Id = '0018,9324'; - - protected $Name = 'EstimatedDoseSaving'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Estimated Dose Saving'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EstimatedRadiographicMagnification.php b/lib/PHPExiftool/Driver/Tag/DICOM/EstimatedRadiographicMagnification.php deleted file mode 100644 index b6fcfc8a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EstimatedRadiographicMagnification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EstimatedRadiographicMagnification extends AbstractTag -{ - - protected $Id = '0018,1114'; - - protected $Name = 'EstimatedRadiographicMagnification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Estimated Radiographic Magnification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EthnicGroup.php b/lib/PHPExiftool/Driver/Tag/DICOM/EthnicGroup.php deleted file mode 100644 index 7ba793262..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EthnicGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EthnicGroup extends AbstractTag -{ - - protected $Id = '0010,2160'; - - protected $Name = 'EthnicGroup'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ethnic Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EventCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EventCodeSequence.php deleted file mode 100644 index 6cb482c06..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EventCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventCodeSequence extends AbstractTag -{ - - protected $Id = '0008,2135'; - - protected $Name = 'EventCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EventElapsedTimes.php b/lib/PHPExiftool/Driver/Tag/DICOM/EventElapsedTimes.php deleted file mode 100644 index 6e989ecb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EventElapsedTimes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventElapsedTimes extends AbstractTag -{ - - protected $Id = '0008,2130'; - - protected $Name = 'EventElapsedTimes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Elapsed Times'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EventTimeOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/EventTimeOffset.php deleted file mode 100644 index 6349cbdba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EventTimeOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventTimeOffset extends AbstractTag -{ - - protected $Id = '0008,2134'; - - protected $Name = 'EventTimeOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Time Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EventTimerNames.php b/lib/PHPExiftool/Driver/Tag/DICOM/EventTimerNames.php deleted file mode 100644 index 98e8ff040..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EventTimerNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventTimerNames extends AbstractTag -{ - - protected $Id = '0008,2132'; - - protected $Name = 'EventTimerNames'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Timer Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/EventTimerSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/EventTimerSequence.php deleted file mode 100644 index ee2e359f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/EventTimerSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventTimerSequence extends AbstractTag -{ - - protected $Id = '0008,2133'; - - protected $Name = 'EventTimerSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Timer Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExamRecordChecksum.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExamRecordChecksum.php deleted file mode 100644 index 60e8291bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExamRecordChecksum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExamRecordChecksum extends AbstractTag -{ - - protected $Id = '0009,10E7'; - - protected $Name = 'ExamRecordChecksum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exam Record Checksum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExaminedBodyThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExaminedBodyThickness.php deleted file mode 100644 index 3dd247be0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExaminedBodyThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExaminedBodyThickness extends AbstractTag -{ - - protected $Id = '0010,9431'; - - protected $Name = 'ExaminedBodyThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Examined Body Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExclusionDuration.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExclusionDuration.php deleted file mode 100644 index b666666d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExclusionDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExclusionDuration extends AbstractTag -{ - - protected $Id = '0018,9805'; - - protected $Name = 'ExclusionDuration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exclusion Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExclusionStartDatetime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExclusionStartDatetime.php deleted file mode 100644 index 1394e3269..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExclusionStartDatetime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExclusionStartDatetime extends AbstractTag -{ - - protected $Id = '0018,9804'; - - protected $Name = 'ExclusionStartDatetime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exclusion Start Datetime'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExecutionStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExecutionStatus.php deleted file mode 100644 index 2adc01d14..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExecutionStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExecutionStatus extends AbstractTag -{ - - protected $Id = '2100,0020'; - - protected $Name = 'ExecutionStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Execution Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExecutionStatusInfo.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExecutionStatusInfo.php deleted file mode 100644 index 0cb015580..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExecutionStatusInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExecutionStatusInfo extends AbstractTag -{ - - protected $Id = '2100,0030'; - - protected $Name = 'ExecutionStatusInfo'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Execution Status Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExpectedCompletionDateAndTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExpectedCompletionDateAndTime.php deleted file mode 100644 index aae9cfef2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExpectedCompletionDateAndTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpectedCompletionDateAndTime extends AbstractTag -{ - - protected $Id = '0040,4011'; - - protected $Name = 'ExpectedCompletionDateAndTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expected Completion Date And Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposedArea.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposedArea.php deleted file mode 100644 index 4663a2a63..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposedArea.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposedArea extends AbstractTag -{ - - protected $Id = '0040,0303'; - - protected $Name = 'ExposedArea'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposed Area'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Exposure.php b/lib/PHPExiftool/Driver/Tag/DICOM/Exposure.php deleted file mode 100644 index d9ccde7ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Exposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Exposure extends AbstractTag -{ - - protected $Id = '0018,1152'; - - protected $Name = 'Exposure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlMode.php deleted file mode 100644 index 63475a3a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlMode extends AbstractTag -{ - - protected $Id = '0018,7060'; - - protected $Name = 'ExposureControlMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Control Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlModeDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlModeDescription.php deleted file mode 100644 index 4fde5e92f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlModeDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlModeDescription extends AbstractTag -{ - - protected $Id = '0018,7062'; - - protected $Name = 'ExposureControlModeDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Control Mode Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensRegionLeftEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensRegionLeftEdge.php deleted file mode 100644 index 77e57fba3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensRegionLeftEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlSensRegionLeftEdge extends AbstractTag -{ - - protected $Id = '0018,9436'; - - protected $Name = 'ExposureControlSensRegionLeftEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Control Sens Region Left Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensRegionRightEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensRegionRightEdge.php deleted file mode 100644 index 63b055c9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensRegionRightEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlSensRegionRightEdge extends AbstractTag -{ - - protected $Id = '0018,9437'; - - protected $Name = 'ExposureControlSensRegionRightEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Control Sens Region Right Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensingRegionShape.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensingRegionShape.php deleted file mode 100644 index 88b1af7e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensingRegionShape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlSensingRegionShape extends AbstractTag -{ - - protected $Id = '0018,9435'; - - protected $Name = 'ExposureControlSensingRegionShape'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Control Sensing Region Shape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensingRegionsSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensingRegionsSeq.php deleted file mode 100644 index 3366b9eb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureControlSensingRegionsSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlSensingRegionsSeq extends AbstractTag -{ - - protected $Id = '0018,9434'; - - protected $Name = 'ExposureControlSensingRegionsSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Control Sensing Regions Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureDoseSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureDoseSequence.php deleted file mode 100644 index 8512db5c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureDoseSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureDoseSequence extends AbstractTag -{ - - protected $Id = '0040,030E'; - - protected $Name = 'ExposureDoseSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Dose Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureInMicroAmpSec.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureInMicroAmpSec.php deleted file mode 100644 index 8d4c59c01..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureInMicroAmpSec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureInMicroAmpSec extends AbstractTag -{ - - protected $Id = '0018,1153'; - - protected $Name = 'ExposureInMicroAmpSec'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure In Micro Amp Sec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureInMilliAmpSec.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureInMilliAmpSec.php deleted file mode 100644 index e65adf457..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureInMilliAmpSec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureInMilliAmpSec extends AbstractTag -{ - - protected $Id = '0018,9332'; - - protected $Name = 'ExposureInMilliAmpSec'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure In Milli Amp Sec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureModulationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureModulationType.php deleted file mode 100644 index dbd4bd7da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureModulationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureModulationType extends AbstractTag -{ - - protected $Id = '0018,9323'; - - protected $Name = 'ExposureModulationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Modulation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureSequence.php deleted file mode 100644 index 40c9fbe82..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureSequence extends AbstractTag -{ - - protected $Id = '3002,0030'; - - protected $Name = 'ExposureSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureStatus.php deleted file mode 100644 index 37fc4e67e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureStatus extends AbstractTag -{ - - protected $Id = '0018,7064'; - - protected $Name = 'ExposureStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTime.php deleted file mode 100644 index a05413a4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = '0018,1150'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTimeInMicroSec.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTimeInMicroSec.php deleted file mode 100644 index 6ac3f806c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTimeInMicroSec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTimeInMicroSec extends AbstractTag -{ - - protected $Id = '0018,8150'; - - protected $Name = 'ExposureTimeInMicroSec'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time In Micro Sec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTimeInMilliSec.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTimeInMilliSec.php deleted file mode 100644 index e1173875c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposureTimeInMilliSec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTimeInMilliSec extends AbstractTag -{ - - protected $Id = '0018,9328'; - - protected $Name = 'ExposureTimeInMilliSec'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time In Milli Sec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExposuresOnPlate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExposuresOnPlate.php deleted file mode 100644 index 87b6e4965..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExposuresOnPlate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposuresOnPlate extends AbstractTag -{ - - protected $Id = '0018,1404'; - - protected $Name = 'ExposuresOnPlate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposures On Plate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ExtremityCoilFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ExtremityCoilFlag.php deleted file mode 100644 index 27baeaf1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ExtremityCoilFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtremityCoilFlag extends AbstractTag -{ - - protected $Id = '0019,10A1'; - - protected $Name = 'ExtremityCoilFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extremity Coil Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FacetSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FacetSequence.php deleted file mode 100644 index 134d8417a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FacetSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacetSequence extends AbstractTag -{ - - protected $Id = '0066,0034'; - - protected $Name = 'FacetSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Facet Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FailedAttributesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FailedAttributesSequence.php deleted file mode 100644 index a6aa8168d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FailedAttributesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FailedAttributesSequence extends AbstractTag -{ - - protected $Id = '0074,1048'; - - protected $Name = 'FailedAttributesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Failed Attributes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FailedSOPInstanceUIDList.php b/lib/PHPExiftool/Driver/Tag/DICOM/FailedSOPInstanceUIDList.php deleted file mode 100644 index e6b80084c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FailedSOPInstanceUIDList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FailedSOPInstanceUIDList extends AbstractTag -{ - - protected $Id = '0008,0058'; - - protected $Name = 'FailedSOPInstanceUIDList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Failed SOP Instance UID List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FailedSOPSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FailedSOPSequence.php deleted file mode 100644 index 7805da89d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FailedSOPSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FailedSOPSequence extends AbstractTag -{ - - protected $Id = '0008,1198'; - - protected $Name = 'FailedSOPSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Failed SOP Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FailureAttributes.php b/lib/PHPExiftool/Driver/Tag/DICOM/FailureAttributes.php deleted file mode 100644 index 05f653b80..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FailureAttributes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FailureAttributes extends AbstractTag -{ - - protected $Id = '2200,000E'; - - protected $Name = 'FailureAttributes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Failure Attributes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FailureReason.php b/lib/PHPExiftool/Driver/Tag/DICOM/FailureReason.php deleted file mode 100644 index a441d911f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FailureReason.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FailureReason extends AbstractTag -{ - - protected $Id = '0008,1197'; - - protected $Name = 'FailureReason'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Failure Reason'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FastPhases.php b/lib/PHPExiftool/Driver/Tag/DICOM/FastPhases.php deleted file mode 100644 index 8547d7a88..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FastPhases.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FastPhases extends AbstractTag -{ - - protected $Id = '0019,10F2'; - - protected $Name = 'FastPhases'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fast Phases'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/FiducialDescription.php deleted file mode 100644 index d0874783c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FiducialDescription extends AbstractTag -{ - - protected $Id = '0070,030F'; - - protected $Name = 'FiducialDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fiducial Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/FiducialIdentifier.php deleted file mode 100644 index 03f241603..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FiducialIdentifier extends AbstractTag -{ - - protected $Id = '0070,0310'; - - protected $Name = 'FiducialIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fiducial Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialIdentifierCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FiducialIdentifierCodeSequence.php deleted file mode 100644 index 644148520..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialIdentifierCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FiducialIdentifierCodeSequence extends AbstractTag -{ - - protected $Id = '0070,0311'; - - protected $Name = 'FiducialIdentifierCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fiducial Identifier Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FiducialSequence.php deleted file mode 100644 index 3891c4c22..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FiducialSequence extends AbstractTag -{ - - protected $Id = '0070,031E'; - - protected $Name = 'FiducialSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fiducial Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialSetSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FiducialSetSequence.php deleted file mode 100644 index 8509f887e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialSetSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FiducialSetSequence extends AbstractTag -{ - - protected $Id = '0070,031C'; - - protected $Name = 'FiducialSetSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fiducial Set Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/FiducialUID.php deleted file mode 100644 index 72b10db4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FiducialUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FiducialUID extends AbstractTag -{ - - protected $Id = '0070,031A'; - - protected $Name = 'FiducialUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fiducial UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDescription.php deleted file mode 100644 index beffb34c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewDescription extends AbstractTag -{ - - protected $Id = '0018,9433'; - - protected $Name = 'FieldOfViewDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDimensions.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDimensions.php deleted file mode 100644 index 7eb27926b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewDimensions extends AbstractTag -{ - - protected $Id = '0018,1149'; - - protected $Name = 'FieldOfViewDimensions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDimensionsInFloat.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDimensionsInFloat.php deleted file mode 100644 index 758be9e67..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewDimensionsInFloat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewDimensionsInFloat extends AbstractTag -{ - - protected $Id = '0018,9461'; - - protected $Name = 'FieldOfViewDimensionsInFloat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Dimensions In Float'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewHorizontalFlip.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewHorizontalFlip.php deleted file mode 100644 index 652c1e508..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewHorizontalFlip.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewHorizontalFlip extends AbstractTag -{ - - protected $Id = '0018,7034'; - - protected $Name = 'FieldOfViewHorizontalFlip'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Horizontal Flip'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewInDetectorCells.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewInDetectorCells.php deleted file mode 100644 index 50e039b90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewInDetectorCells.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewInDetectorCells extends AbstractTag -{ - - protected $Id = '0019,106B'; - - protected $Name = 'FieldOfViewInDetectorCells'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View In Detector Cells'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewOrigin.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewOrigin.php deleted file mode 100644 index 4f1e5900f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewOrigin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewOrigin extends AbstractTag -{ - - protected $Id = '0018,7030'; - - protected $Name = 'FieldOfViewOrigin'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewRotation.php deleted file mode 100644 index a11c9bac7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewRotation extends AbstractTag -{ - - protected $Id = '0018,7032'; - - protected $Name = 'FieldOfViewRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewSequence.php deleted file mode 100644 index caf14397f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewSequence extends AbstractTag -{ - - protected $Id = '0018,9432'; - - protected $Name = 'FieldOfViewSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewShape.php b/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewShape.php deleted file mode 100644 index 4407e529b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FieldOfViewShape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewShape extends AbstractTag -{ - - protected $Id = '0018,1147'; - - protected $Name = 'FieldOfViewShape'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Of View Shape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FileMetaInfoGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/FileMetaInfoGroupLength.php deleted file mode 100644 index a0b867c2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FileMetaInfoGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileMetaInfoGroupLength extends AbstractTag -{ - - protected $Id = '0002,0000'; - - protected $Name = 'FileMetaInfoGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Meta Info Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FileMetaInfoVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/FileMetaInfoVersion.php deleted file mode 100644 index 2ae73e7d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FileMetaInfoVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileMetaInfoVersion extends AbstractTag -{ - - protected $Id = '0002,0001'; - - protected $Name = 'FileMetaInfoVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Meta Info Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FileSetConsistencyFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/FileSetConsistencyFlag.php deleted file mode 100644 index 4de021662..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FileSetConsistencyFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSetConsistencyFlag extends AbstractTag -{ - - protected $Id = '0004,1212'; - - protected $Name = 'FileSetConsistencyFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Set Consistency Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FileSetDescriptorFileID.php b/lib/PHPExiftool/Driver/Tag/DICOM/FileSetDescriptorFileID.php deleted file mode 100644 index 9e57a1683..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FileSetDescriptorFileID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSetDescriptorFileID extends AbstractTag -{ - - protected $Id = '0004,1141'; - - protected $Name = 'FileSetDescriptorFileID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Set Descriptor File ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FileSetID.php b/lib/PHPExiftool/Driver/Tag/DICOM/FileSetID.php deleted file mode 100644 index ac2ca8900..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FileSetID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSetID extends AbstractTag -{ - - protected $Id = '0004,1130'; - - protected $Name = 'FileSetID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Set ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FillerOrderNumImagingServiceReq.php b/lib/PHPExiftool/Driver/Tag/DICOM/FillerOrderNumImagingServiceReq.php deleted file mode 100644 index 34688af0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FillerOrderNumImagingServiceReq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillerOrderNumImagingServiceReq extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FillerOrderNum-ImagingServiceReq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filler Order Num-Imaging Service Req'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FillerOrderNumberProcedure.php b/lib/PHPExiftool/Driver/Tag/DICOM/FillerOrderNumberProcedure.php deleted file mode 100644 index 99cbefc49..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FillerOrderNumberProcedure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillerOrderNumberProcedure extends AbstractTag -{ - - protected $Id = '0040,1007'; - - protected $Name = 'FillerOrderNumber-Procedure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filler Order Number-Procedure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilmBoxContentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilmBoxContentSequence.php deleted file mode 100644 index ac390d887..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilmBoxContentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmBoxContentSequence extends AbstractTag -{ - - protected $Id = '2130,0030'; - - protected $Name = 'FilmBoxContentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Box Content Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilmConsumptionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilmConsumptionSequence.php deleted file mode 100644 index a30ab6836..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilmConsumptionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmConsumptionSequence extends AbstractTag -{ - - protected $Id = '0040,0321'; - - protected $Name = 'FilmConsumptionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Consumption Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilmDestination.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilmDestination.php deleted file mode 100644 index 6bd590272..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilmDestination.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmDestination extends AbstractTag -{ - - protected $Id = '2000,0040'; - - protected $Name = 'FilmDestination'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Destination'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilmOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilmOrientation.php deleted file mode 100644 index c41df4477..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilmOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmOrientation extends AbstractTag -{ - - protected $Id = '2010,0040'; - - protected $Name = 'FilmOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilmSessionLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilmSessionLabel.php deleted file mode 100644 index 73c0aef95..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilmSessionLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmSessionLabel extends AbstractTag -{ - - protected $Id = '2000,0050'; - - protected $Name = 'FilmSessionLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Session Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilmSizeID.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilmSizeID.php deleted file mode 100644 index 9b353ef40..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilmSizeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmSizeID extends AbstractTag -{ - - protected $Id = '2010,0050'; - - protected $Name = 'FilmSizeID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Size ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterByAttributePresence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterByAttributePresence.php deleted file mode 100644 index 8d316762b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterByAttributePresence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterByAttributePresence extends AbstractTag -{ - - protected $Id = '0072,0404'; - - protected $Name = 'FilterByAttributePresence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter By Attribute Presence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterByCategory.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterByCategory.php deleted file mode 100644 index 1967eb7d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterByCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterByCategory extends AbstractTag -{ - - protected $Id = '0072,0402'; - - protected $Name = 'FilterByCategory'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter By Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterByOperator.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterByOperator.php deleted file mode 100644 index 922b57fb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterByOperator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterByOperator extends AbstractTag -{ - - protected $Id = '0072,0406'; - - protected $Name = 'FilterByOperator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter By Operator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterHighFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterHighFrequency.php deleted file mode 100644 index b89050a41..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterHighFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterHighFrequency extends AbstractTag -{ - - protected $Id = '003A,0221'; - - protected $Name = 'FilterHighFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter High Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterLowFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterLowFrequency.php deleted file mode 100644 index be09d5e40..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterLowFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterLowFrequency extends AbstractTag -{ - - protected $Id = '003A,0220'; - - protected $Name = 'FilterLowFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter Low Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterMaterial.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterMaterial.php deleted file mode 100644 index a0fb8a5d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterMaterial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterMaterial extends AbstractTag -{ - - protected $Id = '0018,7050'; - - protected $Name = 'FilterMaterial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter Material'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterOperationsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterOperationsSequence.php deleted file mode 100644 index eef55833c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterOperationsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterOperationsSequence extends AbstractTag -{ - - protected $Id = '0072,0400'; - - protected $Name = 'FilterOperationsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter Operations Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterThicknessMaximum.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterThicknessMaximum.php deleted file mode 100644 index ba2ce0c03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterThicknessMaximum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterThicknessMaximum extends AbstractTag -{ - - protected $Id = '0018,7054'; - - protected $Name = 'FilterThicknessMaximum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter Thickness Maximum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterThicknessMinimum.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterThicknessMinimum.php deleted file mode 100644 index 0d1f46e4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterThicknessMinimum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterThicknessMinimum extends AbstractTag -{ - - protected $Id = '0018,7052'; - - protected $Name = 'FilterThicknessMinimum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter Thickness Minimum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FilterType.php b/lib/PHPExiftool/Driver/Tag/DICOM/FilterType.php deleted file mode 100644 index 8f53ddacf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FilterType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterType extends AbstractTag -{ - - protected $Id = '0018,1160'; - - protected $Name = 'FilterType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filter Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FinalCumulativeMetersetWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/FinalCumulativeMetersetWeight.php deleted file mode 100644 index 5ee624935..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FinalCumulativeMetersetWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FinalCumulativeMetersetWeight extends AbstractTag -{ - - protected $Id = '300A,010E'; - - protected $Name = 'FinalCumulativeMetersetWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Final Cumulative Meterset Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FinalCumulativeTimeWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/FinalCumulativeTimeWeight.php deleted file mode 100644 index 6fd864d04..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FinalCumulativeTimeWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FinalCumulativeTimeWeight extends AbstractTag -{ - - protected $Id = '300A,02C8'; - - protected $Name = 'FinalCumulativeTimeWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Final Cumulative Time Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FiniteVolume.php b/lib/PHPExiftool/Driver/Tag/DICOM/FiniteVolume.php deleted file mode 100644 index 28b573e8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FiniteVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FiniteVolume extends AbstractTag -{ - - protected $Id = '0066,000E'; - - protected $Name = 'FiniteVolume'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Finite Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FirstDirectoryRecordOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/FirstDirectoryRecordOffset.php deleted file mode 100644 index a40f79519..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FirstDirectoryRecordOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstDirectoryRecordOffset extends AbstractTag -{ - - protected $Id = '0004,1200'; - - protected $Name = 'FirstDirectoryRecordOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Directory Record Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FirstOrderPhaseCorrection.php b/lib/PHPExiftool/Driver/Tag/DICOM/FirstOrderPhaseCorrection.php deleted file mode 100644 index 31070b0fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FirstOrderPhaseCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstOrderPhaseCorrection extends AbstractTag -{ - - protected $Id = '0018,9198'; - - protected $Name = 'FirstOrderPhaseCorrection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Order Phase Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FirstOrderPhaseCorrectionAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/FirstOrderPhaseCorrectionAngle.php deleted file mode 100644 index 5d0d52a2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FirstOrderPhaseCorrectionAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstOrderPhaseCorrectionAngle extends AbstractTag -{ - - protected $Id = '5600,0010'; - - protected $Name = 'FirstOrderPhaseCorrectionAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Order Phase Correction Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FirstScanLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/FirstScanLocation.php deleted file mode 100644 index f04533a5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FirstScanLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstScanLocation extends AbstractTag -{ - - protected $Id = '0019,1019'; - - protected $Name = 'FirstScanLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Scan Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FirstScanRas.php b/lib/PHPExiftool/Driver/Tag/DICOM/FirstScanRas.php deleted file mode 100644 index fccca62da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FirstScanRas.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstScanRas extends AbstractTag -{ - - protected $Id = '0019,1018'; - - protected $Name = 'FirstScanRas'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Scan Ras'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FirstTreatmentDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/FirstTreatmentDate.php deleted file mode 100644 index 397e8d2e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FirstTreatmentDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstTreatmentDate extends AbstractTag -{ - - protected $Id = '3008,0054'; - - protected $Name = 'FirstTreatmentDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Treatment Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceDescription.php deleted file mode 100644 index fea094ba3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationDeviceDescription extends AbstractTag -{ - - protected $Id = '300A,0196'; - - protected $Name = 'FixationDeviceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Device Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceLabel.php deleted file mode 100644 index 1eeeaade2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationDeviceLabel extends AbstractTag -{ - - protected $Id = '300A,0194'; - - protected $Name = 'FixationDeviceLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Device Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDevicePitchAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationDevicePitchAngle.php deleted file mode 100644 index ef7857260..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDevicePitchAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationDevicePitchAngle extends AbstractTag -{ - - protected $Id = '300A,0199'; - - protected $Name = 'FixationDevicePitchAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Device Pitch Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDevicePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationDevicePosition.php deleted file mode 100644 index 87337e567..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDevicePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationDevicePosition extends AbstractTag -{ - - protected $Id = '300A,0198'; - - protected $Name = 'FixationDevicePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Device Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceRollAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceRollAngle.php deleted file mode 100644 index e00ec8e77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceRollAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationDeviceRollAngle extends AbstractTag -{ - - protected $Id = '300A,019A'; - - protected $Name = 'FixationDeviceRollAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Device Roll Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceSequence.php deleted file mode 100644 index 286b98615..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationDeviceSequence extends AbstractTag -{ - - protected $Id = '300A,0190'; - - protected $Name = 'FixationDeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceType.php deleted file mode 100644 index 5cf370949..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationDeviceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationDeviceType extends AbstractTag -{ - - protected $Id = '300A,0192'; - - protected $Name = 'FixationDeviceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Device Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationLightAzimuthalAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationLightAzimuthalAngle.php deleted file mode 100644 index d507514df..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationLightAzimuthalAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationLightAzimuthalAngle extends AbstractTag -{ - - protected $Id = '300A,0356'; - - protected $Name = 'FixationLightAzimuthalAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Light Azimuthal Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FixationLightPolarAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/FixationLightPolarAngle.php deleted file mode 100644 index 8ac5eb7e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FixationLightPolarAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixationLightPolarAngle extends AbstractTag -{ - - protected $Id = '300A,0358'; - - protected $Name = 'FixationLightPolarAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixation Light Polar Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FlipAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/FlipAngle.php deleted file mode 100644 index 4244e69a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FlipAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlipAngle extends AbstractTag -{ - - protected $Id = '0018,1314'; - - protected $Name = 'FlipAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flip Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FloatSlop.php b/lib/PHPExiftool/Driver/Tag/DICOM/FloatSlop.php deleted file mode 100644 index 9eee807b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FloatSlop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FloatSlop extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FloatSlop'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Float Slop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FlowCompensation.php b/lib/PHPExiftool/Driver/Tag/DICOM/FlowCompensation.php deleted file mode 100644 index 11fb35297..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FlowCompensation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlowCompensation extends AbstractTag -{ - - protected $Id = '0018,9010'; - - protected $Name = 'FlowCompensation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flow Compensation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FlowCompensationDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/FlowCompensationDirection.php deleted file mode 100644 index 20dfdc10f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FlowCompensationDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlowCompensationDirection extends AbstractTag -{ - - protected $Id = '0018,9183'; - - protected $Name = 'FlowCompensationDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flow Compensation Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceDataScale.php b/lib/PHPExiftool/Driver/Tag/DICOM/FluenceDataScale.php deleted file mode 100644 index 082968650..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceDataScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FluenceDataScale extends AbstractTag -{ - - protected $Id = '3002,0042'; - - protected $Name = 'FluenceDataScale'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fluence Data Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceDataSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/FluenceDataSource.php deleted file mode 100644 index 87d52ede5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceDataSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FluenceDataSource extends AbstractTag -{ - - protected $Id = '3002,0041'; - - protected $Name = 'FluenceDataSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fluence Data Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceMapSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FluenceMapSequence.php deleted file mode 100644 index a477bb988..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceMapSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FluenceMapSequence extends AbstractTag -{ - - protected $Id = '3002,0040'; - - protected $Name = 'FluenceMapSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fluence Map Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/FluenceMode.php deleted file mode 100644 index 106a5a6e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FluenceMode extends AbstractTag -{ - - protected $Id = '3002,0051'; - - protected $Name = 'FluenceMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fluence Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceModeID.php b/lib/PHPExiftool/Driver/Tag/DICOM/FluenceModeID.php deleted file mode 100644 index b95f2b133..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FluenceModeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FluenceModeID extends AbstractTag -{ - - protected $Id = '3002,0052'; - - protected $Name = 'FluenceModeID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fluence Mode ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FluoroscopyFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/FluoroscopyFlag.php deleted file mode 100644 index 3b579873b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FluoroscopyFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FluoroscopyFlag extends AbstractTag -{ - - protected $Id = '0018,9334'; - - protected $Name = 'FluoroscopyFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fluoroscopy Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FocalDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/FocalDistance.php deleted file mode 100644 index eab5d3cd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FocalDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalDistance extends AbstractTag -{ - - protected $Id = '0018,1182'; - - protected $Name = 'FocalDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FocalSpots.php b/lib/PHPExiftool/Driver/Tag/DICOM/FocalSpots.php deleted file mode 100644 index 7b76582b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FocalSpots.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalSpots extends AbstractTag -{ - - protected $Id = '0018,1190'; - - protected $Name = 'FocalSpots'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Spots'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FocusDepth.php b/lib/PHPExiftool/Driver/Tag/DICOM/FocusDepth.php deleted file mode 100644 index 9dd24d23d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FocusDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDepth extends AbstractTag -{ - - protected $Id = '0018,5012'; - - protected $Name = 'FocusDepth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focus Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ForeignImageRevision.php b/lib/PHPExiftool/Driver/Tag/DICOM/ForeignImageRevision.php deleted file mode 100644 index 6ccfaebe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ForeignImageRevision.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ForeignImageRevision extends AbstractTag -{ - - protected $Id = '0027,1030'; - - protected $Name = 'ForeignImageRevision'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Foreign Image Revision'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupDescription.php deleted file mode 100644 index 086f9ce86..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionGroupDescription extends AbstractTag -{ - - protected $Id = '300A,0072'; - - protected $Name = 'FractionGroupDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Group Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupNumber.php deleted file mode 100644 index 239891797..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionGroupNumber extends AbstractTag -{ - - protected $Id = '300A,0071'; - - protected $Name = 'FractionGroupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Group Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupSequence.php deleted file mode 100644 index eb50a4c22..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionGroupSequence extends AbstractTag -{ - - protected $Id = '300A,0070'; - - protected $Name = 'FractionGroupSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Group Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupSummarySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupSummarySequence.php deleted file mode 100644 index 8795102e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupSummarySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionGroupSummarySequence extends AbstractTag -{ - - protected $Id = '3008,0220'; - - protected $Name = 'FractionGroupSummarySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Group Summary Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupType.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupType.php deleted file mode 100644 index afad2bb7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionGroupType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionGroupType extends AbstractTag -{ - - protected $Id = '3008,0224'; - - protected $Name = 'FractionGroupType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Group Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionNumber.php deleted file mode 100644 index df67a182f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionNumber extends AbstractTag -{ - - protected $Id = '3002,0029'; - - protected $Name = 'FractionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionPattern.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionPattern.php deleted file mode 100644 index 7a5b3bc23..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionPattern.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionPattern extends AbstractTag -{ - - protected $Id = '300A,007B'; - - protected $Name = 'FractionPattern'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionStatusSummarySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionStatusSummarySequence.php deleted file mode 100644 index 683c60908..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionStatusSummarySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionStatusSummarySequence extends AbstractTag -{ - - protected $Id = '3008,0240'; - - protected $Name = 'FractionStatusSummarySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fraction Status Summary Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionalChannelDisplayScale.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionalChannelDisplayScale.php deleted file mode 100644 index 1f902761b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionalChannelDisplayScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionalChannelDisplayScale extends AbstractTag -{ - - protected $Id = '003A,0247'; - - protected $Name = 'FractionalChannelDisplayScale'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fractional Channel Display Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FractionalEcho.php b/lib/PHPExiftool/Driver/Tag/DICOM/FractionalEcho.php deleted file mode 100644 index 2f0cb866a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FractionalEcho.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractionalEcho extends AbstractTag -{ - - protected $Id = '0019,10D5'; - - protected $Name = 'FractionalEcho'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fractional Echo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionDateTime.php deleted file mode 100644 index a0a4eb9be..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameAcquisitionDateTime extends AbstractTag -{ - - protected $Id = '0018,9074'; - - protected $Name = 'FrameAcquisitionDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Acquisition Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionDuration.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionDuration.php deleted file mode 100644 index 499a529e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameAcquisitionDuration extends AbstractTag -{ - - protected $Id = '0018,9220'; - - protected $Name = 'FrameAcquisitionDuration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Acquisition Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionNumber.php deleted file mode 100644 index 919dc1a1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameAcquisitionNumber extends AbstractTag -{ - - protected $Id = '0020,9156'; - - protected $Name = 'FrameAcquisitionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Acquisition Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionSequence.php deleted file mode 100644 index f7b3467a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAcquisitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameAcquisitionSequence extends AbstractTag -{ - - protected $Id = '0018,9417'; - - protected $Name = 'FrameAcquisitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Acquisition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAnatomySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameAnatomySequence.php deleted file mode 100644 index 7e7e7def8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameAnatomySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameAnatomySequence extends AbstractTag -{ - - protected $Id = '0020,9071'; - - protected $Name = 'FrameAnatomySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Anatomy Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameComments.php deleted file mode 100644 index da33e2463..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameComments extends AbstractTag -{ - - protected $Id = '0020,9158'; - - protected $Name = 'FrameComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameContentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameContentSequence.php deleted file mode 100644 index e3812b113..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameContentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameContentSequence extends AbstractTag -{ - - protected $Id = '0020,9111'; - - protected $Name = 'FrameContentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Content Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDelay.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameDelay.php deleted file mode 100644 index 031319e89..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameDelay extends AbstractTag -{ - - protected $Id = '0018,1066'; - - protected $Name = 'FrameDelay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDetectorParametersSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameDetectorParametersSequence.php deleted file mode 100644 index 820404cf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDetectorParametersSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameDetectorParametersSequence extends AbstractTag -{ - - protected $Id = '0018,9451'; - - protected $Name = 'FrameDetectorParametersSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Detector Parameters Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDimensionPointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameDimensionPointer.php deleted file mode 100644 index 05ec1c3b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDimensionPointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameDimensionPointer extends AbstractTag -{ - - protected $Id = '0028,000A'; - - protected $Name = 'FrameDimensionPointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Dimension Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDisplaySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameDisplaySequence.php deleted file mode 100644 index 5c9c20296..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDisplaySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameDisplaySequence extends AbstractTag -{ - - protected $Id = '0008,9458'; - - protected $Name = 'FrameDisplaySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Display Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDisplayShutterSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameDisplayShutterSequence.php deleted file mode 100644 index 4739f2fa7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameDisplayShutterSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameDisplayShutterSequence extends AbstractTag -{ - - protected $Id = '0018,9472'; - - protected $Name = 'FrameDisplayShutterSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Display Shutter Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameExtractionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameExtractionSequence.php deleted file mode 100644 index c9c40dad4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameExtractionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameExtractionSequence extends AbstractTag -{ - - protected $Id = '0008,1164'; - - protected $Name = 'FrameExtractionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Extraction Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameIncrementPointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameIncrementPointer.php deleted file mode 100644 index fcdac91c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameIncrementPointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameIncrementPointer extends AbstractTag -{ - - protected $Id = '0028,0009'; - - protected $Name = 'FrameIncrementPointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Increment Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameLabel.php deleted file mode 100644 index c5c74f3a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameLabel extends AbstractTag -{ - - protected $Id = '0020,9453'; - - protected $Name = 'FrameLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameLabelVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameLabelVector.php deleted file mode 100644 index 445669d79..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameLabelVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameLabelVector extends AbstractTag -{ - - protected $Id = '0018,2002'; - - protected $Name = 'FrameLabelVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Label Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameLaterality.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameLaterality.php deleted file mode 100644 index 7b0346a33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameLaterality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameLaterality extends AbstractTag -{ - - protected $Id = '0020,9072'; - - protected $Name = 'FrameLaterality'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Laterality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameNumbersOfInterest.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameNumbersOfInterest.php deleted file mode 100644 index 91aad5098..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameNumbersOfInterest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameNumbersOfInterest extends AbstractTag -{ - - protected $Id = '0028,6020'; - - protected $Name = 'FrameNumbersOfInterest'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Numbers Of Interest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfInterestDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfInterestDescription.php deleted file mode 100644 index d5d8ff29b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfInterestDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfInterestDescription extends AbstractTag -{ - - protected $Id = '0028,6022'; - - protected $Name = 'FrameOfInterestDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Interest Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfInterestType.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfInterestType.php deleted file mode 100644 index 0d6c8e263..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfInterestType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfInterestType extends AbstractTag -{ - - protected $Id = '0028,6023'; - - protected $Name = 'FrameOfInterestType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Interest Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfRefTransformationMatrixType.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfRefTransformationMatrixType.php deleted file mode 100644 index a6cd06e30..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfRefTransformationMatrixType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfRefTransformationMatrixType extends AbstractTag -{ - - protected $Id = '0070,030C'; - - protected $Name = 'FrameOfRefTransformationMatrixType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Ref Transformation Matrix Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceRelationshipSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceRelationshipSeq.php deleted file mode 100644 index 9630ed02d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceRelationshipSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfReferenceRelationshipSeq extends AbstractTag -{ - - protected $Id = '3006,00C0'; - - protected $Name = 'FrameOfReferenceRelationshipSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Reference Relationship Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformComment.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformComment.php deleted file mode 100644 index 5aebf9421..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfReferenceTransformComment extends AbstractTag -{ - - protected $Id = '3006,00C8'; - - protected $Name = 'FrameOfReferenceTransformComment'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Reference Transform Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformMatrix.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformMatrix.php deleted file mode 100644 index e77a80da8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformMatrix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfReferenceTransformMatrix extends AbstractTag -{ - - protected $Id = '3006,00C6'; - - protected $Name = 'FrameOfReferenceTransformMatrix'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Reference Transform Matrix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformType.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformType.php deleted file mode 100644 index e52ac79bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceTransformType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfReferenceTransformType extends AbstractTag -{ - - protected $Id = '3006,00C4'; - - protected $Name = 'FrameOfReferenceTransformType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Reference Transform Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceUID.php deleted file mode 100644 index 9c67a7bf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameOfReferenceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOfReferenceUID extends AbstractTag -{ - - protected $Id = '0020,0052'; - - protected $Name = 'FrameOfReferenceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Of Reference UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FramePixelDataPropertiesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FramePixelDataPropertiesSequence.php deleted file mode 100644 index 8a7695b8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FramePixelDataPropertiesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FramePixelDataPropertiesSequence extends AbstractTag -{ - - protected $Id = '0028,9443'; - - protected $Name = 'FramePixelDataPropertiesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Pixel Data Properties Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FramePixelShiftSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FramePixelShiftSequence.php deleted file mode 100644 index 251da6552..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FramePixelShiftSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FramePixelShiftSequence extends AbstractTag -{ - - protected $Id = '0028,9415'; - - protected $Name = 'FramePixelShiftSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Pixel Shift Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FramePrimaryAngleVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/FramePrimaryAngleVector.php deleted file mode 100644 index 9d3c634a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FramePrimaryAngleVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FramePrimaryAngleVector extends AbstractTag -{ - - protected $Id = '0018,2003'; - - protected $Name = 'FramePrimaryAngleVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Primary Angle Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameReferenceDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameReferenceDateTime.php deleted file mode 100644 index dd72956b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameReferenceDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameReferenceDateTime extends AbstractTag -{ - - protected $Id = '0018,9151'; - - protected $Name = 'FrameReferenceDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Reference Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameReferenceTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameReferenceTime.php deleted file mode 100644 index 09ead8c37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameReferenceTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameReferenceTime extends AbstractTag -{ - - protected $Id = '0054,1300'; - - protected $Name = 'FrameReferenceTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Reference Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameSecondaryAngleVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameSecondaryAngleVector.php deleted file mode 100644 index 3604c14e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameSecondaryAngleVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSecondaryAngleVector extends AbstractTag -{ - - protected $Id = '0018,2004'; - - protected $Name = 'FrameSecondaryAngleVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Secondary Angle Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameTime.php deleted file mode 100644 index e45b737b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameTime extends AbstractTag -{ - - protected $Id = '0018,1063'; - - protected $Name = 'FrameTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameTimeVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameTimeVector.php deleted file mode 100644 index d1c0599d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameTimeVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameTimeVector extends AbstractTag -{ - - protected $Id = '0018,1065'; - - protected $Name = 'FrameTimeVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Time Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameType.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameType.php deleted file mode 100644 index 1d5d11bda..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameType extends AbstractTag -{ - - protected $Id = '0008,9007'; - - protected $Name = 'FrameType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrameVOILUTSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrameVOILUTSequence.php deleted file mode 100644 index f75c02255..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrameVOILUTSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameVOILUTSequence extends AbstractTag -{ - - protected $Id = '0028,9132'; - - protected $Name = 'FrameVOILUTSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame VOILUT Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FrequencyCorrection.php b/lib/PHPExiftool/Driver/Tag/DICOM/FrequencyCorrection.php deleted file mode 100644 index 7f03db618..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FrequencyCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrequencyCorrection extends AbstractTag -{ - - protected $Id = '0018,9101'; - - protected $Name = 'FrequencyCorrection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frequency Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FullFidelity.php b/lib/PHPExiftool/Driver/Tag/DICOM/FullFidelity.php deleted file mode 100644 index a14585109..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FullFidelity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullFidelity extends AbstractTag -{ - - protected $Id = '0009,1001'; - - protected $Name = 'FullFidelity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Full Fidelity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FunctionalGroupPointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/FunctionalGroupPointer.php deleted file mode 100644 index 4d0d04d1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FunctionalGroupPointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FunctionalGroupPointer extends AbstractTag -{ - - protected $Id = '0020,9167'; - - protected $Name = 'FunctionalGroupPointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Functional Group Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/FunctionalGroupPrivateCreator.php b/lib/PHPExiftool/Driver/Tag/DICOM/FunctionalGroupPrivateCreator.php deleted file mode 100644 index 89fdac053..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/FunctionalGroupPrivateCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FunctionalGroupPrivateCreator extends AbstractTag -{ - - protected $Id = '0020,9238'; - - protected $Name = 'FunctionalGroupPrivateCreator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Functional Group Private Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GEImageIntegrity.php b/lib/PHPExiftool/Driver/Tag/DICOM/GEImageIntegrity.php deleted file mode 100644 index 41b75be8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GEImageIntegrity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GEImageIntegrity extends AbstractTag -{ - - protected $Id = '0043,101C'; - - protected $Name = 'GEImageIntegrity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GE Image Integrity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryAngle.php deleted file mode 100644 index 1b5d45818..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryAngle extends AbstractTag -{ - - protected $Id = '300A,011E'; - - protected $Name = 'GantryAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryAngleTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryAngleTolerance.php deleted file mode 100644 index 200e7e281..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryAngleTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryAngleTolerance extends AbstractTag -{ - - protected $Id = '300A,0044'; - - protected $Name = 'GantryAngleTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Angle Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryDetectorSlew.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryDetectorSlew.php deleted file mode 100644 index 8be1b9095..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryDetectorSlew.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryDetectorSlew extends AbstractTag -{ - - protected $Id = '0018,1121'; - - protected $Name = 'GantryDetectorSlew'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Detector Slew'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryDetectorTilt.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryDetectorTilt.php deleted file mode 100644 index c664ec9a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryDetectorTilt.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryDetectorTilt extends AbstractTag -{ - - protected $Id = '0018,1120'; - - protected $Name = 'GantryDetectorTilt'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Detector Tilt'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryID.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryID.php deleted file mode 100644 index acc1046f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryID extends AbstractTag -{ - - protected $Id = '0018,1008'; - - protected $Name = 'GantryID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryMotionCorrected.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryMotionCorrected.php deleted file mode 100644 index bd0158bb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryMotionCorrected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryMotionCorrected extends AbstractTag -{ - - protected $Id = '0018,9762'; - - protected $Name = 'GantryMotionCorrected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Motion Corrected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPeriod.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryPeriod.php deleted file mode 100644 index ffd5323ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPeriod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryPeriod extends AbstractTag -{ - - protected $Id = '0019,1027'; - - protected $Name = 'GantryPeriod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Period'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchAngle.php deleted file mode 100644 index 9a93db11a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryPitchAngle extends AbstractTag -{ - - protected $Id = '300A,014A'; - - protected $Name = 'GantryPitchAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Pitch Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchAngleTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchAngleTolerance.php deleted file mode 100644 index a32499edd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchAngleTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryPitchAngleTolerance extends AbstractTag -{ - - protected $Id = '300A,014E'; - - protected $Name = 'GantryPitchAngleTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Pitch Angle Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchRotationDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchRotationDirection.php deleted file mode 100644 index 5ddb89d46..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryPitchRotationDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryPitchRotationDirection extends AbstractTag -{ - - protected $Id = '300A,014C'; - - protected $Name = 'GantryPitchRotationDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Pitch Rotation Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GantryRotationDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/GantryRotationDirection.php deleted file mode 100644 index cfc423a81..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GantryRotationDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GantryRotationDirection extends AbstractTag -{ - - protected $Id = '300A,011F'; - - protected $Name = 'GantryRotationDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gantry Rotation Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GatedInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GatedInformationSequence.php deleted file mode 100644 index a45429fe2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GatedInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GatedInformationSequence extends AbstractTag -{ - - protected $Id = '0054,0062'; - - protected $Name = 'GatedInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gated Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposePerformedProcStepStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposePerformedProcStepStatus.php deleted file mode 100644 index 4abb89331..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposePerformedProcStepStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenPurposePerformedProcStepStatus extends AbstractTag -{ - - protected $Id = '0040,4002'; - - protected $Name = 'GenPurposePerformedProcStepStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gen Purpose Performed Proc Step Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposeSchedProcStepPriority.php b/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposeSchedProcStepPriority.php deleted file mode 100644 index 639b1982a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposeSchedProcStepPriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenPurposeSchedProcStepPriority extends AbstractTag -{ - - protected $Id = '0040,4003'; - - protected $Name = 'GenPurposeSchedProcStepPriority'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gen Purpose Sched Proc Step Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposeScheduledProcStepStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposeScheduledProcStepStatus.php deleted file mode 100644 index 60c8c46fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GenPurposeScheduledProcStepStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenPurposeScheduledProcStepStatus extends AbstractTag -{ - - protected $Id = '0040,4001'; - - protected $Name = 'GenPurposeScheduledProcStepStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gen Purpose Scheduled Proc Step Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryDescription.php deleted file mode 100644 index cdcc40e10..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneralAccessoryDescription extends AbstractTag -{ - - protected $Id = '300A,0422'; - - protected $Name = 'GeneralAccessoryDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'General Accessory Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryID.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryID.php deleted file mode 100644 index 570a27227..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneralAccessoryID extends AbstractTag -{ - - protected $Id = '300A,0421'; - - protected $Name = 'GeneralAccessoryID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'General Accessory ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryNumber.php deleted file mode 100644 index c3c3a87fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneralAccessoryNumber extends AbstractTag -{ - - protected $Id = '300A,0424'; - - protected $Name = 'GeneralAccessoryNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'General Accessory Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessorySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessorySequence.php deleted file mode 100644 index 1b507357e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessorySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneralAccessorySequence extends AbstractTag -{ - - protected $Id = '300A,0420'; - - protected $Name = 'GeneralAccessorySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'General Accessory Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryType.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryType.php deleted file mode 100644 index efd95d7f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralAccessoryType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneralAccessoryType extends AbstractTag -{ - - protected $Id = '300A,0423'; - - protected $Name = 'GeneralAccessoryType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'General Accessory Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralMachineVerificationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneralMachineVerificationSequence.php deleted file mode 100644 index d0a469045..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneralMachineVerificationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneralMachineVerificationSequence extends AbstractTag -{ - - protected $Id = '0074,1042'; - - protected $Name = 'GeneralMachineVerificationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'General Machine Verification Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneratorID.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneratorID.php deleted file mode 100644 index 5ac876310..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneratorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneratorID extends AbstractTag -{ - - protected $Id = '0018,1005'; - - protected $Name = 'GeneratorID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Generator ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeneratorPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeneratorPower.php deleted file mode 100644 index 4a4d0522c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeneratorPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneratorPower extends AbstractTag -{ - - protected $Id = '0018,1170'; - - protected $Name = 'GeneratorPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Generator Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GenesisVersionNow.php b/lib/PHPExiftool/Driver/Tag/DICOM/GenesisVersionNow.php deleted file mode 100644 index eaf51d48c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GenesisVersionNow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenesisVersionNow extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GenesisVersionNow'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genesis Version Now'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeometricMaximumDistortion.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeometricMaximumDistortion.php deleted file mode 100644 index 525957dee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeometricMaximumDistortion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeometricMaximumDistortion extends AbstractTag -{ - - protected $Id = '0028,9445'; - - protected $Name = 'GeometricMaximumDistortion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geometric Maximum Distortion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeometricalProperties.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeometricalProperties.php deleted file mode 100644 index 26b2d66ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeometricalProperties.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeometricalProperties extends AbstractTag -{ - - protected $Id = '0028,9444'; - - protected $Name = 'GeometricalProperties'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geometrical Properties'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GeometryOfKSpaceTraversal.php b/lib/PHPExiftool/Driver/Tag/DICOM/GeometryOfKSpaceTraversal.php deleted file mode 100644 index 0ce0b3d24..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GeometryOfKSpaceTraversal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeometryOfKSpaceTraversal extends AbstractTag -{ - - protected $Id = '0018,9032'; - - protected $Name = 'GeometryOfKSpaceTraversal'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geometry Of K Space Traversal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GradientEchoTrainLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/GradientEchoTrainLength.php deleted file mode 100644 index 249fcc2f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GradientEchoTrainLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientEchoTrainLength extends AbstractTag -{ - - protected $Id = '0018,9241'; - - protected $Name = 'GradientEchoTrainLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gradient Echo Train Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInX.php b/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInX.php deleted file mode 100644 index 4889c9990..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientOffsetInX extends AbstractTag -{ - - protected $Id = '0043,1002'; - - protected $Name = 'GradientOffsetInX'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gradient Offset In X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInY.php b/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInY.php deleted file mode 100644 index d8c9328fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientOffsetInY extends AbstractTag -{ - - protected $Id = '0043,1003'; - - protected $Name = 'GradientOffsetInY'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gradient Offset In Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInZ.php b/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInZ.php deleted file mode 100644 index 221b7a0fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOffsetInZ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientOffsetInZ extends AbstractTag -{ - - protected $Id = '0043,1004'; - - protected $Name = 'GradientOffsetInZ'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gradient Offset In Z'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOutput.php b/lib/PHPExiftool/Driver/Tag/DICOM/GradientOutput.php deleted file mode 100644 index 6f5daf865..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOutput.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientOutput extends AbstractTag -{ - - protected $Id = '0018,9182'; - - protected $Name = 'GradientOutput'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gradient Output'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOutputType.php b/lib/PHPExiftool/Driver/Tag/DICOM/GradientOutputType.php deleted file mode 100644 index cea27ec15..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GradientOutputType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientOutputType extends AbstractTag -{ - - protected $Id = '0018,9180'; - - protected $Name = 'GradientOutputType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gradient Output Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicAnnotationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicAnnotationSequence.php deleted file mode 100644 index 778e53fe8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicAnnotationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicAnnotationSequence extends AbstractTag -{ - - protected $Id = '0070,0001'; - - protected $Name = 'GraphicAnnotationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Annotation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicAnnotationUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicAnnotationUnits.php deleted file mode 100644 index a5e6a810e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicAnnotationUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicAnnotationUnits extends AbstractTag -{ - - protected $Id = '0070,0005'; - - protected $Name = 'GraphicAnnotationUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Annotation Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicCoordinatesDataSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicCoordinatesDataSequence.php deleted file mode 100644 index b7056d2d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicCoordinatesDataSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicCoordinatesDataSequence extends AbstractTag -{ - - protected $Id = '0070,0318'; - - protected $Name = 'GraphicCoordinatesDataSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Coordinates Data Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicData.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicData.php deleted file mode 100644 index 1ebefe0b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicData extends AbstractTag -{ - - protected $Id = '0070,0022'; - - protected $Name = 'GraphicData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicDimensions.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicDimensions.php deleted file mode 100644 index 90b7f382b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicDimensions extends AbstractTag -{ - - protected $Id = '0070,0020'; - - protected $Name = 'GraphicDimensions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicFilled.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicFilled.php deleted file mode 100644 index 5b0e9932c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicFilled.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicFilled extends AbstractTag -{ - - protected $Id = '0070,0024'; - - protected $Name = 'GraphicFilled'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Filled'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayer.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayer.php deleted file mode 100644 index 7e54ee196..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicLayer extends AbstractTag -{ - - protected $Id = '0070,0002'; - - protected $Name = 'GraphicLayer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Layer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerDescription.php deleted file mode 100644 index 5ad4d0475..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicLayerDescription extends AbstractTag -{ - - protected $Id = '0070,0068'; - - protected $Name = 'GraphicLayerDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Layer Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerOrder.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerOrder.php deleted file mode 100644 index fe7836eb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicLayerOrder extends AbstractTag -{ - - protected $Id = '0070,0062'; - - protected $Name = 'GraphicLayerOrder'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Layer Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecDisplayGraysclValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecDisplayGraysclValue.php deleted file mode 100644 index 3ce441159..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecDisplayGraysclValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicLayerRecDisplayGraysclValue extends AbstractTag -{ - - protected $Id = '0070,0066'; - - protected $Name = 'GraphicLayerRecDisplayGraysclValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Layer Rec Display Grayscl Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecDisplayRGBValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecDisplayRGBValue.php deleted file mode 100644 index 816eb60a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecDisplayRGBValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicLayerRecDisplayRGBValue extends AbstractTag -{ - - protected $Id = '0070,0067'; - - protected $Name = 'GraphicLayerRecDisplayRGBValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Layer Rec Display RGB Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecomDisplayCIELabVal.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecomDisplayCIELabVal.php deleted file mode 100644 index 1fbeb9841..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerRecomDisplayCIELabVal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicLayerRecomDisplayCIELabVal extends AbstractTag -{ - - protected $Id = '0070,0401'; - - protected $Name = 'GraphicLayerRecomDisplayCIELabVal'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Layer Recom Display CIE Lab Val'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerSequence.php deleted file mode 100644 index e713fba11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicLayerSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicLayerSequence extends AbstractTag -{ - - protected $Id = '0070,0060'; - - protected $Name = 'GraphicLayerSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Layer Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicObjectSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicObjectSequence.php deleted file mode 100644 index af51979f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicObjectSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicObjectSequence extends AbstractTag -{ - - protected $Id = '0070,0009'; - - protected $Name = 'GraphicObjectSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Object Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicType.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicType.php deleted file mode 100644 index 58cd8d8ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicType extends AbstractTag -{ - - protected $Id = '0070,0023'; - - protected $Name = 'GraphicType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphic Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicallyPrescribed.php b/lib/PHPExiftool/Driver/Tag/DICOM/GraphicallyPrescribed.php deleted file mode 100644 index 569ceae3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GraphicallyPrescribed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicallyPrescribed extends AbstractTag -{ - - protected $Id = '0021,1050'; - - protected $Name = 'GraphicallyPrescribed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphically Prescribed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GrayLookupTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/GrayLookupTableData.php deleted file mode 100644 index d2c7d620a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GrayLookupTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayLookupTableData extends AbstractTag -{ - - protected $Id = '0028,1200'; - - protected $Name = 'GrayLookupTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gray Lookup Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GrayLookupTableDescriptor.php b/lib/PHPExiftool/Driver/Tag/DICOM/GrayLookupTableDescriptor.php deleted file mode 100644 index 4f0ecfe2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GrayLookupTableDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayLookupTableDescriptor extends AbstractTag -{ - - protected $Id = '0028,1100'; - - protected $Name = 'GrayLookupTableDescriptor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gray Lookup Table Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GrayScale.php b/lib/PHPExiftool/Driver/Tag/DICOM/GrayScale.php deleted file mode 100644 index 8720114bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GrayScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayScale extends AbstractTag -{ - - protected $Id = '0028,1080'; - - protected $Name = 'GrayScale'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gray Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GrayscalePresentationStateSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/GrayscalePresentationStateSequence.php deleted file mode 100644 index e8b9a8470..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GrayscalePresentationStateSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayscalePresentationStateSequence extends AbstractTag -{ - - protected $Id = '0008,9237'; - - protected $Name = 'GrayscalePresentationStateSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grayscale Presentation State Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GreenPaletteColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/GreenPaletteColorTableData.php deleted file mode 100644 index d9ee94a3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GreenPaletteColorTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenPaletteColorTableData extends AbstractTag -{ - - protected $Id = '0028,1202'; - - protected $Name = 'GreenPaletteColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Green Palette Color Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GreenPaletteColorTableDescriptor.php b/lib/PHPExiftool/Driver/Tag/DICOM/GreenPaletteColorTableDescriptor.php deleted file mode 100644 index c9bc2f92a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GreenPaletteColorTableDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenPaletteColorTableDescriptor extends AbstractTag -{ - - protected $Id = '0028,1102'; - - protected $Name = 'GreenPaletteColorTableDescriptor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Green Palette Color Table Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Grid.php b/lib/PHPExiftool/Driver/Tag/DICOM/Grid.php deleted file mode 100644 index 571bd00e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Grid.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Grid extends AbstractTag -{ - - protected $Id = '0018,1166'; - - protected $Name = 'Grid'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridAbsorbingMaterial.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridAbsorbingMaterial.php deleted file mode 100644 index e44a8d399..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridAbsorbingMaterial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridAbsorbingMaterial extends AbstractTag -{ - - protected $Id = '0018,7040'; - - protected $Name = 'GridAbsorbingMaterial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Absorbing Material'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridAspectRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridAspectRatio.php deleted file mode 100644 index ddee5f5b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridAspectRatio extends AbstractTag -{ - - protected $Id = '0018,7046'; - - protected $Name = 'GridAspectRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridDimensions.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridDimensions.php deleted file mode 100644 index 8eeedeb44..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridDimensions extends AbstractTag -{ - - protected $Id = '0064,0007'; - - protected $Name = 'GridDimensions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridFocalDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridFocalDistance.php deleted file mode 100644 index b83ca2805..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridFocalDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridFocalDistance extends AbstractTag -{ - - protected $Id = '0018,704C'; - - protected $Name = 'GridFocalDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Focal Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridFrameOffsetVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridFrameOffsetVector.php deleted file mode 100644 index bf617feaf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridFrameOffsetVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridFrameOffsetVector extends AbstractTag -{ - - protected $Id = '3004,000C'; - - protected $Name = 'GridFrameOffsetVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Frame Offset Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridID.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridID.php deleted file mode 100644 index 5b2d1cb48..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridID extends AbstractTag -{ - - protected $Id = '0018,1006'; - - protected $Name = 'GridID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridPeriod.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridPeriod.php deleted file mode 100644 index 52162f7ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridPeriod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridPeriod extends AbstractTag -{ - - protected $Id = '0018,7048'; - - protected $Name = 'GridPeriod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Period'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridPitch.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridPitch.php deleted file mode 100644 index 1b51a6b77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridPitch.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridPitch extends AbstractTag -{ - - protected $Id = '0018,7044'; - - protected $Name = 'GridPitch'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Pitch'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridResolution.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridResolution.php deleted file mode 100644 index 5b91a909f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridResolution extends AbstractTag -{ - - protected $Id = '0064,0008'; - - protected $Name = 'GridResolution'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridSpacingMaterial.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridSpacingMaterial.php deleted file mode 100644 index aa5bc23ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridSpacingMaterial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridSpacingMaterial extends AbstractTag -{ - - protected $Id = '0018,7041'; - - protected $Name = 'GridSpacingMaterial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Spacing Material'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/GridThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/GridThickness.php deleted file mode 100644 index 92a25f2d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/GridThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridThickness extends AbstractTag -{ - - protected $Id = '0018,7042'; - - protected $Name = 'GridThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HL7DocumentEffectiveTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/HL7DocumentEffectiveTime.php deleted file mode 100644 index 17bf49b80..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HL7DocumentEffectiveTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HL7DocumentEffectiveTime extends AbstractTag -{ - - protected $Id = '0040,E004'; - - protected $Name = 'HL7DocumentEffectiveTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HL7 Document Effective Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HL7DocumentTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/HL7DocumentTypeCodeSequence.php deleted file mode 100644 index be88bb9e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HL7DocumentTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HL7DocumentTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0040,E006'; - - protected $Name = 'HL7DocumentTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HL7 Document Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HL7InstanceIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/HL7InstanceIdentifier.php deleted file mode 100644 index 4042528c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HL7InstanceIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HL7InstanceIdentifier extends AbstractTag -{ - - protected $Id = '0040,E001'; - - protected $Name = 'HL7InstanceIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HL7 Instance Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HL7StructuredDocumentRefSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/HL7StructuredDocumentRefSeq.php deleted file mode 100644 index b61d593f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HL7StructuredDocumentRefSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HL7StructuredDocumentRefSeq extends AbstractTag -{ - - protected $Id = '0040,A390'; - - protected $Name = 'HL7StructuredDocumentRefSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HL7 Structured Document Ref Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HalfValueLayer.php b/lib/PHPExiftool/Driver/Tag/DICOM/HalfValueLayer.php deleted file mode 100644 index 10a501777..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HalfValueLayer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HalfValueLayer extends AbstractTag -{ - - protected $Id = '0040,0314'; - - protected $Name = 'HalfValueLayer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Half Value Layer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolCreationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolCreationDateTime.php deleted file mode 100644 index 2ec94e8a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolCreationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolCreationDateTime extends AbstractTag -{ - - protected $Id = '0072,000A'; - - protected $Name = 'HangingProtocolCreationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol Creation Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolCreator.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolCreator.php deleted file mode 100644 index 58a10353d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolCreator extends AbstractTag -{ - - protected $Id = '0072,0008'; - - protected $Name = 'HangingProtocolCreator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolDefinitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolDefinitionSequence.php deleted file mode 100644 index ebabc107b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolDefinitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolDefinitionSequence extends AbstractTag -{ - - protected $Id = '0072,000C'; - - protected $Name = 'HangingProtocolDefinitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol Definition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolDescription.php deleted file mode 100644 index d80631e65..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolDescription extends AbstractTag -{ - - protected $Id = '0072,0004'; - - protected $Name = 'HangingProtocolDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolLevel.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolLevel.php deleted file mode 100644 index 3dc234457..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolLevel extends AbstractTag -{ - - protected $Id = '0072,0006'; - - protected $Name = 'HangingProtocolLevel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolName.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolName.php deleted file mode 100644 index db7a6bd2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolName extends AbstractTag -{ - - protected $Id = '0072,0002'; - - protected $Name = 'HangingProtocolName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolUserGroupName.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolUserGroupName.php deleted file mode 100644 index ca56355f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolUserGroupName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolUserGroupName extends AbstractTag -{ - - protected $Id = '0072,0010'; - - protected $Name = 'HangingProtocolUserGroupName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol User Group Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolUserIDCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolUserIDCodeSequence.php deleted file mode 100644 index 719f24626..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HangingProtocolUserIDCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HangingProtocolUserIDCodeSequence extends AbstractTag -{ - - protected $Id = '0072,000E'; - - protected $Name = 'HangingProtocolUserIDCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hanging Protocol User ID Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyCreationDeviceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyCreationDeviceID.php deleted file mode 100644 index 30874f0eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyCreationDeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HardcopyCreationDeviceID extends AbstractTag -{ - - protected $Id = '0018,1011'; - - protected $Name = 'HardcopyCreationDeviceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hardcopy Creation Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceManufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceManufacturer.php deleted file mode 100644 index c9051c0bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HardcopyDeviceManufacturer extends AbstractTag -{ - - protected $Id = '0018,1017'; - - protected $Name = 'HardcopyDeviceManufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hardcopy Device Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceModelName.php b/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceModelName.php deleted file mode 100644 index ab02425a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceModelName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HardcopyDeviceModelName extends AbstractTag -{ - - protected $Id = '0018,101B'; - - protected $Name = 'HardcopyDeviceModelName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hardcopy Device Model Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceSoftwareVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceSoftwareVersion.php deleted file mode 100644 index 1f2791678..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HardcopyDeviceSoftwareVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HardcopyDeviceSoftwareVersion extends AbstractTag -{ - - protected $Id = '0018,101A'; - - protected $Name = 'HardcopyDeviceSoftwareVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hardcopy Device Software Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HeadFixationAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/HeadFixationAngle.php deleted file mode 100644 index 8dba6c701..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HeadFixationAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeadFixationAngle extends AbstractTag -{ - - protected $Id = '300A,0148'; - - protected $Name = 'HeadFixationAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Head Fixation Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HeartRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/HeartRate.php deleted file mode 100644 index 6bbdaa5df..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HeartRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeartRate extends AbstractTag -{ - - protected $Id = '0018,1088'; - - protected $Name = 'HeartRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Heart Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HighBit.php b/lib/PHPExiftool/Driver/Tag/DICOM/HighBit.php deleted file mode 100644 index e95a4865e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HighBit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighBit extends AbstractTag -{ - - protected $Id = '0028,0102'; - - protected $Name = 'HighBit'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'High Bit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HighDoseTechniqueType.php b/lib/PHPExiftool/Driver/Tag/DICOM/HighDoseTechniqueType.php deleted file mode 100644 index 486a3d695..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HighDoseTechniqueType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighDoseTechniqueType extends AbstractTag -{ - - protected $Id = '300A,00C7'; - - protected $Name = 'HighDoseTechniqueType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'High Dose Technique Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HighRRValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/HighRRValue.php deleted file mode 100644 index 2fb717c8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HighRRValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighRRValue extends AbstractTag -{ - - protected $Id = '0018,1082'; - - protected $Name = 'HighRRValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'High RR Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramBinWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramBinWidth.php deleted file mode 100644 index ce5e2a584..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramBinWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramBinWidth extends AbstractTag -{ - - protected $Id = '0060,3008'; - - protected $Name = 'HistogramBinWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram Bin Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramData.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramData.php deleted file mode 100644 index 9305df82c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramData extends AbstractTag -{ - - protected $Id = '0060,3020'; - - protected $Name = 'HistogramData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramExplanation.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramExplanation.php deleted file mode 100644 index 761319149..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramExplanation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramExplanation extends AbstractTag -{ - - protected $Id = '0060,3010'; - - protected $Name = 'HistogramExplanation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram Explanation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramFirstBinValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramFirstBinValue.php deleted file mode 100644 index bb510fa98..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramFirstBinValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramFirstBinValue extends AbstractTag -{ - - protected $Id = '0060,3004'; - - protected $Name = 'HistogramFirstBinValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram First Bin Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramLastBinValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramLastBinValue.php deleted file mode 100644 index 4f86524d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramLastBinValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramLastBinValue extends AbstractTag -{ - - protected $Id = '0060,3006'; - - protected $Name = 'HistogramLastBinValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram Last Bin Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramNumberOfBins.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramNumberOfBins.php deleted file mode 100644 index 5a800cb62..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramNumberOfBins.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramNumberOfBins extends AbstractTag -{ - - protected $Id = '0060,3002'; - - protected $Name = 'HistogramNumberOfBins'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram Number Of Bins'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramSequence.php deleted file mode 100644 index 8f7cf1b8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramSequence extends AbstractTag -{ - - protected $Id = '0060,3000'; - - protected $Name = 'HistogramSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramTables.php b/lib/PHPExiftool/Driver/Tag/DICOM/HistogramTables.php deleted file mode 100644 index 5895436ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HistogramTables.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramTables extends AbstractTag -{ - - protected $Id = '0043,1029'; - - protected $Name = 'HistogramTables'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Histogram Tables'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HorizFrameOfRef.php b/lib/PHPExiftool/Driver/Tag/DICOM/HorizFrameOfRef.php deleted file mode 100644 index 8e2811bc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HorizFrameOfRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizFrameOfRef extends AbstractTag -{ - - protected $Id = '0019,100F'; - - protected $Name = 'HorizFrameOfRef'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Horiz Frame Of Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalFieldOfView.php b/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalFieldOfView.php deleted file mode 100644 index b57aa23d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalFieldOfView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalFieldOfView extends AbstractTag -{ - - protected $Id = '0022,000C'; - - protected $Name = 'HorizontalFieldOfView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Horizontal Field Of View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalPrismBase.php b/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalPrismBase.php deleted file mode 100644 index e806bac5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalPrismBase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalPrismBase extends AbstractTag -{ - - protected $Id = '0046,0032'; - - protected $Name = 'HorizontalPrismBase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Horizontal Prism Base'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalPrismPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalPrismPower.php deleted file mode 100644 index a81e4154a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HorizontalPrismPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalPrismPower extends AbstractTag -{ - - protected $Id = '0046,0030'; - - protected $Name = 'HorizontalPrismPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Horizontal Prism Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HuffmanTableSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/HuffmanTableSize.php deleted file mode 100644 index 6c13dc737..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HuffmanTableSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HuffmanTableSize extends AbstractTag -{ - - protected $Id = '1000,xxx2'; - - protected $Name = 'HuffmanTableSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Huffman Table Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HuffmanTableTriplet.php b/lib/PHPExiftool/Driver/Tag/DICOM/HuffmanTableTriplet.php deleted file mode 100644 index 503c0b75f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HuffmanTableTriplet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HuffmanTableTriplet extends AbstractTag -{ - - protected $Id = '1000,xxx3'; - - protected $Name = 'HuffmanTableTriplet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Huffman Table Triplet'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformerCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformerCodeSequence.php deleted file mode 100644 index b9d3397ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformerCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HumanPerformerCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4009'; - - protected $Name = 'HumanPerformerCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Human Performer Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformerName.php b/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformerName.php deleted file mode 100644 index da23cc51c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HumanPerformerName extends AbstractTag -{ - - protected $Id = '0040,4037'; - - protected $Name = 'HumanPerformerName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Human Performer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformersOrganization.php b/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformersOrganization.php deleted file mode 100644 index 81f5521cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/HumanPerformersOrganization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HumanPerformersOrganization extends AbstractTag -{ - - protected $Id = '0040,4036'; - - protected $Name = 'HumanPerformersOrganization'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Human Performers Organization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IBHImageScaleFactors.php b/lib/PHPExiftool/Driver/Tag/DICOM/IBHImageScaleFactors.php deleted file mode 100644 index d5fea6700..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IBHImageScaleFactors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IBHImageScaleFactors extends AbstractTag -{ - - protected $Id = '0043,1017'; - - protected $Name = 'IBHImageScaleFactors'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IBH Image Scale Factors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ICCProfile.php b/lib/PHPExiftool/Driver/Tag/DICOM/ICCProfile.php deleted file mode 100644 index 1205649ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ICCProfile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ICCProfile extends AbstractTag -{ - - protected $Id = '0028,2000'; - - protected $Name = 'ICCProfile'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ICC Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSAcquisition.php b/lib/PHPExiftool/Driver/Tag/DICOM/IVUSAcquisition.php deleted file mode 100644 index 299374cf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSAcquisition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IVUSAcquisition extends AbstractTag -{ - - protected $Id = '0018,3100'; - - protected $Name = 'IVUSAcquisition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IVUS Acquisition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSGatedRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/IVUSGatedRate.php deleted file mode 100644 index 98b762fb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSGatedRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IVUSGatedRate extends AbstractTag -{ - - protected $Id = '0018,3102'; - - protected $Name = 'IVUSGatedRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IVUS Gated Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackRate.php deleted file mode 100644 index e7e7f3c3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IVUSPullbackRate extends AbstractTag -{ - - protected $Id = '0018,3101'; - - protected $Name = 'IVUSPullbackRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IVUS Pullback Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackStartFrameNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackStartFrameNumber.php deleted file mode 100644 index 83462039f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackStartFrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IVUSPullbackStartFrameNumber extends AbstractTag -{ - - protected $Id = '0018,3103'; - - protected $Name = 'IVUSPullbackStartFrameNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IVUS Pullback Start Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackStopFrameNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackStopFrameNumber.php deleted file mode 100644 index 3befa911f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IVUSPullbackStopFrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IVUSPullbackStopFrameNumber extends AbstractTag -{ - - protected $Id = '0018,3104'; - - protected $Name = 'IVUSPullbackStopFrameNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IVUS Pullback Stop Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IconImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IconImageSequence.php deleted file mode 100644 index f8055ceb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IconImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IconImageSequence extends AbstractTag -{ - - protected $Id = '0088,0200'; - - protected $Name = 'IconImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Icon Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IdenticalDocumentsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IdenticalDocumentsSequence.php deleted file mode 100644 index ff65a1ffd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IdenticalDocumentsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdenticalDocumentsSequence extends AbstractTag -{ - - protected $Id = '0040,A525'; - - protected $Name = 'IdenticalDocumentsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identical Documents Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IdentifierTypeCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/IdentifierTypeCode.php deleted file mode 100644 index 092e7779c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IdentifierTypeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentifierTypeCode extends AbstractTag -{ - - protected $Id = '0040,0035'; - - protected $Name = 'IdentifierTypeCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identifier Type Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IdentifyingComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/IdentifyingComments.php deleted file mode 100644 index f38c4e675..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IdentifyingComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentifyingComments extends AbstractTag -{ - - protected $Id = '0008,4000'; - - protected $Name = 'IdentifyingComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identifying Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IdentifyingGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/IdentifyingGroupLength.php deleted file mode 100644 index 39e864f49..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IdentifyingGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentifyingGroupLength extends AbstractTag -{ - - protected $Id = '0008,0000'; - - protected $Name = 'IdentifyingGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identifying Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Illumination.php b/lib/PHPExiftool/Driver/Tag/DICOM/Illumination.php deleted file mode 100644 index 708a7a1e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Illumination.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Illumination extends AbstractTag -{ - - protected $Id = '2010,015E'; - - protected $Name = 'Illumination'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Illumination'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationBandwidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationBandwidth.php deleted file mode 100644 index 01b22b216..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationBandwidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IlluminationBandwidth extends AbstractTag -{ - - protected $Id = '0022,0057'; - - protected $Name = 'IlluminationBandwidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Illumination Bandwidth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationPower.php deleted file mode 100644 index 4b9eebdee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IlluminationPower extends AbstractTag -{ - - protected $Id = '0022,0056'; - - protected $Name = 'IlluminationPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Illumination Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationTypeCodeSequence.php deleted file mode 100644 index 3c8a08bb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IlluminationTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0022,0016'; - - protected $Name = 'IlluminationTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Illumination Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationWaveLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationWaveLength.php deleted file mode 100644 index 644e40ee8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IlluminationWaveLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IlluminationWaveLength extends AbstractTag -{ - - protected $Id = '0022,0055'; - - protected $Name = 'IlluminationWaveLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Illumination Wave Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageActualDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageActualDate.php deleted file mode 100644 index 0e4b0c51e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageActualDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageActualDate extends AbstractTag -{ - - protected $Id = '0009,1027'; - - protected $Name = 'ImageActualDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Actual Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageArchiveFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageArchiveFlag.php deleted file mode 100644 index 1269fc23c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageArchiveFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageArchiveFlag extends AbstractTag -{ - - protected $Id = '0027,1006'; - - protected $Name = 'ImageArchiveFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Archive Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageAreaDoseProduct.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageAreaDoseProduct.php deleted file mode 100644 index 1b892e432..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageAreaDoseProduct.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageAreaDoseProduct extends AbstractTag -{ - - protected $Id = '0018,115E'; - - protected $Name = 'ImageAreaDoseProduct'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Area Dose Product'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxContentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxContentSequence.php deleted file mode 100644 index 64058e1ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxContentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxContentSequence extends AbstractTag -{ - - protected $Id = '2130,0040'; - - protected $Name = 'ImageBoxContentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Content Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLargeScrollAmount.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLargeScrollAmount.php deleted file mode 100644 index 210a6ead6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLargeScrollAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxLargeScrollAmount extends AbstractTag -{ - - protected $Id = '0072,0318'; - - protected $Name = 'ImageBoxLargeScrollAmount'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Large Scroll Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLargeScrollType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLargeScrollType.php deleted file mode 100644 index e964205fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLargeScrollType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxLargeScrollType extends AbstractTag -{ - - protected $Id = '0072,0316'; - - protected $Name = 'ImageBoxLargeScrollType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Large Scroll Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLayoutType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLayoutType.php deleted file mode 100644 index 9b1495438..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxLayoutType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxLayoutType extends AbstractTag -{ - - protected $Id = '0072,0304'; - - protected $Name = 'ImageBoxLayoutType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Layout Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxNumber.php deleted file mode 100644 index 8b4ed6832..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxNumber extends AbstractTag -{ - - protected $Id = '0072,0302'; - - protected $Name = 'ImageBoxNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxOverlapPriority.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxOverlapPriority.php deleted file mode 100644 index fe757542d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxOverlapPriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxOverlapPriority extends AbstractTag -{ - - protected $Id = '0072,0320'; - - protected $Name = 'ImageBoxOverlapPriority'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Overlap Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxPosition.php deleted file mode 100644 index b23b49a48..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxPosition extends AbstractTag -{ - - protected $Id = '2020,0010'; - - protected $Name = 'ImageBoxPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxPresentationLUTFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxPresentationLUTFlag.php deleted file mode 100644 index fab827c76..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxPresentationLUTFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxPresentationLUTFlag extends AbstractTag -{ - - protected $Id = '2000,006A'; - - protected $Name = 'ImageBoxPresentationLUTFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Presentation LUT Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxScrollDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxScrollDirection.php deleted file mode 100644 index b6be0137f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxScrollDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxScrollDirection extends AbstractTag -{ - - protected $Id = '0072,0310'; - - protected $Name = 'ImageBoxScrollDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Scroll Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxSmallScrollAmount.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxSmallScrollAmount.php deleted file mode 100644 index 19455c792..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxSmallScrollAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxSmallScrollAmount extends AbstractTag -{ - - protected $Id = '0072,0314'; - - protected $Name = 'ImageBoxSmallScrollAmount'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Small Scroll Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxSmallScrollType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxSmallScrollType.php deleted file mode 100644 index 66c584f5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxSmallScrollType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxSmallScrollType extends AbstractTag -{ - - protected $Id = '0072,0312'; - - protected $Name = 'ImageBoxSmallScrollType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Small Scroll Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxTileHorizontalDimension.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxTileHorizontalDimension.php deleted file mode 100644 index 6071fc61d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxTileHorizontalDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxTileHorizontalDimension extends AbstractTag -{ - - protected $Id = '0072,0306'; - - protected $Name = 'ImageBoxTileHorizontalDimension'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Tile Horizontal Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxTileVerticalDimension.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxTileVerticalDimension.php deleted file mode 100644 index eb7b32831..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxTileVerticalDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxTileVerticalDimension extends AbstractTag -{ - - protected $Id = '0072,0308'; - - protected $Name = 'ImageBoxTileVerticalDimension'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Box Tile Vertical Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxesSequence.php deleted file mode 100644 index fc57eb566..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageBoxesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoxesSequence extends AbstractTag -{ - - protected $Id = '0072,0300'; - - protected $Name = 'ImageBoxesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Boxes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageCenterPointCoordinatesSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageCenterPointCoordinatesSeq.php deleted file mode 100644 index 68801a029..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageCenterPointCoordinatesSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCenterPointCoordinatesSeq extends AbstractTag -{ - - protected $Id = '0040,071A'; - - protected $Name = 'ImageCenterPointCoordinatesSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Center Point Coordinates Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageComments.php deleted file mode 100644 index cd15af212..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageComments extends AbstractTag -{ - - protected $Id = '0020,4000'; - - protected $Name = 'ImageComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDataLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageDataLocation.php deleted file mode 100644 index abfb7db91..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDataLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDataLocation extends AbstractTag -{ - - protected $Id = '0028,08x8'; - - protected $Name = 'ImageDataLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Data Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDataTypeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageDataTypeSequence.php deleted file mode 100644 index 3b8952da9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDataTypeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDataTypeSequence extends AbstractTag -{ - - protected $Id = '0018,9807'; - - protected $Name = 'ImageDataTypeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Data Type Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensionX.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensionX.php deleted file mode 100644 index aad38f2e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensionX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDimensionX extends AbstractTag -{ - - protected $Id = '0027,1060'; - - protected $Name = 'ImageDimensionX'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Dimension X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensionY.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensionY.php deleted file mode 100644 index 609e39ca1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensionY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDimensionY extends AbstractTag -{ - - protected $Id = '0027,1061'; - - protected $Name = 'ImageDimensionY'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Dimension Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensions.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensions.php deleted file mode 100644 index 4954799ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDimensions extends AbstractTag -{ - - protected $Id = '0028,0005'; - - protected $Name = 'ImageDimensions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDisplayFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageDisplayFormat.php deleted file mode 100644 index 5aef18606..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageDisplayFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDisplayFormat extends AbstractTag -{ - - protected $Id = '2010,0010'; - - protected $Name = 'ImageDisplayFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Display Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFilter.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageFilter.php deleted file mode 100644 index b18c9790d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFilter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFilter extends AbstractTag -{ - - protected $Id = '0018,9320'; - - protected $Name = 'ImageFilter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Filter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageFormat.php deleted file mode 100644 index d4ac9ea13..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFormat extends AbstractTag -{ - - protected $Id = '0028,0040'; - - protected $Name = 'ImageFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFrameOrigin.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageFrameOrigin.php deleted file mode 100644 index 591a2f935..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFrameOrigin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFrameOrigin extends AbstractTag -{ - - protected $Id = '60xx,0051'; - - protected $Name = 'ImageFrameOrigin'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Frame Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFromWhichPrescribed.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageFromWhichPrescribed.php deleted file mode 100644 index f3b6e153e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageFromWhichPrescribed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFromWhichPrescribed extends AbstractTag -{ - - protected $Id = '0021,1036'; - - protected $Name = 'ImageFromWhichPrescribed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image From Which Prescribed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageGeometryType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageGeometryType.php deleted file mode 100644 index 4cad4e9d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageGeometryType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageGeometryType extends AbstractTag -{ - - protected $Id = '0020,0070'; - - protected $Name = 'ImageGeometryType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Geometry Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageHorizontalFlip.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageHorizontalFlip.php deleted file mode 100644 index e236fb373..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageHorizontalFlip.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHorizontalFlip extends AbstractTag -{ - - protected $Id = '0070,0041'; - - protected $Name = 'ImageHorizontalFlip'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Horizontal Flip'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageID.php deleted file mode 100644 index 1d42e5a05..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageID extends AbstractTag -{ - - protected $Id = '0054,0400'; - - protected $Name = 'ImageID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageIndex.php deleted file mode 100644 index aeabfa959..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageIndex extends AbstractTag -{ - - protected $Id = '0054,1330'; - - protected $Name = 'ImageIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageLaterality.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageLaterality.php deleted file mode 100644 index d94d30c7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageLaterality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageLaterality extends AbstractTag -{ - - protected $Id = '0020,0062'; - - protected $Name = 'ImageLaterality'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Laterality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageLocation.php deleted file mode 100644 index c8ccacd07..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageLocation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientation.php deleted file mode 100644 index 6eb706743..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOrientation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientationPatient.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientationPatient.php deleted file mode 100644 index cccc1a6bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientationPatient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOrientationPatient extends AbstractTag -{ - - protected $Id = '0020,0037'; - - protected $Name = 'ImageOrientationPatient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Orientation Patient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientationVolume.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientationVolume.php deleted file mode 100644 index 19c5a1c77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOrientationVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOrientationVolume extends AbstractTag -{ - - protected $Id = '0020,9302'; - - protected $Name = 'ImageOrientationVolume'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Orientation Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOverlayBoxContentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageOverlayBoxContentSequence.php deleted file mode 100644 index dff6738c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOverlayBoxContentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOverlayBoxContentSequence extends AbstractTag -{ - - protected $Id = '2130,0060'; - - protected $Name = 'ImageOverlayBoxContentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Overlay Box Content Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOverlayFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageOverlayFlag.php deleted file mode 100644 index 9f8f1bf0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageOverlayFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOverlayFlag extends AbstractTag -{ - - protected $Id = '2000,0067'; - - protected $Name = 'ImageOverlayFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Overlay Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterPassBand.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterPassBand.php deleted file mode 100644 index 20df27e88..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterPassBand.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePathFilterPassBand extends AbstractTag -{ - - protected $Id = '0022,0004'; - - protected $Name = 'ImagePathFilterPassBand'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Path Filter Pass Band'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterPassThroughWavelen.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterPassThroughWavelen.php deleted file mode 100644 index fa1eea708..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterPassThroughWavelen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePathFilterPassThroughWavelen extends AbstractTag -{ - - protected $Id = '0022,0003'; - - protected $Name = 'ImagePathFilterPassThroughWavelen'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Path Filter Pass Through Wavelen'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterTypeStackCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterTypeStackCodeSeq.php deleted file mode 100644 index 02b24beb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePathFilterTypeStackCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePathFilterTypeStackCodeSeq extends AbstractTag -{ - - protected $Id = '0022,0018'; - - protected $Name = 'ImagePathFilterTypeStackCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Path Filter Type Stack Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePlanePixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePlanePixelSpacing.php deleted file mode 100644 index 94a265fa6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePlanePixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePlanePixelSpacing extends AbstractTag -{ - - protected $Id = '3002,0011'; - - protected $Name = 'ImagePlanePixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Plane Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePosition.php deleted file mode 100644 index e2f654522..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePosition extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImagePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePositionPatient.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePositionPatient.php deleted file mode 100644 index e401c36ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePositionPatient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePositionPatient extends AbstractTag -{ - - protected $Id = '0020,0032'; - - protected $Name = 'ImagePositionPatient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Position Patient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePositionVolume.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePositionVolume.php deleted file mode 100644 index 3c4b8f296..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePositionVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePositionVolume extends AbstractTag -{ - - protected $Id = '0020,9301'; - - protected $Name = 'ImagePositionVolume'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Position Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePresentationComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePresentationComments.php deleted file mode 100644 index a17252f42..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePresentationComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePresentationComments extends AbstractTag -{ - - protected $Id = '0028,4000'; - - protected $Name = 'ImagePresentationComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Presentation Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePresentationGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagePresentationGroupLength.php deleted file mode 100644 index 6d8e3f5e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagePresentationGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePresentationGroupLength extends AbstractTag -{ - - protected $Id = '0028,0000'; - - protected $Name = 'ImagePresentationGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Presentation Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageProcessingApplied.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageProcessingApplied.php deleted file mode 100644 index ef288c39f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageProcessingApplied.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageProcessingApplied extends AbstractTag -{ - - protected $Id = '0028,9446'; - - protected $Name = 'ImageProcessingApplied'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Processing Applied'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageRotation.php deleted file mode 100644 index dac1d87ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageRotation extends AbstractTag -{ - - protected $Id = '0070,0042'; - - protected $Name = 'ImageRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageRotationRetired.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageRotationRetired.php deleted file mode 100644 index 5ec24e606..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageRotationRetired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageRotationRetired extends AbstractTag -{ - - protected $Id = '0070,0040'; - - protected $Name = 'ImageRotationRetired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Rotation Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetLabel.php deleted file mode 100644 index ee0f16821..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSetLabel extends AbstractTag -{ - - protected $Id = '0072,0040'; - - protected $Name = 'ImageSetLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Set Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetNumber.php deleted file mode 100644 index d009eaeda..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSetNumber extends AbstractTag -{ - - protected $Id = '0072,0032'; - - protected $Name = 'ImageSetNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Set Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorCategory.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorCategory.php deleted file mode 100644 index f0fe4b196..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSetSelectorCategory extends AbstractTag -{ - - protected $Id = '0072,0034'; - - protected $Name = 'ImageSetSelectorCategory'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Set Selector Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorSequence.php deleted file mode 100644 index 92f4905cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSetSelectorSequence extends AbstractTag -{ - - protected $Id = '0072,0022'; - - protected $Name = 'ImageSetSelectorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Set Selector Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorUsageFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorUsageFlag.php deleted file mode 100644 index 0d0936bec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetSelectorUsageFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSetSelectorUsageFlag extends AbstractTag -{ - - protected $Id = '0072,0024'; - - protected $Name = 'ImageSetSelectorUsageFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Set Selector Usage Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetsSequence.php deleted file mode 100644 index 7bdf2c532..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageSetsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSetsSequence extends AbstractTag -{ - - protected $Id = '0072,0020'; - - protected $Name = 'ImageSetsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Sets Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageToEquipmentMappingMatrix.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageToEquipmentMappingMatrix.php deleted file mode 100644 index 4b0020593..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageToEquipmentMappingMatrix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageToEquipmentMappingMatrix extends AbstractTag -{ - - protected $Id = '0028,9520'; - - protected $Name = 'ImageToEquipmentMappingMatrix'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image To Equipment Mapping Matrix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageTransformationMatrix.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageTransformationMatrix.php deleted file mode 100644 index 2202facf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageTransformationMatrix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageTransformationMatrix extends AbstractTag -{ - - protected $Id = '0018,5210'; - - protected $Name = 'ImageTransformationMatrix'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Transformation Matrix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageTranslationVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageTranslationVector.php deleted file mode 100644 index d49b012e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageTranslationVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageTranslationVector extends AbstractTag -{ - - protected $Id = '0018,5212'; - - protected $Name = 'ImageTranslationVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Translation Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageTriggerDelay.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageTriggerDelay.php deleted file mode 100644 index 6fc5979e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageTriggerDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageTriggerDelay extends AbstractTag -{ - - protected $Id = '0018,1067'; - - protected $Name = 'ImageTriggerDelay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Trigger Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImageType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImageType.php deleted file mode 100644 index d575518fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageType extends AbstractTag -{ - - protected $Id = '0008,0008'; - - protected $Name = 'ImageType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagedNucleus.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagedNucleus.php deleted file mode 100644 index 3d753c503..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagedNucleus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagedNucleus extends AbstractTag -{ - - protected $Id = '0018,0085'; - - protected $Name = 'ImagedNucleus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imaged Nucleus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagerPixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagerPixelSpacing.php deleted file mode 100644 index dd0d6aed3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagerPixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagerPixelSpacing extends AbstractTag -{ - - protected $Id = '0018,1164'; - - protected $Name = 'ImagerPixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imager Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInAcquisition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInAcquisition.php deleted file mode 100644 index 19d4448d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInAcquisition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagesInAcquisition extends AbstractTag -{ - - protected $Id = '0020,1002'; - - protected $Name = 'ImagesInAcquisition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Images In Acquisition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInSeries.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInSeries.php deleted file mode 100644 index 558f4b6e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagesInSeries extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImagesInSeries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Images In Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInStudy.php deleted file mode 100644 index 6b8b49423..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesInStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagesInStudy extends AbstractTag -{ - - protected $Id = '0020,1005'; - - protected $Name = 'ImagesInStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Images In Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesPerCardiacCycle.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagesPerCardiacCycle.php deleted file mode 100644 index ea9f62639..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagesPerCardiacCycle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagesPerCardiacCycle extends AbstractTag -{ - - protected $Id = '0019,1088'; - - protected $Name = 'ImagesPerCardiacCycle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Images Per Cardiac Cycle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingDeviceSpecificAcqParams.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagingDeviceSpecificAcqParams.php deleted file mode 100644 index 0aaa6a0c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingDeviceSpecificAcqParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagingDeviceSpecificAcqParams extends AbstractTag -{ - - protected $Id = '300A,00CC'; - - protected $Name = 'ImagingDeviceSpecificAcqParams'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imaging Device Specific Acq Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagingFrequency.php deleted file mode 100644 index b0f41ce64..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagingFrequency extends AbstractTag -{ - - protected $Id = '0018,0084'; - - protected $Name = 'ImagingFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imaging Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagingMode.php deleted file mode 100644 index 120076e75..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagingMode extends AbstractTag -{ - - protected $Id = '0027,1031'; - - protected $Name = 'ImagingMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imaging Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingOptions.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagingOptions.php deleted file mode 100644 index 6c8b92760..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingOptions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagingOptions extends AbstractTag -{ - - protected $Id = '0027,1033'; - - protected $Name = 'ImagingOptions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imaging Options'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingServiceRequestComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImagingServiceRequestComments.php deleted file mode 100644 index 5a2714bf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImagingServiceRequestComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagingServiceRequestComments extends AbstractTag -{ - - protected $Id = '0040,2400'; - - protected $Name = 'ImagingServiceRequestComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imaging Service Request Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImgIsOriginalOrUnoriginal.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImgIsOriginalOrUnoriginal.php deleted file mode 100644 index fe649db8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImgIsOriginalOrUnoriginal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImgIsOriginalOrUnoriginal extends AbstractTag -{ - - protected $Id = '0043,1005'; - - protected $Name = 'ImgIsOriginalOrUnoriginal'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Img Is Original Or Unoriginal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImplementationClassUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImplementationClassUID.php deleted file mode 100644 index 3ae4c48fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImplementationClassUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImplementationClassUID extends AbstractTag -{ - - protected $Id = '0002,0012'; - - protected $Name = 'ImplementationClassUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Implementation Class UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ImplementationVersionName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ImplementationVersionName.php deleted file mode 100644 index 9b70754c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ImplementationVersionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImplementationVersionName extends AbstractTag -{ - - protected $Id = '0002,0013'; - - protected $Name = 'ImplementationVersionName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Implementation Version Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Impressions.php b/lib/PHPExiftool/Driver/Tag/DICOM/Impressions.php deleted file mode 100644 index f76e0355b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Impressions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Impressions extends AbstractTag -{ - - protected $Id = '4008,0300'; - - protected $Name = 'Impressions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Impressions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InConcatenationNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/InConcatenationNumber.php deleted file mode 100644 index 29a741d95..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InConcatenationNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InConcatenationNumber extends AbstractTag -{ - - protected $Id = '0020,9162'; - - protected $Name = 'InConcatenationNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'In Concatenation Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InConcatenationTotalNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/InConcatenationTotalNumber.php deleted file mode 100644 index 48d9803a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InConcatenationTotalNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InConcatenationTotalNumber extends AbstractTag -{ - - protected $Id = '0020,9163'; - - protected $Name = 'InConcatenationTotalNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'In Concatenation Total Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InPlanePhaseEncodingDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/InPlanePhaseEncodingDirection.php deleted file mode 100644 index 9286efc05..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InPlanePhaseEncodingDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InPlanePhaseEncodingDirection extends AbstractTag -{ - - protected $Id = '0018,1312'; - - protected $Name = 'InPlanePhaseEncodingDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'In Plane Phase Encoding Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InStackPositionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/InStackPositionNumber.php deleted file mode 100644 index 147c0e2be..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InStackPositionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InStackPositionNumber extends AbstractTag -{ - - protected $Id = '0020,9057'; - - protected $Name = 'InStackPositionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'In Stack Position Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IncludeDisplayApplication.php b/lib/PHPExiftool/Driver/Tag/DICOM/IncludeDisplayApplication.php deleted file mode 100644 index 87afc9f25..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IncludeDisplayApplication.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncludeDisplayApplication extends AbstractTag -{ - - protected $Id = '2200,0009'; - - protected $Name = 'IncludeDisplayApplication'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Include Display Application'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IncludeNonDICOMObjects.php b/lib/PHPExiftool/Driver/Tag/DICOM/IncludeNonDICOMObjects.php deleted file mode 100644 index da3822749..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IncludeNonDICOMObjects.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncludeNonDICOMObjects extends AbstractTag -{ - - protected $Id = '2200,0008'; - - protected $Name = 'IncludeNonDICOMObjects'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Include Non DICOM Objects'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IncrementBetweenChannels.php b/lib/PHPExiftool/Driver/Tag/DICOM/IncrementBetweenChannels.php deleted file mode 100644 index dac03d0dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IncrementBetweenChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncrementBetweenChannels extends AbstractTag -{ - - protected $Id = '0019,105F'; - - protected $Name = 'IncrementBetweenChannels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Increment Between Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IncrementBetweenViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/IncrementBetweenViews.php deleted file mode 100644 index ce3d2880b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IncrementBetweenViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncrementBetweenViews extends AbstractTag -{ - - protected $Id = '0019,1062'; - - protected $Name = 'IncrementBetweenViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Increment Between Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IndicatesIfTheStudyHasCompleteInfo.php b/lib/PHPExiftool/Driver/Tag/DICOM/IndicatesIfTheStudyHasCompleteInfo.php deleted file mode 100644 index e3ab72d6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IndicatesIfTheStudyHasCompleteInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndicatesIfTheStudyHasCompleteInfo extends AbstractTag -{ - - protected $Id = '0023,107D'; - - protected $Name = 'IndicatesIfTheStudyHasCompleteInfo'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Indicates If The Study Has Complete Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IndicatesNoofUpdatesToHeader.php b/lib/PHPExiftool/Driver/Tag/DICOM/IndicatesNoofUpdatesToHeader.php deleted file mode 100644 index a7d815e95..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IndicatesNoofUpdatesToHeader.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndicatesNoofUpdatesToHeader extends AbstractTag -{ - - protected $Id = '0025,1014'; - - protected $Name = 'IndicatesNoofUpdatesToHeader'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Indicates Noof Updates To Header'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InitialCineRunState.php b/lib/PHPExiftool/Driver/Tag/DICOM/InitialCineRunState.php deleted file mode 100644 index 1e2d2a089..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InitialCineRunState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialCineRunState extends AbstractTag -{ - - protected $Id = '0018,0042'; - - protected $Name = 'InitialCineRunState'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Cine Run State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InputAvailabilityFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/InputAvailabilityFlag.php deleted file mode 100644 index a85089633..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InputAvailabilityFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputAvailabilityFlag extends AbstractTag -{ - - protected $Id = '0040,4020'; - - protected $Name = 'InputAvailabilityFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Input Availability Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InputInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/InputInformationSequence.php deleted file mode 100644 index 1f45893d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InputInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputInformationSequence extends AbstractTag -{ - - protected $Id = '0040,4021'; - - protected $Name = 'InputInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Input Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceAvailability.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstanceAvailability.php deleted file mode 100644 index d04028ff7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceAvailability.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstanceAvailability extends AbstractTag -{ - - protected $Id = '0008,0056'; - - protected $Name = 'InstanceAvailability'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Instance Availability'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreationDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreationDate.php deleted file mode 100644 index f8c0eb030..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstanceCreationDate extends AbstractTag -{ - - protected $Id = '0008,0012'; - - protected $Name = 'InstanceCreationDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Instance Creation Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreationTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreationTime.php deleted file mode 100644 index fc3e6e334..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstanceCreationTime extends AbstractTag -{ - - protected $Id = '0008,0013'; - - protected $Name = 'InstanceCreationTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Instance Creation Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreatorUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreatorUID.php deleted file mode 100644 index 06977f137..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceCreatorUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstanceCreatorUID extends AbstractTag -{ - - protected $Id = '0008,0014'; - - protected $Name = 'InstanceCreatorUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Instance Creator UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstanceNumber.php deleted file mode 100644 index 798159ba1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstanceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstanceNumber extends AbstractTag -{ - - protected $Id = '0020,0013'; - - protected $Name = 'InstanceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Instance Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionAddress.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionAddress.php deleted file mode 100644 index 31ed6f363..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstitutionAddress extends AbstractTag -{ - - protected $Id = '0008,0081'; - - protected $Name = 'InstitutionAddress'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Institution Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionCodeSequence.php deleted file mode 100644 index 0ee9f5b56..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstitutionCodeSequence extends AbstractTag -{ - - protected $Id = '0008,0082'; - - protected $Name = 'InstitutionCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Institution Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionName.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionName.php deleted file mode 100644 index bc6716e6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstitutionName extends AbstractTag -{ - - protected $Id = '0008,0080'; - - protected $Name = 'InstitutionName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Institution Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionalDepartmentName.php b/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionalDepartmentName.php deleted file mode 100644 index cf63a4623..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InstitutionalDepartmentName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstitutionalDepartmentName extends AbstractTag -{ - - protected $Id = '0008,1040'; - - protected $Name = 'InstitutionalDepartmentName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Institutional Department Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InsurancePlanIdentification.php b/lib/PHPExiftool/Driver/Tag/DICOM/InsurancePlanIdentification.php deleted file mode 100644 index 0a4acbf94..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InsurancePlanIdentification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InsurancePlanIdentification extends AbstractTag -{ - - protected $Id = '0010,1050'; - - protected $Name = 'InsurancePlanIdentification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Insurance Plan Identification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntegerSlop.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntegerSlop.php deleted file mode 100644 index 09e7930cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntegerSlop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntegerSlop extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IntegerSlop'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Integer Slop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntendedRecipientsOfResultsIDSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntendedRecipientsOfResultsIDSeq.php deleted file mode 100644 index 612bc59eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntendedRecipientsOfResultsIDSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntendedRecipientsOfResultsIDSeq extends AbstractTag -{ - - protected $Id = '0040,1011'; - - protected $Name = 'IntendedRecipientsOfResultsIDSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intended Recipients Of Results ID Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierActiveDimensions.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierActiveDimensions.php deleted file mode 100644 index b7db05c10..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierActiveDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntensifierActiveDimensions extends AbstractTag -{ - - protected $Id = '0018,9428'; - - protected $Name = 'IntensifierActiveDimensions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intensifier Active Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierActiveShape.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierActiveShape.php deleted file mode 100644 index a281cc650..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierActiveShape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntensifierActiveShape extends AbstractTag -{ - - protected $Id = '0018,9427'; - - protected $Name = 'IntensifierActiveShape'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intensifier Active Shape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierSize.php deleted file mode 100644 index ced8fad00..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntensifierSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntensifierSize extends AbstractTag -{ - - protected $Id = '0018,1162'; - - protected $Name = 'IntensifierSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intensifier Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterMarkerDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterMarkerDistance.php deleted file mode 100644 index bfb0f5497..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterMarkerDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterMarkerDistance extends AbstractTag -{ - - protected $Id = '0050,0019'; - - protected $Name = 'InterMarkerDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Inter Marker Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InternalPulseSeqName.php b/lib/PHPExiftool/Driver/Tag/DICOM/InternalPulseSeqName.php deleted file mode 100644 index b910b1724..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InternalPulseSeqName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalPulseSeqName extends AbstractTag -{ - - protected $Id = '0019,109E'; - - protected $Name = 'InternalPulseSeqName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internal Pulse Seq Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApprovalDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApprovalDate.php deleted file mode 100644 index b70dd341f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApprovalDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationApprovalDate extends AbstractTag -{ - - protected $Id = '4008,0112'; - - protected $Name = 'InterpretationApprovalDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Approval Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApprovalTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApprovalTime.php deleted file mode 100644 index 23fe29f97..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApprovalTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationApprovalTime extends AbstractTag -{ - - protected $Id = '4008,0113'; - - protected $Name = 'InterpretationApprovalTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Approval Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApproverSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApproverSequence.php deleted file mode 100644 index 500f8145d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationApproverSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationApproverSequence extends AbstractTag -{ - - protected $Id = '4008,0111'; - - protected $Name = 'InterpretationApproverSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Approver Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationAuthor.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationAuthor.php deleted file mode 100644 index 115a3f038..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationAuthor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationAuthor extends AbstractTag -{ - - protected $Id = '4008,010C'; - - protected $Name = 'InterpretationAuthor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationDiagnosisCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationDiagnosisCodeSeq.php deleted file mode 100644 index 9d360c81d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationDiagnosisCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationDiagnosisCodeSeq extends AbstractTag -{ - - protected $Id = '4008,0117'; - - protected $Name = 'InterpretationDiagnosisCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Diagnosis Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationDiagnosisDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationDiagnosisDescription.php deleted file mode 100644 index 10adf65e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationDiagnosisDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationDiagnosisDescription extends AbstractTag -{ - - protected $Id = '4008,0115'; - - protected $Name = 'InterpretationDiagnosisDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Diagnosis Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationID.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationID.php deleted file mode 100644 index 55e26b52c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationID extends AbstractTag -{ - - protected $Id = '4008,0200'; - - protected $Name = 'InterpretationID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationIDIssuer.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationIDIssuer.php deleted file mode 100644 index a05e43637..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationIDIssuer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationIDIssuer extends AbstractTag -{ - - protected $Id = '4008,0202'; - - protected $Name = 'InterpretationIDIssuer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation ID Issuer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecordedDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecordedDate.php deleted file mode 100644 index b8caa40f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecordedDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationRecordedDate extends AbstractTag -{ - - protected $Id = '4008,0100'; - - protected $Name = 'InterpretationRecordedDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Recorded Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecordedTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecordedTime.php deleted file mode 100644 index 3df25f728..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecordedTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationRecordedTime extends AbstractTag -{ - - protected $Id = '4008,0101'; - - protected $Name = 'InterpretationRecordedTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Recorded Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecorder.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecorder.php deleted file mode 100644 index 5e0a15ffe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationRecorder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationRecorder extends AbstractTag -{ - - protected $Id = '4008,0102'; - - protected $Name = 'InterpretationRecorder'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Recorder'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationStatusID.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationStatusID.php deleted file mode 100644 index 447ce55ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationStatusID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationStatusID extends AbstractTag -{ - - protected $Id = '4008,0212'; - - protected $Name = 'InterpretationStatusID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Status ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationText.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationText.php deleted file mode 100644 index eb78b325e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationText extends AbstractTag -{ - - protected $Id = '4008,010B'; - - protected $Name = 'InterpretationText'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriber.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriber.php deleted file mode 100644 index 2593a815f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationTranscriber extends AbstractTag -{ - - protected $Id = '4008,010A'; - - protected $Name = 'InterpretationTranscriber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Transcriber'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriptionDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriptionDate.php deleted file mode 100644 index 57c6c1f71..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriptionDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationTranscriptionDate extends AbstractTag -{ - - protected $Id = '4008,0108'; - - protected $Name = 'InterpretationTranscriptionDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Transcription Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriptionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriptionTime.php deleted file mode 100644 index 48e5e5b03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTranscriptionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationTranscriptionTime extends AbstractTag -{ - - protected $Id = '4008,0109'; - - protected $Name = 'InterpretationTranscriptionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Transcription Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTypeID.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTypeID.php deleted file mode 100644 index 49f675a37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterpretationTypeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretationTypeID extends AbstractTag -{ - - protected $Id = '4008,0210'; - - protected $Name = 'InterpretationTypeID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpretation Type ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterscanDelay.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterscanDelay.php deleted file mode 100644 index 6648a9b53..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterscanDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterscanDelay extends AbstractTag -{ - - protected $Id = '0019,1044'; - - protected $Name = 'InterscanDelay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interscan Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntervalNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntervalNumber.php deleted file mode 100644 index 1e482833b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntervalNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntervalNumber extends AbstractTag -{ - - protected $Id = '0020,0016'; - - protected $Name = 'IntervalNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interval Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntervalsAcquired.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntervalsAcquired.php deleted file mode 100644 index d0a024796..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntervalsAcquired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntervalsAcquired extends AbstractTag -{ - - protected $Id = '0018,1083'; - - protected $Name = 'IntervalsAcquired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervals Acquired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntervalsRejected.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntervalsRejected.php deleted file mode 100644 index f8f60b75d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntervalsRejected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntervalsRejected extends AbstractTag -{ - - protected $Id = '0018,1084'; - - protected $Name = 'IntervalsRejected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervals Rejected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDescription.php deleted file mode 100644 index 0a3f06950..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionDescription extends AbstractTag -{ - - protected $Id = '0018,003A'; - - protected $Name = 'InterventionDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugDose.php deleted file mode 100644 index fe3f93f6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionDrugDose extends AbstractTag -{ - - protected $Id = '0018,0028'; - - protected $Name = 'InterventionDrugDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Drug Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugInformationSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugInformationSeq.php deleted file mode 100644 index 69f8debe5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugInformationSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionDrugInformationSeq extends AbstractTag -{ - - protected $Id = '0018,0026'; - - protected $Name = 'InterventionDrugInformationSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Drug Information Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugName.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugName.php deleted file mode 100644 index 5d5a732cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionDrugName extends AbstractTag -{ - - protected $Id = '0018,0034'; - - protected $Name = 'InterventionDrugName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Drug Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugSequence.php deleted file mode 100644 index 69c872465..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionDrugSequence extends AbstractTag -{ - - protected $Id = '0018,0029'; - - protected $Name = 'InterventionDrugSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Drug Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugStartTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugStartTime.php deleted file mode 100644 index 6ba7131e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionDrugStartTime extends AbstractTag -{ - - protected $Id = '0018,0035'; - - protected $Name = 'InterventionDrugStartTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Drug Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugStopTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugStopTime.php deleted file mode 100644 index 5ba174cd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionDrugStopTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionDrugStopTime extends AbstractTag -{ - - protected $Id = '0018,0027'; - - protected $Name = 'InterventionDrugStopTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Drug Stop Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionSequence.php deleted file mode 100644 index 801d94f13..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionSequence extends AbstractTag -{ - - protected $Id = '0018,0036'; - - protected $Name = 'InterventionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/InterventionStatus.php deleted file mode 100644 index 7a23312b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InterventionStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterventionStatus extends AbstractTag -{ - - protected $Id = '0018,0038'; - - protected $Name = 'InterventionStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intervention Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IntraOcularPressure.php b/lib/PHPExiftool/Driver/Tag/DICOM/IntraOcularPressure.php deleted file mode 100644 index d91e874c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IntraOcularPressure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntraOcularPressure extends AbstractTag -{ - - protected $Id = '0022,000B'; - - protected $Name = 'IntraOcularPressure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intra Ocular Pressure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InversionRecovery.php b/lib/PHPExiftool/Driver/Tag/DICOM/InversionRecovery.php deleted file mode 100644 index 742f56ffe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InversionRecovery.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InversionRecovery extends AbstractTag -{ - - protected $Id = '0018,9009'; - - protected $Name = 'InversionRecovery'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Inversion Recovery'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InversionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/InversionTime.php deleted file mode 100644 index 7176e8ffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InversionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InversionTime extends AbstractTag -{ - - protected $Id = '0018,0082'; - - protected $Name = 'InversionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Inversion Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/InversionTimes.php b/lib/PHPExiftool/Driver/Tag/DICOM/InversionTimes.php deleted file mode 100644 index 8249fc097..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/InversionTimes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InversionTimes extends AbstractTag -{ - - protected $Id = '0018,9079'; - - protected $Name = 'InversionTimes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Inversion Times'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonBeamLimitingDeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonBeamLimitingDeviceSequence.php deleted file mode 100644 index 0c599a0e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonBeamLimitingDeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonBeamLimitingDeviceSequence extends AbstractTag -{ - - protected $Id = '300A,03A4'; - - protected $Name = 'IonBeamLimitingDeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Beam Limiting Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonBeamSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonBeamSequence.php deleted file mode 100644 index 73926fa38..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonBeamSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonBeamSequence extends AbstractTag -{ - - protected $Id = '300A,03A2'; - - protected $Name = 'IonBeamSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Beam Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonBlockSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonBlockSequence.php deleted file mode 100644 index d463aa9c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonBlockSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonBlockSequence extends AbstractTag -{ - - protected $Id = '300A,03A6'; - - protected $Name = 'IonBlockSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Block Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointDeliverySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointDeliverySequence.php deleted file mode 100644 index dcbc16834..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointDeliverySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonControlPointDeliverySequence extends AbstractTag -{ - - protected $Id = '3008,0041'; - - protected $Name = 'IonControlPointDeliverySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Control Point Delivery Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointSequence.php deleted file mode 100644 index d7a489981..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonControlPointSequence extends AbstractTag -{ - - protected $Id = '300A,03A8'; - - protected $Name = 'IonControlPointSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Control Point Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointVerificationSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointVerificationSeq.php deleted file mode 100644 index e36408a5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonControlPointVerificationSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonControlPointVerificationSeq extends AbstractTag -{ - - protected $Id = '0074,104E'; - - protected $Name = 'IonControlPointVerificationSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Control Point Verification Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonMachineVerificationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonMachineVerificationSequence.php deleted file mode 100644 index dae5e9753..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonMachineVerificationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonMachineVerificationSequence extends AbstractTag -{ - - protected $Id = '0074,1046'; - - protected $Name = 'IonMachineVerificationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Machine Verification Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonRangeCompensatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonRangeCompensatorSequence.php deleted file mode 100644 index 9b4ee3950..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonRangeCompensatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonRangeCompensatorSequence extends AbstractTag -{ - - protected $Id = '300A,02EA'; - - protected $Name = 'IonRangeCompensatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Range Compensator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonToleranceTableSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonToleranceTableSequence.php deleted file mode 100644 index ed5ee091a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonToleranceTableSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonToleranceTableSequence extends AbstractTag -{ - - protected $Id = '300A,03A0'; - - protected $Name = 'IonToleranceTableSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Tolerance Table Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonWedgePositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonWedgePositionSequence.php deleted file mode 100644 index 3a5fc4c8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonWedgePositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonWedgePositionSequence extends AbstractTag -{ - - protected $Id = '300A,03AC'; - - protected $Name = 'IonWedgePositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Wedge Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IonWedgeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IonWedgeSequence.php deleted file mode 100644 index 6f522c402..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IonWedgeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IonWedgeSequence extends AbstractTag -{ - - protected $Id = '300A,03AA'; - - protected $Name = 'IonWedgeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ion Wedge Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IrradiationEventIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IrradiationEventIDSequence.php deleted file mode 100644 index f1b2257a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IrradiationEventIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IrradiationEventIDSequence extends AbstractTag -{ - - protected $Id = '0018,9477'; - - protected $Name = 'IrradiationEventIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Irradiation Event ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IrradiationEventUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/IrradiationEventUID.php deleted file mode 100644 index 480eac471..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IrradiationEventUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IrradiationEventUID extends AbstractTag -{ - - protected $Id = '0008,3010'; - - protected $Name = 'IrradiationEventUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Irradiation Event UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterPosition.php deleted file mode 100644 index 6ee605ae4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterPosition extends AbstractTag -{ - - protected $Id = '300A,012C'; - - protected $Name = 'IsocenterPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterReferenceSystemSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterReferenceSystemSequence.php deleted file mode 100644 index 8115a6b18..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterReferenceSystemSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterReferenceSystemSequence extends AbstractTag -{ - - protected $Id = '0018,9462'; - - protected $Name = 'IsocenterReferenceSystemSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter Reference System Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToBeamLimitingDeviceDist.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToBeamLimitingDeviceDist.php deleted file mode 100644 index 8ed5e440e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToBeamLimitingDeviceDist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToBeamLimitingDeviceDist extends AbstractTag -{ - - protected $Id = '300A,00BB'; - - protected $Name = 'IsocenterToBeamLimitingDeviceDist'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Beam Limiting Device Dist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToBlockTrayDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToBlockTrayDistance.php deleted file mode 100644 index fb6daddad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToBlockTrayDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToBlockTrayDistance extends AbstractTag -{ - - protected $Id = '300A,00F7'; - - protected $Name = 'IsocenterToBlockTrayDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Block Tray Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToCompensatorDistances.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToCompensatorDistances.php deleted file mode 100644 index 4b5509c60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToCompensatorDistances.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToCompensatorDistances extends AbstractTag -{ - - protected $Id = '300A,02E6'; - - protected $Name = 'IsocenterToCompensatorDistances'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Compensator Distances'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToCompensatorTrayDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToCompensatorTrayDistance.php deleted file mode 100644 index af69e33f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToCompensatorTrayDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToCompensatorTrayDistance extends AbstractTag -{ - - protected $Id = '300A,02E4'; - - protected $Name = 'IsocenterToCompensatorTrayDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Compensator Tray Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToLateralSpreadingDevDist.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToLateralSpreadingDevDist.php deleted file mode 100644 index e7d08ff90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToLateralSpreadingDevDist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToLateralSpreadingDevDist extends AbstractTag -{ - - protected $Id = '300A,0374'; - - protected $Name = 'IsocenterToLateralSpreadingDevDist'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Lateral Spreading Dev Dist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToRangeModulatorDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToRangeModulatorDistance.php deleted file mode 100644 index 0fba09b1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToRangeModulatorDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToRangeModulatorDistance extends AbstractTag -{ - - protected $Id = '300A,038A'; - - protected $Name = 'IsocenterToRangeModulatorDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Range Modulator Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToRangeShifterDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToRangeShifterDistance.php deleted file mode 100644 index 4c9abb3ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToRangeShifterDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToRangeShifterDistance extends AbstractTag -{ - - protected $Id = '300A,0364'; - - protected $Name = 'IsocenterToRangeShifterDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Range Shifter Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToWedgeTrayDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToWedgeTrayDistance.php deleted file mode 100644 index 7d2f50856..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsocenterToWedgeTrayDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsocenterToWedgeTrayDistance extends AbstractTag -{ - - protected $Id = '300A,00D9'; - - protected $Name = 'IsocenterToWedgeTrayDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isocenter To Wedge Tray Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IsotopeNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/IsotopeNumber.php deleted file mode 100644 index 5648926e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IsotopeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsotopeNumber extends AbstractTag -{ - - protected $Id = '0020,0014'; - - protected $Name = 'IsotopeNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Isotope Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IssueDateOfImagingServiceRequest.php b/lib/PHPExiftool/Driver/Tag/DICOM/IssueDateOfImagingServiceRequest.php deleted file mode 100644 index 101bf3744..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IssueDateOfImagingServiceRequest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IssueDateOfImagingServiceRequest extends AbstractTag -{ - - protected $Id = '0040,2004'; - - protected $Name = 'IssueDateOfImagingServiceRequest'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Issue Date Of Imaging Service Request'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IssueTimeOfImagingServiceRequest.php b/lib/PHPExiftool/Driver/Tag/DICOM/IssueTimeOfImagingServiceRequest.php deleted file mode 100644 index 9cb806141..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IssueTimeOfImagingServiceRequest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IssueTimeOfImagingServiceRequest extends AbstractTag -{ - - protected $Id = '0040,2005'; - - protected $Name = 'IssueTimeOfImagingServiceRequest'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Issue Time Of Imaging Service Request'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfAdmissionID.php b/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfAdmissionID.php deleted file mode 100644 index 9e4f5b93f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfAdmissionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IssuerOfAdmissionID extends AbstractTag -{ - - protected $Id = '0038,0011'; - - protected $Name = 'IssuerOfAdmissionID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Issuer Of Admission ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfPatientID.php b/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfPatientID.php deleted file mode 100644 index c472e36c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfPatientID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IssuerOfPatientID extends AbstractTag -{ - - protected $Id = '0010,0021'; - - protected $Name = 'IssuerOfPatientID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Issuer Of Patient ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfServiceEpisodeID.php b/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfServiceEpisodeID.php deleted file mode 100644 index 26cddc436..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IssuerOfServiceEpisodeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IssuerOfServiceEpisodeID extends AbstractTag -{ - - protected $Id = '0038,0061'; - - protected $Name = 'IssuerOfServiceEpisodeID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Issuer Of Service Episode ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ItemNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ItemNumber.php deleted file mode 100644 index d2cdb3d7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ItemNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemNumber extends AbstractTag -{ - - protected $Id = '0020,0019'; - - protected $Name = 'ItemNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Item Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/IterboneOptionFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/IterboneOptionFlag.php deleted file mode 100644 index bcb9734b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/IterboneOptionFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IterboneOptionFlag extends AbstractTag -{ - - protected $Id = '0045,1021'; - - protected $Name = 'IterboneOptionFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Iterbone Option Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/KSpaceFiltering.php b/lib/PHPExiftool/Driver/Tag/DICOM/KSpaceFiltering.php deleted file mode 100644 index 2ed75bd74..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/KSpaceFiltering.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KSpaceFiltering extends AbstractTag -{ - - protected $Id = '0018,9064'; - - protected $Name = 'KSpaceFiltering'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'K Space Filtering'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/KVP.php b/lib/PHPExiftool/Driver/Tag/DICOM/KVP.php deleted file mode 100644 index 8fd22bc89..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/KVP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KVP extends AbstractTag -{ - - protected $Id = '0018,0060'; - - protected $Name = 'KVP'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'KVP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/KeratometricAxis.php b/lib/PHPExiftool/Driver/Tag/DICOM/KeratometricAxis.php deleted file mode 100644 index e58989f59..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/KeratometricAxis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeratometricAxis extends AbstractTag -{ - - protected $Id = '0046,0077'; - - protected $Name = 'KeratometricAxis'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keratometric Axis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/KeratometricPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/KeratometricPower.php deleted file mode 100644 index 6b8c1c57b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/KeratometricPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeratometricPower extends AbstractTag -{ - - protected $Id = '0046,0076'; - - protected $Name = 'KeratometricPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keratometric Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LUTData.php b/lib/PHPExiftool/Driver/Tag/DICOM/LUTData.php deleted file mode 100644 index 7663c0ffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LUTData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LUTData extends AbstractTag -{ - - protected $Id = '0028,3006'; - - protected $Name = 'LUTData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LUT Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LUTDescriptor.php b/lib/PHPExiftool/Driver/Tag/DICOM/LUTDescriptor.php deleted file mode 100644 index 9020e41c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LUTDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LUTDescriptor extends AbstractTag -{ - - protected $Id = '0028,3002'; - - protected $Name = 'LUTDescriptor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LUT Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LUTExplanation.php b/lib/PHPExiftool/Driver/Tag/DICOM/LUTExplanation.php deleted file mode 100644 index 1da2cdea6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LUTExplanation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LUTExplanation extends AbstractTag -{ - - protected $Id = '0028,3003'; - - protected $Name = 'LUTExplanation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LUT Explanation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LUTFrameRange.php b/lib/PHPExiftool/Driver/Tag/DICOM/LUTFrameRange.php deleted file mode 100644 index 94f782b63..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LUTFrameRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LUTFrameRange extends AbstractTag -{ - - protected $Id = '0028,9507'; - - protected $Name = 'LUTFrameRange'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LUT Frame Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LUTFunction.php b/lib/PHPExiftool/Driver/Tag/DICOM/LUTFunction.php deleted file mode 100644 index e60c5a250..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LUTFunction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LUTFunction extends AbstractTag -{ - - protected $Id = '0028,9474'; - - protected $Name = 'LUTFunction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LUT Function'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LUTLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/LUTLabel.php deleted file mode 100644 index 786dd86dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LUTLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LUTLabel extends AbstractTag -{ - - protected $Id = '0040,9210'; - - protected $Name = 'LUTLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LUT Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LabelFromInfoExtractedFromInstance.php b/lib/PHPExiftool/Driver/Tag/DICOM/LabelFromInfoExtractedFromInstance.php deleted file mode 100644 index 271017a83..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LabelFromInfoExtractedFromInstance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelFromInfoExtractedFromInstance extends AbstractTag -{ - - protected $Id = '2200,0001'; - - protected $Name = 'LabelFromInfoExtractedFromInstance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label From Info Extracted From Instance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LabelStyleSelection.php b/lib/PHPExiftool/Driver/Tag/DICOM/LabelStyleSelection.php deleted file mode 100644 index 5b6548a0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LabelStyleSelection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelStyleSelection extends AbstractTag -{ - - protected $Id = '2200,0003'; - - protected $Name = 'LabelStyleSelection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label Style Selection'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LabelText.php b/lib/PHPExiftool/Driver/Tag/DICOM/LabelText.php deleted file mode 100644 index 46c674c9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LabelText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelText extends AbstractTag -{ - - protected $Id = '2200,0002'; - - protected $Name = 'LabelText'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LandmarkCounter.php b/lib/PHPExiftool/Driver/Tag/DICOM/LandmarkCounter.php deleted file mode 100644 index a11eab698..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LandmarkCounter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LandmarkCounter extends AbstractTag -{ - - protected $Id = '0025,1010'; - - protected $Name = 'LandmarkCounter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Landmark Counter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LanguageCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/LanguageCodeSequence.php deleted file mode 100644 index 0fda9a156..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LanguageCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LanguageCodeSequence extends AbstractTag -{ - - protected $Id = '0008,0006'; - - protected $Name = 'LanguageCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargeBluePaletteColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargeBluePaletteColorTableData.php deleted file mode 100644 index 0ba891218..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargeBluePaletteColorTableData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargeBluePaletteColorTableData extends AbstractTag -{ - - protected $Id = '0028,1213'; - - protected $Name = 'LargeBluePaletteColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Large Blue Palette Color Table Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargeBluePaletteColorTableDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargeBluePaletteColorTableDescr.php deleted file mode 100644 index b269a6943..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargeBluePaletteColorTableDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargeBluePaletteColorTableDescr extends AbstractTag -{ - - protected $Id = '0028,1113'; - - protected $Name = 'LargeBluePaletteColorTableDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Large Blue Palette Color Table Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargeGreenPaletteColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargeGreenPaletteColorTableData.php deleted file mode 100644 index 426b7b4b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargeGreenPaletteColorTableData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargeGreenPaletteColorTableData extends AbstractTag -{ - - protected $Id = '0028,1212'; - - protected $Name = 'LargeGreenPaletteColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Large Green Palette Color Table Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargeGreenPaletteColorTableDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargeGreenPaletteColorTableDescr.php deleted file mode 100644 index 20537b13c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargeGreenPaletteColorTableDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargeGreenPaletteColorTableDescr extends AbstractTag -{ - - protected $Id = '0028,1112'; - - protected $Name = 'LargeGreenPaletteColorTableDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Large Green Palette Color Table Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargePaletteColorLookupTableUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargePaletteColorLookupTableUID.php deleted file mode 100644 index 65cffe88f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargePaletteColorLookupTableUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargePaletteColorLookupTableUID extends AbstractTag -{ - - protected $Id = '0028,1214'; - - protected $Name = 'LargePaletteColorLookupTableUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Large Palette Color Lookup Table UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargeRedPaletteColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargeRedPaletteColorTableData.php deleted file mode 100644 index 24868c210..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargeRedPaletteColorTableData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargeRedPaletteColorTableData extends AbstractTag -{ - - protected $Id = '0028,1211'; - - protected $Name = 'LargeRedPaletteColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Large Red Palette Color Table Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargeRedPaletteColorTableDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargeRedPaletteColorTableDescr.php deleted file mode 100644 index 3edfad5f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargeRedPaletteColorTableDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargeRedPaletteColorTableDescr extends AbstractTag -{ - - protected $Id = '0028,1111'; - - protected $Name = 'LargeRedPaletteColorTableDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Large Red Palette Color Table Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargestImagePixelValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargestImagePixelValue.php deleted file mode 100644 index fb4909680..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargestImagePixelValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestImagePixelValue extends AbstractTag -{ - - protected $Id = '0028,0107'; - - protected $Name = 'LargestImagePixelValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Largest Image Pixel Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargestImagePixelValueInPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargestImagePixelValueInPlane.php deleted file mode 100644 index 29026951b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargestImagePixelValueInPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestImagePixelValueInPlane extends AbstractTag -{ - - protected $Id = '0028,0111'; - - protected $Name = 'LargestImagePixelValueInPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Largest Image Pixel Value In Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargestMonochromePixelValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargestMonochromePixelValue.php deleted file mode 100644 index 443007425..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargestMonochromePixelValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestMonochromePixelValue extends AbstractTag -{ - - protected $Id = '0028,9099'; - - protected $Name = 'LargestMonochromePixelValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Largest Monochrome Pixel Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargestPixelValueInSeries.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargestPixelValueInSeries.php deleted file mode 100644 index fa0bfd3ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargestPixelValueInSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestPixelValueInSeries extends AbstractTag -{ - - protected $Id = '0028,0109'; - - protected $Name = 'LargestPixelValueInSeries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Largest Pixel Value In Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LargestValidPixelValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/LargestValidPixelValue.php deleted file mode 100644 index cdfe1885b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LargestValidPixelValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestValidPixelValue extends AbstractTag -{ - - protected $Id = '0028,0105'; - - protected $Name = 'LargestValidPixelValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Largest Valid Pixel Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LastDirectoryRecordOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/LastDirectoryRecordOffset.php deleted file mode 100644 index 9c78e7a7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LastDirectoryRecordOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastDirectoryRecordOffset extends AbstractTag -{ - - protected $Id = '0004,1202'; - - protected $Name = 'LastDirectoryRecordOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Directory Record Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LastImageNumberUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/LastImageNumberUsed.php deleted file mode 100644 index 533b758f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LastImageNumberUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastImageNumberUsed extends AbstractTag -{ - - protected $Id = '0025,1019'; - - protected $Name = 'LastImageNumberUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Image Number Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LastMenstrualDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/LastMenstrualDate.php deleted file mode 100644 index c2ecded0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LastMenstrualDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastMenstrualDate extends AbstractTag -{ - - protected $Id = '0010,21D0'; - - protected $Name = 'LastMenstrualDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Menstrual Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LastPseq.php b/lib/PHPExiftool/Driver/Tag/DICOM/LastPseq.php deleted file mode 100644 index 75b222495..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LastPseq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPseq extends AbstractTag -{ - - protected $Id = '0019,1012'; - - protected $Name = 'LastPseq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Pseq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LastPulseSequenceUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/LastPulseSequenceUsed.php deleted file mode 100644 index dca9c6aaf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LastPulseSequenceUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPulseSequenceUsed extends AbstractTag -{ - - protected $Id = '0025,1006'; - - protected $Name = 'LastPulseSequenceUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Pulse Sequence Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LastScanLoc.php b/lib/PHPExiftool/Driver/Tag/DICOM/LastScanLoc.php deleted file mode 100644 index 1f0d3d446..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LastScanLoc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastScanLoc extends AbstractTag -{ - - protected $Id = '0019,101B'; - - protected $Name = 'LastScanLoc'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Scan Loc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LastScanRas.php b/lib/PHPExiftool/Driver/Tag/DICOM/LastScanRas.php deleted file mode 100644 index 1fd620f14..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LastScanRas.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastScanRas extends AbstractTag -{ - - protected $Id = '0019,101A'; - - protected $Name = 'LastScanRas'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Scan Ras'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDevWaterEquivThick.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDevWaterEquivThick.php deleted file mode 100644 index be1b8fbbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDevWaterEquivThick.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDevWaterEquivThick extends AbstractTag -{ - - protected $Id = '300A,033C'; - - protected $Name = 'LateralSpreadingDevWaterEquivThick'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Dev Water Equiv Thick'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceDescription.php deleted file mode 100644 index c22edee2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDeviceDescription extends AbstractTag -{ - - protected $Id = '300A,033A'; - - protected $Name = 'LateralSpreadingDeviceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Device Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceID.php deleted file mode 100644 index 60bc79489..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDeviceID extends AbstractTag -{ - - protected $Id = '300A,0336'; - - protected $Name = 'LateralSpreadingDeviceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceNumber.php deleted file mode 100644 index 90431b07e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDeviceNumber extends AbstractTag -{ - - protected $Id = '300A,0334'; - - protected $Name = 'LateralSpreadingDeviceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Device Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSequence.php deleted file mode 100644 index 7d5814ce4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDeviceSequence extends AbstractTag -{ - - protected $Id = '300A,0332'; - - protected $Name = 'LateralSpreadingDeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSetting.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSetting.php deleted file mode 100644 index ba1bbf3cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDeviceSetting extends AbstractTag -{ - - protected $Id = '300A,0372'; - - protected $Name = 'LateralSpreadingDeviceSetting'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Device Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSettingsSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSettingsSeq.php deleted file mode 100644 index f9121957c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceSettingsSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDeviceSettingsSeq extends AbstractTag -{ - - protected $Id = '300A,0370'; - - protected $Name = 'LateralSpreadingDeviceSettingsSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Device Settings Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceType.php deleted file mode 100644 index a5b5f63c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LateralSpreadingDeviceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralSpreadingDeviceType extends AbstractTag -{ - - protected $Id = '300A,0338'; - - protected $Name = 'LateralSpreadingDeviceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lateral Spreading Device Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Laterality.php b/lib/PHPExiftool/Driver/Tag/DICOM/Laterality.php deleted file mode 100644 index 330f67ce7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Laterality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Laterality extends AbstractTag -{ - - protected $Id = '0020,0060'; - - protected $Name = 'Laterality'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Laterality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LeafJawPositions.php b/lib/PHPExiftool/Driver/Tag/DICOM/LeafJawPositions.php deleted file mode 100644 index f1f3ecd89..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LeafJawPositions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafJawPositions extends AbstractTag -{ - - protected $Id = '300A,011C'; - - protected $Name = 'LeafJawPositions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Jaw Positions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LeafPositionBoundaries.php b/lib/PHPExiftool/Driver/Tag/DICOM/LeafPositionBoundaries.php deleted file mode 100644 index 971e6120a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LeafPositionBoundaries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafPositionBoundaries extends AbstractTag -{ - - protected $Id = '300A,00BE'; - - protected $Name = 'LeafPositionBoundaries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Position Boundaries'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LeftImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/LeftImageSequence.php deleted file mode 100644 index b0f6482b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LeftImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeftImageSequence extends AbstractTag -{ - - protected $Id = '0022,0021'; - - protected $Name = 'LeftImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Left Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LeftLensSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/LeftLensSequence.php deleted file mode 100644 index b7e8dfc73..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LeftLensSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeftLensSequence extends AbstractTag -{ - - protected $Id = '0046,0015'; - - protected $Name = 'LeftLensSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Left Lens Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LenOfTotHdrInBytes.php b/lib/PHPExiftool/Driver/Tag/DICOM/LenOfTotHdrInBytes.php deleted file mode 100644 index c60b3fa0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LenOfTotHdrInBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LenOfTotHdrInBytes extends AbstractTag -{ - - protected $Id = '0029,101A'; - - protected $Name = 'LenOfTotHdrInBytes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Len Of Tot Hdr In Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LengthToEnd.php b/lib/PHPExiftool/Driver/Tag/DICOM/LengthToEnd.php deleted file mode 100644 index e9d94c001..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LengthToEnd.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LengthToEnd extends AbstractTag -{ - - protected $Id = '0008,0001'; - - protected $Name = 'LengthToEnd'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Length To End'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LensDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/LensDescription.php deleted file mode 100644 index 8a6b4b6b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LensDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensDescription extends AbstractTag -{ - - protected $Id = '0046,0012'; - - protected $Name = 'LensDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LensSegmentType.php b/lib/PHPExiftool/Driver/Tag/DICOM/LensSegmentType.php deleted file mode 100644 index 1d28810e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LensSegmentType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSegmentType extends AbstractTag -{ - - protected $Id = '0046,0038'; - - protected $Name = 'LensSegmentType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Segment Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LensesCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/LensesCodeSequence.php deleted file mode 100644 index 2045bf512..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LensesCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensesCodeSequence extends AbstractTag -{ - - protected $Id = '0022,0019'; - - protected $Name = 'LensesCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lenses Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LesionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/LesionNumber.php deleted file mode 100644 index 97c997dc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LesionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LesionNumber extends AbstractTag -{ - - protected $Id = '0018,3105'; - - protected $Name = 'LesionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lesion Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LevelValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/LevelValue.php deleted file mode 100644 index b30e66b6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LevelValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LevelValue extends AbstractTag -{ - - protected $Id = '0043,101D'; - - protected $Name = 'LevelValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Level Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterPassBand.php b/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterPassBand.php deleted file mode 100644 index 96d3b43c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterPassBand.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightPathFilterPassBand extends AbstractTag -{ - - protected $Id = '0022,0002'; - - protected $Name = 'LightPathFilterPassBand'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Light Path Filter Pass Band'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterPassThroughWavelen.php b/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterPassThroughWavelen.php deleted file mode 100644 index 26eb38dd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterPassThroughWavelen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightPathFilterPassThroughWavelen extends AbstractTag -{ - - protected $Id = '0022,0001'; - - protected $Name = 'LightPathFilterPassThroughWavelen'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Light Path Filter Pass Through Wavelen'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterTypeStackCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterTypeStackCodeSeq.php deleted file mode 100644 index 988c866d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LightPathFilterTypeStackCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightPathFilterTypeStackCodeSeq extends AbstractTag -{ - - protected $Id = '0022,0017'; - - protected $Name = 'LightPathFilterTypeStackCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Light Path Filter Type Stack Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LimitsInUnitsOfPercent.php b/lib/PHPExiftool/Driver/Tag/DICOM/LimitsInUnitsOfPercent.php deleted file mode 100644 index 1b3146407..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LimitsInUnitsOfPercent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LimitsInUnitsOfPercent extends AbstractTag -{ - - protected $Id = '0043,100C'; - - protected $Name = 'LimitsInUnitsOfPercent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Limits In Units Of Percent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LineSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/LineSequence.php deleted file mode 100644 index 2f7fee664..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LineSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LineSequence extends AbstractTag -{ - - protected $Id = '0066,0028'; - - protected $Name = 'LineSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Line Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ListOfMIMETypes.php b/lib/PHPExiftool/Driver/Tag/DICOM/ListOfMIMETypes.php deleted file mode 100644 index 060a65c29..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ListOfMIMETypes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ListOfMIMETypes extends AbstractTag -{ - - protected $Id = '0042,0014'; - - protected $Name = 'ListOfMIMETypes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'List Of MIME Types'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LocalNamespaceEntityID.php b/lib/PHPExiftool/Driver/Tag/DICOM/LocalNamespaceEntityID.php deleted file mode 100644 index b2a76ab46..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LocalNamespaceEntityID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalNamespaceEntityID extends AbstractTag -{ - - protected $Id = '0040,0031'; - - protected $Name = 'LocalNamespaceEntityID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Local Namespace Entity ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Location.php b/lib/PHPExiftool/Driver/Tag/DICOM/Location.php deleted file mode 100644 index db41fe08d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Location.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = '0020,0050'; - - protected $Name = 'Location'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LocationsInAcquisition.php b/lib/PHPExiftool/Driver/Tag/DICOM/LocationsInAcquisition.php deleted file mode 100644 index 01f341827..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LocationsInAcquisition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationsInAcquisition extends AbstractTag -{ - - protected $Id = '0021,104F'; - - protected $Name = 'LocationsInAcquisition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Locations In Acquisition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LookupTableNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/LookupTableNumber.php deleted file mode 100644 index 0bf6f4032..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LookupTableNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LookupTableNumber extends AbstractTag -{ - - protected $Id = '0020,0026'; - - protected $Name = 'LookupTableNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lookup Table Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompression.php b/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompression.php deleted file mode 100644 index d7dcbf12e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompression.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LossyImageCompression extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LossyImageCompression'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lossy Image Compression'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompressionMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompressionMethod.php deleted file mode 100644 index faa67dbd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompressionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LossyImageCompressionMethod extends AbstractTag -{ - - protected $Id = '0028,2114'; - - protected $Name = 'LossyImageCompressionMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lossy Image Compression Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompressionRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompressionRatio.php deleted file mode 100644 index c2e048264..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LossyImageCompressionRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LossyImageCompressionRatio extends AbstractTag -{ - - protected $Id = '0028,2112'; - - protected $Name = 'LossyImageCompressionRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lossy Image Compression Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowRRValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowRRValue.php deleted file mode 100644 index a912b46eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowRRValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowRRValue extends AbstractTag -{ - - protected $Id = '0018,1081'; - - protected $Name = 'LowRRValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Low RR Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerLevelDirectoryEntityOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerLevelDirectoryEntityOffset.php deleted file mode 100644 index 1017aef34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerLevelDirectoryEntityOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerLevelDirectoryEntityOffset extends AbstractTag -{ - - protected $Id = '0004,1420'; - - protected $Name = 'LowerLevelDirectoryEntityOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Level Directory Entity Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1a.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1a.php deleted file mode 100644 index 981ce70ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1a.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1a extends AbstractTag -{ - - protected $Id = '0029,1004'; - - protected $Name = 'LowerRangeOfPixels1a'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1a'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1b.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1b.php deleted file mode 100644 index 6ac41419a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1b.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1b extends AbstractTag -{ - - protected $Id = '0029,1005'; - - protected $Name = 'LowerRangeOfPixels1b'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1b'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1c.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1c.php deleted file mode 100644 index 4461033c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1c.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1c extends AbstractTag -{ - - protected $Id = '0029,1006'; - - protected $Name = 'LowerRangeOfPixels1c'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1c'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1d.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1d.php deleted file mode 100644 index d3b98ea7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1d.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1d extends AbstractTag -{ - - protected $Id = '0029,1007'; - - protected $Name = 'LowerRangeOfPixels1d'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1d'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1e.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1e.php deleted file mode 100644 index ced529443..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1e.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1e extends AbstractTag -{ - - protected $Id = '0029,1008'; - - protected $Name = 'LowerRangeOfPixels1e'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1e'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1f.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1f.php deleted file mode 100644 index fdb226355..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1f.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1f extends AbstractTag -{ - - protected $Id = '0029,1009'; - - protected $Name = 'LowerRangeOfPixels1f'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1f'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1g.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1g.php deleted file mode 100644 index 50bf89c2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1g.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1g extends AbstractTag -{ - - protected $Id = '0029,100A'; - - protected $Name = 'LowerRangeOfPixels1g'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1g'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1h.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1h.php deleted file mode 100644 index 771605f20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1h.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1h extends AbstractTag -{ - - protected $Id = '0029,1015'; - - protected $Name = 'LowerRangeOfPixels1h'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1h'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1i.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1i.php deleted file mode 100644 index 2b917fa36..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels1i.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels1i extends AbstractTag -{ - - protected $Id = '0029,1016'; - - protected $Name = 'LowerRangeOfPixels1i'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 1i'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels2.php b/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels2.php deleted file mode 100644 index a5467dcb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/LowerRangeOfPixels2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowerRangeOfPixels2 extends AbstractTag -{ - - protected $Id = '0029,1017'; - - protected $Name = 'LowerRangeOfPixels2'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lower Range Of Pixels 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MAC.php b/lib/PHPExiftool/Driver/Tag/DICOM/MAC.php deleted file mode 100644 index fdbe6d507..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MAC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MAC extends AbstractTag -{ - - protected $Id = '0400,0404'; - - protected $Name = 'MAC'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MAC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MACAlgorithm.php b/lib/PHPExiftool/Driver/Tag/DICOM/MACAlgorithm.php deleted file mode 100644 index 8be25cb90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MACAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MACAlgorithm extends AbstractTag -{ - - protected $Id = '0400,0015'; - - protected $Name = 'MACAlgorithm'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MAC Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MACCalculationTransferSyntaxUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/MACCalculationTransferSyntaxUID.php deleted file mode 100644 index 80639ed0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MACCalculationTransferSyntaxUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MACCalculationTransferSyntaxUID extends AbstractTag -{ - - protected $Id = '0400,0010'; - - protected $Name = 'MACCalculationTransferSyntaxUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MAC Calculation Transfer Syntax UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MACIDNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/MACIDNumber.php deleted file mode 100644 index e57733321..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MACIDNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MACIDNumber extends AbstractTag -{ - - protected $Id = '0400,0005'; - - protected $Name = 'MACIDNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MACID Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MACParametersSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MACParametersSequence.php deleted file mode 100644 index a9b78345e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MACParametersSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MACParametersSequence extends AbstractTag -{ - - protected $Id = '4FFE,0001'; - - protected $Name = 'MACParametersSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MAC Parameters Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MIMETypeOfEncapsulatedDocument.php b/lib/PHPExiftool/Driver/Tag/DICOM/MIMETypeOfEncapsulatedDocument.php deleted file mode 100644 index c6fb17f8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MIMETypeOfEncapsulatedDocument.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MIMETypeOfEncapsulatedDocument extends AbstractTag -{ - - protected $Id = '0042,0012'; - - protected $Name = 'MIMETypeOfEncapsulatedDocument'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MIME Type Of Encapsulated Document'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcqPhaseEncodingStepsInPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRAcqPhaseEncodingStepsInPlane.php deleted file mode 100644 index 8bdf1e4f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcqPhaseEncodingStepsInPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRAcqPhaseEncodingStepsInPlane extends AbstractTag -{ - - protected $Id = '0018,9231'; - - protected $Name = 'MRAcqPhaseEncodingStepsInPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Acq Phase Encoding Steps In Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcqPhaseEncodingStepsOutOfPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRAcqPhaseEncodingStepsOutOfPlane.php deleted file mode 100644 index 30b372ca5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcqPhaseEncodingStepsOutOfPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRAcqPhaseEncodingStepsOutOfPlane extends AbstractTag -{ - - protected $Id = '0018,9232'; - - protected $Name = 'MRAcqPhaseEncodingStepsOutOfPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Acq Phase Encoding Steps Out Of Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcquisitionFrequencyEncodeSteps.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRAcquisitionFrequencyEncodeSteps.php deleted file mode 100644 index 61f69206c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcquisitionFrequencyEncodeSteps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRAcquisitionFrequencyEncodeSteps extends AbstractTag -{ - - protected $Id = '0018,9058'; - - protected $Name = 'MRAcquisitionFrequencyEncodeSteps'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Acquisition Frequency Encode Steps'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcquisitionType.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRAcquisitionType.php deleted file mode 100644 index a538d4e44..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRAcquisitionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRAcquisitionType extends AbstractTag -{ - - protected $Id = '0018,0023'; - - protected $Name = 'MRAcquisitionType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Acquisition Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRAveragesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRAveragesSequence.php deleted file mode 100644 index 96dac4968..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRAveragesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRAveragesSequence extends AbstractTag -{ - - protected $Id = '0018,9119'; - - protected $Name = 'MRAveragesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Averages Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRDRDirectoryRecordOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRDRDirectoryRecordOffset.php deleted file mode 100644 index a01fd64ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRDRDirectoryRecordOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRDRDirectoryRecordOffset extends AbstractTag -{ - - protected $Id = '0004,1504'; - - protected $Name = 'MRDRDirectoryRecordOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MRDR Directory Record Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRDiffusionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRDiffusionSequence.php deleted file mode 100644 index 100560f38..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRDiffusionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRDiffusionSequence extends AbstractTag -{ - - protected $Id = '0018,9117'; - - protected $Name = 'MRDiffusionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Diffusion Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MREchoSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MREchoSequence.php deleted file mode 100644 index 7b11346a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MREchoSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MREchoSequence extends AbstractTag -{ - - protected $Id = '0018,9114'; - - protected $Name = 'MREchoSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Echo Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRFOVGeometrySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRFOVGeometrySequence.php deleted file mode 100644 index 1fceeb9c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRFOVGeometrySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRFOVGeometrySequence extends AbstractTag -{ - - protected $Id = '0018,9125'; - - protected $Name = 'MRFOV-GeometrySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MRFOV-Geometry Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRImageFrameTypeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRImageFrameTypeSequence.php deleted file mode 100644 index a56f51994..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRImageFrameTypeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRImageFrameTypeSequence extends AbstractTag -{ - - protected $Id = '0018,9226'; - - protected $Name = 'MRImageFrameTypeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Image Frame Type Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRImagingModifierSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRImagingModifierSequence.php deleted file mode 100644 index d3a33ac81..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRImagingModifierSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRImagingModifierSequence extends AbstractTag -{ - - protected $Id = '0018,9006'; - - protected $Name = 'MRImagingModifierSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Imaging Modifier Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRMetaboliteMapSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRMetaboliteMapSequence.php deleted file mode 100644 index d99063439..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRMetaboliteMapSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRMetaboliteMapSequence extends AbstractTag -{ - - protected $Id = '0018,9152'; - - protected $Name = 'MRMetaboliteMapSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Metabolite Map Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRModifierSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRModifierSequence.php deleted file mode 100644 index 2f785540f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRModifierSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRModifierSequence extends AbstractTag -{ - - protected $Id = '0018,9115'; - - protected $Name = 'MRModifierSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Modifier Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRReceiveCoilSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRReceiveCoilSequence.php deleted file mode 100644 index c0970c0f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRReceiveCoilSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRReceiveCoilSequence extends AbstractTag -{ - - protected $Id = '0018,9042'; - - protected $Name = 'MRReceiveCoilSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Receive Coil Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpatialSaturationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRSpatialSaturationSequence.php deleted file mode 100644 index 1ce4fed4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpatialSaturationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRSpatialSaturationSequence extends AbstractTag -{ - - protected $Id = '0018,9107'; - - protected $Name = 'MRSpatialSaturationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Spatial Saturation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyAcquisitionType.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyAcquisitionType.php deleted file mode 100644 index 787b2dfa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyAcquisitionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRSpectroscopyAcquisitionType extends AbstractTag -{ - - protected $Id = '0018,9200'; - - protected $Name = 'MRSpectroscopyAcquisitionType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Spectroscopy Acquisition Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyFOVGeometrySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyFOVGeometrySequence.php deleted file mode 100644 index d22cb88b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyFOVGeometrySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRSpectroscopyFOVGeometrySequence extends AbstractTag -{ - - protected $Id = '0018,9103'; - - protected $Name = 'MRSpectroscopyFOV-GeometrySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Spectroscopy FOV-Geometry Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyFrameTypeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyFrameTypeSequence.php deleted file mode 100644 index e571633b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRSpectroscopyFrameTypeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRSpectroscopyFrameTypeSequence extends AbstractTag -{ - - protected $Id = '0018,9227'; - - protected $Name = 'MRSpectroscopyFrameTypeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Spectroscopy Frame Type Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRTimingAndRelatedParametersSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRTimingAndRelatedParametersSeq.php deleted file mode 100644 index f3f4502b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRTimingAndRelatedParametersSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRTimingAndRelatedParametersSeq extends AbstractTag -{ - - protected $Id = '0018,9112'; - - protected $Name = 'MRTimingAndRelatedParametersSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Timing And Related Parameters Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRTransmitCoilSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRTransmitCoilSequence.php deleted file mode 100644 index 62f018cab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRTransmitCoilSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRTransmitCoilSequence extends AbstractTag -{ - - protected $Id = '0018,9049'; - - protected $Name = 'MRTransmitCoilSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Transmit Coil Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MRVelocityEncodingSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MRVelocityEncodingSequence.php deleted file mode 100644 index 089c3ba16..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MRVelocityEncodingSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MRVelocityEncodingSequence extends AbstractTag -{ - - protected $Id = '0018,9197'; - - protected $Name = 'MRVelocityEncodingSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MR Velocity Encoding Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MacroWidthAtISOCenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/MacroWidthAtISOCenter.php deleted file mode 100644 index 2e919218d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MacroWidthAtISOCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroWidthAtISOCenter extends AbstractTag -{ - - protected $Id = '0045,1002'; - - protected $Name = 'MacroWidthAtISOCenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Macro Width At ISO Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MagneticFieldStrength.php b/lib/PHPExiftool/Driver/Tag/DICOM/MagneticFieldStrength.php deleted file mode 100644 index 141f6a7be..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MagneticFieldStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagneticFieldStrength extends AbstractTag -{ - - protected $Id = '0018,0087'; - - protected $Name = 'MagneticFieldStrength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Magnetic Field Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MagnetizationTransfer.php b/lib/PHPExiftool/Driver/Tag/DICOM/MagnetizationTransfer.php deleted file mode 100644 index 97279ab4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MagnetizationTransfer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagnetizationTransfer extends AbstractTag -{ - - protected $Id = '0018,9020'; - - protected $Name = 'MagnetizationTransfer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Magnetization Transfer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MagnificationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/MagnificationType.php deleted file mode 100644 index 5ed0acc16..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MagnificationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagnificationType extends AbstractTag -{ - - protected $Id = '2010,0060'; - - protected $Name = 'MagnificationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Magnification Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MagnifyToNumberOfColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/MagnifyToNumberOfColumns.php deleted file mode 100644 index 636b938e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MagnifyToNumberOfColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagnifyToNumberOfColumns extends AbstractTag -{ - - protected $Id = '2040,0074'; - - protected $Name = 'MagnifyToNumberOfColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Magnify To Number Of Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Manifold.php b/lib/PHPExiftool/Driver/Tag/DICOM/Manifold.php deleted file mode 100644 index 2c1881a01..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Manifold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manifold extends AbstractTag -{ - - protected $Id = '0066,0010'; - - protected $Name = 'Manifold'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manifold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ManipulatedImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/ManipulatedImage.php deleted file mode 100644 index 87474fbe7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ManipulatedImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManipulatedImage extends AbstractTag -{ - - protected $Id = '0028,0050'; - - protected $Name = 'ManipulatedImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manipulated Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Manufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/Manufacturer.php deleted file mode 100644 index 9492168a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Manufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manufacturer extends AbstractTag -{ - - protected $Id = '0008,0070'; - - protected $Name = 'Manufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ManufacturersModelName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ManufacturersModelName.php deleted file mode 100644 index 9135ec04e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ManufacturersModelName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufacturersModelName extends AbstractTag -{ - - protected $Id = '0008,1090'; - - protected $Name = 'ManufacturersModelName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manufacturers Model Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MappingResource.php b/lib/PHPExiftool/Driver/Tag/DICOM/MappingResource.php deleted file mode 100644 index f66fdc3fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MappingResource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MappingResource extends AbstractTag -{ - - protected $Id = '0008,0105'; - - protected $Name = 'MappingResource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mapping Resource'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskFrameNumbers.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskFrameNumbers.php deleted file mode 100644 index 329f8c386..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskFrameNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskFrameNumbers extends AbstractTag -{ - - protected $Id = '0028,6110'; - - protected $Name = 'MaskFrameNumbers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Frame Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskOperation.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskOperation.php deleted file mode 100644 index 6d09ac724..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskOperation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskOperation extends AbstractTag -{ - - protected $Id = '0028,6101'; - - protected $Name = 'MaskOperation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Operation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskOperationExplanation.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskOperationExplanation.php deleted file mode 100644 index 180e36391..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskOperationExplanation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskOperationExplanation extends AbstractTag -{ - - protected $Id = '0028,6190'; - - protected $Name = 'MaskOperationExplanation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Operation Explanation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskPointers.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskPointers.php deleted file mode 100644 index 57cbb1fa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskPointers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskPointers extends AbstractTag -{ - - protected $Id = '0028,6030'; - - protected $Name = 'MaskPointers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Pointers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskSelectionMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskSelectionMode.php deleted file mode 100644 index d6c34ae38..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskSelectionMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskSelectionMode extends AbstractTag -{ - - protected $Id = '0028,9454'; - - protected $Name = 'MaskSelectionMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Selection Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskSubPixelShift.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskSubPixelShift.php deleted file mode 100644 index 592e214ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskSubPixelShift.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskSubPixelShift extends AbstractTag -{ - - protected $Id = '0028,6114'; - - protected $Name = 'MaskSubPixelShift'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Sub Pixel Shift'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskSubtractionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskSubtractionSequence.php deleted file mode 100644 index 794ec2265..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskSubtractionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskSubtractionSequence extends AbstractTag -{ - - protected $Id = '0028,6100'; - - protected $Name = 'MaskSubtractionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Subtraction Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskVisibilityPercentage.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskVisibilityPercentage.php deleted file mode 100644 index 245bef670..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskVisibilityPercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskVisibilityPercentage extends AbstractTag -{ - - protected $Id = '0028,9478'; - - protected $Name = 'MaskVisibilityPercentage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mask Visibility Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaskingImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaskingImage.php deleted file mode 100644 index 11b3f05f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaskingImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskingImage extends AbstractTag -{ - - protected $Id = '0020,0080'; - - protected $Name = 'MaskingImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Masking Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaterialID.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaterialID.php deleted file mode 100644 index e64d71cf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaterialID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaterialID extends AbstractTag -{ - - protected $Id = '300A,00E1'; - - protected $Name = 'MaterialID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Material ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MatrixRegistrationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MatrixRegistrationSequence.php deleted file mode 100644 index 630d89fbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MatrixRegistrationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MatrixRegistrationSequence extends AbstractTag -{ - - protected $Id = '0070,0309'; - - protected $Name = 'MatrixRegistrationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Matrix Registration Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MatrixSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MatrixSequence.php deleted file mode 100644 index 7d4f76cda..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MatrixSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MatrixSequence extends AbstractTag -{ - - protected $Id = '0070,030A'; - - protected $Name = 'MatrixSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Matrix Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaxDensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaxDensity.php deleted file mode 100644 index a07d833eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaxDensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxDensity extends AbstractTag -{ - - protected $Id = '2010,0130'; - - protected $Name = 'MaxDensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Density'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaxLeftChanOverViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaxLeftChanOverViews.php deleted file mode 100644 index afbb15f61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaxLeftChanOverViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxLeftChanOverViews extends AbstractTag -{ - - protected $Id = '0019,1074'; - - protected $Name = 'MaxLeftChanOverViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Left Chan Over Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaxOverrangesInAView.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaxOverrangesInAView.php deleted file mode 100644 index 1292d44a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaxOverrangesInAView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxOverrangesInAView extends AbstractTag -{ - - protected $Id = '0043,101F'; - - protected $Name = 'MaxOverrangesInAView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Overranges In A View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaxRightChanOverViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaxRightChanOverViews.php deleted file mode 100644 index 23772aa10..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaxRightChanOverViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxRightChanOverViews extends AbstractTag -{ - - protected $Id = '0019,1076'; - - protected $Name = 'MaxRightChanOverViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Right Chan Over Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumAcrossScanDistortion.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumAcrossScanDistortion.php deleted file mode 100644 index eb05db0b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumAcrossScanDistortion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumAcrossScanDistortion extends AbstractTag -{ - - protected $Id = '0022,0049'; - - protected $Name = 'MaximumAcrossScanDistortion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Across Scan Distortion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumAlongScanDistortion.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumAlongScanDistortion.php deleted file mode 100644 index 70d8b1426..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumAlongScanDistortion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumAlongScanDistortion extends AbstractTag -{ - - protected $Id = '0022,0038'; - - protected $Name = 'MaximumAlongScanDistortion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Along Scan Distortion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumCollatedFilms.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumCollatedFilms.php deleted file mode 100644 index b263b8551..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumCollatedFilms.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumCollatedFilms extends AbstractTag -{ - - protected $Id = '2010,0154'; - - protected $Name = 'MaximumCollatedFilms'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Collated Films'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumCoordinateValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumCoordinateValue.php deleted file mode 100644 index c08a321b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumCoordinateValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumCoordinateValue extends AbstractTag -{ - - protected $Id = '50xx,0105'; - - protected $Name = 'MaximumCoordinateValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Coordinate Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumDepthDistortion.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumDepthDistortion.php deleted file mode 100644 index c25aeff8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumDepthDistortion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumDepthDistortion extends AbstractTag -{ - - protected $Id = '0022,0036'; - - protected $Name = 'MaximumDepthDistortion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Depth Distortion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumFractionalValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumFractionalValue.php deleted file mode 100644 index 8404d5703..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumFractionalValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumFractionalValue extends AbstractTag -{ - - protected $Id = '0062,000E'; - - protected $Name = 'MaximumFractionalValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Fractional Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumMemoryAllocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumMemoryAllocation.php deleted file mode 100644 index 40c92cc61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumMemoryAllocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumMemoryAllocation extends AbstractTag -{ - - protected $Id = '2000,0061'; - - protected $Name = 'MaximumMemoryAllocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Memory Allocation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumOffsetShiftValueUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumOffsetShiftValueUsed.php deleted file mode 100644 index ebd42982b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumOffsetShiftValueUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumOffsetShiftValueUsed extends AbstractTag -{ - - protected $Id = '0045,100B'; - - protected $Name = 'MaximumOffsetShiftValueUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Offset Shift Value Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumPointDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/MaximumPointDistance.php deleted file mode 100644 index 19a113472..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MaximumPointDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumPointDistance extends AbstractTag -{ - - protected $Id = '0066,0019'; - - protected $Name = 'MaximumPointDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Point Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeanPointDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeanPointDistance.php deleted file mode 100644 index b52899dc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeanPointDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeanPointDistance extends AbstractTag -{ - - protected $Id = '0066,0018'; - - protected $Name = 'MeanPointDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mean Point Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeanZError.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeanZError.php deleted file mode 100644 index 6113ee6a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeanZError.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeanZError extends AbstractTag -{ - - protected $Id = '0045,100E'; - - protected $Name = 'MeanZError'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mean Z Error'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseDescription.php deleted file mode 100644 index a57b526fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredDoseDescription extends AbstractTag -{ - - protected $Id = '3008,0012'; - - protected $Name = 'MeasuredDoseDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measured Dose Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseReferenceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseReferenceNumber.php deleted file mode 100644 index 96d1f77a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseReferenceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredDoseReferenceNumber extends AbstractTag -{ - - protected $Id = '3008,0064'; - - protected $Name = 'MeasuredDoseReferenceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measured Dose Reference Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseReferenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseReferenceSequence.php deleted file mode 100644 index d3dd884f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseReferenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredDoseReferenceSequence extends AbstractTag -{ - - protected $Id = '3008,0010'; - - protected $Name = 'MeasuredDoseReferenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measured Dose Reference Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseType.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseType.php deleted file mode 100644 index f9ccfcc87..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredDoseType extends AbstractTag -{ - - protected $Id = '3008,0014'; - - protected $Name = 'MeasuredDoseType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measured Dose Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseValue.php deleted file mode 100644 index a0a054912..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredDoseValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredDoseValue extends AbstractTag -{ - - protected $Id = '3008,0016'; - - protected $Name = 'MeasuredDoseValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measured Dose Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredValueSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredValueSequence.php deleted file mode 100644 index 6f514fd08..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuredValueSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredValueSequence extends AbstractTag -{ - - protected $Id = '0040,A300'; - - protected $Name = 'MeasuredValueSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measured Value Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasurementUnitsCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasurementUnitsCodeSequence.php deleted file mode 100644 index 23556c048..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasurementUnitsCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementUnitsCodeSequence extends AbstractTag -{ - - protected $Id = '0040,08EA'; - - protected $Name = 'MeasurementUnitsCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measurement Units Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuringUnitsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MeasuringUnitsSequence.php deleted file mode 100644 index d1b1114cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MeasuringUnitsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuringUnitsSequence extends AbstractTag -{ - - protected $Id = '0040,0295'; - - protected $Name = 'MeasuringUnitsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measuring Units Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MechanicalIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/MechanicalIndex.php deleted file mode 100644 index aa8f5f5b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MechanicalIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MechanicalIndex extends AbstractTag -{ - - protected $Id = '0018,5022'; - - protected $Name = 'MechanicalIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mechanical Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MediaDisposition.php b/lib/PHPExiftool/Driver/Tag/DICOM/MediaDisposition.php deleted file mode 100644 index f1c94aaa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MediaDisposition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaDisposition extends AbstractTag -{ - - protected $Id = '2200,0004'; - - protected $Name = 'MediaDisposition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Disposition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MediaInstalledSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MediaInstalledSequence.php deleted file mode 100644 index c265df39c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MediaInstalledSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaInstalledSequence extends AbstractTag -{ - - protected $Id = '2000,00A2'; - - protected $Name = 'MediaInstalledSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Installed Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MediaStorageSOPClassUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/MediaStorageSOPClassUID.php deleted file mode 100644 index 2234eb158..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MediaStorageSOPClassUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaStorageSOPClassUID extends AbstractTag -{ - - protected $Id = '0002,0002'; - - protected $Name = 'MediaStorageSOPClassUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Storage SOP Class UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MediaStorageSOPInstanceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/MediaStorageSOPInstanceUID.php deleted file mode 100644 index 3f62b6582..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MediaStorageSOPInstanceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaStorageSOPInstanceUID extends AbstractTag -{ - - protected $Id = '0002,0003'; - - protected $Name = 'MediaStorageSOPInstanceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Storage SOP Instance UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MedicalAlerts.php b/lib/PHPExiftool/Driver/Tag/DICOM/MedicalAlerts.php deleted file mode 100644 index 710420c8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MedicalAlerts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MedicalAlerts extends AbstractTag -{ - - protected $Id = '0010,2000'; - - protected $Name = 'MedicalAlerts'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Medical Alerts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MedicalRecordLocator.php b/lib/PHPExiftool/Driver/Tag/DICOM/MedicalRecordLocator.php deleted file mode 100644 index 7ba620ed1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MedicalRecordLocator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MedicalRecordLocator extends AbstractTag -{ - - protected $Id = '0010,1090'; - - protected $Name = 'MedicalRecordLocator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Medical Record Locator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MediumType.php b/lib/PHPExiftool/Driver/Tag/DICOM/MediumType.php deleted file mode 100644 index 872e5e0d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MediumType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediumType extends AbstractTag -{ - - protected $Id = '2000,0030'; - - protected $Name = 'MediumType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Medium Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MemoryAllocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/MemoryAllocation.php deleted file mode 100644 index ebc7490df..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MemoryAllocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MemoryAllocation extends AbstractTag -{ - - protected $Id = '2000,0060'; - - protected $Name = 'MemoryAllocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Memory Allocation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MemoryBitDepth.php b/lib/PHPExiftool/Driver/Tag/DICOM/MemoryBitDepth.php deleted file mode 100644 index 15ad09b1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MemoryBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MemoryBitDepth extends AbstractTag -{ - - protected $Id = '2000,00A0'; - - protected $Name = 'MemoryBitDepth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Memory Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MetaboliteMapCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MetaboliteMapCodeSequence.php deleted file mode 100644 index d22054ecc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MetaboliteMapCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetaboliteMapCodeSequence extends AbstractTag -{ - - protected $Id = '0018,9083'; - - protected $Name = 'MetaboliteMapCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metabolite Map Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MetaboliteMapDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/MetaboliteMapDescription.php deleted file mode 100644 index 19e0b9aeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MetaboliteMapDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetaboliteMapDescription extends AbstractTag -{ - - protected $Id = '0018,9080'; - - protected $Name = 'MetaboliteMapDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metabolite Map Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetExposure.php b/lib/PHPExiftool/Driver/Tag/DICOM/MetersetExposure.php deleted file mode 100644 index c319fe15d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetersetExposure extends AbstractTag -{ - - protected $Id = '3002,0032'; - - protected $Name = 'MetersetExposure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Meterset Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRate.php deleted file mode 100644 index 58e5a4325..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetersetRate extends AbstractTag -{ - - protected $Id = '300A,035A'; - - protected $Name = 'MetersetRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Meterset Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRateDelivered.php b/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRateDelivered.php deleted file mode 100644 index 0278d098f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRateDelivered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetersetRateDelivered extends AbstractTag -{ - - protected $Id = '3008,0046'; - - protected $Name = 'MetersetRateDelivered'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Meterset Rate Delivered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRateSet.php b/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRateSet.php deleted file mode 100644 index b426def22..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MetersetRateSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetersetRateSet extends AbstractTag -{ - - protected $Id = '3008,0045'; - - protected $Name = 'MetersetRateSet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Meterset Rate Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MidScanFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/MidScanFlag.php deleted file mode 100644 index d29c09324..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MidScanFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MidScanFlag extends AbstractTag -{ - - protected $Id = '0019,1025'; - - protected $Name = 'MidScanFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mid Scan Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MidScanTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/MidScanTime.php deleted file mode 100644 index 54d3c72dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MidScanTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MidScanTime extends AbstractTag -{ - - protected $Id = '0019,1024'; - - protected $Name = 'MidScanTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mid Scan Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MidSlabPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/MidSlabPosition.php deleted file mode 100644 index a4856ddf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MidSlabPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MidSlabPosition extends AbstractTag -{ - - protected $Id = '0018,9106'; - - protected $Name = 'MidSlabPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mid Slab Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MilitaryRank.php b/lib/PHPExiftool/Driver/Tag/DICOM/MilitaryRank.php deleted file mode 100644 index 1a84e94b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MilitaryRank.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MilitaryRank extends AbstractTag -{ - - protected $Id = '0010,1080'; - - protected $Name = 'MilitaryRank'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Military Rank'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MinDensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/MinDensity.php deleted file mode 100644 index 002a7d6e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MinDensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinDensity extends AbstractTag -{ - - protected $Id = '2010,0120'; - - protected $Name = 'MinDensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Min Density'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MinimumCoordinateValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/MinimumCoordinateValue.php deleted file mode 100644 index e5e25193e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MinimumCoordinateValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinimumCoordinateValue extends AbstractTag -{ - - protected $Id = '50xx,0104'; - - protected $Name = 'MinimumCoordinateValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Minimum Coordinate Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MinimumDasValueFoundInTheScanData.php b/lib/PHPExiftool/Driver/Tag/DICOM/MinimumDasValueFoundInTheScanData.php deleted file mode 100644 index 010dc54b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MinimumDasValueFoundInTheScanData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinimumDasValueFoundInTheScanData extends AbstractTag -{ - - protected $Id = '0045,100A'; - - protected $Name = 'MinimumDasValueFoundInTheScanData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Minimum Das Value Found In The Scan Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MobileLocationNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/MobileLocationNumber.php deleted file mode 100644 index 9a68b1bdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MobileLocationNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MobileLocationNumber extends AbstractTag -{ - - protected $Id = '0009,1031'; - - protected $Name = 'MobileLocationNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mobile Location Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModalitiesInStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModalitiesInStudy.php deleted file mode 100644 index c6f1c197d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModalitiesInStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModalitiesInStudy extends AbstractTag -{ - - protected $Id = '0008,0061'; - - protected $Name = 'ModalitiesInStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modalities In Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Modality.php b/lib/PHPExiftool/Driver/Tag/DICOM/Modality.php deleted file mode 100644 index a3e6a3247..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Modality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Modality extends AbstractTag -{ - - protected $Id = '0008,0060'; - - protected $Name = 'Modality'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModalityLUTSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModalityLUTSequence.php deleted file mode 100644 index a1f3f7a64..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModalityLUTSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModalityLUTSequence extends AbstractTag -{ - - protected $Id = '0028,3000'; - - protected $Name = 'ModalityLUTSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modality LUT Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModalityLUTType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModalityLUTType.php deleted file mode 100644 index 56eb6ce1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModalityLUTType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModalityLUTType extends AbstractTag -{ - - protected $Id = '0028,3004'; - - protected $Name = 'ModalityLUTType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modality LUT Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedAttributesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedAttributesSequence.php deleted file mode 100644 index 373889db3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedAttributesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedAttributesSequence extends AbstractTag -{ - - protected $Id = '0400,0550'; - - protected $Name = 'ModifiedAttributesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified Attributes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageDate.php deleted file mode 100644 index 14bc39bfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedImageDate extends AbstractTag -{ - - protected $Id = '0020,3403'; - - protected $Name = 'ModifiedImageDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified Image Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageDescription.php deleted file mode 100644 index 8c0378469..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedImageDescription extends AbstractTag -{ - - protected $Id = '0020,3406'; - - protected $Name = 'ModifiedImageDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified Image Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageID.php deleted file mode 100644 index e6df2e8e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedImageID extends AbstractTag -{ - - protected $Id = '0020,3402'; - - protected $Name = 'ModifiedImageID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageTime.php deleted file mode 100644 index 3ada7d1ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifiedImageTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedImageTime extends AbstractTag -{ - - protected $Id = '0020,3405'; - - protected $Name = 'ModifiedImageTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified Image Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifierCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifierCodeSequence.php deleted file mode 100644 index a50ceb565..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifierCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifierCodeSequence extends AbstractTag -{ - - protected $Id = '0040,A195'; - - protected $Name = 'ModifierCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modifier Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingDeviceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingDeviceID.php deleted file mode 100644 index 52cdba0c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingDeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyingDeviceID extends AbstractTag -{ - - protected $Id = '0020,3401'; - - protected $Name = 'ModifyingDeviceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modifying Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingDeviceManufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingDeviceManufacturer.php deleted file mode 100644 index 9f0a092d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingDeviceManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyingDeviceManufacturer extends AbstractTag -{ - - protected $Id = '0020,3404'; - - protected $Name = 'ModifyingDeviceManufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modifying Device Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingSystem.php b/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingSystem.php deleted file mode 100644 index d5eafee7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ModifyingSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyingSystem extends AbstractTag -{ - - protected $Id = '0400,0563'; - - protected $Name = 'ModifyingSystem'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modifying System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MonitorSAR.php b/lib/PHPExiftool/Driver/Tag/DICOM/MonitorSAR.php deleted file mode 100644 index ce4b9e893..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MonitorSAR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonitorSAR extends AbstractTag -{ - - protected $Id = '0019,1085'; - - protected $Name = 'MonitorSAR'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Monitor SAR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MostRecentTreatmentDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/MostRecentTreatmentDate.php deleted file mode 100644 index 42cb186bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MostRecentTreatmentDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MostRecentTreatmentDate extends AbstractTag -{ - - protected $Id = '3008,0056'; - - protected $Name = 'MostRecentTreatmentDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Most Recent Treatment Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MotionSynchronizationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MotionSynchronizationSequence.php deleted file mode 100644 index e659a24e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MotionSynchronizationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MotionSynchronizationSequence extends AbstractTag -{ - - protected $Id = '300A,0410'; - - protected $Name = 'MotionSynchronizationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Motion Synchronization Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilConfiguration.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilConfiguration.php deleted file mode 100644 index a0c759fa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilConfiguration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiCoilConfiguration extends AbstractTag -{ - - protected $Id = '0018,9046'; - - protected $Name = 'MultiCoilConfiguration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi Coil Configuration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilDefinitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilDefinitionSequence.php deleted file mode 100644 index 68e5e9bef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilDefinitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiCoilDefinitionSequence extends AbstractTag -{ - - protected $Id = '0018,9045'; - - protected $Name = 'MultiCoilDefinitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi Coil Definition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilElementName.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilElementName.php deleted file mode 100644 index 4cbf2789b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilElementName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiCoilElementName extends AbstractTag -{ - - protected $Id = '0018,9047'; - - protected $Name = 'MultiCoilElementName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi Coil Element Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilElementUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilElementUsed.php deleted file mode 100644 index b5f981130..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiCoilElementUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiCoilElementUsed extends AbstractTag -{ - - protected $Id = '0018,9048'; - - protected $Name = 'MultiCoilElementUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi Coil Element Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiPlanarExcitation.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiPlanarExcitation.php deleted file mode 100644 index 3c52b67e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiPlanarExcitation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiPlanarExcitation extends AbstractTag -{ - - protected $Id = '0018,9012'; - - protected $Name = 'MultiPlanarExcitation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi Planar Excitation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultipleCopiesFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultipleCopiesFlag.php deleted file mode 100644 index 76f1be391..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultipleCopiesFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultipleCopiesFlag extends AbstractTag -{ - - protected $Id = '0040,4006'; - - protected $Name = 'MultipleCopiesFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multiple Copies Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultipleSpinEcho.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultipleSpinEcho.php deleted file mode 100644 index c1d6715e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultipleSpinEcho.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultipleSpinEcho extends AbstractTag -{ - - protected $Id = '0018,9011'; - - protected $Name = 'MultipleSpinEcho'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multiple Spin Echo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexAudioChannelsDescrCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexAudioChannelsDescrCodeSeq.php deleted file mode 100644 index 41cf68c0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexAudioChannelsDescrCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiplexAudioChannelsDescrCodeSeq extends AbstractTag -{ - - protected $Id = '003A,0300'; - - protected $Name = 'MultiplexAudioChannelsDescrCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multiplex Audio Channels Descr Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexGroupLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexGroupLabel.php deleted file mode 100644 index 35ef6fa46..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexGroupLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiplexGroupLabel extends AbstractTag -{ - - protected $Id = '003A,0020'; - - protected $Name = 'MultiplexGroupLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multiplex Group Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexGroupTimeOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexGroupTimeOffset.php deleted file mode 100644 index 5c68cc1fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MultiplexGroupTimeOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiplexGroupTimeOffset extends AbstractTag -{ - - protected $Id = '0018,1068'; - - protected $Name = 'MultiplexGroupTimeOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multiplex Group Time Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentCodeSequence.php deleted file mode 100644 index eb555cd1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MydriaticAgentCodeSequence extends AbstractTag -{ - - protected $Id = '0022,001C'; - - protected $Name = 'MydriaticAgentCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mydriatic Agent Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentConcUnitsSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentConcUnitsSeq.php deleted file mode 100644 index b6f1215f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentConcUnitsSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MydriaticAgentConcUnitsSeq extends AbstractTag -{ - - protected $Id = '0022,0042'; - - protected $Name = 'MydriaticAgentConcUnitsSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mydriatic Agent Conc Units Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentConcentration.php b/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentConcentration.php deleted file mode 100644 index b63bcbb10..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentConcentration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MydriaticAgentConcentration extends AbstractTag -{ - - protected $Id = '0022,004E'; - - protected $Name = 'MydriaticAgentConcentration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mydriatic Agent Concentration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentSequence.php deleted file mode 100644 index dc82c0a0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/MydriaticAgentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MydriaticAgentSequence extends AbstractTag -{ - - protected $Id = '0022,0058'; - - protected $Name = 'MydriaticAgentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mydriatic Agent Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NTPSourceAddress.php b/lib/PHPExiftool/Driver/Tag/DICOM/NTPSourceAddress.php deleted file mode 100644 index 5f87af2f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NTPSourceAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NTPSourceAddress extends AbstractTag -{ - - protected $Id = '0018,1803'; - - protected $Name = 'NTPSourceAddress'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'NTP Source Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NameOfPhysicianReadingStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/NameOfPhysicianReadingStudy.php deleted file mode 100644 index e4a728fad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NameOfPhysicianReadingStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NameOfPhysicianReadingStudy extends AbstractTag -{ - - protected $Id = '0008,1060'; - - protected $Name = 'NameOfPhysicianReadingStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name Of Physician Reading Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NamesOfIntendedRecipientsOfResults.php b/lib/PHPExiftool/Driver/Tag/DICOM/NamesOfIntendedRecipientsOfResults.php deleted file mode 100644 index 1ce5b7e3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NamesOfIntendedRecipientsOfResults.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NamesOfIntendedRecipientsOfResults extends AbstractTag -{ - - protected $Id = '0040,1010'; - - protected $Name = 'NamesOfIntendedRecipientsOfResults'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Names Of Intended Recipients Of Results'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NavigationDisplaySet.php b/lib/PHPExiftool/Driver/Tag/DICOM/NavigationDisplaySet.php deleted file mode 100644 index a88bf6b5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NavigationDisplaySet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NavigationDisplaySet extends AbstractTag -{ - - protected $Id = '0072,0216'; - - protected $Name = 'NavigationDisplaySet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Navigation Display Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NavigationIndicatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/NavigationIndicatorSequence.php deleted file mode 100644 index 162a7d9c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NavigationIndicatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NavigationIndicatorSequence extends AbstractTag -{ - - protected $Id = '0072,0214'; - - protected $Name = 'NavigationIndicatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Navigation Indicator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NearPupillaryDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/NearPupillaryDistance.php deleted file mode 100644 index b7d6ae876..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NearPupillaryDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NearPupillaryDistance extends AbstractTag -{ - - protected $Id = '0046,0062'; - - protected $Name = 'NearPupillaryDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Near Pupillary Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NegScanspacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/NegScanspacing.php deleted file mode 100644 index ef7ab5ab7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NegScanspacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NegScanspacing extends AbstractTag -{ - - protected $Id = '0043,1033'; - - protected $Name = 'NegScanspacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Neg Scanspacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NetworkID.php b/lib/PHPExiftool/Driver/Tag/DICOM/NetworkID.php deleted file mode 100644 index 2c5d8da78..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NetworkID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NetworkID extends AbstractTag -{ - - protected $Id = '0008,1000'; - - protected $Name = 'NetworkID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Network ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NoViewsRefChansBlocked.php b/lib/PHPExiftool/Driver/Tag/DICOM/NoViewsRefChansBlocked.php deleted file mode 100644 index 8cbcdeb73..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NoViewsRefChansBlocked.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoViewsRefChansBlocked extends AbstractTag -{ - - protected $Id = '0043,1026'; - - protected $Name = 'NoViewsRefChansBlocked'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'No Views Ref Chans Blocked'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalBeamEnergy.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalBeamEnergy.php deleted file mode 100644 index 431b9cdb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalBeamEnergy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalBeamEnergy extends AbstractTag -{ - - protected $Id = '300A,0114'; - - protected $Name = 'NominalBeamEnergy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Beam Energy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalBeamEnergyUnit.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalBeamEnergyUnit.php deleted file mode 100644 index ad19e38f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalBeamEnergyUnit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalBeamEnergyUnit extends AbstractTag -{ - - protected $Id = '300A,0015'; - - protected $Name = 'NominalBeamEnergyUnit'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Beam Energy Unit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalInterval.php deleted file mode 100644 index 98371378b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalInterval extends AbstractTag -{ - - protected $Id = '0018,1062'; - - protected $Name = 'NominalInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalPercentOfRespiratoryPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalPercentOfRespiratoryPhase.php deleted file mode 100644 index f981df997..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalPercentOfRespiratoryPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalPercentOfRespiratoryPhase extends AbstractTag -{ - - protected $Id = '0020,9245'; - - protected $Name = 'NominalPercentOfRespiratoryPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Percent Of Respiratory Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalPercentageOfCardiacPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalPercentageOfCardiacPhase.php deleted file mode 100644 index 2fd4d0100..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalPercentageOfCardiacPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalPercentageOfCardiacPhase extends AbstractTag -{ - - protected $Id = '0020,9241'; - - protected $Name = 'NominalPercentageOfCardiacPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Percentage Of Cardiac Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalPriorDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalPriorDose.php deleted file mode 100644 index 5f41bc43e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalPriorDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalPriorDose extends AbstractTag -{ - - protected $Id = '300A,001A'; - - protected $Name = 'NominalPriorDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Prior Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalRespiratoryTriggerDelayTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalRespiratoryTriggerDelayTime.php deleted file mode 100644 index 40c5cc089..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalRespiratoryTriggerDelayTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalRespiratoryTriggerDelayTime extends AbstractTag -{ - - protected $Id = '0020,9255'; - - protected $Name = 'NominalRespiratoryTriggerDelayTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Respiratory Trigger Delay Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalScannedPixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalScannedPixelSpacing.php deleted file mode 100644 index 77202c22b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalScannedPixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalScannedPixelSpacing extends AbstractTag -{ - - protected $Id = '0018,2010'; - - protected $Name = 'NominalScannedPixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Scanned Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NominalScreenDefinitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/NominalScreenDefinitionSequence.php deleted file mode 100644 index 17d766edc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NominalScreenDefinitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalScreenDefinitionSequence extends AbstractTag -{ - - protected $Id = '0072,0102'; - - protected $Name = 'NominalScreenDefinitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nominal Screen Definition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NonDICOMOutputCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/NonDICOMOutputCodeSequence.php deleted file mode 100644 index 019469895..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NonDICOMOutputCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NonDICOMOutputCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4032'; - - protected $Name = 'NonDICOMOutputCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Non DICOM Output Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NoofUpdatesToHeader.php b/lib/PHPExiftool/Driver/Tag/DICOM/NoofUpdatesToHeader.php deleted file mode 100644 index 57cc602a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NoofUpdatesToHeader.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoofUpdatesToHeader extends AbstractTag -{ - - protected $Id = '0023,1074'; - - protected $Name = 'NoofUpdatesToHeader'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Noof Updates To Header'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NormalACoord.php b/lib/PHPExiftool/Driver/Tag/DICOM/NormalACoord.php deleted file mode 100644 index 9d115107d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NormalACoord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NormalACoord extends AbstractTag -{ - - protected $Id = '0027,1046'; - - protected $Name = 'NormalACoord'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Normal A Coord'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NormalRCoord.php b/lib/PHPExiftool/Driver/Tag/DICOM/NormalRCoord.php deleted file mode 100644 index cec00d712..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NormalRCoord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NormalRCoord extends AbstractTag -{ - - protected $Id = '0027,1045'; - - protected $Name = 'NormalRCoord'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Normal R Coord'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NormalSCoord.php b/lib/PHPExiftool/Driver/Tag/DICOM/NormalSCoord.php deleted file mode 100644 index 641e1f567..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NormalSCoord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NormalSCoord extends AbstractTag -{ - - protected $Id = '0027,1047'; - - protected $Name = 'NormalSCoord'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Normal S Coord'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NormalizationFactorFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/NormalizationFactorFormat.php deleted file mode 100644 index 3eb37602a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NormalizationFactorFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NormalizationFactorFormat extends AbstractTag -{ - - protected $Id = '0028,0710'; - - protected $Name = 'NormalizationFactorFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Normalization Factor Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NormalizationPoint.php b/lib/PHPExiftool/Driver/Tag/DICOM/NormalizationPoint.php deleted file mode 100644 index 320fea7ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NormalizationPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NormalizationPoint extends AbstractTag -{ - - protected $Id = '3004,0008'; - - protected $Name = 'NormalizationPoint'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Normalization Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NotchFilterBandwidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/NotchFilterBandwidth.php deleted file mode 100644 index da4dab91e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NotchFilterBandwidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NotchFilterBandwidth extends AbstractTag -{ - - protected $Id = '003A,0223'; - - protected $Name = 'NotchFilterBandwidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Notch Filter Bandwidth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NotchFilterFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/NotchFilterFrequency.php deleted file mode 100644 index bbb9b00f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NotchFilterFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NotchFilterFrequency extends AbstractTag -{ - - protected $Id = '003A,0222'; - - protected $Name = 'NotchFilterFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Notch Filter Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NuclearMedicineSeriesType.php b/lib/PHPExiftool/Driver/Tag/DICOM/NuclearMedicineSeriesType.php deleted file mode 100644 index 0c6c46158..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NuclearMedicineSeriesType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NuclearMedicineSeriesType extends AbstractTag -{ - - protected $Id = '0008,0042'; - - protected $Name = 'NuclearMedicineSeriesType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nuclear Medicine Series Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberFractionPatternDigitsPerDay.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberFractionPatternDigitsPerDay.php deleted file mode 100644 index d939c3a7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberFractionPatternDigitsPerDay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberFractionPatternDigitsPerDay extends AbstractTag -{ - - protected $Id = '300A,0079'; - - protected $Name = 'NumberFractionPatternDigitsPerDay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Fraction Pattern Digits Per Day'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfAcquisitions.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfAcquisitions.php deleted file mode 100644 index abde969b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfAcquisitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfAcquisitions extends AbstractTag -{ - - protected $Id = '0025,1011'; - - protected $Name = 'NumberOfAcquisitions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Acquisitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfAverages.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfAverages.php deleted file mode 100644 index 3760a164d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfAverages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfAverages extends AbstractTag -{ - - protected $Id = '0018,0083'; - - protected $Name = 'NumberOfAverages'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Averages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBBHChainsToBlend.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBBHChainsToBlend.php deleted file mode 100644 index 41b40ecf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBBHChainsToBlend.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfBBHChainsToBlend extends AbstractTag -{ - - protected $Id = '0043,1019'; - - protected $Name = 'NumberOfBBHChainsToBlend'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of BBH Chains To Blend'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBeams.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBeams.php deleted file mode 100644 index b34df8b18..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBeams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfBeams extends AbstractTag -{ - - protected $Id = '300A,0080'; - - protected $Name = 'NumberOfBeams'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Beams'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBlocks.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBlocks.php deleted file mode 100644 index 653af58de..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBlocks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfBlocks extends AbstractTag -{ - - protected $Id = '300A,00F0'; - - protected $Name = 'NumberOfBlocks'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Blocks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBoli.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBoli.php deleted file mode 100644 index 5669a31a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBoli.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfBoli extends AbstractTag -{ - - protected $Id = '300A,00ED'; - - protected $Name = 'NumberOfBoli'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Boli'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBrachyApplicationSetups.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBrachyApplicationSetups.php deleted file mode 100644 index 8a9ed53c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfBrachyApplicationSetups.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfBrachyApplicationSetups extends AbstractTag -{ - - protected $Id = '300A,00A0'; - - protected $Name = 'NumberOfBrachyApplicationSetups'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Brachy Application Setups'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCellsIInDetector.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCellsIInDetector.php deleted file mode 100644 index 3edde1608..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCellsIInDetector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfCellsIInDetector extends AbstractTag -{ - - protected $Id = '0019,1002'; - - protected $Name = 'NumberOfCellsIInDetector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Cells I In Detector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfChannels.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfChannels.php deleted file mode 100644 index deaa481bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfChannels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NumberOfChannels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCompensators.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCompensators.php deleted file mode 100644 index 63d90acc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCompensators.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfCompensators extends AbstractTag -{ - - protected $Id = '300A,00E0'; - - protected $Name = 'NumberOfCompensators'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Compensators'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfContourPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfContourPoints.php deleted file mode 100644 index b6e8447a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfContourPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfContourPoints extends AbstractTag -{ - - protected $Id = '3006,0046'; - - protected $Name = 'NumberOfContourPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Contour Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfControlPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfControlPoints.php deleted file mode 100644 index 7bd2c23fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfControlPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfControlPoints extends AbstractTag -{ - - protected $Id = '300A,0110'; - - protected $Name = 'NumberOfControlPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Control Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCopies.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCopies.php deleted file mode 100644 index b26aa25d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfCopies.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfCopies extends AbstractTag -{ - - protected $Id = '2000,0010'; - - protected $Name = 'NumberOfCopies'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Copies'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfDetectors.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfDetectors.php deleted file mode 100644 index 898d9d4da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfDetectors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfDetectors extends AbstractTag -{ - - protected $Id = '0054,0021'; - - protected $Name = 'NumberOfDetectors'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Detectors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEPIShots.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEPIShots.php deleted file mode 100644 index d50a1f1d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEPIShots.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfEPIShots extends AbstractTag -{ - - protected $Id = '0043,1006'; - - protected $Name = 'NumberOfEPIShots'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of EPI Shots'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEchoes.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEchoes.php deleted file mode 100644 index dfd0e1ec1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEchoes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfEchoes extends AbstractTag -{ - - protected $Id = '0019,107E'; - - protected $Name = 'NumberOfEchoes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Echoes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEnergyWindows.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEnergyWindows.php deleted file mode 100644 index 5d294a086..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEnergyWindows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfEnergyWindows extends AbstractTag -{ - - protected $Id = '0054,0011'; - - protected $Name = 'NumberOfEnergyWindows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Energy Windows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEventTimers.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEventTimers.php deleted file mode 100644 index 101763aa4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfEventTimers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfEventTimers extends AbstractTag -{ - - protected $Id = '0008,2129'; - - protected $Name = 'NumberOfEventTimers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Event Timers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfExcitations.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfExcitations.php deleted file mode 100644 index 144020348..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfExcitations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfExcitations extends AbstractTag -{ - - protected $Id = '0027,1062'; - - protected $Name = 'NumberOfExcitations'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Excitations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFilms.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFilms.php deleted file mode 100644 index ea6dd430c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFilms.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFilms extends AbstractTag -{ - - protected $Id = '2100,0170'; - - protected $Name = 'NumberOfFilms'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Films'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFractionsDelivered.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFractionsDelivered.php deleted file mode 100644 index a9753605e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFractionsDelivered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFractionsDelivered extends AbstractTag -{ - - protected $Id = '3008,005A'; - - protected $Name = 'NumberOfFractionsDelivered'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Fractions Delivered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFractionsPlanned.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFractionsPlanned.php deleted file mode 100644 index 4536df1ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFractionsPlanned.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFractionsPlanned extends AbstractTag -{ - - protected $Id = '300A,0078'; - - protected $Name = 'NumberOfFractionsPlanned'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Fractions Planned'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFrames.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFrames.php deleted file mode 100644 index a0fcc0dde..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFrames extends AbstractTag -{ - - protected $Id = '0028,0008'; - - protected $Name = 'NumberOfFrames'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInOverlay.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInOverlay.php deleted file mode 100644 index 9c5e3e3c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInOverlay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFramesInOverlay extends AbstractTag -{ - - protected $Id = '60xx,0015'; - - protected $Name = 'NumberOfFramesInOverlay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Frames In Overlay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInPhase.php deleted file mode 100644 index 285534be1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFramesInPhase extends AbstractTag -{ - - protected $Id = '0054,0033'; - - protected $Name = 'NumberOfFramesInPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Frames In Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInRotation.php deleted file mode 100644 index f43d53005..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfFramesInRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFramesInRotation extends AbstractTag -{ - - protected $Id = '0054,0053'; - - protected $Name = 'NumberOfFramesInRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Frames In Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfGraphicPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfGraphicPoints.php deleted file mode 100644 index 1c1c3dbe1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfGraphicPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfGraphicPoints extends AbstractTag -{ - - protected $Id = '0070,0021'; - - protected $Name = 'NumberOfGraphicPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Graphic Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfHorizontalPixels.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfHorizontalPixels.php deleted file mode 100644 index 4f8a52d75..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfHorizontalPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfHorizontalPixels extends AbstractTag -{ - - protected $Id = '0072,0106'; - - protected $Name = 'NumberOfHorizontalPixels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Horizontal Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfImagesArchived.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfImagesArchived.php deleted file mode 100644 index 1854406c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfImagesArchived.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfImagesArchived extends AbstractTag -{ - - protected $Id = '0025,1018'; - - protected $Name = 'NumberOfImagesArchived'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Images Archived'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfIterations.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfIterations.php deleted file mode 100644 index 6904392a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfIterations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfIterations extends AbstractTag -{ - - protected $Id = '0018,9739'; - - protected $Name = 'NumberOfIterations'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Iterations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfKSpaceTrajectories.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfKSpaceTrajectories.php deleted file mode 100644 index 40746178b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfKSpaceTrajectories.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfKSpaceTrajectories extends AbstractTag -{ - - protected $Id = '0018,9093'; - - protected $Name = 'NumberOfKSpaceTrajectories'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of K Space Trajectories'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfLateralSpreadingDevices.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfLateralSpreadingDevices.php deleted file mode 100644 index 527669c96..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfLateralSpreadingDevices.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfLateralSpreadingDevices extends AbstractTag -{ - - protected $Id = '300A,0330'; - - protected $Name = 'NumberOfLateralSpreadingDevices'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Lateral Spreading Devices'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfLeafJawPairs.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfLeafJawPairs.php deleted file mode 100644 index 4b1f9c233..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfLeafJawPairs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfLeafJawPairs extends AbstractTag -{ - - protected $Id = '300A,00BC'; - - protected $Name = 'NumberOfLeafJawPairs'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Leaf Jaw Pairs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfMacroRowsInDetector.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfMacroRowsInDetector.php deleted file mode 100644 index e472730f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfMacroRowsInDetector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfMacroRowsInDetector extends AbstractTag -{ - - protected $Id = '0045,1001'; - - protected $Name = 'NumberOfMacroRowsInDetector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Macro Rows In Detector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfOverranges.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfOverranges.php deleted file mode 100644 index 404657b32..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfOverranges.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfOverranges extends AbstractTag -{ - - protected $Id = '0043,1016'; - - protected $Name = 'NumberOfOverranges'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Overranges'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPaintings.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPaintings.php deleted file mode 100644 index 1e3afffe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPaintings.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPaintings extends AbstractTag -{ - - protected $Id = '300A,039A'; - - protected $Name = 'NumberOfPaintings'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Paintings'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedInstances.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedInstances.php deleted file mode 100644 index b35bf3914..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedInstances.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPatientRelatedInstances extends AbstractTag -{ - - protected $Id = '0020,1204'; - - protected $Name = 'NumberOfPatientRelatedInstances'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Patient Related Instances'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedSeries.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedSeries.php deleted file mode 100644 index 5dca407d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPatientRelatedSeries extends AbstractTag -{ - - protected $Id = '0020,1202'; - - protected $Name = 'NumberOfPatientRelatedSeries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Patient Related Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedStudies.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedStudies.php deleted file mode 100644 index 05af2194e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPatientRelatedStudies.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPatientRelatedStudies extends AbstractTag -{ - - protected $Id = '0020,1200'; - - protected $Name = 'NumberOfPatientRelatedStudies'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Patient Related Studies'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPhaseEncodingSteps.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPhaseEncodingSteps.php deleted file mode 100644 index 5b67ee11d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPhaseEncodingSteps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPhaseEncodingSteps extends AbstractTag -{ - - protected $Id = '0018,0089'; - - protected $Name = 'NumberOfPhaseEncodingSteps'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Phase Encoding Steps'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPhases.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPhases.php deleted file mode 100644 index 6e549c51b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPhases.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPhases extends AbstractTag -{ - - protected $Id = '0054,0031'; - - protected $Name = 'NumberOfPhases'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Phases'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPoints.php deleted file mode 100644 index 21af19563..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPoints extends AbstractTag -{ - - protected $Id = '50xx,0010'; - - protected $Name = 'NumberOfPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPriorsReferenced.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPriorsReferenced.php deleted file mode 100644 index 73f16c129..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPriorsReferenced.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPriorsReferenced extends AbstractTag -{ - - protected $Id = '0072,0014'; - - protected $Name = 'NumberOfPriorsReferenced'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Priors Referenced'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPulses.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPulses.php deleted file mode 100644 index 20375b6b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfPulses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPulses extends AbstractTag -{ - - protected $Id = '300A,028A'; - - protected $Name = 'NumberOfPulses'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Pulses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRRIntervals.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRRIntervals.php deleted file mode 100644 index 30650fd99..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRRIntervals.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfRRIntervals extends AbstractTag -{ - - protected $Id = '0054,0061'; - - protected $Name = 'NumberOfRRIntervals'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of RR Intervals'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRangeModulators.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRangeModulators.php deleted file mode 100644 index 7009e53b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRangeModulators.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfRangeModulators extends AbstractTag -{ - - protected $Id = '300A,0340'; - - protected $Name = 'NumberOfRangeModulators'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Range Modulators'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRangeShifters.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRangeShifters.php deleted file mode 100644 index 548f6981a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRangeShifters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfRangeShifters extends AbstractTag -{ - - protected $Id = '300A,0312'; - - protected $Name = 'NumberOfRangeShifters'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Range Shifters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfReferences.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfReferences.php deleted file mode 100644 index 28e39119a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfReferences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfReferences extends AbstractTag -{ - - protected $Id = '0004,1600'; - - protected $Name = 'NumberOfReferences'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of References'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRotations.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRotations.php deleted file mode 100644 index 497e927fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfRotations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfRotations extends AbstractTag -{ - - protected $Id = '0054,0051'; - - protected $Name = 'NumberOfRotations'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Rotations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSamples.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSamples.php deleted file mode 100644 index 0c0280fa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSamples.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfSamples extends AbstractTag -{ - - protected $Id = '50xx,2006'; - - protected $Name = 'NumberOfSamples'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Samples'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfScanSpotPositions.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfScanSpotPositions.php deleted file mode 100644 index 2e69b1598..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfScanSpotPositions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfScanSpotPositions extends AbstractTag -{ - - protected $Id = '300A,0392'; - - protected $Name = 'NumberOfScanSpotPositions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Scan Spot Positions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfScreens.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfScreens.php deleted file mode 100644 index cf636e4d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfScreens.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfScreens extends AbstractTag -{ - - protected $Id = '0072,0100'; - - protected $Name = 'NumberOfScreens'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Screens'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSeriesInStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSeriesInStudy.php deleted file mode 100644 index caca3374d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSeriesInStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfSeriesInStudy extends AbstractTag -{ - - protected $Id = '0023,1001'; - - protected $Name = 'NumberOfSeriesInStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Series In Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSeriesRelatedInstances.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSeriesRelatedInstances.php deleted file mode 100644 index 9de1f53d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSeriesRelatedInstances.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfSeriesRelatedInstances extends AbstractTag -{ - - protected $Id = '0020,1209'; - - protected $Name = 'NumberOfSeriesRelatedInstances'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Series Related Instances'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSlices.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSlices.php deleted file mode 100644 index a26b0d76d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSlices.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfSlices extends AbstractTag -{ - - protected $Id = '0054,0081'; - - protected $Name = 'NumberOfSlices'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Slices'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStages.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStages.php deleted file mode 100644 index 74456fbfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfStages extends AbstractTag -{ - - protected $Id = '0008,2124'; - - protected $Name = 'NumberOfStages'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Stages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStudyRelatedInstances.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStudyRelatedInstances.php deleted file mode 100644 index a53a4c124..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStudyRelatedInstances.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfStudyRelatedInstances extends AbstractTag -{ - - protected $Id = '0020,1208'; - - protected $Name = 'NumberOfStudyRelatedInstances'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Study Related Instances'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStudyRelatedSeries.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStudyRelatedSeries.php deleted file mode 100644 index 7a21317ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfStudyRelatedSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfStudyRelatedSeries extends AbstractTag -{ - - protected $Id = '0020,1206'; - - protected $Name = 'NumberOfStudyRelatedSeries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Study Related Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSubsets.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSubsets.php deleted file mode 100644 index c86cb3d40..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSubsets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfSubsets extends AbstractTag -{ - - protected $Id = '0018,9740'; - - protected $Name = 'NumberOfSubsets'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Subsets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSurfacePoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSurfacePoints.php deleted file mode 100644 index 1d41dda31..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSurfacePoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfSurfacePoints extends AbstractTag -{ - - protected $Id = '0066,0015'; - - protected $Name = 'NumberOfSurfacePoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Surface Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSurfaces.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSurfaces.php deleted file mode 100644 index 099b7829e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfSurfaces.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfSurfaces extends AbstractTag -{ - - protected $Id = '0066,0001'; - - protected $Name = 'NumberOfSurfaces'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Surfaces'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTableBreakPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTableBreakPoints.php deleted file mode 100644 index aad6a88b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTableBreakPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTableBreakPoints extends AbstractTag -{ - - protected $Id = '0018,6050'; - - protected $Name = 'NumberOfTableBreakPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Table Break Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTableEntries.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTableEntries.php deleted file mode 100644 index 4972f2e6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTableEntries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTableEntries extends AbstractTag -{ - - protected $Id = '0018,6056'; - - protected $Name = 'NumberOfTableEntries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Table Entries'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTables.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTables.php deleted file mode 100644 index 76fe4f6d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTables.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTables extends AbstractTag -{ - - protected $Id = '0028,08x2'; - - protected $Name = 'NumberOfTables'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Tables'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTemporalPositions.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTemporalPositions.php deleted file mode 100644 index 02f52a13e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTemporalPositions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTemporalPositions extends AbstractTag -{ - - protected $Id = '0020,0105'; - - protected $Name = 'NumberOfTemporalPositions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Temporal Positions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTimeSlices.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTimeSlices.php deleted file mode 100644 index 47222bb34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTimeSlices.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTimeSlices extends AbstractTag -{ - - protected $Id = '0054,0101'; - - protected $Name = 'NumberOfTimeSlices'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Time Slices'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTimeSlots.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTimeSlots.php deleted file mode 100644 index 254061f94..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTimeSlots.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTimeSlots extends AbstractTag -{ - - protected $Id = '0054,0071'; - - protected $Name = 'NumberOfTimeSlots'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Time Slots'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTomosynthesisSourceImages.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTomosynthesisSourceImages.php deleted file mode 100644 index 99ef0aedb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTomosynthesisSourceImages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTomosynthesisSourceImages extends AbstractTag -{ - - protected $Id = '0018,1495'; - - protected $Name = 'NumberOfTomosynthesisSourceImages'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Tomosynthesis Source Images'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTransformSteps.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTransformSteps.php deleted file mode 100644 index 8f104623b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTransformSteps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTransformSteps extends AbstractTag -{ - - protected $Id = '0028,0402'; - - protected $Name = 'NumberOfTransformSteps'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Transform Steps'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTriggers.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTriggers.php deleted file mode 100644 index d15746de6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTriggers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTriggers extends AbstractTag -{ - - protected $Id = '0019,102C'; - - protected $Name = 'NumberOfTriggers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Triggers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTriggersInPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTriggersInPhase.php deleted file mode 100644 index 65d20f7ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfTriggersInPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfTriggersInPhase extends AbstractTag -{ - - protected $Id = '0054,0211'; - - protected $Name = 'NumberOfTriggersInPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Triggers In Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfUnarchivedSeries.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfUnarchivedSeries.php deleted file mode 100644 index e2584d1fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfUnarchivedSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfUnarchivedSeries extends AbstractTag -{ - - protected $Id = '0023,1002'; - - protected $Name = 'NumberOfUnarchivedSeries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Unarchived Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfVectors.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfVectors.php deleted file mode 100644 index ec611fa3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfVectors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfVectors extends AbstractTag -{ - - protected $Id = '0066,001E'; - - protected $Name = 'NumberOfVectors'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Vectors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfVerticalPixels.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfVerticalPixels.php deleted file mode 100644 index b52339b6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfVerticalPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfVerticalPixels extends AbstractTag -{ - - protected $Id = '0072,0104'; - - protected $Name = 'NumberOfVerticalPixels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Vertical Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViews.php deleted file mode 100644 index 610cab9a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfViews extends AbstractTag -{ - - protected $Id = '0019,1061'; - - protected $Name = 'NumberOfViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow1a.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow1a.php deleted file mode 100644 index ecb6df1d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow1a.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfViewsInRow1a extends AbstractTag -{ - - protected $Id = '0045,1014'; - - protected $Name = 'NumberOfViewsInRow1a'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Views In Row 1a'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow1b.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow1b.php deleted file mode 100644 index 987aac6b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow1b.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfViewsInRow1b extends AbstractTag -{ - - protected $Id = '0045,1018'; - - protected $Name = 'NumberOfViewsInRow1b'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Views In Row 1b'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow2a.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow2a.php deleted file mode 100644 index f3df1203f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow2a.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfViewsInRow2a extends AbstractTag -{ - - protected $Id = '0045,1011'; - - protected $Name = 'NumberOfViewsInRow2a'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Views In Row 2a'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow2b.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow2b.php deleted file mode 100644 index aef0749b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInRow2b.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfViewsInRow2b extends AbstractTag -{ - - protected $Id = '0045,1016'; - - protected $Name = 'NumberOfViewsInRow2b'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Views In Row 2b'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInStage.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInStage.php deleted file mode 100644 index 1145ac63b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsInStage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfViewsInStage extends AbstractTag -{ - - protected $Id = '0008,212A'; - - protected $Name = 'NumberOfViewsInStage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Views In Stage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsShifted.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsShifted.php deleted file mode 100644 index dbe5b9ca5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfViewsShifted.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfViewsShifted extends AbstractTag -{ - - protected $Id = '0045,100C'; - - protected $Name = 'NumberOfViewsShifted'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Views Shifted'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWaveformChannels.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWaveformChannels.php deleted file mode 100644 index 7909302d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWaveformChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfWaveformChannels extends AbstractTag -{ - - protected $Id = '003A,0005'; - - protected $Name = 'NumberOfWaveformChannels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Waveform Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWaveformSamples.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWaveformSamples.php deleted file mode 100644 index e9161f991..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWaveformSamples.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfWaveformSamples extends AbstractTag -{ - - protected $Id = '003A,0010'; - - protected $Name = 'NumberOfWaveformSamples'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Waveform Samples'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWedges.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWedges.php deleted file mode 100644 index bc2ec2063..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfWedges.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfWedges extends AbstractTag -{ - - protected $Id = '300A,00D0'; - - protected $Name = 'NumberOfWedges'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Wedges'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfZeroFills.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfZeroFills.php deleted file mode 100644 index 21ab077f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumberOfZeroFills.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfZeroFills extends AbstractTag -{ - - protected $Id = '0018,9066'; - - protected $Name = 'NumberOfZeroFills'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Zero Fills'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumericValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumericValue.php deleted file mode 100644 index 04c98bb50..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumericValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumericValue extends AbstractTag -{ - - protected $Id = '0040,A30A'; - - protected $Name = 'NumericValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Numeric Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/NumericValueQualifierCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/NumericValueQualifierCodeSequence.php deleted file mode 100644 index 802ae9dae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/NumericValueQualifierCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumericValueQualifierCodeSequence extends AbstractTag -{ - - protected $Id = '0040,A301'; - - protected $Name = 'NumericValueQualifierCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Numeric Value Qualifier Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ObjectPixelSpacingInCenterOfBeam.php b/lib/PHPExiftool/Driver/Tag/DICOM/ObjectPixelSpacingInCenterOfBeam.php deleted file mode 100644 index ca4ff484c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ObjectPixelSpacingInCenterOfBeam.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectPixelSpacingInCenterOfBeam extends AbstractTag -{ - - protected $Id = '0018,9404'; - - protected $Name = 'ObjectPixelSpacingInCenterOfBeam'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Object Pixel Spacing In Center Of Beam'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ObjectThicknessSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ObjectThicknessSequence.php deleted file mode 100644 index 83f1396d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ObjectThicknessSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectThicknessSequence extends AbstractTag -{ - - protected $Id = '0018,9456'; - - protected $Name = 'ObjectThicknessSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Object Thickness Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ObliquePlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/ObliquePlane.php deleted file mode 100644 index 5bb1aa7b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ObliquePlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObliquePlane extends AbstractTag -{ - - protected $Id = '0027,1036'; - - protected $Name = 'ObliquePlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Oblique Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ObservationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ObservationDateTime.php deleted file mode 100644 index 5c5142a8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ObservationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObservationDateTime extends AbstractTag -{ - - protected $Id = '0040,A032'; - - protected $Name = 'ObservationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Observation Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ObservationNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ObservationNumber.php deleted file mode 100644 index ba5b0c658..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ObservationNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObservationNumber extends AbstractTag -{ - - protected $Id = '3006,0082'; - - protected $Name = 'ObservationNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Observation Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ObserverType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ObserverType.php deleted file mode 100644 index e32bd8973..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ObserverType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObserverType extends AbstractTag -{ - - protected $Id = '0040,A084'; - - protected $Name = 'ObserverType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Observer Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Occupation.php b/lib/PHPExiftool/Driver/Tag/DICOM/Occupation.php deleted file mode 100644 index 9a23c0a2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Occupation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Occupation extends AbstractTag -{ - - protected $Id = '0010,2180'; - - protected $Name = 'Occupation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Occupation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OffsetFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/OffsetFrequency.php deleted file mode 100644 index 668ac3104..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OffsetFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetFrequency extends AbstractTag -{ - - protected $Id = '0043,1034'; - - protected $Name = 'OffsetFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Offset Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OffsetOfNextDirectoryRecord.php b/lib/PHPExiftool/Driver/Tag/DICOM/OffsetOfNextDirectoryRecord.php deleted file mode 100644 index dd317d4d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OffsetOfNextDirectoryRecord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetOfNextDirectoryRecord extends AbstractTag -{ - - protected $Id = '0004,1400'; - - protected $Name = 'OffsetOfNextDirectoryRecord'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Offset Of Next Directory Record'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OperatingMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/OperatingMode.php deleted file mode 100644 index e472cdbb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OperatingMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperatingMode extends AbstractTag -{ - - protected $Id = '0018,9178'; - - protected $Name = 'OperatingMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operating Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OperatingModeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OperatingModeSequence.php deleted file mode 100644 index a4ae35b70..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OperatingModeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperatingModeSequence extends AbstractTag -{ - - protected $Id = '0018,9176'; - - protected $Name = 'OperatingModeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operating Mode Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OperatingModeType.php b/lib/PHPExiftool/Driver/Tag/DICOM/OperatingModeType.php deleted file mode 100644 index 60fdf8f33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OperatingModeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperatingModeType extends AbstractTag -{ - - protected $Id = '0018,9177'; - - protected $Name = 'OperatingModeType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operating Mode Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OperatorIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OperatorIDSequence.php deleted file mode 100644 index 6795d8871..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OperatorIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperatorIDSequence extends AbstractTag -{ - - protected $Id = '0008,1072'; - - protected $Name = 'OperatorIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operator ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OperatorsName.php b/lib/PHPExiftool/Driver/Tag/DICOM/OperatorsName.php deleted file mode 100644 index 9c065f8b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OperatorsName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperatorsName extends AbstractTag -{ - - protected $Id = '0008,1070'; - - protected $Name = 'OperatorsName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operators Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OphthalmicFrameLocationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OphthalmicFrameLocationSequence.php deleted file mode 100644 index 13f077d7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OphthalmicFrameLocationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OphthalmicFrameLocationSequence extends AbstractTag -{ - - protected $Id = '0022,0031'; - - protected $Name = 'OphthalmicFrameLocationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ophthalmic Frame Location Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OphthalmicImageOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/OphthalmicImageOrientation.php deleted file mode 100644 index 125d0826f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OphthalmicImageOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OphthalmicImageOrientation extends AbstractTag -{ - - protected $Id = '0022,0039'; - - protected $Name = 'OphthalmicImageOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ophthalmic Image Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OpticalTransmittance.php b/lib/PHPExiftool/Driver/Tag/DICOM/OpticalTransmittance.php deleted file mode 100644 index c75d56f7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OpticalTransmittance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalTransmittance extends AbstractTag -{ - - protected $Id = '0046,0040'; - - protected $Name = 'OpticalTransmittance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Optical Transmittance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Optotype.php b/lib/PHPExiftool/Driver/Tag/DICOM/Optotype.php deleted file mode 100644 index 41589adb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Optotype.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Optotype extends AbstractTag -{ - - protected $Id = '0046,0094'; - - protected $Name = 'Optotype'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Optotype'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OptotypeDetailedDefinition.php b/lib/PHPExiftool/Driver/Tag/DICOM/OptotypeDetailedDefinition.php deleted file mode 100644 index 92e62fe8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OptotypeDetailedDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptotypeDetailedDefinition extends AbstractTag -{ - - protected $Id = '0046,0139'; - - protected $Name = 'OptotypeDetailedDefinition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Optotype Detailed Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OptotypePresentation.php b/lib/PHPExiftool/Driver/Tag/DICOM/OptotypePresentation.php deleted file mode 100644 index 61ab37ab3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OptotypePresentation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptotypePresentation extends AbstractTag -{ - - protected $Id = '0046,0095'; - - protected $Name = 'OptotypePresentation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Optotype Presentation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrderCallbackPhoneNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrderCallbackPhoneNumber.php deleted file mode 100644 index e3aa1bf9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrderCallbackPhoneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrderCallbackPhoneNumber extends AbstractTag -{ - - protected $Id = '0040,2010'; - - protected $Name = 'OrderCallbackPhoneNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Order Callback Phone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrderEnteredBy.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrderEnteredBy.php deleted file mode 100644 index aa246e033..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrderEnteredBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrderEnteredBy extends AbstractTag -{ - - protected $Id = '0040,2008'; - - protected $Name = 'OrderEnteredBy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Order Entered By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrderEntererLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrderEntererLocation.php deleted file mode 100644 index cecd6d439..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrderEntererLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrderEntererLocation extends AbstractTag -{ - - protected $Id = '0040,2009'; - - protected $Name = 'OrderEntererLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Order Enterer Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskFullVolumeDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskFullVolumeDose.php deleted file mode 100644 index de68c8894..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskFullVolumeDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganAtRiskFullVolumeDose extends AbstractTag -{ - - protected $Id = '300A,002A'; - - protected $Name = 'OrganAtRiskFullVolumeDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organ At Risk Full Volume Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskLimitDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskLimitDose.php deleted file mode 100644 index 1dd03558d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskLimitDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganAtRiskLimitDose extends AbstractTag -{ - - protected $Id = '300A,002B'; - - protected $Name = 'OrganAtRiskLimitDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organ At Risk Limit Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskMaximumDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskMaximumDose.php deleted file mode 100644 index 65a7e47ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskMaximumDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganAtRiskMaximumDose extends AbstractTag -{ - - protected $Id = '300A,002C'; - - protected $Name = 'OrganAtRiskMaximumDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organ At Risk Maximum Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskOverdoseVolumeFraction.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskOverdoseVolumeFraction.php deleted file mode 100644 index 8659af304..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrganAtRiskOverdoseVolumeFraction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganAtRiskOverdoseVolumeFraction extends AbstractTag -{ - - protected $Id = '300A,002D'; - - protected $Name = 'OrganAtRiskOverdoseVolumeFraction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organ At Risk Overdose Volume Fraction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrganDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrganDose.php deleted file mode 100644 index 6ee31f842..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrganDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganDose extends AbstractTag -{ - - protected $Id = '0040,0316'; - - protected $Name = 'OrganDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organ Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OrganExposed.php b/lib/PHPExiftool/Driver/Tag/DICOM/OrganExposed.php deleted file mode 100644 index 5c6e35df6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OrganExposed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganExposed extends AbstractTag -{ - - protected $Id = '0040,0318'; - - protected $Name = 'OrganExposed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organ Exposed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalAttributesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OriginalAttributesSequence.php deleted file mode 100644 index b9cce85d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalAttributesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalAttributesSequence extends AbstractTag -{ - - protected $Id = '0400,0561'; - - protected $Name = 'OriginalAttributesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Attributes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageIdentNomenclature.php b/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageIdentNomenclature.php deleted file mode 100644 index 0cc699026..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageIdentNomenclature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageIdentNomenclature extends AbstractTag -{ - - protected $Id = '0020,5002'; - - protected $Name = 'OriginalImageIdentNomenclature'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Image Ident Nomenclature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageIdentification.php b/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageIdentification.php deleted file mode 100644 index e98fc07ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageIdentification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageIdentification extends AbstractTag -{ - - protected $Id = '0020,5000'; - - protected $Name = 'OriginalImageIdentification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Image Identification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageSequence.php deleted file mode 100644 index 4093fb7f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageSequence extends AbstractTag -{ - - protected $Id = '2130,00C0'; - - protected $Name = 'OriginalImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalSpecializedSOPClassUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/OriginalSpecializedSOPClassUID.php deleted file mode 100644 index 60b33d86b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OriginalSpecializedSOPClassUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalSpecializedSOPClassUID extends AbstractTag -{ - - protected $Id = '0008,001B'; - - protected $Name = 'OriginalSpecializedSOPClassUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Specialized SOP Class UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Originator.php b/lib/PHPExiftool/Driver/Tag/DICOM/Originator.php deleted file mode 100644 index 86173be5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Originator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Originator extends AbstractTag -{ - - protected $Id = '2100,0070'; - - protected $Name = 'Originator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Originator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherMagnificationTypesAvailable.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherMagnificationTypesAvailable.php deleted file mode 100644 index f1154e775..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherMagnificationTypesAvailable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherMagnificationTypesAvailable extends AbstractTag -{ - - protected $Id = '2010,00A7'; - - protected $Name = 'OtherMagnificationTypesAvailable'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Magnification Types Available'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherMediaAvailableSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherMediaAvailableSequence.php deleted file mode 100644 index 0c32efcb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherMediaAvailableSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherMediaAvailableSequence extends AbstractTag -{ - - protected $Id = '2000,00A4'; - - protected $Name = 'OtherMediaAvailableSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Media Available Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientIDs.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientIDs.php deleted file mode 100644 index d1e20473a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherPatientIDs extends AbstractTag -{ - - protected $Id = '0010,1000'; - - protected $Name = 'OtherPatientIDs'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Patient I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientIDsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientIDsSequence.php deleted file mode 100644 index 7dadd2ccf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientIDsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherPatientIDsSequence extends AbstractTag -{ - - protected $Id = '0010,1002'; - - protected $Name = 'OtherPatientIDsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Patient I Ds Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientNames.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientNames.php deleted file mode 100644 index 52df79a11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPatientNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherPatientNames extends AbstractTag -{ - - protected $Id = '0010,1001'; - - protected $Name = 'OtherPatientNames'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Patient Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPupillaryDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherPupillaryDistance.php deleted file mode 100644 index 025120b14..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherPupillaryDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherPupillaryDistance extends AbstractTag -{ - - protected $Id = '0046,0064'; - - protected $Name = 'OtherPupillaryDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Pupillary Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherReferencedStudiesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherReferencedStudiesSequence.php deleted file mode 100644 index e3f75f23e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherReferencedStudiesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherReferencedStudiesSequence extends AbstractTag -{ - - protected $Id = '0008,1200'; - - protected $Name = 'OtherReferencedStudiesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Referenced Studies Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherSmoothingTypesAvailable.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherSmoothingTypesAvailable.php deleted file mode 100644 index 50d5a7eb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherSmoothingTypesAvailable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherSmoothingTypesAvailable extends AbstractTag -{ - - protected $Id = '2010,00A9'; - - protected $Name = 'OtherSmoothingTypesAvailable'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Smoothing Types Available'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OtherStudyNumbers.php b/lib/PHPExiftool/Driver/Tag/DICOM/OtherStudyNumbers.php deleted file mode 100644 index e44e33724..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OtherStudyNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherStudyNumbers extends AbstractTag -{ - - protected $Id = '0020,1070'; - - protected $Name = 'OtherStudyNumbers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Study Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OutputInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OutputInformationSequence.php deleted file mode 100644 index a0cacb258..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OutputInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputInformationSequence extends AbstractTag -{ - - protected $Id = '0040,4033'; - - protected $Name = 'OutputInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Output Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OutputPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/OutputPower.php deleted file mode 100644 index d6a7c8ed5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OutputPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputPower extends AbstractTag -{ - - protected $Id = '0018,5000'; - - protected $Name = 'OutputPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Output Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayActivationLayer.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayActivationLayer.php deleted file mode 100644 index 9fcef7f10..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayActivationLayer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayActivationLayer extends AbstractTag -{ - - protected $Id = '60xx,1001'; - - protected $Name = 'OverlayActivationLayer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Activation Layer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBackgroundDensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBackgroundDensity.php deleted file mode 100644 index 15831dc54..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBackgroundDensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayBackgroundDensity extends AbstractTag -{ - - protected $Id = '2040,0082'; - - protected $Name = 'OverlayBackgroundDensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Background Density'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitPosition.php deleted file mode 100644 index 073b98bc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayBitPosition extends AbstractTag -{ - - protected $Id = '60xx,0102'; - - protected $Name = 'OverlayBitPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Bit Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsAllocated.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsAllocated.php deleted file mode 100644 index fb89e9fcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsAllocated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayBitsAllocated extends AbstractTag -{ - - protected $Id = '60xx,0100'; - - protected $Name = 'OverlayBitsAllocated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Bits Allocated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsForCodeWord.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsForCodeWord.php deleted file mode 100644 index 29a91e3a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsForCodeWord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayBitsForCodeWord extends AbstractTag -{ - - protected $Id = '60xx,0804'; - - protected $Name = 'OverlayBitsForCodeWord'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Bits For Code Word'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsGrouped.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsGrouped.php deleted file mode 100644 index f1e116c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayBitsGrouped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayBitsGrouped extends AbstractTag -{ - - protected $Id = '60xx,0069'; - - protected $Name = 'OverlayBitsGrouped'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Bits Grouped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCodeLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCodeLabel.php deleted file mode 100644 index 68e8dcf35..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCodeLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayCodeLabel extends AbstractTag -{ - - protected $Id = '60xx,0800'; - - protected $Name = 'OverlayCodeLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Code Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCodeTableLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCodeTableLocation.php deleted file mode 100644 index 6cc7d14fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCodeTableLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayCodeTableLocation extends AbstractTag -{ - - protected $Id = '60xx,0803'; - - protected $Name = 'OverlayCodeTableLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Code Table Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayColumns.php deleted file mode 100644 index e46e3f5f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayColumns extends AbstractTag -{ - - protected $Id = '60xx,0011'; - - protected $Name = 'OverlayColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayComments.php deleted file mode 100644 index 16be79112..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayComments extends AbstractTag -{ - - protected $Id = '60xx,4000'; - - protected $Name = 'OverlayComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionCode.php deleted file mode 100644 index 46b670b72..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayCompressionCode extends AbstractTag -{ - - protected $Id = '60xx,0060'; - - protected $Name = 'OverlayCompressionCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Compression Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionDescription.php deleted file mode 100644 index eb0d51489..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayCompressionDescription extends AbstractTag -{ - - protected $Id = '60xx,0063'; - - protected $Name = 'OverlayCompressionDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Compression Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionLabel.php deleted file mode 100644 index b7a2dc374..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayCompressionLabel extends AbstractTag -{ - - protected $Id = '60xx,0062'; - - protected $Name = 'OverlayCompressionLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Compression Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionOriginator.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionOriginator.php deleted file mode 100644 index 1481904a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionOriginator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayCompressionOriginator extends AbstractTag -{ - - protected $Id = '60xx,0061'; - - protected $Name = 'OverlayCompressionOriginator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Compression Originator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionStepPointers.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionStepPointers.php deleted file mode 100644 index 8f47d3a00..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayCompressionStepPointers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayCompressionStepPointers extends AbstractTag -{ - - protected $Id = '60xx,0066'; - - protected $Name = 'OverlayCompressionStepPointers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Compression Step Pointers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayData.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayData.php deleted file mode 100644 index 6c6817539..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayData extends AbstractTag -{ - - protected $Id = '60xx,3000'; - - protected $Name = 'OverlayData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDate.php deleted file mode 100644 index 0fdbeb24f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayDate extends AbstractTag -{ - - protected $Id = '0008,0024'; - - protected $Name = 'OverlayDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescription.php deleted file mode 100644 index 3c6ba283e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayDescription extends AbstractTag -{ - - protected $Id = '60xx,0022'; - - protected $Name = 'OverlayDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorBlue.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorBlue.php deleted file mode 100644 index 0e896720b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayDescriptorBlue extends AbstractTag -{ - - protected $Id = '60xx,1103'; - - protected $Name = 'OverlayDescriptorBlue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Descriptor Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorGray.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorGray.php deleted file mode 100644 index d8fcad2eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorGray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayDescriptorGray extends AbstractTag -{ - - protected $Id = '60xx,1100'; - - protected $Name = 'OverlayDescriptorGray'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Descriptor Gray'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorGreen.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorGreen.php deleted file mode 100644 index 7c1dd8736..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorGreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayDescriptorGreen extends AbstractTag -{ - - protected $Id = '60xx,1102'; - - protected $Name = 'OverlayDescriptorGreen'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Descriptor Green'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorRed.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorRed.php deleted file mode 100644 index 34531a808..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayDescriptorRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayDescriptorRed extends AbstractTag -{ - - protected $Id = '60xx,1101'; - - protected $Name = 'OverlayDescriptorRed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Descriptor Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayForegroundDensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayForegroundDensity.php deleted file mode 100644 index c1128acb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayForegroundDensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayForegroundDensity extends AbstractTag -{ - - protected $Id = '2040,0080'; - - protected $Name = 'OverlayForegroundDensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Foreground Density'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayFormat.php deleted file mode 100644 index ec5abf020..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayFormat extends AbstractTag -{ - - protected $Id = '60xx,0110'; - - protected $Name = 'OverlayFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayGroupLength.php deleted file mode 100644 index 3a98a965b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayGroupLength extends AbstractTag -{ - - protected $Id = '6000,0000'; - - protected $Name = 'OverlayGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayLabel.php deleted file mode 100644 index 0f18894e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayLabel extends AbstractTag -{ - - protected $Id = '60xx,1500'; - - protected $Name = 'OverlayLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayLocation.php deleted file mode 100644 index d86fe7c87..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayLocation extends AbstractTag -{ - - protected $Id = '60xx,0200'; - - protected $Name = 'OverlayLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayMagnificationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayMagnificationType.php deleted file mode 100644 index 7cc51892e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayMagnificationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayMagnificationType extends AbstractTag -{ - - protected $Id = '2040,0060'; - - protected $Name = 'OverlayMagnificationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Magnification Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayMode.php deleted file mode 100644 index 0abc3c0fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayMode extends AbstractTag -{ - - protected $Id = '2040,0090'; - - protected $Name = 'OverlayMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayNumber.php deleted file mode 100644 index be1908e92..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayNumber extends AbstractTag -{ - - protected $Id = '0020,0022'; - - protected $Name = 'OverlayNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayNumberOfTables.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayNumberOfTables.php deleted file mode 100644 index 1b1b716b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayNumberOfTables.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayNumberOfTables extends AbstractTag -{ - - protected $Id = '60xx,0802'; - - protected $Name = 'OverlayNumberOfTables'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Number Of Tables'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayOrImageMagnification.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayOrImageMagnification.php deleted file mode 100644 index 40dc94d67..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayOrImageMagnification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayOrImageMagnification extends AbstractTag -{ - - protected $Id = '2040,0072'; - - protected $Name = 'OverlayOrImageMagnification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Or Image Magnification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayOrigin.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayOrigin.php deleted file mode 100644 index 8af7acb69..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayOrigin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayOrigin extends AbstractTag -{ - - protected $Id = '60xx,0050'; - - protected $Name = 'OverlayOrigin'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPixelDataSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPixelDataSequence.php deleted file mode 100644 index c358d3e1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPixelDataSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayPixelDataSequence extends AbstractTag -{ - - protected $Id = '2040,0020'; - - protected $Name = 'OverlayPixelDataSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Pixel Data Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPlaneOrigin.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPlaneOrigin.php deleted file mode 100644 index 1164a5bde..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPlaneOrigin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayPlaneOrigin extends AbstractTag -{ - - protected $Id = '60xx,0052'; - - protected $Name = 'OverlayPlaneOrigin'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Plane Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPlanes.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPlanes.php deleted file mode 100644 index 30e936b0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayPlanes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayPlanes extends AbstractTag -{ - - protected $Id = '60xx,0012'; - - protected $Name = 'OverlayPlanes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Planes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayRepeatInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayRepeatInterval.php deleted file mode 100644 index f4bc10174..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayRepeatInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayRepeatInterval extends AbstractTag -{ - - protected $Id = '60xx,0068'; - - protected $Name = 'OverlayRepeatInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Repeat Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayRows.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayRows.php deleted file mode 100644 index 84d02b693..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayRows extends AbstractTag -{ - - protected $Id = '60xx,0010'; - - protected $Name = 'OverlayRows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaySmoothingType.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlaySmoothingType.php deleted file mode 100644 index e4cd34877..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaySmoothingType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlaySmoothingType extends AbstractTag -{ - - protected $Id = '2040,0070'; - - protected $Name = 'OverlaySmoothingType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Smoothing Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaySubtype.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlaySubtype.php deleted file mode 100644 index 242d396ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaySubtype.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlaySubtype extends AbstractTag -{ - - protected $Id = '60xx,0045'; - - protected $Name = 'OverlaySubtype'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Subtype'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayTime.php deleted file mode 100644 index 7a378fa53..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayTime extends AbstractTag -{ - - protected $Id = '0008,0034'; - - protected $Name = 'OverlayTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayType.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlayType.php deleted file mode 100644 index 3bd0130d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlayType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlayType extends AbstractTag -{ - - protected $Id = '60xx,0040'; - - protected $Name = 'OverlayType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlay Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysBlue.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysBlue.php deleted file mode 100644 index 36b839850..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlaysBlue extends AbstractTag -{ - - protected $Id = '60xx,1203'; - - protected $Name = 'OverlaysBlue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlays Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysGray.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysGray.php deleted file mode 100644 index 556e3a8d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysGray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlaysGray extends AbstractTag -{ - - protected $Id = '60xx,1200'; - - protected $Name = 'OverlaysGray'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlays Gray'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysGreen.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysGreen.php deleted file mode 100644 index b91c3964c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysGreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlaysGreen extends AbstractTag -{ - - protected $Id = '60xx,1202'; - - protected $Name = 'OverlaysGreen'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlays Green'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysRed.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysRed.php deleted file mode 100644 index 623aa5ee4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverlaysRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverlaysRed extends AbstractTag -{ - - protected $Id = '60xx,1201'; - - protected $Name = 'OverlaysRed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overlays Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverrangeCorrectionUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverrangeCorrectionUsed.php deleted file mode 100644 index 099713fab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverrangeCorrectionUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverrangeCorrectionUsed extends AbstractTag -{ - - protected $Id = '0019,10DD'; - - protected $Name = 'OverrangeCorrectionUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overrange Correction Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverriddenAttributesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverriddenAttributesSequence.php deleted file mode 100644 index b3857979b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverriddenAttributesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverriddenAttributesSequence extends AbstractTag -{ - - protected $Id = '0074,104A'; - - protected $Name = 'OverriddenAttributesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Overridden Attributes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverrideParameterPointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverrideParameterPointer.php deleted file mode 100644 index 05a09dbe4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverrideParameterPointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverrideParameterPointer extends AbstractTag -{ - - protected $Id = '3008,0062'; - - protected $Name = 'OverrideParameterPointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Override Parameter Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverrideReason.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverrideReason.php deleted file mode 100644 index 559688e66..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverrideReason.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverrideReason extends AbstractTag -{ - - protected $Id = '3008,0066'; - - protected $Name = 'OverrideReason'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Override Reason'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OverrideSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/OverrideSequence.php deleted file mode 100644 index 05271eb3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OverrideSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverrideSequence extends AbstractTag -{ - - protected $Id = '3008,0060'; - - protected $Name = 'OverrideSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Override Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OversamplingPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/OversamplingPhase.php deleted file mode 100644 index 81d60b7c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OversamplingPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OversamplingPhase extends AbstractTag -{ - - protected $Id = '0018,9029'; - - protected $Name = 'OversamplingPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Oversampling Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/OwnerID.php b/lib/PHPExiftool/Driver/Tag/DICOM/OwnerID.php deleted file mode 100644 index fe47456c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/OwnerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerID extends AbstractTag -{ - - protected $Id = '2100,0160'; - - protected $Name = 'OwnerID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Owner ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PETFrameTypeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PETFrameTypeSequence.php deleted file mode 100644 index b937b5bbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PETFrameTypeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PETFrameTypeSequence extends AbstractTag -{ - - protected $Id = '0018,9751'; - - protected $Name = 'PETFrameTypeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PET Frame Type Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PETPositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PETPositionSequence.php deleted file mode 100644 index 38e17d7f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PETPositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PETPositionSequence extends AbstractTag -{ - - protected $Id = '0018,9735'; - - protected $Name = 'PETPositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PET Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PSDEstimatedLimit.php b/lib/PHPExiftool/Driver/Tag/DICOM/PSDEstimatedLimit.php deleted file mode 100644 index b808083b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PSDEstimatedLimit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PSDEstimatedLimit extends AbstractTag -{ - - protected $Id = '0043,100D'; - - protected $Name = 'PSDEstimatedLimit'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PSD Estimated Limit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PSDEstimatedLimitInTeslaPerSecond.php b/lib/PHPExiftool/Driver/Tag/DICOM/PSDEstimatedLimitInTeslaPerSecond.php deleted file mode 100644 index 6caa54731..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PSDEstimatedLimitInTeslaPerSecond.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PSDEstimatedLimitInTeslaPerSecond extends AbstractTag -{ - - protected $Id = '0043,100E'; - - protected $Name = 'PSDEstimatedLimitInTeslaPerSecond'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PSD Estimated Limit In Tesla Per Second'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PVCRejection.php b/lib/PHPExiftool/Driver/Tag/DICOM/PVCRejection.php deleted file mode 100644 index 0211acce7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PVCRejection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PVCRejection extends AbstractTag -{ - - protected $Id = '0018,1085'; - - protected $Name = 'PVCRejection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PVC Rejection'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PageNumberVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/PageNumberVector.php deleted file mode 100644 index 74f5e9367..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PageNumberVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageNumberVector extends AbstractTag -{ - - protected $Id = '0018,2001'; - - protected $Name = 'PageNumberVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Number Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PaletteColorTableUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PaletteColorTableUID.php deleted file mode 100644 index c2420abbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PaletteColorTableUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteColorTableUID extends AbstractTag -{ - - protected $Id = '0028,1199'; - - protected $Name = 'PaletteColorTableUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Palette Color Table UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelAcquisition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParallelAcquisition.php deleted file mode 100644 index e6023e0c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelAcquisition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParallelAcquisition extends AbstractTag -{ - - protected $Id = '0018,9077'; - - protected $Name = 'ParallelAcquisition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parallel Acquisition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelAcquisitionTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParallelAcquisitionTechnique.php deleted file mode 100644 index 921444d03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelAcquisitionTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParallelAcquisitionTechnique extends AbstractTag -{ - - protected $Id = '0018,9078'; - - protected $Name = 'ParallelAcquisitionTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parallel Acquisition Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductFactorInPlaneRetired.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductFactorInPlaneRetired.php deleted file mode 100644 index 783688f48..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductFactorInPlaneRetired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParallelReductFactorInPlaneRetired extends AbstractTag -{ - - protected $Id = '0018,9096'; - - protected $Name = 'ParallelReductFactorInPlaneRetired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parallel Reduct Factor In Plane Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactSecondInPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactSecondInPlane.php deleted file mode 100644 index 93079ab30..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactSecondInPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParallelReductionFactSecondInPlane extends AbstractTag -{ - - protected $Id = '0018,9168'; - - protected $Name = 'ParallelReductionFactSecondInPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parallel Reduction Fact Second In Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactorInPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactorInPlane.php deleted file mode 100644 index 9ae5e33ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactorInPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParallelReductionFactorInPlane extends AbstractTag -{ - - protected $Id = '0018,9069'; - - protected $Name = 'ParallelReductionFactorInPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parallel Reduction Factor In Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactorOutOfPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactorOutOfPlane.php deleted file mode 100644 index 82145cc4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParallelReductionFactorOutOfPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParallelReductionFactorOutOfPlane extends AbstractTag -{ - - protected $Id = '0018,9155'; - - protected $Name = 'ParallelReductionFactorOutOfPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parallel Reduction Factor Out Of Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParameterItemIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParameterItemIndex.php deleted file mode 100644 index 3fb6f79ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParameterItemIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParameterItemIndex extends AbstractTag -{ - - protected $Id = '3008,0063'; - - protected $Name = 'ParameterItemIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parameter Item Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParameterPointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParameterPointer.php deleted file mode 100644 index 2aaf8f0e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParameterPointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParameterPointer extends AbstractTag -{ - - protected $Id = '3008,0065'; - - protected $Name = 'ParameterPointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parameter Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParameterSequencePointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParameterSequencePointer.php deleted file mode 100644 index e0a134aee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParameterSequencePointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParameterSequencePointer extends AbstractTag -{ - - protected $Id = '3008,0061'; - - protected $Name = 'ParameterSequencePointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parameter Sequence Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PartialDataDisplayHandling.php b/lib/PHPExiftool/Driver/Tag/DICOM/PartialDataDisplayHandling.php deleted file mode 100644 index bc3a349a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PartialDataDisplayHandling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialDataDisplayHandling extends AbstractTag -{ - - protected $Id = '0072,0208'; - - protected $Name = 'PartialDataDisplayHandling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial Data Display Handling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PartialFourier.php b/lib/PHPExiftool/Driver/Tag/DICOM/PartialFourier.php deleted file mode 100644 index e4b92613d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PartialFourier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialFourier extends AbstractTag -{ - - protected $Id = '0018,9081'; - - protected $Name = 'PartialFourier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial Fourier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PartialFourierDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/PartialFourierDirection.php deleted file mode 100644 index cbc0eca64..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PartialFourierDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialFourierDirection extends AbstractTag -{ - - protected $Id = '0018,9036'; - - protected $Name = 'PartialFourierDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial Fourier Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PartialView.php b/lib/PHPExiftool/Driver/Tag/DICOM/PartialView.php deleted file mode 100644 index 7d5d6fd5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PartialView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialView extends AbstractTag -{ - - protected $Id = '0028,1350'; - - protected $Name = 'PartialView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PartialViewCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PartialViewCodeSequence.php deleted file mode 100644 index 54a4aabcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PartialViewCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialViewCodeSequence extends AbstractTag -{ - - protected $Id = '0028,1352'; - - protected $Name = 'PartialViewCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial View Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PartialViewDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PartialViewDescription.php deleted file mode 100644 index 2d53c4e0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PartialViewDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialViewDescription extends AbstractTag -{ - - protected $Id = '0028,1351'; - - protected $Name = 'PartialViewDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial View Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParticipantSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParticipantSequence.php deleted file mode 100644 index e31985207..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParticipantSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParticipantSequence extends AbstractTag -{ - - protected $Id = '0040,A07A'; - - protected $Name = 'ParticipantSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Participant Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParticipationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParticipationDateTime.php deleted file mode 100644 index fc5b3799a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParticipationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParticipationDateTime extends AbstractTag -{ - - protected $Id = '0040,A082'; - - protected $Name = 'ParticipationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Participation Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ParticipationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ParticipationType.php deleted file mode 100644 index d41d26cb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ParticipationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParticipationType extends AbstractTag -{ - - protected $Id = '0040,A080'; - - protected $Name = 'ParticipationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Participation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientAdditionalPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientAdditionalPosition.php deleted file mode 100644 index bbbdc956f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientAdditionalPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientAdditionalPosition extends AbstractTag -{ - - protected $Id = '300A,0184'; - - protected $Name = 'PatientAdditionalPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Additional Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientAddress.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientAddress.php deleted file mode 100644 index e4fe28544..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientAddress extends AbstractTag -{ - - protected $Id = '0010,1040'; - - protected $Name = 'PatientAddress'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientAge.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientAge.php deleted file mode 100644 index 7d0e54431..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientAge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientAge extends AbstractTag -{ - - protected $Id = '0010,1010'; - - protected $Name = 'PatientAge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Age'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthDate.php deleted file mode 100644 index 9c02444d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientBirthDate extends AbstractTag -{ - - protected $Id = '0010,0030'; - - protected $Name = 'PatientBirthDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Birth Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthName.php deleted file mode 100644 index 83a068b58..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientBirthName extends AbstractTag -{ - - protected $Id = '0010,1005'; - - protected $Name = 'PatientBirthName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Birth Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthTime.php deleted file mode 100644 index 951c4c289..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBirthTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientBirthTime extends AbstractTag -{ - - protected $Id = '0010,0032'; - - protected $Name = 'PatientBirthTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Birth Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBreedCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientBreedCodeSequence.php deleted file mode 100644 index 008a4cda2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBreedCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientBreedCodeSequence extends AbstractTag -{ - - protected $Id = '0010,2293'; - - protected $Name = 'PatientBreedCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Breed Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBreedDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientBreedDescription.php deleted file mode 100644 index ed8ed3f4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientBreedDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientBreedDescription extends AbstractTag -{ - - protected $Id = '0010,2292'; - - protected $Name = 'PatientBreedDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Breed Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientClinicalTrialParticipSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientClinicalTrialParticipSeq.php deleted file mode 100644 index 7fc823ebe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientClinicalTrialParticipSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientClinicalTrialParticipSeq extends AbstractTag -{ - - protected $Id = '0038,0502'; - - protected $Name = 'PatientClinicalTrialParticipSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Clinical Trial Particip Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientComments.php deleted file mode 100644 index e82093a90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientComments extends AbstractTag -{ - - protected $Id = '0010,4000'; - - protected $Name = 'PatientComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientEyeMovementCommandCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientEyeMovementCommandCodeSeq.php deleted file mode 100644 index 0470ea69e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientEyeMovementCommandCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientEyeMovementCommandCodeSeq extends AbstractTag -{ - - protected $Id = '0022,0006'; - - protected $Name = 'PatientEyeMovementCommandCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Eye Movement Command Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientEyeMovementCommanded.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientEyeMovementCommanded.php deleted file mode 100644 index 07624ebb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientEyeMovementCommanded.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientEyeMovementCommanded extends AbstractTag -{ - - protected $Id = '0022,0005'; - - protected $Name = 'PatientEyeMovementCommanded'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Eye Movement Commanded'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientGantryRelationshipCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientGantryRelationshipCodeSeq.php deleted file mode 100644 index f47773a76..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientGantryRelationshipCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientGantryRelationshipCodeSeq extends AbstractTag -{ - - protected $Id = '0054,0414'; - - protected $Name = 'PatientGantryRelationshipCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Gantry Relationship Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientGroupLength.php deleted file mode 100644 index 1981163a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientGroupLength extends AbstractTag -{ - - protected $Id = '0010,0000'; - - protected $Name = 'PatientGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientID.php deleted file mode 100644 index eeb74862b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientID extends AbstractTag -{ - - protected $Id = '0010,0020'; - - protected $Name = 'PatientID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientIdentityRemoved.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientIdentityRemoved.php deleted file mode 100644 index 597eeec3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientIdentityRemoved.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientIdentityRemoved extends AbstractTag -{ - - protected $Id = '0012,0062'; - - protected $Name = 'PatientIdentityRemoved'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Identity Removed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientInstitutionResidence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientInstitutionResidence.php deleted file mode 100644 index e67d5e313..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientInstitutionResidence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientInstitutionResidence extends AbstractTag -{ - - protected $Id = '0038,0400'; - - protected $Name = 'PatientInstitutionResidence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Institution Residence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientInsurancePlanCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientInsurancePlanCodeSequence.php deleted file mode 100644 index 2b12afc43..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientInsurancePlanCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientInsurancePlanCodeSequence extends AbstractTag -{ - - protected $Id = '0010,0050'; - - protected $Name = 'PatientInsurancePlanCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Insurance Plan Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientMotherBirthName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientMotherBirthName.php deleted file mode 100644 index b170f16d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientMotherBirthName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientMotherBirthName extends AbstractTag -{ - - protected $Id = '0010,1060'; - - protected $Name = 'PatientMotherBirthName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Mother Birth Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientMotionCorrected.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientMotionCorrected.php deleted file mode 100644 index 24d168e37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientMotionCorrected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientMotionCorrected extends AbstractTag -{ - - protected $Id = '0018,9763'; - - protected $Name = 'PatientMotionCorrected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Motion Corrected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientName.php deleted file mode 100644 index 88f45e8c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientName extends AbstractTag -{ - - protected $Id = '0010,0010'; - - protected $Name = 'PatientName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientation.php deleted file mode 100644 index c6d0a0130..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientOrientation extends AbstractTag -{ - - protected $Id = '0020,0020'; - - protected $Name = 'PatientOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationCodeSequence.php deleted file mode 100644 index e421d47e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientOrientationCodeSequence extends AbstractTag -{ - - protected $Id = '0054,0410'; - - protected $Name = 'PatientOrientationCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Orientation Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationInFrameSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationInFrameSequence.php deleted file mode 100644 index 34004cd96..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationInFrameSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientOrientationInFrameSequence extends AbstractTag -{ - - protected $Id = '0020,9450'; - - protected $Name = 'PatientOrientationInFrameSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Orientation In Frame Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationModifierCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationModifierCodeSeq.php deleted file mode 100644 index e1d303b9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientOrientationModifierCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientOrientationModifierCodeSeq extends AbstractTag -{ - - protected $Id = '0054,0412'; - - protected $Name = 'PatientOrientationModifierCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Orientation Modifier Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientPosition.php deleted file mode 100644 index 0c058d450..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientPosition extends AbstractTag -{ - - protected $Id = '0018,5100'; - - protected $Name = 'PatientPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientPrimaryLanguageCodeModSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientPrimaryLanguageCodeModSeq.php deleted file mode 100644 index 438f9ba6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientPrimaryLanguageCodeModSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientPrimaryLanguageCodeModSeq extends AbstractTag -{ - - protected $Id = '0010,0102'; - - protected $Name = 'PatientPrimaryLanguageCodeModSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Primary Language Code Mod Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientPrimaryLanguageCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientPrimaryLanguageCodeSeq.php deleted file mode 100644 index ca6194459..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientPrimaryLanguageCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientPrimaryLanguageCodeSeq extends AbstractTag -{ - - protected $Id = '0010,0101'; - - protected $Name = 'PatientPrimaryLanguageCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Primary Language Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientReligiousPreference.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientReligiousPreference.php deleted file mode 100644 index 7eb3d2904..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientReligiousPreference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientReligiousPreference extends AbstractTag -{ - - protected $Id = '0010,21F0'; - - protected $Name = 'PatientReligiousPreference'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Religious Preference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupLabel.php deleted file mode 100644 index 8ea861807..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSetupLabel extends AbstractTag -{ - - protected $Id = '300A,0183'; - - protected $Name = 'PatientSetupLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Setup Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupNumber.php deleted file mode 100644 index 71ded347f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSetupNumber extends AbstractTag -{ - - protected $Id = '300A,0182'; - - protected $Name = 'PatientSetupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Setup Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupSequence.php deleted file mode 100644 index abf68ce0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSetupSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSetupSequence extends AbstractTag -{ - - protected $Id = '300A,0180'; - - protected $Name = 'PatientSetupSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Setup Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSex.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSex.php deleted file mode 100644 index de4ebab77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSex extends AbstractTag -{ - - protected $Id = '0010,0040'; - - protected $Name = 'PatientSex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Sex'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSexNeutered.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSexNeutered.php deleted file mode 100644 index 4f0a0ac39..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSexNeutered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSexNeutered extends AbstractTag -{ - - protected $Id = '0010,2203'; - - protected $Name = 'PatientSexNeutered'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Sex Neutered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSize.php deleted file mode 100644 index 841ad5b20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSize extends AbstractTag -{ - - protected $Id = '0010,1020'; - - protected $Name = 'PatientSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSpeciesCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSpeciesCodeSequence.php deleted file mode 100644 index 749217f33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSpeciesCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSpeciesCodeSequence extends AbstractTag -{ - - protected $Id = '0010,2202'; - - protected $Name = 'PatientSpeciesCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Species Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSpeciesDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSpeciesDescription.php deleted file mode 100644 index 6f4e6a36b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSpeciesDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSpeciesDescription extends AbstractTag -{ - - protected $Id = '0010,2201'; - - protected $Name = 'PatientSpeciesDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Species Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientState.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientState.php deleted file mode 100644 index 0e56824d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientState extends AbstractTag -{ - - protected $Id = '0038,0500'; - - protected $Name = 'PatientState'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientStatus.php deleted file mode 100644 index c158301b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientStatus extends AbstractTag -{ - - protected $Id = '0011,1010'; - - protected $Name = 'PatientStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAccessoryCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAccessoryCode.php deleted file mode 100644 index 17cdc10f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAccessoryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSupportAccessoryCode extends AbstractTag -{ - - protected $Id = '300A,0354'; - - protected $Name = 'PatientSupportAccessoryCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Support Accessory Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAngle.php deleted file mode 100644 index 9f90a633b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSupportAngle extends AbstractTag -{ - - protected $Id = '300A,0122'; - - protected $Name = 'PatientSupportAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Support Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAngleTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAngleTolerance.php deleted file mode 100644 index 5ba0715a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportAngleTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSupportAngleTolerance extends AbstractTag -{ - - protected $Id = '300A,004C'; - - protected $Name = 'PatientSupportAngleTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Support Angle Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportID.php deleted file mode 100644 index 3dbd41b34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSupportID extends AbstractTag -{ - - protected $Id = '300A,0352'; - - protected $Name = 'PatientSupportID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Support ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportRotationDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportRotationDirection.php deleted file mode 100644 index 291b07696..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportRotationDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSupportRotationDirection extends AbstractTag -{ - - protected $Id = '300A,0123'; - - protected $Name = 'PatientSupportRotationDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Support Rotation Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportType.php deleted file mode 100644 index de1c80bb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientSupportType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSupportType extends AbstractTag -{ - - protected $Id = '300A,0350'; - - protected $Name = 'PatientSupportType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Support Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientTelephoneNumbers.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientTelephoneNumbers.php deleted file mode 100644 index c09692018..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientTelephoneNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientTelephoneNumbers extends AbstractTag -{ - - protected $Id = '0010,2154'; - - protected $Name = 'PatientTelephoneNumbers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Telephone Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientTransportArrangements.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientTransportArrangements.php deleted file mode 100644 index ba347f145..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientTransportArrangements.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientTransportArrangements extends AbstractTag -{ - - protected $Id = '0040,1004'; - - protected $Name = 'PatientTransportArrangements'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Transport Arrangements'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PatientWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/PatientWeight.php deleted file mode 100644 index 561a14683..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PatientWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientWeight extends AbstractTag -{ - - protected $Id = '0010,1030'; - - protected $Name = 'PatientWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Patient Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PauseBetweenFrames.php b/lib/PHPExiftool/Driver/Tag/DICOM/PauseBetweenFrames.php deleted file mode 100644 index c02429ad9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PauseBetweenFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PauseBetweenFrames extends AbstractTag -{ - - protected $Id = '0054,0038'; - - protected $Name = 'PauseBetweenFrames'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pause Between Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PauseInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/PauseInterval.php deleted file mode 100644 index e3f87dc28..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PauseInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PauseInterval extends AbstractTag -{ - - protected $Id = '0019,1090'; - - protected $Name = 'PauseInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pause Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PeakRateOfChangeOfGradientField.php b/lib/PHPExiftool/Driver/Tag/DICOM/PeakRateOfChangeOfGradientField.php deleted file mode 100644 index 64cfa8911..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PeakRateOfChangeOfGradientField.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakRateOfChangeOfGradientField extends AbstractTag -{ - - protected $Id = '0043,100B'; - - protected $Name = 'PeakRateOfChangeOfGradientField'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Rate Of Change Of Gradient Field'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PeakSAR.php b/lib/PHPExiftool/Driver/Tag/DICOM/PeakSAR.php deleted file mode 100644 index add4a296d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PeakSAR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakSAR extends AbstractTag -{ - - protected $Id = '0019,1084'; - - protected $Name = 'PeakSAR'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak SAR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerFrameFunctionalGroupsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerFrameFunctionalGroupsSequence.php deleted file mode 100644 index f4d3d3f1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerFrameFunctionalGroupsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerFrameFunctionalGroupsSequence extends AbstractTag -{ - - protected $Id = '5200,9230'; - - protected $Name = 'PerFrameFunctionalGroupsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Per Frame Functional Groups Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerProjectionAcquisitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerProjectionAcquisitionSequence.php deleted file mode 100644 index 2a3f41187..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerProjectionAcquisitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerProjectionAcquisitionSequence extends AbstractTag -{ - - protected $Id = '0018,9538'; - - protected $Name = 'PerProjectionAcquisitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Per Projection Acquisition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PercentPhaseFieldOfView.php b/lib/PHPExiftool/Driver/Tag/DICOM/PercentPhaseFieldOfView.php deleted file mode 100644 index 30991412a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PercentPhaseFieldOfView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PercentPhaseFieldOfView extends AbstractTag -{ - - protected $Id = '0018,0094'; - - protected $Name = 'PercentPhaseFieldOfView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Percent Phase Field Of View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PercentSampling.php b/lib/PHPExiftool/Driver/Tag/DICOM/PercentSampling.php deleted file mode 100644 index 11823fa76..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PercentSampling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PercentSampling extends AbstractTag -{ - - protected $Id = '0018,0093'; - - protected $Name = 'PercentSampling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Percent Sampling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedLocation.php deleted file mode 100644 index 172ea5091..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedLocation extends AbstractTag -{ - - protected $Id = '0040,0243'; - - protected $Name = 'PerformedLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureCodeSequence.php deleted file mode 100644 index dfe236ae5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureCodeSequence extends AbstractTag -{ - - protected $Id = '0040,A372'; - - protected $Name = 'PerformedProcedureCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepDescription.php deleted file mode 100644 index 3005af447..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureStepDescription extends AbstractTag -{ - - protected $Id = '0040,0254'; - - protected $Name = 'PerformedProcedureStepDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Step Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepEndDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepEndDate.php deleted file mode 100644 index 086a9d0d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepEndDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureStepEndDate extends AbstractTag -{ - - protected $Id = '0040,0250'; - - protected $Name = 'PerformedProcedureStepEndDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Step End Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepEndTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepEndTime.php deleted file mode 100644 index 6ceea621f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepEndTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureStepEndTime extends AbstractTag -{ - - protected $Id = '0040,0251'; - - protected $Name = 'PerformedProcedureStepEndTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Step End Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepID.php deleted file mode 100644 index bea38ac7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureStepID extends AbstractTag -{ - - protected $Id = '0040,0253'; - - protected $Name = 'PerformedProcedureStepID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Step ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStartDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStartDate.php deleted file mode 100644 index 59cd5ace2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStartDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureStepStartDate extends AbstractTag -{ - - protected $Id = '0040,0244'; - - protected $Name = 'PerformedProcedureStepStartDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Step Start Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStartTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStartTime.php deleted file mode 100644 index 55aaa04c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureStepStartTime extends AbstractTag -{ - - protected $Id = '0040,0245'; - - protected $Name = 'PerformedProcedureStepStartTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Step Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStatus.php deleted file mode 100644 index 770893297..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureStepStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureStepStatus extends AbstractTag -{ - - protected $Id = '0040,0252'; - - protected $Name = 'PerformedProcedureStepStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Step Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureTypeDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureTypeDescription.php deleted file mode 100644 index a37ec6f8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcedureTypeDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcedureTypeDescription extends AbstractTag -{ - - protected $Id = '0040,0255'; - - protected $Name = 'PerformedProcedureTypeDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Procedure Type Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcessingAppsCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcessingAppsCodeSeq.php deleted file mode 100644 index 9c1d53e31..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcessingAppsCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcessingAppsCodeSeq extends AbstractTag -{ - - protected $Id = '0040,4007'; - - protected $Name = 'PerformedProcessingAppsCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Processing Apps Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcessingParametersSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcessingParametersSeq.php deleted file mode 100644 index 013f0a66a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProcessingParametersSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProcessingParametersSeq extends AbstractTag -{ - - protected $Id = '0074,1212'; - - protected $Name = 'PerformedProcessingParametersSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Processing Parameters Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProtocolCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProtocolCodeSequence.php deleted file mode 100644 index 791772ecd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProtocolCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProtocolCodeSequence extends AbstractTag -{ - - protected $Id = '0040,0260'; - - protected $Name = 'PerformedProtocolCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Protocol Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProtocolType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProtocolType.php deleted file mode 100644 index cba3cccb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedProtocolType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedProtocolType extends AbstractTag -{ - - protected $Id = '0040,0261'; - - protected $Name = 'PerformedProtocolType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Protocol Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedSeriesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedSeriesSequence.php deleted file mode 100644 index d6753302a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedSeriesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedSeriesSequence extends AbstractTag -{ - - protected $Id = '0040,0340'; - - protected $Name = 'PerformedSeriesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Series Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationAETitle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationAETitle.php deleted file mode 100644 index 5b138ba30..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationAETitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedStationAETitle extends AbstractTag -{ - - protected $Id = '0040,0241'; - - protected $Name = 'PerformedStationAETitle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Station AE Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationClassCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationClassCodeSequence.php deleted file mode 100644 index 006e43d61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationClassCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedStationClassCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4029'; - - protected $Name = 'PerformedStationClassCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Station Class Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationGeogLocCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationGeogLocCodeSeq.php deleted file mode 100644 index aaa330419..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationGeogLocCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedStationGeogLocCodeSeq extends AbstractTag -{ - - protected $Id = '0040,4030'; - - protected $Name = 'PerformedStationGeogLocCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Station Geog Loc Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationName.php deleted file mode 100644 index 26f5cb323..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedStationName extends AbstractTag -{ - - protected $Id = '0040,0242'; - - protected $Name = 'PerformedStationName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationNameCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationNameCodeSequence.php deleted file mode 100644 index ec69700ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedStationNameCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedStationNameCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4028'; - - protected $Name = 'PerformedStationNameCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Station Name Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedWorkitemCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformedWorkitemCodeSequence.php deleted file mode 100644 index fbfa03cdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformedWorkitemCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformedWorkitemCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4019'; - - protected $Name = 'PerformedWorkitemCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performed Workitem Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformingPhysicianIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformingPhysicianIDSequence.php deleted file mode 100644 index 99ff9c34e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformingPhysicianIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformingPhysicianIDSequence extends AbstractTag -{ - - protected $Id = '0008,1052'; - - protected $Name = 'PerformingPhysicianIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performing Physician ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerformingPhysicianName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerformingPhysicianName.php deleted file mode 100644 index 8e111d917..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerformingPhysicianName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformingPhysicianName extends AbstractTag -{ - - protected $Id = '0008,1050'; - - protected $Name = 'PerformingPhysicianName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performing Physician Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerimeterTable.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerimeterTable.php deleted file mode 100644 index 2b69d6452..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerimeterTable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerimeterTable extends AbstractTag -{ - - protected $Id = '0028,0070'; - - protected $Name = 'PerimeterTable'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Perimeter Table'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PerimeterValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/PerimeterValue.php deleted file mode 100644 index f524b9491..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PerimeterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerimeterValue extends AbstractTag -{ - - protected $Id = '0028,0071'; - - protected $Name = 'PerimeterValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Perimeter Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PeristalticFlagOption.php b/lib/PHPExiftool/Driver/Tag/DICOM/PeristalticFlagOption.php deleted file mode 100644 index 36165e70a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PeristalticFlagOption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeristalticFlagOption extends AbstractTag -{ - - protected $Id = '0045,1022'; - - protected $Name = 'PeristalticFlagOption'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peristaltic Flag Option'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PersonAddress.php b/lib/PHPExiftool/Driver/Tag/DICOM/PersonAddress.php deleted file mode 100644 index baa9dae6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PersonAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonAddress extends AbstractTag -{ - - protected $Id = '0040,1102'; - - protected $Name = 'PersonAddress'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Person Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PersonIdentificationCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PersonIdentificationCodeSequence.php deleted file mode 100644 index f1f47e87b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PersonIdentificationCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonIdentificationCodeSequence extends AbstractTag -{ - - protected $Id = '0040,1101'; - - protected $Name = 'PersonIdentificationCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Person Identification Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PersonName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PersonName.php deleted file mode 100644 index 8c340de73..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PersonName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonName extends AbstractTag -{ - - protected $Id = '0040,A123'; - - protected $Name = 'PersonName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Person Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PersonTelephoneNumbers.php b/lib/PHPExiftool/Driver/Tag/DICOM/PersonTelephoneNumbers.php deleted file mode 100644 index cb7b7d4c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PersonTelephoneNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonTelephoneNumbers extends AbstractTag -{ - - protected $Id = '0040,1103'; - - protected $Name = 'PersonTelephoneNumbers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Person Telephone Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PertinentDocumentsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PertinentDocumentsSequence.php deleted file mode 100644 index 20fdc50e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PertinentDocumentsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PertinentDocumentsSequence extends AbstractTag -{ - - protected $Id = '0038,0100'; - - protected $Name = 'PertinentDocumentsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pertinent Documents Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PertinentOtherEvidenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PertinentOtherEvidenceSequence.php deleted file mode 100644 index f48646ce9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PertinentOtherEvidenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PertinentOtherEvidenceSequence extends AbstractTag -{ - - protected $Id = '0040,A385'; - - protected $Name = 'PertinentOtherEvidenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pertinent Other Evidence Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhantomCalibrationDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhantomCalibrationDate.php deleted file mode 100644 index aa4983d8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhantomCalibrationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhantomCalibrationDate extends AbstractTag -{ - - protected $Id = '0045,101B'; - - protected $Name = 'PhantomCalibrationDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phantom Calibration Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhantomCalibrationTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhantomCalibrationTime.php deleted file mode 100644 index 06fd120e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhantomCalibrationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhantomCalibrationTime extends AbstractTag -{ - - protected $Id = '0045,101C'; - - protected $Name = 'PhantomCalibrationTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phantom Calibration Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseContrast.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhaseContrast.php deleted file mode 100644 index 320815202..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseContrast extends AbstractTag -{ - - protected $Id = '0018,9014'; - - protected $Name = 'PhaseContrast'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phase Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseDelay.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhaseDelay.php deleted file mode 100644 index 257c62b33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseDelay extends AbstractTag -{ - - protected $Id = '0054,0036'; - - protected $Name = 'PhaseDelay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phase Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhaseDescription.php deleted file mode 100644 index 8862617cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseDescription extends AbstractTag -{ - - protected $Id = '0054,0039'; - - protected $Name = 'PhaseDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phase Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhaseInformationSequence.php deleted file mode 100644 index 46f4531ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseInformationSequence extends AbstractTag -{ - - protected $Id = '0054,0032'; - - protected $Name = 'PhaseInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phase Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhaseNumber.php deleted file mode 100644 index a91ee2393..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseNumber extends AbstractTag -{ - - protected $Id = '0020,0015'; - - protected $Name = 'PhaseNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phase Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhaseVector.php deleted file mode 100644 index 6b60ae1f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhaseVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseVector extends AbstractTag -{ - - protected $Id = '0054,0030'; - - protected $Name = 'PhaseVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phase Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhosphorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhosphorType.php deleted file mode 100644 index b6eb403ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhosphorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhosphorType extends AbstractTag -{ - - protected $Id = '0018,1261'; - - protected $Name = 'PhosphorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phosphor Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhotometricInterpretation.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhotometricInterpretation.php deleted file mode 100644 index c06f4df08..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhotometricInterpretation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotometricInterpretation extends AbstractTag -{ - - protected $Id = '0028,0004'; - - protected $Name = 'PhotometricInterpretation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Photometric Interpretation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhototimerSetting.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhototimerSetting.php deleted file mode 100644 index 8d0cebb78..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhototimerSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhototimerSetting extends AbstractTag -{ - - protected $Id = '0018,7065'; - - protected $Name = 'PhototimerSetting'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Phototimer Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDeltaX.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDeltaX.php deleted file mode 100644 index 422dcc68f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDeltaX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalDeltaX extends AbstractTag -{ - - protected $Id = '0018,602C'; - - protected $Name = 'PhysicalDeltaX'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physical Delta X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDeltaY.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDeltaY.php deleted file mode 100644 index 96180e26a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDeltaY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalDeltaY extends AbstractTag -{ - - protected $Id = '0018,602E'; - - protected $Name = 'PhysicalDeltaY'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physical Delta Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDetectorSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDetectorSize.php deleted file mode 100644 index fcc8d98a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalDetectorSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalDetectorSize extends AbstractTag -{ - - protected $Id = '0018,9429'; - - protected $Name = 'PhysicalDetectorSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physical Detector Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalUnitsXDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalUnitsXDirection.php deleted file mode 100644 index b0732b968..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalUnitsXDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalUnitsXDirection extends AbstractTag -{ - - protected $Id = '0018,6024'; - - protected $Name = 'PhysicalUnitsXDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physical Units X Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalUnitsYDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalUnitsYDirection.php deleted file mode 100644 index 2abd0219f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicalUnitsYDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalUnitsYDirection extends AbstractTag -{ - - protected $Id = '0018,6026'; - - protected $Name = 'PhysicalUnitsYDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physical Units Y Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicianApprovingInterpretation.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysicianApprovingInterpretation.php deleted file mode 100644 index 62788ee15..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicianApprovingInterpretation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicianApprovingInterpretation extends AbstractTag -{ - - protected $Id = '4008,0114'; - - protected $Name = 'PhysicianApprovingInterpretation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physician Approving Interpretation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicianReadingStudyIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysicianReadingStudyIDSequence.php deleted file mode 100644 index ddb83cb9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysicianReadingStudyIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicianReadingStudyIDSequence extends AbstractTag -{ - - protected $Id = '0008,1062'; - - protected $Name = 'PhysicianReadingStudyIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physician Reading Study ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysiciansOfRecord.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysiciansOfRecord.php deleted file mode 100644 index 7d87a7a0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysiciansOfRecord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysiciansOfRecord extends AbstractTag -{ - - protected $Id = '0008,1048'; - - protected $Name = 'PhysiciansOfRecord'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physicians Of Record'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PhysiciansOfRecordIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PhysiciansOfRecordIDSequence.php deleted file mode 100644 index 41b61bf5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PhysiciansOfRecordIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysiciansOfRecordIDSequence extends AbstractTag -{ - - protected $Id = '0008,1049'; - - protected $Name = 'PhysiciansOfRecordIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physicians Of Record ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelAspectRatio.php deleted file mode 100644 index e92db3ee1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatio extends AbstractTag -{ - - protected $Id = '0028,0034'; - - protected $Name = 'PixelAspectRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelBandwidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelBandwidth.php deleted file mode 100644 index 58c20b380..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelBandwidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelBandwidth extends AbstractTag -{ - - protected $Id = '0018,0095'; - - protected $Name = 'PixelBandwidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Bandwidth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentDataType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentDataType.php deleted file mode 100644 index 767b0e875..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentDataType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelComponentDataType extends AbstractTag -{ - - protected $Id = '0018,604E'; - - protected $Name = 'PixelComponentDataType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Component Data Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentMask.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentMask.php deleted file mode 100644 index 816a69aa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentMask.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelComponentMask extends AbstractTag -{ - - protected $Id = '0018,6046'; - - protected $Name = 'PixelComponentMask'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Component Mask'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentOrganization.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentOrganization.php deleted file mode 100644 index 40be50285..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentOrganization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelComponentOrganization extends AbstractTag -{ - - protected $Id = '0018,6044'; - - protected $Name = 'PixelComponentOrganization'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Component Organization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentPhysicalUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentPhysicalUnits.php deleted file mode 100644 index c95fb611a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentPhysicalUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelComponentPhysicalUnits extends AbstractTag -{ - - protected $Id = '0018,604C'; - - protected $Name = 'PixelComponentPhysicalUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Component Physical Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentRangeStart.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentRangeStart.php deleted file mode 100644 index 8ada5be8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentRangeStart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelComponentRangeStart extends AbstractTag -{ - - protected $Id = '0018,6048'; - - protected $Name = 'PixelComponentRangeStart'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Component Range Start'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentRangeStop.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentRangeStop.php deleted file mode 100644 index 231979e10..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelComponentRangeStop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelComponentRangeStop extends AbstractTag -{ - - protected $Id = '0018,604A'; - - protected $Name = 'PixelComponentRangeStop'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Component Range Stop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelData.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelData.php deleted file mode 100644 index 21e167e60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelData extends AbstractTag -{ - - protected $Id = '7Fxx,0010'; - - protected $Name = 'PixelData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelDataGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelDataGroupLength.php deleted file mode 100644 index 6399e3cda..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelDataGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelDataGroupLength extends AbstractTag -{ - - protected $Id = '7Fxx,0000'; - - protected $Name = 'PixelDataGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Data Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelDataProviderURL.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelDataProviderURL.php deleted file mode 100644 index dad6cdf40..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelDataProviderURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelDataProviderURL extends AbstractTag -{ - - protected $Id = '0028,7FE0'; - - protected $Name = 'PixelDataProviderURL'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Data Provider URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationship.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationship.php deleted file mode 100644 index cf1d35341..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelIntensityRelationship extends AbstractTag -{ - - protected $Id = '0028,1040'; - - protected $Name = 'PixelIntensityRelationship'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Intensity Relationship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationshipLUTSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationshipLUTSeq.php deleted file mode 100644 index 074d0486e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationshipLUTSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelIntensityRelationshipLUTSeq extends AbstractTag -{ - - protected $Id = '0028,9422'; - - protected $Name = 'PixelIntensityRelationshipLUTSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Intensity Relationship LUT Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationshipSign.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationshipSign.php deleted file mode 100644 index e7da7b495..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelIntensityRelationshipSign.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelIntensityRelationshipSign extends AbstractTag -{ - - protected $Id = '0028,1041'; - - protected $Name = 'PixelIntensityRelationshipSign'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Intensity Relationship Sign'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelMeasuresSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelMeasuresSequence.php deleted file mode 100644 index 647619eb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelMeasuresSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelMeasuresSequence extends AbstractTag -{ - - protected $Id = '0028,9110'; - - protected $Name = 'PixelMeasuresSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Measures Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelPaddingRangeLimit.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelPaddingRangeLimit.php deleted file mode 100644 index f40393422..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelPaddingRangeLimit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelPaddingRangeLimit extends AbstractTag -{ - - protected $Id = '0028,0121'; - - protected $Name = 'PixelPaddingRangeLimit'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Padding Range Limit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelPaddingValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelPaddingValue.php deleted file mode 100644 index 7998b0b01..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelPaddingValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelPaddingValue extends AbstractTag -{ - - protected $Id = '0028,0120'; - - protected $Name = 'PixelPaddingValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Padding Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelPresentation.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelPresentation.php deleted file mode 100644 index 5d72f3bc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelPresentation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelPresentation extends AbstractTag -{ - - protected $Id = '0008,9205'; - - protected $Name = 'PixelPresentation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Presentation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelRepresentation.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelRepresentation.php deleted file mode 100644 index 6ff2423d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelRepresentation.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelRepresentation extends AbstractTag -{ - - protected $Id = '0028,0103'; - - protected $Name = 'PixelRepresentation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Representation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unsigned', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Signed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelShiftFrameRange.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelShiftFrameRange.php deleted file mode 100644 index 65e9a0e63..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelShiftFrameRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelShiftFrameRange extends AbstractTag -{ - - protected $Id = '0028,9506'; - - protected $Name = 'PixelShiftFrameRange'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Shift Frame Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelShiftSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelShiftSequence.php deleted file mode 100644 index 20c4910c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelShiftSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelShiftSequence extends AbstractTag -{ - - protected $Id = '0028,9501'; - - protected $Name = 'PixelShiftSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Shift Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacing.php deleted file mode 100644 index 0d83257d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelSpacing extends AbstractTag -{ - - protected $Id = '0028,0030'; - - protected $Name = 'PixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingCalibrationDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingCalibrationDescription.php deleted file mode 100644 index 3744749e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingCalibrationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelSpacingCalibrationDescription extends AbstractTag -{ - - protected $Id = '0028,0A04'; - - protected $Name = 'PixelSpacingCalibrationDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Spacing Calibration Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingCalibrationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingCalibrationType.php deleted file mode 100644 index 62ed7c4bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingCalibrationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelSpacingCalibrationType extends AbstractTag -{ - - protected $Id = '0028,0A02'; - - protected $Name = 'PixelSpacingCalibrationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Spacing Calibration Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingSequence.php deleted file mode 100644 index 61f785c0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelSpacingSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelSpacingSequence extends AbstractTag -{ - - protected $Id = '0040,08D8'; - - protected $Name = 'PixelSpacingSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Spacing Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelValueMappingCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelValueMappingCodeSequence.php deleted file mode 100644 index 5c31d18d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelValueMappingCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelValueMappingCodeSequence extends AbstractTag -{ - - protected $Id = '0040,9098'; - - protected $Name = 'PixelValueMappingCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Value Mapping Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PixelValueTransformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PixelValueTransformationSequence.php deleted file mode 100644 index ed723a207..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PixelValueTransformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelValueTransformationSequence extends AbstractTag -{ - - protected $Id = '0028,9145'; - - protected $Name = 'PixelValueTransformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Value Transformation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlacerOrderNumImagingServiceReq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlacerOrderNumImagingServiceReq.php deleted file mode 100644 index 312690fc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlacerOrderNumImagingServiceReq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlacerOrderNumImagingServiceReq extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PlacerOrderNum-ImagingServiceReq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Placer Order Num-Imaging Service Req'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlacerOrderNumberProcedure.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlacerOrderNumberProcedure.php deleted file mode 100644 index 7db812b18..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlacerOrderNumberProcedure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlacerOrderNumberProcedure extends AbstractTag -{ - - protected $Id = '0040,1006'; - - protected $Name = 'PlacerOrderNumber-Procedure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Placer Order Number-Procedure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlanIntent.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlanIntent.php deleted file mode 100644 index b7e9c2fb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlanIntent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanIntent extends AbstractTag -{ - - protected $Id = '300A,000A'; - - protected $Name = 'PlanIntent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plan Intent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlanarConfiguration.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlanarConfiguration.php deleted file mode 100644 index 81268606e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlanarConfiguration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanarConfiguration extends AbstractTag -{ - - protected $Id = '0028,0006'; - - protected $Name = 'PlanarConfiguration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Planar Configuration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlaneIdentification.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlaneIdentification.php deleted file mode 100644 index 42aae5614..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlaneIdentification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaneIdentification extends AbstractTag -{ - - protected $Id = '0018,9457'; - - protected $Name = 'PlaneIdentification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plane Identification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlaneOrientationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlaneOrientationSequence.php deleted file mode 100644 index a71cefff3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlaneOrientationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaneOrientationSequence extends AbstractTag -{ - - protected $Id = '0020,9116'; - - protected $Name = 'PlaneOrientationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plane Orientation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlanePositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlanePositionSequence.php deleted file mode 100644 index 82d12d9e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlanePositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanePositionSequence extends AbstractTag -{ - - protected $Id = '0020,9113'; - - protected $Name = 'PlanePositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plane Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlaneType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlaneType.php deleted file mode 100644 index 1b1500554..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlaneType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaneType extends AbstractTag -{ - - protected $Id = '0027,1035'; - - protected $Name = 'PlaneType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plane Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Planes.php b/lib/PHPExiftool/Driver/Tag/DICOM/Planes.php deleted file mode 100644 index 70d290d63..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Planes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Planes extends AbstractTag -{ - - protected $Id = '0028,0012'; - - protected $Name = 'Planes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Planes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlannedVerificationImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlannedVerificationImageSequence.php deleted file mode 100644 index dbd728f28..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlannedVerificationImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlannedVerificationImageSequence extends AbstractTag -{ - - protected $Id = '300A,00CA'; - - protected $Name = 'PlannedVerificationImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Planned Verification Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlateID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlateID.php deleted file mode 100644 index a0ef96b33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlateID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlateID extends AbstractTag -{ - - protected $Id = '0018,1004'; - - protected $Name = 'PlateID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plate ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PlateType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PlateType.php deleted file mode 100644 index 15ef3a6ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PlateType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlateType extends AbstractTag -{ - - protected $Id = '0018,1260'; - - protected $Name = 'PlateType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plate Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PointCoordinatesData.php b/lib/PHPExiftool/Driver/Tag/DICOM/PointCoordinatesData.php deleted file mode 100644 index f4ed4d31c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PointCoordinatesData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PointCoordinatesData extends AbstractTag -{ - - protected $Id = '0066,0016'; - - protected $Name = 'PointCoordinatesData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Point Coordinates Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PointPositionAccuracy.php b/lib/PHPExiftool/Driver/Tag/DICOM/PointPositionAccuracy.php deleted file mode 100644 index a56219a89..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PointPositionAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PointPositionAccuracy extends AbstractTag -{ - - protected $Id = '0066,0017'; - - protected $Name = 'PointPositionAccuracy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Point Position Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Polarity.php b/lib/PHPExiftool/Driver/Tag/DICOM/Polarity.php deleted file mode 100644 index d4d5579a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Polarity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Polarity extends AbstractTag -{ - - protected $Id = '2020,0020'; - - protected $Name = 'Polarity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Polarity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionOfIsocenterProjection.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionOfIsocenterProjection.php deleted file mode 100644 index 914e91b0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionOfIsocenterProjection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionOfIsocenterProjection extends AbstractTag -{ - - protected $Id = '0018,9430'; - - protected $Name = 'PositionOfIsocenterProjection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Position Of Isocenter Projection'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionReferenceIndicator.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionReferenceIndicator.php deleted file mode 100644 index 425228a6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionReferenceIndicator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionReferenceIndicator extends AbstractTag -{ - - protected $Id = '0020,1040'; - - protected $Name = 'PositionReferenceIndicator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Position Reference Indicator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterDetRotAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterDetRotAngle.php deleted file mode 100644 index 2d1dcff61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterDetRotAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerIsocenterDetRotAngle extends AbstractTag -{ - - protected $Id = '0018,9465'; - - protected $Name = 'PositionerIsocenterDetRotAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Isocenter Det Rot Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterPrimaryAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterPrimaryAngle.php deleted file mode 100644 index 833372890..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterPrimaryAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerIsocenterPrimaryAngle extends AbstractTag -{ - - protected $Id = '0018,9463'; - - protected $Name = 'PositionerIsocenterPrimaryAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Isocenter Primary Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterSecondaryAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterSecondaryAngle.php deleted file mode 100644 index 3b6bbfe3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerIsocenterSecondaryAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerIsocenterSecondaryAngle extends AbstractTag -{ - - protected $Id = '0018,9464'; - - protected $Name = 'PositionerIsocenterSecondaryAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Isocenter Secondary Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerMotion.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerMotion.php deleted file mode 100644 index 7e8ed7469..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerMotion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerMotion extends AbstractTag -{ - - protected $Id = '0018,1500'; - - protected $Name = 'PositionerMotion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Motion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPositionSequence.php deleted file mode 100644 index 293d398ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerPositionSequence extends AbstractTag -{ - - protected $Id = '0018,9405'; - - protected $Name = 'PositionerPositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPrimaryAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPrimaryAngle.php deleted file mode 100644 index 8ef4fcee3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPrimaryAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerPrimaryAngle extends AbstractTag -{ - - protected $Id = '0018,1510'; - - protected $Name = 'PositionerPrimaryAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Primary Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPrimaryAngleIncrement.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPrimaryAngleIncrement.php deleted file mode 100644 index e1acb7749..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerPrimaryAngleIncrement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerPrimaryAngleIncrement extends AbstractTag -{ - - protected $Id = '0018,1520'; - - protected $Name = 'PositionerPrimaryAngleIncrement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Primary Angle Increment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerSecondaryAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerSecondaryAngle.php deleted file mode 100644 index 7be3c2630..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerSecondaryAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerSecondaryAngle extends AbstractTag -{ - - protected $Id = '0018,1511'; - - protected $Name = 'PositionerSecondaryAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Secondary Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerSecondaryAngleIncrement.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerSecondaryAngleIncrement.php deleted file mode 100644 index feea6fed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerSecondaryAngleIncrement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerSecondaryAngleIncrement extends AbstractTag -{ - - protected $Id = '0018,1521'; - - protected $Name = 'PositionerSecondaryAngleIncrement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Secondary Angle Increment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PositionerType.php deleted file mode 100644 index cc5b975cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PositionerType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionerType extends AbstractTag -{ - - protected $Id = '0018,1508'; - - protected $Name = 'PositionerType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Positioner Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PostDeformationMatrixRegistSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PostDeformationMatrixRegistSeq.php deleted file mode 100644 index f58b6df38..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PostDeformationMatrixRegistSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostDeformationMatrixRegistSeq extends AbstractTag -{ - - protected $Id = '0064,0010'; - - protected $Name = 'PostDeformationMatrixRegistSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Post Deformation Matrix Regist Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PostprocessingFunction.php b/lib/PHPExiftool/Driver/Tag/DICOM/PostprocessingFunction.php deleted file mode 100644 index 552148f51..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PostprocessingFunction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostprocessingFunction extends AbstractTag -{ - - protected $Id = '0018,5021'; - - protected $Name = 'PostprocessingFunction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Postprocessing Function'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PpscanParameters.php b/lib/PHPExiftool/Driver/Tag/DICOM/PpscanParameters.php deleted file mode 100644 index 5e6cdbacd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PpscanParameters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PpscanParameters extends AbstractTag -{ - - protected $Id = '0043,101B'; - - protected $Name = 'PpscanParameters'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ppscan Parameters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PreDeformationMatrixRegistSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PreDeformationMatrixRegistSeq.php deleted file mode 100644 index 8bb5a1cc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PreDeformationMatrixRegistSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreDeformationMatrixRegistSeq extends AbstractTag -{ - - protected $Id = '0064,000F'; - - protected $Name = 'PreDeformationMatrixRegistSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pre Deformation Matrix Regist Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PreMedication.php b/lib/PHPExiftool/Driver/Tag/DICOM/PreMedication.php deleted file mode 100644 index a9b591c54..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PreMedication.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreMedication extends AbstractTag -{ - - protected $Id = '0040,0012'; - - protected $Name = 'PreMedication'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pre Medication'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PredecessorDocumentsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PredecessorDocumentsSequence.php deleted file mode 100644 index d21a33814..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PredecessorDocumentsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PredecessorDocumentsSequence extends AbstractTag -{ - - protected $Id = '0040,A360'; - - protected $Name = 'PredecessorDocumentsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Predecessor Documents Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PredictorColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/PredictorColumns.php deleted file mode 100644 index a1e94450d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PredictorColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PredictorColumns extends AbstractTag -{ - - protected $Id = '0028,0081'; - - protected $Name = 'PredictorColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Predictor Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PredictorConstants.php b/lib/PHPExiftool/Driver/Tag/DICOM/PredictorConstants.php deleted file mode 100644 index 7bc4e45b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PredictorConstants.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PredictorConstants extends AbstractTag -{ - - protected $Id = '0028,0082'; - - protected $Name = 'PredictorConstants'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Predictor Constants'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PredictorRows.php b/lib/PHPExiftool/Driver/Tag/DICOM/PredictorRows.php deleted file mode 100644 index 04a15ee37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PredictorRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PredictorRows extends AbstractTag -{ - - protected $Id = '0028,0080'; - - protected $Name = 'PredictorRows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Predictor Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PreferredPlaybackSequencing.php b/lib/PHPExiftool/Driver/Tag/DICOM/PreferredPlaybackSequencing.php deleted file mode 100644 index 255795de9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PreferredPlaybackSequencing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreferredPlaybackSequencing extends AbstractTag -{ - - protected $Id = '0018,1244'; - - protected $Name = 'PreferredPlaybackSequencing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preferred Playback Sequencing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PregnancyStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/PregnancyStatus.php deleted file mode 100644 index a7b786e0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PregnancyStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PregnancyStatus extends AbstractTag -{ - - protected $Id = '0010,21C0'; - - protected $Name = 'PregnancyStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pregnancy Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PreliminaryFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/PreliminaryFlag.php deleted file mode 100644 index 403945282..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PreliminaryFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreliminaryFlag extends AbstractTag -{ - - protected $Id = '0040,A496'; - - protected $Name = 'PreliminaryFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preliminary Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrepPulse.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrepPulse.php deleted file mode 100644 index 86ea2c423..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrepPulse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrepPulse extends AbstractTag -{ - - protected $Id = '0019,10D6'; - - protected $Name = 'PrepPulse'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prep Pulse'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrescanStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrescanStatus.php deleted file mode 100644 index 5d25e2a3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrescanStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrescanStatus extends AbstractTag -{ - - protected $Id = '0019,10CF'; - - protected $Name = 'PrescanStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prescan Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrescanType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrescanType.php deleted file mode 100644 index 23cffd09a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrescanType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrescanType extends AbstractTag -{ - - protected $Id = '0019,10CE'; - - protected $Name = 'PrescanType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prescan Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrescribedFlowAxis.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrescribedFlowAxis.php deleted file mode 100644 index f99a8aa42..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrescribedFlowAxis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrescribedFlowAxis extends AbstractTag -{ - - protected $Id = '0019,10CB'; - - protected $Name = 'PrescribedFlowAxis'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prescribed Flow Axis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrescriptionDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrescriptionDescription.php deleted file mode 100644 index 9076a8c3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrescriptionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrescriptionDescription extends AbstractTag -{ - - protected $Id = '300A,000E'; - - protected $Name = 'PrescriptionDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prescription Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationCreationDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationCreationDate.php deleted file mode 100644 index cbe49e40e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationCreationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationCreationDate extends AbstractTag -{ - - protected $Id = '0070,0082'; - - protected $Name = 'PresentationCreationDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Creation Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationCreationTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationCreationTime.php deleted file mode 100644 index 20855516f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationCreationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationCreationTime extends AbstractTag -{ - - protected $Id = '0070,0083'; - - protected $Name = 'PresentationCreationTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Creation Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationGroupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationGroupNumber.php deleted file mode 100644 index aec8c099d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationGroupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationGroupNumber extends AbstractTag -{ - - protected $Id = '003A,0241'; - - protected $Name = 'PresentationGroupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Group Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationIntentType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationIntentType.php deleted file mode 100644 index 9c6aa0ca2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationIntentType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationIntentType extends AbstractTag -{ - - protected $Id = '0008,0068'; - - protected $Name = 'PresentationIntentType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Intent Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTContentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTContentSequence.php deleted file mode 100644 index 585f7dcc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTContentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationLUTContentSequence extends AbstractTag -{ - - protected $Id = '2130,0080'; - - protected $Name = 'PresentationLUTContentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation LUT Content Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTFlag.php deleted file mode 100644 index 229087b96..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationLUTFlag extends AbstractTag -{ - - protected $Id = '2000,0069'; - - protected $Name = 'PresentationLUTFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation LUT Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTSequence.php deleted file mode 100644 index a5e45ddd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationLUTSequence extends AbstractTag -{ - - protected $Id = '2050,0010'; - - protected $Name = 'PresentationLUTSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation LUT Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTShape.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTShape.php deleted file mode 100644 index 994ad0e88..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationLUTShape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationLUTShape extends AbstractTag -{ - - protected $Id = '2050,0020'; - - protected $Name = 'PresentationLUTShape'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation LUT Shape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelAspectRatio.php deleted file mode 100644 index 132be8fd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationPixelAspectRatio extends AbstractTag -{ - - protected $Id = '0070,0102'; - - protected $Name = 'PresentationPixelAspectRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Pixel Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelMagRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelMagRatio.php deleted file mode 100644 index 461c8e3d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelMagRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationPixelMagRatio extends AbstractTag -{ - - protected $Id = '0070,0103'; - - protected $Name = 'PresentationPixelMagRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Pixel Mag Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelSpacing.php deleted file mode 100644 index 798163626..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationPixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationPixelSpacing extends AbstractTag -{ - - protected $Id = '0070,0101'; - - protected $Name = 'PresentationPixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationSizeMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/PresentationSizeMode.php deleted file mode 100644 index 95267f97a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PresentationSizeMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationSizeMode extends AbstractTag -{ - - protected $Id = '0070,0100'; - - protected $Name = 'PresentationSizeMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Size Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryAnatomicStructureSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryAnatomicStructureSequence.php deleted file mode 100644 index 5dc4b50ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryAnatomicStructureSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryAnatomicStructureSequence extends AbstractTag -{ - - protected $Id = '0008,2228'; - - protected $Name = 'PrimaryAnatomicStructureSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Anatomic Structure Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryCountsAccumulated.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryCountsAccumulated.php deleted file mode 100644 index 5c52966e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryCountsAccumulated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryCountsAccumulated extends AbstractTag -{ - - protected $Id = '0054,1310'; - - protected $Name = 'PrimaryCountsAccumulated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Counts Accumulated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryDosimeterUnit.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryDosimeterUnit.php deleted file mode 100644 index d0bc496ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryDosimeterUnit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryDosimeterUnit extends AbstractTag -{ - - protected $Id = '300A,00B3'; - - protected $Name = 'PrimaryDosimeterUnit'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Dosimeter Unit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerIncrement.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerIncrement.php deleted file mode 100644 index ab27cc64b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerIncrement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryPositionerIncrement extends AbstractTag -{ - - protected $Id = '0018,9514'; - - protected $Name = 'PrimaryPositionerIncrement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Positioner Increment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerScanArc.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerScanArc.php deleted file mode 100644 index 56babb2db..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerScanArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryPositionerScanArc extends AbstractTag -{ - - protected $Id = '0018,9508'; - - protected $Name = 'PrimaryPositionerScanArc'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Positioner Scan Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerScanStartAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerScanStartAngle.php deleted file mode 100644 index cb11b69ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryPositionerScanStartAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryPositionerScanStartAngle extends AbstractTag -{ - - protected $Id = '0018,9510'; - - protected $Name = 'PrimaryPositionerScanStartAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Positioner Scan Start Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryReceiverSuiteAndHost.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryReceiverSuiteAndHost.php deleted file mode 100644 index 72b4ec38e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimaryReceiverSuiteAndHost.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryReceiverSuiteAndHost extends AbstractTag -{ - - protected $Id = '0025,101A'; - - protected $Name = 'PrimaryReceiverSuiteAndHost'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Receiver Suite And Host'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimarySpeedCorrectionUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimarySpeedCorrectionUsed.php deleted file mode 100644 index ae3ce5a28..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimarySpeedCorrectionUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimarySpeedCorrectionUsed extends AbstractTag -{ - - protected $Id = '0019,10DC'; - - protected $Name = 'PrimarySpeedCorrectionUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Speed Correction Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrimitivePointIndexList.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrimitivePointIndexList.php deleted file mode 100644 index 4ee704296..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrimitivePointIndexList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimitivePointIndexList extends AbstractTag -{ - - protected $Id = '0066,0029'; - - protected $Name = 'PrimitivePointIndexList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primitive Point Index List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrintJobDescriptionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrintJobDescriptionSequence.php deleted file mode 100644 index 070ece9b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrintJobDescriptionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintJobDescriptionSequence extends AbstractTag -{ - - protected $Id = '2120,0050'; - - protected $Name = 'PrintJobDescriptionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Job Description Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrintJobID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrintJobID.php deleted file mode 100644 index 38aaee2f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrintJobID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintJobID extends AbstractTag -{ - - protected $Id = '2100,0010'; - - protected $Name = 'PrintJobID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Job ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrintManagementCapabilitiesSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrintManagementCapabilitiesSeq.php deleted file mode 100644 index fb2830944..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrintManagementCapabilitiesSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintManagementCapabilitiesSeq extends AbstractTag -{ - - protected $Id = '2130,0010'; - - protected $Name = 'PrintManagementCapabilitiesSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Management Capabilities Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrintPriority.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrintPriority.php deleted file mode 100644 index a63b9b97d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrintPriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintPriority extends AbstractTag -{ - - protected $Id = '2000,0020'; - - protected $Name = 'PrintPriority'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrintQueueID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrintQueueID.php deleted file mode 100644 index d9083710a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrintQueueID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintQueueID extends AbstractTag -{ - - protected $Id = '2110,0099'; - - protected $Name = 'PrintQueueID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Queue ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterCharacteristicsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrinterCharacteristicsSequence.php deleted file mode 100644 index a392c2dce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterCharacteristicsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrinterCharacteristicsSequence extends AbstractTag -{ - - protected $Id = '2130,0015'; - - protected $Name = 'PrinterCharacteristicsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printer Characteristics Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterConfigurationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrinterConfigurationSequence.php deleted file mode 100644 index 58e77c68a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterConfigurationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrinterConfigurationSequence extends AbstractTag -{ - - protected $Id = '2000,001E'; - - protected $Name = 'PrinterConfigurationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printer Configuration Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrinterName.php deleted file mode 100644 index 5ed46057e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrinterName extends AbstractTag -{ - - protected $Id = '2110,0030'; - - protected $Name = 'PrinterName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterPixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrinterPixelSpacing.php deleted file mode 100644 index a23dbfea2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterPixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrinterPixelSpacing extends AbstractTag -{ - - protected $Id = '2010,0376'; - - protected $Name = 'PrinterPixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printer Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterResolutionID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrinterResolutionID.php deleted file mode 100644 index 3a264a77b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterResolutionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrinterResolutionID extends AbstractTag -{ - - protected $Id = '2010,0052'; - - protected $Name = 'PrinterResolutionID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printer Resolution ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrinterStatus.php deleted file mode 100644 index c444ac20a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrinterStatus extends AbstractTag -{ - - protected $Id = '2110,0010'; - - protected $Name = 'PrinterStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printer Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterStatusInfo.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrinterStatusInfo.php deleted file mode 100644 index 0e012f8ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrinterStatusInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrinterStatusInfo extends AbstractTag -{ - - protected $Id = '2110,0020'; - - protected $Name = 'PrinterStatusInfo'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printer Status Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrintingBitDepth.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrintingBitDepth.php deleted file mode 100644 index 0022e4f41..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrintingBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintingBitDepth extends AbstractTag -{ - - protected $Id = '2000,00A1'; - - protected $Name = 'PrintingBitDepth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Printing Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrismSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrismSequence.php deleted file mode 100644 index 28afb37c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrismSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrismSequence extends AbstractTag -{ - - protected $Id = '0046,0028'; - - protected $Name = 'PrismSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prism Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateInformation.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrivateInformation.php deleted file mode 100644 index 0c06342d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrivateInformation extends AbstractTag -{ - - protected $Id = '0002,0102'; - - protected $Name = 'PrivateInformation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Private Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateInformationCreatorUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrivateInformationCreatorUID.php deleted file mode 100644 index f09204f4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateInformationCreatorUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrivateInformationCreatorUID extends AbstractTag -{ - - protected $Id = '0002,0100'; - - protected $Name = 'PrivateInformationCreatorUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Private Information Creator UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateRecordUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrivateRecordUID.php deleted file mode 100644 index fb681fa1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateRecordUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrivateRecordUID extends AbstractTag -{ - - protected $Id = '0004,1432'; - - protected $Name = 'PrivateRecordUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Private Record UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateScanOptions.php b/lib/PHPExiftool/Driver/Tag/DICOM/PrivateScanOptions.php deleted file mode 100644 index 6a60e7a16..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PrivateScanOptions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrivateScanOptions extends AbstractTag -{ - - protected $Id = '0043,102B'; - - protected $Name = 'PrivateScanOptions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Private Scan Options'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProcStepDiscontinueReasonCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProcStepDiscontinueReasonCodeSeq.php deleted file mode 100644 index e4cd918de..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProcStepDiscontinueReasonCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcStepDiscontinueReasonCodeSeq extends AbstractTag -{ - - protected $Id = '0040,0281'; - - protected $Name = 'ProcStepDiscontinueReasonCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Proc Step Discontinue Reason Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureCodeSequence.php deleted file mode 100644 index 1324201c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcedureCodeSequence extends AbstractTag -{ - - protected $Id = '0008,1032'; - - protected $Name = 'ProcedureCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Procedure Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureStepLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureStepLabel.php deleted file mode 100644 index 542c26114..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureStepLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcedureStepLabel extends AbstractTag -{ - - protected $Id = '0074,1204'; - - protected $Name = 'ProcedureStepLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Procedure Step Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureStepRelationshipType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureStepRelationshipType.php deleted file mode 100644 index 7ea0b17d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProcedureStepRelationshipType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcedureStepRelationshipType extends AbstractTag -{ - - protected $Id = '0074,1222'; - - protected $Name = 'ProcedureStepRelationshipType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Procedure Step Relationship Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProcessingFunction.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProcessingFunction.php deleted file mode 100644 index f7d3947f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProcessingFunction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcessingFunction extends AbstractTag -{ - - protected $Id = '0018,5020'; - - protected $Name = 'ProcessingFunction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Processing Function'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductDescription.php deleted file mode 100644 index 4dcecf221..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductDescription extends AbstractTag -{ - - protected $Id = '0044,0009'; - - protected $Name = 'ProductDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductExpirationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductExpirationDateTime.php deleted file mode 100644 index b923421a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductExpirationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductExpirationDateTime extends AbstractTag -{ - - protected $Id = '0044,000B'; - - protected $Name = 'ProductExpirationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Expiration Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductID.php deleted file mode 100644 index 6fe6cdcda..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductID extends AbstractTag -{ - - protected $Id = '0009,1004'; - - protected $Name = 'ProductID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductLotIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductLotIdentifier.php deleted file mode 100644 index fc6894f1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductLotIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductLotIdentifier extends AbstractTag -{ - - protected $Id = '0044,000A'; - - protected $Name = 'ProductLotIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Lot Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductName.php deleted file mode 100644 index 97cf77767..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductName extends AbstractTag -{ - - protected $Id = '0044,0008'; - - protected $Name = 'ProductName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductPackageIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductPackageIdentifier.php deleted file mode 100644 index 2239fdaf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductPackageIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductPackageIdentifier extends AbstractTag -{ - - protected $Id = '0044,0001'; - - protected $Name = 'ProductPackageIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Package Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductParameterSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductParameterSequence.php deleted file mode 100644 index 66f7a5db7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductParameterSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductParameterSequence extends AbstractTag -{ - - protected $Id = '0044,0013'; - - protected $Name = 'ProductParameterSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Parameter Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProductTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProductTypeCodeSequence.php deleted file mode 100644 index 9e9181ac4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProductTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0044,0007'; - - protected $Name = 'ProductTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionAlgorithm.php deleted file mode 100644 index 3662e2fc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectionAlgorithm extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ProjectionAlgorithm'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Projection Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionAngle.php deleted file mode 100644 index 346afa959..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectionAngle extends AbstractTag -{ - - protected $Id = '0019,10BE'; - - protected $Name = 'ProjectionAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Projection Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionEponymousNameCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionEponymousNameCodeSeq.php deleted file mode 100644 index ba1518b9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionEponymousNameCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectionEponymousNameCodeSeq extends AbstractTag -{ - - protected $Id = '0018,5104'; - - protected $Name = 'ProjectionEponymousNameCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Projection Eponymous Name Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionPixelCalibrationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionPixelCalibrationSequence.php deleted file mode 100644 index 6f4cacdc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProjectionPixelCalibrationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectionPixelCalibrationSequence extends AbstractTag -{ - - protected $Id = '0018,9401'; - - protected $Name = 'ProjectionPixelCalibrationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Projection Pixel Calibration Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProposedStudySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProposedStudySequence.php deleted file mode 100644 index a962b4d1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProposedStudySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProposedStudySequence extends AbstractTag -{ - - protected $Id = '2130,00A0'; - - protected $Name = 'ProposedStudySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Proposed Study Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProtocolContextSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProtocolContextSequence.php deleted file mode 100644 index ed5349ad7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProtocolContextSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProtocolContextSequence extends AbstractTag -{ - - protected $Id = '0040,0440'; - - protected $Name = 'ProtocolContextSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Protocol Context Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ProtocolName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ProtocolName.php deleted file mode 100644 index dbe0aea42..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ProtocolName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProtocolName extends AbstractTag -{ - - protected $Id = '0018,1030'; - - protected $Name = 'ProtocolName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Protocol Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PseudoColorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/PseudoColorType.php deleted file mode 100644 index 007ce4f32..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PseudoColorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PseudoColorType extends AbstractTag -{ - - protected $Id = '0072,0704'; - - protected $Name = 'PseudoColorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pseudo Color Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseRepetitionFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseRepetitionFrequency.php deleted file mode 100644 index f41479cee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseRepetitionFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseRepetitionFrequency extends AbstractTag -{ - - protected $Id = '0018,6032'; - - protected $Name = 'PulseRepetitionFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Repetition Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseRepetitionInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseRepetitionInterval.php deleted file mode 100644 index e26120242..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseRepetitionInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseRepetitionInterval extends AbstractTag -{ - - protected $Id = '300A,028C'; - - protected $Name = 'PulseRepetitionInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Repetition Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqDate.php deleted file mode 100644 index ae29c3def..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseSeqDate extends AbstractTag -{ - - protected $Id = '0019,109D'; - - protected $Name = 'PulseSeqDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Seq Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqMode.php deleted file mode 100644 index b0c496de7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseSeqMode extends AbstractTag -{ - - protected $Id = '0019,109B'; - - protected $Name = 'PulseSeqMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Seq Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqName.php deleted file mode 100644 index 127b1fd7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSeqName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseSeqName extends AbstractTag -{ - - protected $Id = '0019,109C'; - - protected $Name = 'PulseSeqName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Seq Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseSequence.php deleted file mode 100644 index 60c37d1d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseSequence extends AbstractTag -{ - - protected $Id = '0027,1032'; - - protected $Name = 'PulseSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSequenceName.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseSequenceName.php deleted file mode 100644 index 16c841485..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseSequenceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseSequenceName extends AbstractTag -{ - - protected $Id = '0018,9005'; - - protected $Name = 'PulseSequenceName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Sequence Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PulseTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/PulseTime.php deleted file mode 100644 index 2cd962c5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PulseTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulseTime extends AbstractTag -{ - - protected $Id = '0019,1091'; - - protected $Name = 'PulseTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulse Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PupilDilated.php b/lib/PHPExiftool/Driver/Tag/DICOM/PupilDilated.php deleted file mode 100644 index 1dc84ecc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PupilDilated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PupilDilated extends AbstractTag -{ - - protected $Id = '0022,000D'; - - protected $Name = 'PupilDilated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pupil Dilated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PupilSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/PupilSize.php deleted file mode 100644 index 0a9025c34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PupilSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PupilSize extends AbstractTag -{ - - protected $Id = '0046,0044'; - - protected $Name = 'PupilSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pupil Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/PurposeOfReferenceCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/PurposeOfReferenceCodeSequence.php deleted file mode 100644 index 04096e62c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/PurposeOfReferenceCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurposeOfReferenceCodeSequence extends AbstractTag -{ - - protected $Id = '0040,A170'; - - protected $Name = 'PurposeOfReferenceCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Purpose Of Reference Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/QuadratureReceiveCoil.php b/lib/PHPExiftool/Driver/Tag/DICOM/QuadratureReceiveCoil.php deleted file mode 100644 index 33711b477..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/QuadratureReceiveCoil.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuadratureReceiveCoil extends AbstractTag -{ - - protected $Id = '0018,9044'; - - protected $Name = 'QuadratureReceiveCoil'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quadrature Receive Coil'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/QualityControlImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/QualityControlImage.php deleted file mode 100644 index b34585e56..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/QualityControlImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QualityControlImage extends AbstractTag -{ - - protected $Id = '0028,0300'; - - protected $Name = 'QualityControlImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quality Control Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Quantity.php b/lib/PHPExiftool/Driver/Tag/DICOM/Quantity.php deleted file mode 100644 index 78db7fc90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Quantity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quantity extends AbstractTag -{ - - protected $Id = '0040,0294'; - - protected $Name = 'Quantity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quantity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/QuantitySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/QuantitySequence.php deleted file mode 100644 index 45eb8903f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/QuantitySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuantitySequence extends AbstractTag -{ - - protected $Id = '0040,0293'; - - protected $Name = 'QuantitySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quantity Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/QueryRetrieveLevel.php b/lib/PHPExiftool/Driver/Tag/DICOM/QueryRetrieveLevel.php deleted file mode 100644 index 37d98b18c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/QueryRetrieveLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QueryRetrieveLevel extends AbstractTag -{ - - protected $Id = '0008,0052'; - - protected $Name = 'QueryRetrieveLevel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Query Retrieve Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/QueueStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/QueueStatus.php deleted file mode 100644 index b70324778..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/QueueStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QueueStatus extends AbstractTag -{ - - protected $Id = '2120,0010'; - - protected $Name = 'QueueStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Queue Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RACordOfTargetReconCenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/RACordOfTargetReconCenter.php deleted file mode 100644 index 099c6426f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RACordOfTargetReconCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RACordOfTargetReconCenter extends AbstractTag -{ - - protected $Id = '0043,1031'; - - protected $Name = 'RACordOfTargetReconCenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RA Cord Of Target Recon Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForAnteriorPosterior.php b/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForAnteriorPosterior.php deleted file mode 100644 index 75f193ca0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForAnteriorPosterior.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RASLetterForAnteriorPosterior extends AbstractTag -{ - - protected $Id = '0027,1053'; - - protected $Name = 'RASLetterForAnteriorPosterior'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RAS Letter For Anterior Posterior'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForScoutEndLoc.php b/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForScoutEndLoc.php deleted file mode 100644 index f13f2952b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForScoutEndLoc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RASLetterForScoutEndLoc extends AbstractTag -{ - - protected $Id = '0027,1055'; - - protected $Name = 'RASLetterForScoutEndLoc'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RAS Letter For Scout End Loc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForScoutStartLoc.php b/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForScoutStartLoc.php deleted file mode 100644 index f41f67c5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForScoutStartLoc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RASLetterForScoutStartLoc extends AbstractTag -{ - - protected $Id = '0027,1054'; - - protected $Name = 'RASLetterForScoutStartLoc'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RAS Letter For Scout Start Loc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForSideOfImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForSideOfImage.php deleted file mode 100644 index af9038889..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterForSideOfImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RASLetterForSideOfImage extends AbstractTag -{ - - protected $Id = '0027,1052'; - - protected $Name = 'RASLetterForSideOfImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RAS Letter For Side Of Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterOfImageLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterOfImageLocation.php deleted file mode 100644 index e1d3b8eb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RASLetterOfImageLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RASLetterOfImageLocation extends AbstractTag -{ - - protected $Id = '0027,1040'; - - protected $Name = 'RASLetterOfImageLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RAS Letter Of Image Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RCoordOfBottomRightCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/RCoordOfBottomRightCorner.php deleted file mode 100644 index 1f9f9f9ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RCoordOfBottomRightCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RCoordOfBottomRightCorner extends AbstractTag -{ - - protected $Id = '0027,104B'; - - protected $Name = 'RCoordOfBottomRightCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R Coord Of Bottom Right Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RCoordOfTopRightCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/RCoordOfTopRightCorner.php deleted file mode 100644 index befc001cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RCoordOfTopRightCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RCoordOfTopRightCorner extends AbstractTag -{ - - protected $Id = '0027,1048'; - - protected $Name = 'RCoordOfTopRightCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R Coord Of Top Right Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RFEchoTrainLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/RFEchoTrainLength.php deleted file mode 100644 index f40efe890..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RFEchoTrainLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RFEchoTrainLength extends AbstractTag -{ - - protected $Id = '0018,9240'; - - protected $Name = 'RFEchoTrainLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RF Echo Train Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RGBLUTTransferFunction.php b/lib/PHPExiftool/Driver/Tag/DICOM/RGBLUTTransferFunction.php deleted file mode 100644 index a7d28861d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RGBLUTTransferFunction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RGBLUTTransferFunction extends AbstractTag -{ - - protected $Id = '0028,140F'; - - protected $Name = 'RGBLUTTransferFunction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RGBLUT Transfer Function'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIArea.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIArea.php deleted file mode 100644 index 786207f05..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIArea.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIArea extends AbstractTag -{ - - protected $Id = '60xx,1301'; - - protected $Name = 'ROIArea'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Area'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIContourSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIContourSequence.php deleted file mode 100644 index 09037fbf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIContourSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIContourSequence extends AbstractTag -{ - - protected $Id = '3006,0039'; - - protected $Name = 'ROIContourSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Contour Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIDescription.php deleted file mode 100644 index 64f0af9ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIDescription extends AbstractTag -{ - - protected $Id = '3006,0028'; - - protected $Name = 'ROIDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIDisplayColor.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIDisplayColor.php deleted file mode 100644 index 830e2bd9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIDisplayColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIDisplayColor extends AbstractTag -{ - - protected $Id = '3006,002A'; - - protected $Name = 'ROIDisplayColor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Display Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompAtomicMassFraction.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompAtomicMassFraction.php deleted file mode 100644 index 4ef8d5114..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompAtomicMassFraction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIElementalCompAtomicMassFraction extends AbstractTag -{ - - protected $Id = '3006,00B8'; - - protected $Name = 'ROIElementalCompAtomicMassFraction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Elemental Comp Atomic Mass Fraction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompAtomicNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompAtomicNumber.php deleted file mode 100644 index 5cd770faa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompAtomicNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIElementalCompAtomicNumber extends AbstractTag -{ - - protected $Id = '3006,00B7'; - - protected $Name = 'ROIElementalCompAtomicNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Elemental Comp Atomic Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompositionSequence.php deleted file mode 100644 index 9f1d22ca1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIElementalCompositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIElementalCompositionSequence extends AbstractTag -{ - - protected $Id = '3006,00B6'; - - protected $Name = 'ROIElementalCompositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Elemental Composition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIGenerationAlgorithm.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIGenerationAlgorithm.php deleted file mode 100644 index 8565de3dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIGenerationAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIGenerationAlgorithm extends AbstractTag -{ - - protected $Id = '3006,0036'; - - protected $Name = 'ROIGenerationAlgorithm'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Generation Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIGenerationDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIGenerationDescription.php deleted file mode 100644 index 92c8efe68..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIGenerationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIGenerationDescription extends AbstractTag -{ - - protected $Id = '3006,0038'; - - protected $Name = 'ROIGenerationDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Generation Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIInterpreter.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIInterpreter.php deleted file mode 100644 index d5e2a858a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIInterpreter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIInterpreter extends AbstractTag -{ - - protected $Id = '3006,00A6'; - - protected $Name = 'ROIInterpreter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Interpreter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIMean.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIMean.php deleted file mode 100644 index f98c787c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIMean.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIMean extends AbstractTag -{ - - protected $Id = '60xx,1302'; - - protected $Name = 'ROIMean'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Mean'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIName.php deleted file mode 100644 index afe9234a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIName extends AbstractTag -{ - - protected $Id = '3006,0026'; - - protected $Name = 'ROIName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROINumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROINumber.php deleted file mode 100644 index adc7201eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROINumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROINumber extends AbstractTag -{ - - protected $Id = '3006,0022'; - - protected $Name = 'ROINumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIObservationDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIObservationDescription.php deleted file mode 100644 index 45db3a8da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIObservationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIObservationDescription extends AbstractTag -{ - - protected $Id = '3006,0088'; - - protected $Name = 'ROIObservationDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Observation Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIObservationLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIObservationLabel.php deleted file mode 100644 index ada6209be..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIObservationLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIObservationLabel extends AbstractTag -{ - - protected $Id = '3006,0085'; - - protected $Name = 'ROIObservationLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Observation Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalPropertiesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalPropertiesSequence.php deleted file mode 100644 index 9096c8f34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalPropertiesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIPhysicalPropertiesSequence extends AbstractTag -{ - - protected $Id = '3006,00B0'; - - protected $Name = 'ROIPhysicalPropertiesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Physical Properties Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalProperty.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalProperty.php deleted file mode 100644 index 92736b1e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalProperty.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIPhysicalProperty extends AbstractTag -{ - - protected $Id = '3006,00B2'; - - protected $Name = 'ROIPhysicalProperty'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Physical Property'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalPropertyValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalPropertyValue.php deleted file mode 100644 index 77f989a64..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIPhysicalPropertyValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIPhysicalPropertyValue extends AbstractTag -{ - - protected $Id = '3006,00B4'; - - protected $Name = 'ROIPhysicalPropertyValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Physical Property Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIStandardDeviation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIStandardDeviation.php deleted file mode 100644 index 8bffc785f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIStandardDeviation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIStandardDeviation extends AbstractTag -{ - - protected $Id = '60xx,1303'; - - protected $Name = 'ROIStandardDeviation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Standard Deviation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ROIVolume.php b/lib/PHPExiftool/Driver/Tag/DICOM/ROIVolume.php deleted file mode 100644 index c2e640fa8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ROIVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIVolume extends AbstractTag -{ - - protected $Id = '3006,002C'; - - protected $Name = 'ROIVolume'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RRIntervalTimeNominal.php b/lib/PHPExiftool/Driver/Tag/DICOM/RRIntervalTimeNominal.php deleted file mode 100644 index 426a2834c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RRIntervalTimeNominal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RRIntervalTimeNominal extends AbstractTag -{ - - protected $Id = '0020,9251'; - - protected $Name = 'RRIntervalTimeNominal'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RR Interval Time Nominal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RRIntervalVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/RRIntervalVector.php deleted file mode 100644 index 436efd864..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RRIntervalVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RRIntervalVector extends AbstractTag -{ - - protected $Id = '0054,0060'; - - protected $Name = 'RRIntervalVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RR Interval Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTBeamLimitingDeviceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTBeamLimitingDeviceType.php deleted file mode 100644 index 6c2a02e9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTBeamLimitingDeviceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTBeamLimitingDeviceType extends AbstractTag -{ - - protected $Id = '300A,00B8'; - - protected $Name = 'RTBeamLimitingDeviceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Beam Limiting Device Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTDoseROISequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTDoseROISequence.php deleted file mode 100644 index c07667230..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTDoseROISequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTDoseROISequence extends AbstractTag -{ - - protected $Id = '3004,0010'; - - protected $Name = 'RTDoseROISequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Dose ROI Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTImageDescription.php deleted file mode 100644 index cb504fc77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTImageDescription extends AbstractTag -{ - - protected $Id = '3002,0004'; - - protected $Name = 'RTImageDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Image Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTImageLabel.php deleted file mode 100644 index 251df37b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTImageLabel extends AbstractTag -{ - - protected $Id = '3002,0002'; - - protected $Name = 'RTImageLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Image Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageName.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTImageName.php deleted file mode 100644 index eb85d74a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTImageName extends AbstractTag -{ - - protected $Id = '3002,0003'; - - protected $Name = 'RTImageName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Image Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTImageOrientation.php deleted file mode 100644 index 5fa5a86c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTImageOrientation extends AbstractTag -{ - - protected $Id = '3002,0010'; - - protected $Name = 'RTImageOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Image Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTImagePlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTImagePlane.php deleted file mode 100644 index 77212351e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTImagePlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTImagePlane extends AbstractTag -{ - - protected $Id = '3002,000C'; - - protected $Name = 'RTImagePlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Image Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTImagePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTImagePosition.php deleted file mode 100644 index db5cb3551..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTImagePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTImagePosition extends AbstractTag -{ - - protected $Id = '3002,0012'; - - protected $Name = 'RTImagePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Image Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageSID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTImageSID.php deleted file mode 100644 index d25c06f03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTImageSID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTImageSID extends AbstractTag -{ - - protected $Id = '3002,0026'; - - protected $Name = 'RTImageSID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Image SID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanDate.php deleted file mode 100644 index 12986f259..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPlanDate extends AbstractTag -{ - - protected $Id = '300A,0006'; - - protected $Name = 'RTPlanDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Plan Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanDescription.php deleted file mode 100644 index 619b4838b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPlanDescription extends AbstractTag -{ - - protected $Id = '300A,0004'; - - protected $Name = 'RTPlanDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Plan Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanGeometry.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanGeometry.php deleted file mode 100644 index 297110963..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanGeometry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPlanGeometry extends AbstractTag -{ - - protected $Id = '300A,000C'; - - protected $Name = 'RTPlanGeometry'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Plan Geometry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanLabel.php deleted file mode 100644 index 399f580ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPlanLabel extends AbstractTag -{ - - protected $Id = '300A,0002'; - - protected $Name = 'RTPlanLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Plan Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanName.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanName.php deleted file mode 100644 index adf011198..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPlanName extends AbstractTag -{ - - protected $Id = '300A,0003'; - - protected $Name = 'RTPlanName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Plan Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanRelationship.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanRelationship.php deleted file mode 100644 index b9529728c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanRelationship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPlanRelationship extends AbstractTag -{ - - protected $Id = '300A,0055'; - - protected $Name = 'RTPlanRelationship'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Plan Relationship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanTime.php deleted file mode 100644 index b6f1a1ebf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTPlanTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPlanTime extends AbstractTag -{ - - protected $Id = '300A,0007'; - - protected $Name = 'RTPlanTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Plan Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIIdentificationCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTROIIdentificationCodeSequence.php deleted file mode 100644 index 13e957aea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIIdentificationCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTROIIdentificationCodeSequence extends AbstractTag -{ - - protected $Id = '3006,0086'; - - protected $Name = 'RTROIIdentificationCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RTROI Identification Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIInterpretedType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTROIInterpretedType.php deleted file mode 100644 index e0ed1209e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIInterpretedType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTROIInterpretedType extends AbstractTag -{ - - protected $Id = '3006,00A4'; - - protected $Name = 'RTROIInterpretedType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RTROI Interpreted Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIObservationsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTROIObservationsSequence.php deleted file mode 100644 index 2ad91e157..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIObservationsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTROIObservationsSequence extends AbstractTag -{ - - protected $Id = '3006,0080'; - - protected $Name = 'RTROIObservationsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RTROI Observations Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIRelationship.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTROIRelationship.php deleted file mode 100644 index 348e23146..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTROIRelationship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTROIRelationship extends AbstractTag -{ - - protected $Id = '3006,0033'; - - protected $Name = 'RTROIRelationship'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RTROI Relationship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTReferencedSeriesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTReferencedSeriesSequence.php deleted file mode 100644 index ffce24744..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTReferencedSeriesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTReferencedSeriesSequence extends AbstractTag -{ - - protected $Id = '3006,0014'; - - protected $Name = 'RTReferencedSeriesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Referenced Series Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTReferencedStudySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTReferencedStudySequence.php deleted file mode 100644 index 05ce4408d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTReferencedStudySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTReferencedStudySequence extends AbstractTag -{ - - protected $Id = '3006,0012'; - - protected $Name = 'RTReferencedStudySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Referenced Study Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RTRelatedROISequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RTRelatedROISequence.php deleted file mode 100644 index d8664b552..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RTRelatedROISequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTRelatedROISequence extends AbstractTag -{ - - protected $Id = '3006,0030'; - - protected $Name = 'RTRelatedROISequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RT Related ROI Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RWavePointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/RWavePointer.php deleted file mode 100644 index 26083d993..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RWavePointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RWavePointer extends AbstractTag -{ - - protected $Id = '0028,6040'; - - protected $Name = 'RWavePointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R Wave Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RWaveTimeVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/RWaveTimeVector.php deleted file mode 100644 index 82b99fd6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RWaveTimeVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RWaveTimeVector extends AbstractTag -{ - - protected $Id = '0018,6060'; - - protected $Name = 'RWaveTimeVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R Wave Time Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadialPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadialPosition.php deleted file mode 100644 index 3b902d211..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadialPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadialPosition extends AbstractTag -{ - - protected $Id = '0018,1142'; - - protected $Name = 'RadialPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radial Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationAtomicNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationAtomicNumber.php deleted file mode 100644 index 33ad5b51a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationAtomicNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationAtomicNumber extends AbstractTag -{ - - protected $Id = '300A,0304'; - - protected $Name = 'RadiationAtomicNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Atomic Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationChargeState.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationChargeState.php deleted file mode 100644 index 8442eb643..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationChargeState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationChargeState extends AbstractTag -{ - - protected $Id = '300A,0306'; - - protected $Name = 'RadiationChargeState'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Charge State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineName.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineName.php deleted file mode 100644 index 59338d6f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationMachineName extends AbstractTag -{ - - protected $Id = '3002,0020'; - - protected $Name = 'RadiationMachineName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Machine Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineSAD.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineSAD.php deleted file mode 100644 index f58b0cf4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineSAD.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationMachineSAD extends AbstractTag -{ - - protected $Id = '3002,0022'; - - protected $Name = 'RadiationMachineSAD'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Machine SAD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineSSD.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineSSD.php deleted file mode 100644 index 7fc5cc7c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMachineSSD.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationMachineSSD extends AbstractTag -{ - - protected $Id = '3002,0024'; - - protected $Name = 'RadiationMachineSSD'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Machine SSD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMassNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMassNumber.php deleted file mode 100644 index 2085ae110..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMassNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationMassNumber extends AbstractTag -{ - - protected $Id = '300A,0302'; - - protected $Name = 'RadiationMassNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Mass Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMode.php deleted file mode 100644 index 8f2c81c46..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationMode extends AbstractTag -{ - - protected $Id = '0018,115A'; - - protected $Name = 'RadiationMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationSetting.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationSetting.php deleted file mode 100644 index b7c90ca14..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationSetting extends AbstractTag -{ - - protected $Id = '0018,1155'; - - protected $Name = 'RadiationSetting'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiationType.php deleted file mode 100644 index a8521d4ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiationType extends AbstractTag -{ - - protected $Id = '300A,00C6'; - - protected $Name = 'RadiationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Radionuclide.php b/lib/PHPExiftool/Driver/Tag/DICOM/Radionuclide.php deleted file mode 100644 index 44483df71..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Radionuclide.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Radionuclide extends AbstractTag -{ - - protected $Id = '0018,0030'; - - protected $Name = 'Radionuclide'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radionuclide'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideCodeSequence.php deleted file mode 100644 index e10fe7a7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadionuclideCodeSequence extends AbstractTag -{ - - protected $Id = '0054,0300'; - - protected $Name = 'RadionuclideCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radionuclide Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideHalfLife.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideHalfLife.php deleted file mode 100644 index 9f00c5b54..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideHalfLife.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadionuclideHalfLife extends AbstractTag -{ - - protected $Id = '0018,1075'; - - protected $Name = 'RadionuclideHalfLife'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radionuclide Half Life'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclidePositronFraction.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclidePositronFraction.php deleted file mode 100644 index bba893d98..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclidePositronFraction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadionuclidePositronFraction extends AbstractTag -{ - - protected $Id = '0018,1076'; - - protected $Name = 'RadionuclidePositronFraction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radionuclide Positron Fraction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideTotalDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideTotalDose.php deleted file mode 100644 index ccd05fce5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadionuclideTotalDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadionuclideTotalDose extends AbstractTag -{ - - protected $Id = '0018,1074'; - - protected $Name = 'RadionuclideTotalDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radionuclide Total Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Radiopharmaceutical.php b/lib/PHPExiftool/Driver/Tag/DICOM/Radiopharmaceutical.php deleted file mode 100644 index 6b5f756c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Radiopharmaceutical.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Radiopharmaceutical extends AbstractTag -{ - - protected $Id = '0018,0031'; - - protected $Name = 'Radiopharmaceutical'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalCodeSequence.php deleted file mode 100644 index 1d3ea115d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalCodeSequence extends AbstractTag -{ - - protected $Id = '0054,0304'; - - protected $Name = 'RadiopharmaceuticalCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalInformationSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalInformationSeq.php deleted file mode 100644 index 7af93e7fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalInformationSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalInformationSeq extends AbstractTag -{ - - protected $Id = '0054,0016'; - - protected $Name = 'RadiopharmaceuticalInformationSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Information Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalRoute.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalRoute.php deleted file mode 100644 index 25038583b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalRoute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalRoute extends AbstractTag -{ - - protected $Id = '0018,1070'; - - protected $Name = 'RadiopharmaceuticalRoute'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Route'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalSpecActivity.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalSpecActivity.php deleted file mode 100644 index d9465159a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalSpecActivity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalSpecActivity extends AbstractTag -{ - - protected $Id = '0018,1077'; - - protected $Name = 'RadiopharmaceuticalSpecActivity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Spec Activity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStartDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStartDateTime.php deleted file mode 100644 index 85408cdeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStartDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalStartDateTime extends AbstractTag -{ - - protected $Id = '0018,1078'; - - protected $Name = 'RadiopharmaceuticalStartDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Start Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStartTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStartTime.php deleted file mode 100644 index 9d64e3fab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalStartTime extends AbstractTag -{ - - protected $Id = '0018,1072'; - - protected $Name = 'RadiopharmaceuticalStartTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStopDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStopDateTime.php deleted file mode 100644 index 8e2501cf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStopDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalStopDateTime extends AbstractTag -{ - - protected $Id = '0018,1079'; - - protected $Name = 'RadiopharmaceuticalStopDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Stop Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStopTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStopTime.php deleted file mode 100644 index 78284b24f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalStopTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalStopTime extends AbstractTag -{ - - protected $Id = '0018,1073'; - - protected $Name = 'RadiopharmaceuticalStopTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Stop Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalVolume.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalVolume.php deleted file mode 100644 index ea3db3df9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiopharmaceuticalVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiopharmaceuticalVolume extends AbstractTag -{ - - protected $Id = '0018,1071'; - - protected $Name = 'RadiopharmaceuticalVolume'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radiopharmaceutical Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircExposControlSensRegion.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircExposControlSensRegion.php deleted file mode 100644 index a5959988a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircExposControlSensRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiusOfCircExposControlSensRegion extends AbstractTag -{ - - protected $Id = '0018,9441'; - - protected $Name = 'RadiusOfCircExposControlSensRegion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radius Of Circ Expos Control Sens Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircularCollimator.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircularCollimator.php deleted file mode 100644 index 684b30b37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircularCollimator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiusOfCircularCollimator extends AbstractTag -{ - - protected $Id = '0018,1712'; - - protected $Name = 'RadiusOfCircularCollimator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radius Of Circular Collimator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircularShutter.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircularShutter.php deleted file mode 100644 index 922fc1c35..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCircularShutter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiusOfCircularShutter extends AbstractTag -{ - - protected $Id = '0018,1612'; - - protected $Name = 'RadiusOfCircularShutter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radius Of Circular Shutter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCurvature.php b/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCurvature.php deleted file mode 100644 index 76ee4406c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RadiusOfCurvature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadiusOfCurvature extends AbstractTag -{ - - protected $Id = '0046,0075'; - - protected $Name = 'RadiusOfCurvature'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radius Of Curvature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RandomsCorrected.php b/lib/PHPExiftool/Driver/Tag/DICOM/RandomsCorrected.php deleted file mode 100644 index a716e762c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RandomsCorrected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RandomsCorrected extends AbstractTag -{ - - protected $Id = '0018,9765'; - - protected $Name = 'RandomsCorrected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Randoms Corrected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RandomsCorrectionMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/RandomsCorrectionMethod.php deleted file mode 100644 index 909dbb395..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RandomsCorrectionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RandomsCorrectionMethod extends AbstractTag -{ - - protected $Id = '0054,1100'; - - protected $Name = 'RandomsCorrectionMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Randoms Correction Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorDescription.php deleted file mode 100644 index 3fd99d120..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorDescription extends AbstractTag -{ - - protected $Id = '300A,034A'; - - protected $Name = 'RangeModulatorDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorGatingStartValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorGatingStartValue.php deleted file mode 100644 index 2c163b853..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorGatingStartValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorGatingStartValue extends AbstractTag -{ - - protected $Id = '300A,0382'; - - protected $Name = 'RangeModulatorGatingStartValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator Gating Start Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorGatingStopValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorGatingStopValue.php deleted file mode 100644 index a350fab32..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorGatingStopValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorGatingStopValue extends AbstractTag -{ - - protected $Id = '300A,0384'; - - protected $Name = 'RangeModulatorGatingStopValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator Gating Stop Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorID.php deleted file mode 100644 index 51d487021..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorID extends AbstractTag -{ - - protected $Id = '300A,0346'; - - protected $Name = 'RangeModulatorID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorNumber.php deleted file mode 100644 index ce0e0d12f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorNumber extends AbstractTag -{ - - protected $Id = '300A,0344'; - - protected $Name = 'RangeModulatorNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorSequence.php deleted file mode 100644 index d7b332331..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorSequence extends AbstractTag -{ - - protected $Id = '300A,0342'; - - protected $Name = 'RangeModulatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorSettingsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorSettingsSequence.php deleted file mode 100644 index 4fcc82a93..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorSettingsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorSettingsSequence extends AbstractTag -{ - - protected $Id = '300A,0380'; - - protected $Name = 'RangeModulatorSettingsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator Settings Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorType.php deleted file mode 100644 index 9b533ff76..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeModulatorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeModulatorType extends AbstractTag -{ - - protected $Id = '300A,0348'; - - protected $Name = 'RangeModulatorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Modulator Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterDescription.php deleted file mode 100644 index 8ad71b84f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterDescription extends AbstractTag -{ - - protected $Id = '300A,0322'; - - protected $Name = 'RangeShifterDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterID.php deleted file mode 100644 index 4cf6cafab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterID extends AbstractTag -{ - - protected $Id = '300A,0318'; - - protected $Name = 'RangeShifterID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterNumber.php deleted file mode 100644 index 00af5c436..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterNumber extends AbstractTag -{ - - protected $Id = '300A,0316'; - - protected $Name = 'RangeShifterNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSequence.php deleted file mode 100644 index d9a22a193..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterSequence extends AbstractTag -{ - - protected $Id = '300A,0314'; - - protected $Name = 'RangeShifterSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSetting.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSetting.php deleted file mode 100644 index f910361c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterSetting extends AbstractTag -{ - - protected $Id = '300A,0362'; - - protected $Name = 'RangeShifterSetting'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSettingsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSettingsSequence.php deleted file mode 100644 index e2846dce7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterSettingsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterSettingsSequence extends AbstractTag -{ - - protected $Id = '300A,0360'; - - protected $Name = 'RangeShifterSettingsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter Settings Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterType.php deleted file mode 100644 index 94a7345c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterType extends AbstractTag -{ - - protected $Id = '300A,0320'; - - protected $Name = 'RangeShifterType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterWaterEquivThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterWaterEquivThickness.php deleted file mode 100644 index 4198857c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RangeShifterWaterEquivThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeShifterWaterEquivThickness extends AbstractTag -{ - - protected $Id = '300A,0366'; - - protected $Name = 'RangeShifterWaterEquivThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Range Shifter Water Equiv Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RawDataHandling.php b/lib/PHPExiftool/Driver/Tag/DICOM/RawDataHandling.php deleted file mode 100644 index ea5399ef3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RawDataHandling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataHandling extends AbstractTag -{ - - protected $Id = '0040,4040'; - - protected $Name = 'RawDataHandling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data Handling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RawDataRunNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/RawDataRunNumber.php deleted file mode 100644 index 02850ba3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RawDataRunNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataRunNumber extends AbstractTag -{ - - protected $Id = '0019,10A2'; - - protected $Name = 'RawDataRunNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data Run Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RawDataType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RawDataType.php deleted file mode 100644 index 55fad73ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RawDataType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDataType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueFirstValueMapped.php b/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueFirstValueMapped.php deleted file mode 100644 index a58b6717d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueFirstValueMapped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RealWorldValueFirstValueMapped extends AbstractTag -{ - - protected $Id = '0040,9216'; - - protected $Name = 'RealWorldValueFirstValueMapped'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Real World Value First Value Mapped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueIntercept.php b/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueIntercept.php deleted file mode 100644 index fd4a5d068..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueIntercept.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RealWorldValueIntercept extends AbstractTag -{ - - protected $Id = '0040,9224'; - - protected $Name = 'RealWorldValueIntercept'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Real World Value Intercept'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueLUTData.php b/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueLUTData.php deleted file mode 100644 index a0c5fb259..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueLUTData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RealWorldValueLUTData extends AbstractTag -{ - - protected $Id = '0040,9212'; - - protected $Name = 'RealWorldValueLUTData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Real World Value LUT Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueLastValueMapped.php b/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueLastValueMapped.php deleted file mode 100644 index 9eb79e02a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueLastValueMapped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RealWorldValueLastValueMapped extends AbstractTag -{ - - protected $Id = '0040,9211'; - - protected $Name = 'RealWorldValueLastValueMapped'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Real World Value Last Value Mapped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueMappingSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueMappingSequence.php deleted file mode 100644 index 82e4c8c4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueMappingSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RealWorldValueMappingSequence extends AbstractTag -{ - - protected $Id = '0040,9096'; - - protected $Name = 'RealWorldValueMappingSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Real World Value Mapping Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueSlope.php b/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueSlope.php deleted file mode 100644 index cb5eddd84..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RealWorldValueSlope.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RealWorldValueSlope extends AbstractTag -{ - - protected $Id = '0040,9225'; - - protected $Name = 'RealWorldValueSlope'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Real World Value Slope'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForCancellation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForCancellation.php deleted file mode 100644 index 02a5ac0b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForCancellation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReasonForCancellation extends AbstractTag -{ - - protected $Id = '0074,1238'; - - protected $Name = 'ReasonForCancellation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reason For Cancellation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForImagingServiceRequest.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForImagingServiceRequest.php deleted file mode 100644 index dd22d466d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForImagingServiceRequest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReasonForImagingServiceRequest extends AbstractTag -{ - - protected $Id = '0040,2001'; - - protected $Name = 'ReasonForImagingServiceRequest'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reason For Imaging Service Request'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForRequestedProcedure.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForRequestedProcedure.php deleted file mode 100644 index 7fa42beeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForRequestedProcedure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReasonForRequestedProcedure extends AbstractTag -{ - - protected $Id = '0040,1002'; - - protected $Name = 'ReasonForRequestedProcedure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reason For Requested Procedure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForRequestedProcedureCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForRequestedProcedureCodeSeq.php deleted file mode 100644 index 069398904..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForRequestedProcedureCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReasonForRequestedProcedureCodeSeq extends AbstractTag -{ - - protected $Id = '0040,100A'; - - protected $Name = 'ReasonForRequestedProcedureCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reason For Requested Procedure Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForStudy.php deleted file mode 100644 index 324e870a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReasonForStudy extends AbstractTag -{ - - protected $Id = '0032,1030'; - - protected $Name = 'ReasonForStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reason For Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForTheAttributeModification.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForTheAttributeModification.php deleted file mode 100644 index 91898396e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReasonForTheAttributeModification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReasonForTheAttributeModification extends AbstractTag -{ - - protected $Id = '0400,0565'; - - protected $Name = 'ReasonForTheAttributeModification'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reason For The Attribute Modification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveBandwidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveBandwidth.php deleted file mode 100644 index 9f446e267..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveBandwidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReceiveBandwidth extends AbstractTag -{ - - protected $Id = '0019,10A5'; - - protected $Name = 'ReceiveBandwidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Receive Bandwidth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilManufacturerName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilManufacturerName.php deleted file mode 100644 index 430513f28..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilManufacturerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReceiveCoilManufacturerName extends AbstractTag -{ - - protected $Id = '0018,9041'; - - protected $Name = 'ReceiveCoilManufacturerName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Receive Coil Manufacturer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilName.php deleted file mode 100644 index cf7743ff1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReceiveCoilName extends AbstractTag -{ - - protected $Id = '0018,1250'; - - protected $Name = 'ReceiveCoilName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Receive Coil Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilType.php deleted file mode 100644 index 06adb76ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReceiveCoilType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReceiveCoilType extends AbstractTag -{ - - protected $Id = '0018,9043'; - - protected $Name = 'ReceiveCoilType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Receive Coil Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReceivingAE.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReceivingAE.php deleted file mode 100644 index 7cd422d7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReceivingAE.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReceivingAE extends AbstractTag -{ - - protected $Id = '0074,1234'; - - protected $Name = 'ReceivingAE'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Receiving AE'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecognitionCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecognitionCode.php deleted file mode 100644 index e7e43fe4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecognitionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognitionCode extends AbstractTag -{ - - protected $Id = '0008,0010'; - - protected $Name = 'RecognitionCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recognition Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayCIELabValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayCIELabValue.php deleted file mode 100644 index ce4a3ddcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayCIELabValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecommendedDisplayCIELabValue extends AbstractTag -{ - - protected $Id = '0062,000D'; - - protected $Name = 'RecommendedDisplayCIELabValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recommended Display CIE Lab Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayFrameRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayFrameRate.php deleted file mode 100644 index 116d38ff2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecommendedDisplayFrameRate extends AbstractTag -{ - - protected $Id = '0008,2144'; - - protected $Name = 'RecommendedDisplayFrameRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recommended Display Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayFrameRateInFloat.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayFrameRateInFloat.php deleted file mode 100644 index b56142ca4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayFrameRateInFloat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecommendedDisplayFrameRateInFloat extends AbstractTag -{ - - protected $Id = '0008,9459'; - - protected $Name = 'RecommendedDisplayFrameRateInFloat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recommended Display Frame Rate In Float'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayGrayscaleValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayGrayscaleValue.php deleted file mode 100644 index ebfb580b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedDisplayGrayscaleValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecommendedDisplayGrayscaleValue extends AbstractTag -{ - - protected $Id = '0062,000C'; - - protected $Name = 'RecommendedDisplayGrayscaleValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recommended Display Grayscale Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedViewingMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedViewingMode.php deleted file mode 100644 index 5eada2d08..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecommendedViewingMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecommendedViewingMode extends AbstractTag -{ - - protected $Id = '0028,1090'; - - protected $Name = 'RecommendedViewingMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recommended Viewing Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconPostProcflag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconPostProcflag.php deleted file mode 100644 index 129a72e23..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconPostProcflag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconPostProcflag extends AbstractTag -{ - - protected $Id = '0019,1052'; - - protected $Name = 'ReconPostProcflag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recon Post Procflag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionAlgorithm.php deleted file mode 100644 index 3283c8738..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionAlgorithm extends AbstractTag -{ - - protected $Id = '0018,9315'; - - protected $Name = 'ReconstructionAlgorithm'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionAngle.php deleted file mode 100644 index 81ef93b82..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionAngle extends AbstractTag -{ - - protected $Id = '0018,9319'; - - protected $Name = 'ReconstructionAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionDescription.php deleted file mode 100644 index 2815463e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionDescription extends AbstractTag -{ - - protected $Id = '0018,9531'; - - protected $Name = 'ReconstructionDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionDiameter.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionDiameter.php deleted file mode 100644 index 3875dafd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionDiameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionDiameter extends AbstractTag -{ - - protected $Id = '0018,1100'; - - protected $Name = 'ReconstructionDiameter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Diameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionFieldOfView.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionFieldOfView.php deleted file mode 100644 index 988c29def..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionFieldOfView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionFieldOfView extends AbstractTag -{ - - protected $Id = '0018,9317'; - - protected $Name = 'ReconstructionFieldOfView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Field Of View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionIndex.php deleted file mode 100644 index 573632692..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionIndex extends AbstractTag -{ - - protected $Id = '0020,9536'; - - protected $Name = 'ReconstructionIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionMethod.php deleted file mode 100644 index 3a18fb67f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionMethod extends AbstractTag -{ - - protected $Id = '0054,1103'; - - protected $Name = 'ReconstructionMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionPixelSpacing.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionPixelSpacing.php deleted file mode 100644 index e6851dd4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionPixelSpacing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionPixelSpacing extends AbstractTag -{ - - protected $Id = '0018,9322'; - - protected $Name = 'ReconstructionPixelSpacing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Pixel Spacing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionTargetCenterPatient.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionTargetCenterPatient.php deleted file mode 100644 index a698dd94e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionTargetCenterPatient.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionTargetCenterPatient extends AbstractTag -{ - - protected $Id = '0018,9318'; - - protected $Name = 'ReconstructionTargetCenterPatient'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Target Center Patient'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionType.php deleted file mode 100644 index 5f3f65447..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReconstructionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionType extends AbstractTag -{ - - protected $Id = '0018,9756'; - - protected $Name = 'ReconstructionType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordInUseFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordInUseFlag.php deleted file mode 100644 index 2aeae3600..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordInUseFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordInUseFlag extends AbstractTag -{ - - protected $Id = '0004,1410'; - - protected $Name = 'RecordInUseFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Record In Use Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedBlockSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedBlockSequence.php deleted file mode 100644 index 4c6393fc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedBlockSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedBlockSequence extends AbstractTag -{ - - protected $Id = '3008,00D0'; - - protected $Name = 'RecordedBlockSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Block Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedBrachyAccessoryDeviceSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedBrachyAccessoryDeviceSeq.php deleted file mode 100644 index a0b1caf60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedBrachyAccessoryDeviceSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedBrachyAccessoryDeviceSeq extends AbstractTag -{ - - protected $Id = '3008,0120'; - - protected $Name = 'RecordedBrachyAccessoryDeviceSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Brachy Accessory Device Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedChannelSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedChannelSequence.php deleted file mode 100644 index 36e2de9fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedChannelSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedChannelSequence extends AbstractTag -{ - - protected $Id = '3008,0130'; - - protected $Name = 'RecordedChannelSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Channel Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedChannelShieldSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedChannelShieldSequence.php deleted file mode 100644 index 0cd73775f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedChannelShieldSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedChannelShieldSequence extends AbstractTag -{ - - protected $Id = '3008,0150'; - - protected $Name = 'RecordedChannelShieldSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Channel Shield Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedCompensatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedCompensatorSequence.php deleted file mode 100644 index b4de55255..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedCompensatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedCompensatorSequence extends AbstractTag -{ - - protected $Id = '3008,00C0'; - - protected $Name = 'RecordedCompensatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Compensator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedLateralSpreadingDeviceSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedLateralSpreadingDeviceSeq.php deleted file mode 100644 index 9f251c602..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedLateralSpreadingDeviceSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedLateralSpreadingDeviceSeq extends AbstractTag -{ - - protected $Id = '3008,00F4'; - - protected $Name = 'RecordedLateralSpreadingDeviceSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Lateral Spreading Device Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedRangeModulatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedRangeModulatorSequence.php deleted file mode 100644 index 909dfe566..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedRangeModulatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedRangeModulatorSequence extends AbstractTag -{ - - protected $Id = '3008,00F6'; - - protected $Name = 'RecordedRangeModulatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Range Modulator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedRangeShifterSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedRangeShifterSequence.php deleted file mode 100644 index 8cd49c3ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedRangeShifterSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedRangeShifterSequence extends AbstractTag -{ - - protected $Id = '3008,00F2'; - - protected $Name = 'RecordedRangeShifterSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Range Shifter Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSnoutSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSnoutSequence.php deleted file mode 100644 index e75934dad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSnoutSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedSnoutSequence extends AbstractTag -{ - - protected $Id = '3008,00F0'; - - protected $Name = 'RecordedSnoutSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Snout Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSourceApplicatorSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSourceApplicatorSequence.php deleted file mode 100644 index 779a492f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSourceApplicatorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedSourceApplicatorSequence extends AbstractTag -{ - - protected $Id = '3008,0140'; - - protected $Name = 'RecordedSourceApplicatorSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Source Applicator Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSourceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSourceSequence.php deleted file mode 100644 index 76cf023af..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedSourceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedSourceSequence extends AbstractTag -{ - - protected $Id = '3008,0100'; - - protected $Name = 'RecordedSourceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Source Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedWedgeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RecordedWedgeSequence.php deleted file mode 100644 index 222937d52..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RecordedWedgeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedWedgeSequence extends AbstractTag -{ - - protected $Id = '3008,00B0'; - - protected $Name = 'RecordedWedgeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded Wedge Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RectificationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RectificationType.php deleted file mode 100644 index b21f1a9ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RectificationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RectificationType extends AbstractTag -{ - - protected $Id = '0018,1156'; - - protected $Name = 'RectificationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rectification Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RectilinearPhaseEncodeReordering.php b/lib/PHPExiftool/Driver/Tag/DICOM/RectilinearPhaseEncodeReordering.php deleted file mode 100644 index 384596429..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RectilinearPhaseEncodeReordering.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RectilinearPhaseEncodeReordering extends AbstractTag -{ - - protected $Id = '0018,9034'; - - protected $Name = 'RectilinearPhaseEncodeReordering'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rectilinear Phase Encode Reordering'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RedPaletteColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/RedPaletteColorTableData.php deleted file mode 100644 index 3f175d293..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RedPaletteColorTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedPaletteColorTableData extends AbstractTag -{ - - protected $Id = '0028,1201'; - - protected $Name = 'RedPaletteColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Palette Color Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RedPaletteColorTableDescriptor.php b/lib/PHPExiftool/Driver/Tag/DICOM/RedPaletteColorTableDescriptor.php deleted file mode 100644 index b8083a4b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RedPaletteColorTableDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedPaletteColorTableDescriptor extends AbstractTag -{ - - protected $Id = '0028,1101'; - - protected $Name = 'RedPaletteColorTableDescriptor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Palette Color Table Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RefGenPurSchedProcStepTransUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RefGenPurSchedProcStepTransUID.php deleted file mode 100644 index 48a47a4e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RefGenPurSchedProcStepTransUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RefGenPurSchedProcStepTransUID extends AbstractTag -{ - - protected $Id = '0040,4023'; - - protected $Name = 'RefGenPurSchedProcStepTransUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ref Gen Pur Sched Proc Step Trans UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RefGenPurposeSchedProcStepSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/RefGenPurposeSchedProcStepSeq.php deleted file mode 100644 index 541ccedd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RefGenPurposeSchedProcStepSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RefGenPurposeSchedProcStepSeq extends AbstractTag -{ - - protected $Id = '0040,4016'; - - protected $Name = 'RefGenPurposeSchedProcStepSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ref Gen Purpose Sched Proc Step Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RefImageRealWorldValueMappingSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/RefImageRealWorldValueMappingSeq.php deleted file mode 100644 index 827369b0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RefImageRealWorldValueMappingSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RefImageRealWorldValueMappingSeq extends AbstractTag -{ - - protected $Id = '0040,9094'; - - protected $Name = 'RefImageRealWorldValueMappingSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ref Image Real World Value Mapping Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Reference.php b/lib/PHPExiftool/Driver/Tag/DICOM/Reference.php deleted file mode 100644 index 7dcf2a228..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Reference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference extends AbstractTag -{ - - protected $Id = '0020,1020'; - - protected $Name = 'Reference'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceAirKermaRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceAirKermaRate.php deleted file mode 100644 index 0be4fcaae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceAirKermaRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceAirKermaRate extends AbstractTag -{ - - protected $Id = '300A,022A'; - - protected $Name = 'ReferenceAirKermaRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Air Kerma Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceChannelUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceChannelUsed.php deleted file mode 100644 index e84ba7338..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceChannelUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceChannelUsed extends AbstractTag -{ - - protected $Id = '0019,10DA'; - - protected $Name = 'ReferenceChannelUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Channel Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceChannels.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceChannels.php deleted file mode 100644 index 481386975..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceChannels extends AbstractTag -{ - - protected $Id = '0043,1025'; - - protected $Name = 'ReferenceChannels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceCoordinates.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceCoordinates.php deleted file mode 100644 index bc26b80a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceCoordinates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceCoordinates extends AbstractTag -{ - - protected $Id = '0022,0032'; - - protected $Name = 'ReferenceCoordinates'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Coordinates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceDisplaySets.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceDisplaySets.php deleted file mode 100644 index 9d8eb36e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceDisplaySets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceDisplaySets extends AbstractTag -{ - - protected $Id = '0072,0218'; - - protected $Name = 'ReferenceDisplaySets'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Display Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceImageField.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceImageField.php deleted file mode 100644 index 19d9a0ae2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceImageField.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceImageField extends AbstractTag -{ - - protected $Id = '0023,1010'; - - protected $Name = 'ReferenceImageField'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Image Field'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceImageNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceImageNumber.php deleted file mode 100644 index 73c7d488e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceImageNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceImageNumber extends AbstractTag -{ - - protected $Id = '300A,00C8'; - - protected $Name = 'ReferenceImageNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Image Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelPhysicalValueX.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelPhysicalValueX.php deleted file mode 100644 index af4317616..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelPhysicalValueX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencePixelPhysicalValueX extends AbstractTag -{ - - protected $Id = '0018,6028'; - - protected $Name = 'ReferencePixelPhysicalValueX'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Pixel Physical Value X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelPhysicalValueY.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelPhysicalValueY.php deleted file mode 100644 index 1b8d46c07..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelPhysicalValueY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencePixelPhysicalValueY extends AbstractTag -{ - - protected $Id = '0018,602A'; - - protected $Name = 'ReferencePixelPhysicalValueY'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Pixel Physical Value Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelX0.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelX0.php deleted file mode 100644 index 320906171..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelX0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencePixelX0 extends AbstractTag -{ - - protected $Id = '0018,6020'; - - protected $Name = 'ReferencePixelX0'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Pixel X0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelY0.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelY0.php deleted file mode 100644 index f446e48fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencePixelY0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencePixelY0 extends AbstractTag -{ - - protected $Id = '0018,6022'; - - protected $Name = 'ReferencePixelY0'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference Pixel Y0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceToRecordedSound.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceToRecordedSound.php deleted file mode 100644 index 1c5037d23..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferenceToRecordedSound.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceToRecordedSound extends AbstractTag -{ - - protected $Id = '4008,0103'; - - protected $Name = 'ReferenceToRecordedSound'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference To Recorded Sound'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBasicAnnotationBoxSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBasicAnnotationBoxSeq.php deleted file mode 100644 index 2b3c5fcb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBasicAnnotationBoxSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBasicAnnotationBoxSeq extends AbstractTag -{ - - protected $Id = '2010,0520'; - - protected $Name = 'ReferencedBasicAnnotationBoxSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Basic Annotation Box Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBeamNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBeamNumber.php deleted file mode 100644 index 0300a6df0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBeamNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBeamNumber extends AbstractTag -{ - - protected $Id = '300C,0006'; - - protected $Name = 'ReferencedBeamNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Beam Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBeamSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBeamSequence.php deleted file mode 100644 index bc54887cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBeamSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBeamSequence extends AbstractTag -{ - - protected $Id = '300C,0004'; - - protected $Name = 'ReferencedBeamSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Beam Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBlockNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBlockNumber.php deleted file mode 100644 index 9d430c06a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBlockNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBlockNumber extends AbstractTag -{ - - protected $Id = '300C,00E0'; - - protected $Name = 'ReferencedBlockNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Block Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBolusSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBolusSequence.php deleted file mode 100644 index 97afe6e76..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBolusSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBolusSequence extends AbstractTag -{ - - protected $Id = '300C,00B0'; - - protected $Name = 'ReferencedBolusSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Bolus Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAccessoryDeviceNum.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAccessoryDeviceNum.php deleted file mode 100644 index 4fc54096d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAccessoryDeviceNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBrachyAccessoryDeviceNum extends AbstractTag -{ - - protected $Id = '3008,0122'; - - protected $Name = 'ReferencedBrachyAccessoryDeviceNum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Brachy Accessory Device Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAppSetupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAppSetupNumber.php deleted file mode 100644 index d4878ffe3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAppSetupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBrachyAppSetupNumber extends AbstractTag -{ - - protected $Id = '300C,000C'; - - protected $Name = 'ReferencedBrachyAppSetupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Brachy App Setup Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAppSetupSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAppSetupSeq.php deleted file mode 100644 index bfb9c87e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedBrachyAppSetupSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedBrachyAppSetupSeq extends AbstractTag -{ - - protected $Id = '300C,000A'; - - protected $Name = 'ReferencedBrachyAppSetupSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Brachy App Setup Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCalculatedDoseRefNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCalculatedDoseRefNumber.php deleted file mode 100644 index fd4edc84b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCalculatedDoseRefNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedCalculatedDoseRefNumber extends AbstractTag -{ - - protected $Id = '3008,0092'; - - protected $Name = 'ReferencedCalculatedDoseRefNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Calculated Dose Ref Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCalculatedDoseRefSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCalculatedDoseRefSeq.php deleted file mode 100644 index 962e736b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCalculatedDoseRefSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedCalculatedDoseRefSeq extends AbstractTag -{ - - protected $Id = '3008,0090'; - - protected $Name = 'ReferencedCalculatedDoseRefSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Calculated Dose Ref Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedChannelShieldNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedChannelShieldNumber.php deleted file mode 100644 index b3c49ed65..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedChannelShieldNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedChannelShieldNumber extends AbstractTag -{ - - protected $Id = '3008,0152'; - - protected $Name = 'ReferencedChannelShieldNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Channel Shield Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCompensatorNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCompensatorNumber.php deleted file mode 100644 index 21f58aa70..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCompensatorNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedCompensatorNumber extends AbstractTag -{ - - protected $Id = '300C,00D0'; - - protected $Name = 'ReferencedCompensatorNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Compensator Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedContentItemIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedContentItemIdentifier.php deleted file mode 100644 index 0b76feee5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedContentItemIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedContentItemIdentifier extends AbstractTag -{ - - protected $Id = '0040,DB73'; - - protected $Name = 'ReferencedContentItemIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Content Item Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedControlPointIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedControlPointIndex.php deleted file mode 100644 index 487773154..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedControlPointIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedControlPointIndex extends AbstractTag -{ - - protected $Id = '300C,00F0'; - - protected $Name = 'ReferencedControlPointIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Control Point Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedControlPointSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedControlPointSequence.php deleted file mode 100644 index 72f68a382..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedControlPointSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedControlPointSequence extends AbstractTag -{ - - protected $Id = '300C,00F2'; - - protected $Name = 'ReferencedControlPointSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Control Point Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCurveSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCurveSequence.php deleted file mode 100644 index 384729bba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedCurveSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedCurveSequence extends AbstractTag -{ - - protected $Id = '0008,1145'; - - protected $Name = 'ReferencedCurveSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Curve Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDateTime.php deleted file mode 100644 index 5ff762d59..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedDateTime extends AbstractTag -{ - - protected $Id = '0040,A13A'; - - protected $Name = 'ReferencedDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDigitalSignatureSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDigitalSignatureSeq.php deleted file mode 100644 index a9c0e602f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDigitalSignatureSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedDigitalSignatureSeq extends AbstractTag -{ - - protected $Id = '0400,0402'; - - protected $Name = 'ReferencedDigitalSignatureSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Digital Signature Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseReferenceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseReferenceNumber.php deleted file mode 100644 index 40c6a9e95..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseReferenceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedDoseReferenceNumber extends AbstractTag -{ - - protected $Id = '300C,0051'; - - protected $Name = 'ReferencedDoseReferenceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Dose Reference Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseReferenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseReferenceSequence.php deleted file mode 100644 index 509c97fd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseReferenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedDoseReferenceSequence extends AbstractTag -{ - - protected $Id = '300C,0050'; - - protected $Name = 'ReferencedDoseReferenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Dose Reference Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseSequence.php deleted file mode 100644 index 0ce59d4cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedDoseSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedDoseSequence extends AbstractTag -{ - - protected $Id = '300C,0080'; - - protected $Name = 'ReferencedDoseSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Dose Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFileID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFileID.php deleted file mode 100644 index e28e7e6ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFileID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFileID extends AbstractTag -{ - - protected $Id = '0004,1500'; - - protected $Name = 'ReferencedFileID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced File ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFilmBoxSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFilmBoxSequence.php deleted file mode 100644 index 2255c3e7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFilmBoxSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFilmBoxSequence extends AbstractTag -{ - - protected $Id = '2000,0500'; - - protected $Name = 'ReferencedFilmBoxSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Film Box Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFilmSessionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFilmSessionSequence.php deleted file mode 100644 index c7cdbcacd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFilmSessionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFilmSessionSequence extends AbstractTag -{ - - protected $Id = '2010,0500'; - - protected $Name = 'ReferencedFilmSessionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Film Session Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionGroupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionGroupNumber.php deleted file mode 100644 index f8a8b7cd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionGroupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFractionGroupNumber extends AbstractTag -{ - - protected $Id = '300C,0022'; - - protected $Name = 'ReferencedFractionGroupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Fraction Group Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionGroupSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionGroupSequence.php deleted file mode 100644 index 2d95aa5c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionGroupSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFractionGroupSequence extends AbstractTag -{ - - protected $Id = '300C,0020'; - - protected $Name = 'ReferencedFractionGroupSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Fraction Group Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionNumber.php deleted file mode 100644 index 1f617b4ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFractionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFractionNumber extends AbstractTag -{ - - protected $Id = '3008,0223'; - - protected $Name = 'ReferencedFractionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Fraction Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameNumber.php deleted file mode 100644 index c301757bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFrameNumber extends AbstractTag -{ - - protected $Id = '0008,1160'; - - protected $Name = 'ReferencedFrameNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameNumbers.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameNumbers.php deleted file mode 100644 index 19af8cbb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFrameNumbers extends AbstractTag -{ - - protected $Id = '0040,A136'; - - protected $Name = 'ReferencedFrameNumbers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Frame Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameOfReferenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameOfReferenceSequence.php deleted file mode 100644 index 09238eca7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameOfReferenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFrameOfReferenceSequence extends AbstractTag -{ - - protected $Id = '3006,0010'; - - protected $Name = 'ReferencedFrameOfReferenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Frame Of Reference Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameOfReferenceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameOfReferenceUID.php deleted file mode 100644 index cb6086617..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedFrameOfReferenceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedFrameOfReferenceUID extends AbstractTag -{ - - protected $Id = '3006,0024'; - - protected $Name = 'ReferencedFrameOfReferenceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Frame Of Reference UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageBoxSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageBoxSequence.php deleted file mode 100644 index 41c81aef2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageBoxSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedImageBoxSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReferencedImageBoxSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Image Box Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageEvidenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageEvidenceSequence.php deleted file mode 100644 index 69620d06e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageEvidenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedImageEvidenceSequence extends AbstractTag -{ - - protected $Id = '0008,9092'; - - protected $Name = 'ReferencedImageEvidenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Image Evidence Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageOverlayBoxSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageOverlayBoxSequence.php deleted file mode 100644 index 2cd9bb616..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageOverlayBoxSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedImageOverlayBoxSequence extends AbstractTag -{ - - protected $Id = '2020,0130'; - - protected $Name = 'ReferencedImageOverlayBoxSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Image Overlay Box Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageSequence.php deleted file mode 100644 index c701c434c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedImageSequence extends AbstractTag -{ - - protected $Id = '0008,1140'; - - protected $Name = 'ReferencedImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedInstanceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedInstanceSequence.php deleted file mode 100644 index a3068c585..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedInstanceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedInstanceSequence extends AbstractTag -{ - - protected $Id = '0008,114A'; - - protected $Name = 'ReferencedInstanceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Instance Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedInterpretationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedInterpretationSequence.php deleted file mode 100644 index 27144e545..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedInterpretationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedInterpretationSequence extends AbstractTag -{ - - protected $Id = '4008,0050'; - - protected $Name = 'ReferencedInterpretationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Interpretation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedLateralSpreadingDevNum.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedLateralSpreadingDevNum.php deleted file mode 100644 index 92c52fa8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedLateralSpreadingDevNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedLateralSpreadingDevNum extends AbstractTag -{ - - protected $Id = '300C,0102'; - - protected $Name = 'ReferencedLateralSpreadingDevNum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Lateral Spreading Dev Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedMeasuredDoseReferenceNum.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedMeasuredDoseReferenceNum.php deleted file mode 100644 index e6c8b1993..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedMeasuredDoseReferenceNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedMeasuredDoseReferenceNum extends AbstractTag -{ - - protected $Id = '3008,0082'; - - protected $Name = 'ReferencedMeasuredDoseReferenceNum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Measured Dose Reference Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedMeasuredDoseReferenceSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedMeasuredDoseReferenceSeq.php deleted file mode 100644 index c4101f5ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedMeasuredDoseReferenceSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedMeasuredDoseReferenceSeq extends AbstractTag -{ - - protected $Id = '3008,0080'; - - protected $Name = 'ReferencedMeasuredDoseReferenceSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Measured Dose Reference Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedNonImageCompositeSOPSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedNonImageCompositeSOPSeq.php deleted file mode 100644 index ed3b33f14..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedNonImageCompositeSOPSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedNonImageCompositeSOPSeq extends AbstractTag -{ - - protected $Id = '0040,0220'; - - protected $Name = 'ReferencedNonImageCompositeSOPSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Non Image Composite SOP Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOtherPlaneSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOtherPlaneSequence.php deleted file mode 100644 index ee2c5ff0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOtherPlaneSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedOtherPlaneSequence extends AbstractTag -{ - - protected $Id = '0008,9410'; - - protected $Name = 'ReferencedOtherPlaneSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Other Plane Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayGroup.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayGroup.php deleted file mode 100644 index 047d0097c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedOverlayGroup extends AbstractTag -{ - - protected $Id = '50xx,2610'; - - protected $Name = 'ReferencedOverlayGroup'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Overlay Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayPlaneGroups.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayPlaneGroups.php deleted file mode 100644 index e81b17f3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayPlaneGroups.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedOverlayPlaneGroups extends AbstractTag -{ - - protected $Id = '2040,0011'; - - protected $Name = 'ReferencedOverlayPlaneGroups'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Overlay Plane Groups'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayPlaneSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayPlaneSequence.php deleted file mode 100644 index 10549aedb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlayPlaneSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedOverlayPlaneSequence extends AbstractTag -{ - - protected $Id = '2040,0010'; - - protected $Name = 'ReferencedOverlayPlaneSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Overlay Plane Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlaySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlaySequence.php deleted file mode 100644 index 3780811d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedOverlaySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedOverlaySequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReferencedOverlaySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Overlay Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientAliasSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientAliasSequence.php deleted file mode 100644 index 88efba871..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientAliasSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedPatientAliasSequence extends AbstractTag -{ - - protected $Id = '0038,0004'; - - protected $Name = 'ReferencedPatientAliasSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Patient Alias Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientSequence.php deleted file mode 100644 index 4d1c74888..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedPatientSequence extends AbstractTag -{ - - protected $Id = '0008,1120'; - - protected $Name = 'ReferencedPatientSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Patient Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientSetupNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientSetupNumber.php deleted file mode 100644 index c177991fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPatientSetupNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedPatientSetupNumber extends AbstractTag -{ - - protected $Id = '300C,006A'; - - protected $Name = 'ReferencedPatientSetupNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Patient Setup Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPresentationLUTSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPresentationLUTSequence.php deleted file mode 100644 index 091088d3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPresentationLUTSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedPresentationLUTSequence extends AbstractTag -{ - - protected $Id = '2050,0500'; - - protected $Name = 'ReferencedPresentationLUTSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Presentation LUT Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPrintJobSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPrintJobSequence.php deleted file mode 100644 index 9fcb7561e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedPrintJobSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedPrintJobSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReferencedPrintJobSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Print Job Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedProcedureStepSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedProcedureStepSequence.php deleted file mode 100644 index d9f66ca76..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedProcedureStepSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedProcedureStepSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReferencedProcedureStepSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Procedure Step Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedROINumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedROINumber.php deleted file mode 100644 index 001ccd4ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedROINumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedROINumber extends AbstractTag -{ - - protected $Id = '3006,0084'; - - protected $Name = 'ReferencedROINumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced ROI Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRTPlanSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRTPlanSequence.php deleted file mode 100644 index 09a899106..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRTPlanSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedRTPlanSequence extends AbstractTag -{ - - protected $Id = '300C,0002'; - - protected $Name = 'ReferencedRTPlanSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced RT Plan Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRangeModulatorNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRangeModulatorNumber.php deleted file mode 100644 index 55584a078..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRangeModulatorNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedRangeModulatorNumber extends AbstractTag -{ - - protected $Id = '300C,0104'; - - protected $Name = 'ReferencedRangeModulatorNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Range Modulator Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRangeShifterNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRangeShifterNumber.php deleted file mode 100644 index 55c6f7e6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRangeShifterNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedRangeShifterNumber extends AbstractTag -{ - - protected $Id = '300C,0100'; - - protected $Name = 'ReferencedRangeShifterNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Range Shifter Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRawDataSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRawDataSequence.php deleted file mode 100644 index 156ce0946..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRawDataSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedRawDataSequence extends AbstractTag -{ - - protected $Id = '0008,9121'; - - protected $Name = 'ReferencedRawDataSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Raw Data Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedReferenceImageNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedReferenceImageNumber.php deleted file mode 100644 index 2c6a0ae48..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedReferenceImageNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedReferenceImageNumber extends AbstractTag -{ - - protected $Id = '300C,0007'; - - protected $Name = 'ReferencedReferenceImageNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Reference Image Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedReferenceImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedReferenceImageSequence.php deleted file mode 100644 index 8eeba7160..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedReferenceImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedReferenceImageSequence extends AbstractTag -{ - - protected $Id = '300C,0042'; - - protected $Name = 'ReferencedReferenceImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Reference Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRelatedSOPClassUIDInFile.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRelatedSOPClassUIDInFile.php deleted file mode 100644 index 7809f5d61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRelatedSOPClassUIDInFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedRelatedSOPClassUIDInFile extends AbstractTag -{ - - protected $Id = '0004,151A'; - - protected $Name = 'ReferencedRelatedSOPClassUIDInFile'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Related SOP Class UID In File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRequestSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRequestSequence.php deleted file mode 100644 index 9a99dcb5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedRequestSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedRequestSequence extends AbstractTag -{ - - protected $Id = '0040,A370'; - - protected $Name = 'ReferencedRequestSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Request Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedResultsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedResultsSequence.php deleted file mode 100644 index 914adf5dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedResultsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedResultsSequence extends AbstractTag -{ - - protected $Id = '0008,1100'; - - protected $Name = 'ReferencedResultsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Results Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPClassUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPClassUID.php deleted file mode 100644 index 66c35a743..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPClassUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSOPClassUID extends AbstractTag -{ - - protected $Id = '0008,1150'; - - protected $Name = 'ReferencedSOPClassUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced SOP Class UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPClassUIDInFile.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPClassUIDInFile.php deleted file mode 100644 index f41b69541..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPClassUIDInFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSOPClassUIDInFile extends AbstractTag -{ - - protected $Id = '0004,1510'; - - protected $Name = 'ReferencedSOPClassUIDInFile'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced SOP Class UID In File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceMACSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceMACSeq.php deleted file mode 100644 index 4d4bc483c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceMACSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSOPInstanceMACSeq extends AbstractTag -{ - - protected $Id = '0400,0403'; - - protected $Name = 'ReferencedSOPInstanceMACSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced SOP Instance MAC Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceUID.php deleted file mode 100644 index ab2b70c6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSOPInstanceUID extends AbstractTag -{ - - protected $Id = '0008,1155'; - - protected $Name = 'ReferencedSOPInstanceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced SOP Instance UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceUIDInFile.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceUIDInFile.php deleted file mode 100644 index 74317accf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPInstanceUIDInFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSOPInstanceUIDInFile extends AbstractTag -{ - - protected $Id = '0004,1511'; - - protected $Name = 'ReferencedSOPInstanceUIDInFile'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced SOP Instance UID In File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPSequence.php deleted file mode 100644 index 7e99b587d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSOPSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSOPSequence extends AbstractTag -{ - - protected $Id = '0008,1199'; - - protected $Name = 'ReferencedSOPSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced SOP Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSamplePositions.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSamplePositions.php deleted file mode 100644 index 514db6c84..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSamplePositions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSamplePositions extends AbstractTag -{ - - protected $Id = '0040,A132'; - - protected $Name = 'ReferencedSamplePositions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Sample Positions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSegmentNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSegmentNumber.php deleted file mode 100644 index 15d27def3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSegmentNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSegmentNumber extends AbstractTag -{ - - protected $Id = '0062,000B'; - - protected $Name = 'ReferencedSegmentNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Segment Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSeriesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSeriesSequence.php deleted file mode 100644 index 47fd79c0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSeriesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSeriesSequence extends AbstractTag -{ - - protected $Id = '0008,1115'; - - protected $Name = 'ReferencedSeriesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Series Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSetupImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSetupImageSequence.php deleted file mode 100644 index 454617ac0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSetupImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSetupImageSequence extends AbstractTag -{ - - protected $Id = '300A,0401'; - - protected $Name = 'ReferencedSetupImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Setup Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSourceApplicatorNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSourceApplicatorNumber.php deleted file mode 100644 index 32ae4a876..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSourceApplicatorNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSourceApplicatorNumber extends AbstractTag -{ - - protected $Id = '3008,0142'; - - protected $Name = 'ReferencedSourceApplicatorNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Source Applicator Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSourceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSourceNumber.php deleted file mode 100644 index 532511e96..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSourceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSourceNumber extends AbstractTag -{ - - protected $Id = '300C,000E'; - - protected $Name = 'ReferencedSourceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Source Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSpatialRegistrationSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSpatialRegistrationSeq.php deleted file mode 100644 index 0efbb2e9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedSpatialRegistrationSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedSpatialRegistrationSeq extends AbstractTag -{ - - protected $Id = '0070,0404'; - - protected $Name = 'ReferencedSpatialRegistrationSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Spatial Registration Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStartControlPointIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStartControlPointIndex.php deleted file mode 100644 index 9418f8cbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStartControlPointIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedStartControlPointIndex extends AbstractTag -{ - - protected $Id = '300C,00F4'; - - protected $Name = 'ReferencedStartControlPointIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Start Control Point Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStopControlPointIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStopControlPointIndex.php deleted file mode 100644 index 68851c643..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStopControlPointIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedStopControlPointIndex extends AbstractTag -{ - - protected $Id = '300C,00F6'; - - protected $Name = 'ReferencedStopControlPointIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Stop Control Point Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStorageMediaSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStorageMediaSequence.php deleted file mode 100644 index 52dba04d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStorageMediaSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedStorageMediaSequence extends AbstractTag -{ - - protected $Id = '2200,000D'; - - protected $Name = 'ReferencedStorageMediaSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Storage Media Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStoredPrintSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStoredPrintSequence.php deleted file mode 100644 index cc02ac72d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStoredPrintSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedStoredPrintSequence extends AbstractTag -{ - - protected $Id = '2000,0510'; - - protected $Name = 'ReferencedStoredPrintSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Stored Print Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStructureSetSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStructureSetSequence.php deleted file mode 100644 index d47d3f12b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStructureSetSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedStructureSetSequence extends AbstractTag -{ - - protected $Id = '300C,0060'; - - protected $Name = 'ReferencedStructureSetSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Structure Set Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStudySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStudySequence.php deleted file mode 100644 index 3a617c109..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedStudySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedStudySequence extends AbstractTag -{ - - protected $Id = '0008,1110'; - - protected $Name = 'ReferencedStudySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Study Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTimeOffsets.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTimeOffsets.php deleted file mode 100644 index 8a954c696..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTimeOffsets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedTimeOffsets extends AbstractTag -{ - - protected $Id = '0040,A138'; - - protected $Name = 'ReferencedTimeOffsets'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Time Offsets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedToleranceTableNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedToleranceTableNumber.php deleted file mode 100644 index 1a6ee2475..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedToleranceTableNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedToleranceTableNumber extends AbstractTag -{ - - protected $Id = '300C,00A0'; - - protected $Name = 'ReferencedToleranceTableNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Tolerance Table Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTransferSyntaxUIDInFile.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTransferSyntaxUIDInFile.php deleted file mode 100644 index b22d7e897..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTransferSyntaxUIDInFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedTransferSyntaxUIDInFile extends AbstractTag -{ - - protected $Id = '0004,1512'; - - protected $Name = 'ReferencedTransferSyntaxUIDInFile'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Transfer Syntax UID In File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTreatmentRecordSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTreatmentRecordSequence.php deleted file mode 100644 index c2af5c180..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedTreatmentRecordSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedTreatmentRecordSequence extends AbstractTag -{ - - protected $Id = '3008,0030'; - - protected $Name = 'ReferencedTreatmentRecordSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Treatment Record Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVOILUTBoxSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVOILUTBoxSequence.php deleted file mode 100644 index 01386e7fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVOILUTBoxSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedVOILUTBoxSequence extends AbstractTag -{ - - protected $Id = '2020,0140'; - - protected $Name = 'ReferencedVOILUTBoxSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced VOILUT Box Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVerificationImageSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVerificationImageSeq.php deleted file mode 100644 index be47d9309..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVerificationImageSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedVerificationImageSeq extends AbstractTag -{ - - protected $Id = '300C,0040'; - - protected $Name = 'ReferencedVerificationImageSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Verification Image Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVisitSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVisitSequence.php deleted file mode 100644 index 1786db03c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedVisitSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedVisitSequence extends AbstractTag -{ - - protected $Id = '0008,1125'; - - protected $Name = 'ReferencedVisitSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Visit Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWaveformChannels.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWaveformChannels.php deleted file mode 100644 index d12c1bbae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWaveformChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedWaveformChannels extends AbstractTag -{ - - protected $Id = '0040,A0B0'; - - protected $Name = 'ReferencedWaveformChannels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Waveform Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWaveformSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWaveformSequence.php deleted file mode 100644 index aeab640fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWaveformSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedWaveformSequence extends AbstractTag -{ - - protected $Id = '0008,113A'; - - protected $Name = 'ReferencedWaveformSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Waveform Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWedgeNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWedgeNumber.php deleted file mode 100644 index f92daf43b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferencedWedgeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencedWedgeNumber extends AbstractTag -{ - - protected $Id = '300C,00C0'; - - protected $Name = 'ReferencedWedgeNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referenced Wedge Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianAddress.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianAddress.php deleted file mode 100644 index 63e6ea9c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferringPhysicianAddress extends AbstractTag -{ - - protected $Id = '0008,0092'; - - protected $Name = 'ReferringPhysicianAddress'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referring Physician Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianIDSequence.php deleted file mode 100644 index a7466d4ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferringPhysicianIDSequence extends AbstractTag -{ - - protected $Id = '0008,0096'; - - protected $Name = 'ReferringPhysicianIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referring Physician ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianName.php deleted file mode 100644 index 6786eb7fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferringPhysicianName extends AbstractTag -{ - - protected $Id = '0008,0090'; - - protected $Name = 'ReferringPhysicianName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referring Physician Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianTelephoneNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianTelephoneNumber.php deleted file mode 100644 index dfb88631f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReferringPhysicianTelephoneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferringPhysicianTelephoneNumber extends AbstractTag -{ - - protected $Id = '0008,0094'; - - protected $Name = 'ReferringPhysicianTelephoneNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Referring Physician Telephone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReflectedAmbientLight.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReflectedAmbientLight.php deleted file mode 100644 index 921ec1c90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReflectedAmbientLight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReflectedAmbientLight extends AbstractTag -{ - - protected $Id = '2010,0160'; - - protected $Name = 'ReflectedAmbientLight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reflected Ambient Light'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingInterval.php deleted file mode 100644 index f53b31aa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReformattingInterval extends AbstractTag -{ - - protected $Id = '0072,0514'; - - protected $Name = 'ReformattingInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reformatting Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingOpInitialViewDir.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingOpInitialViewDir.php deleted file mode 100644 index 0cebd0b6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingOpInitialViewDir.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReformattingOpInitialViewDir extends AbstractTag -{ - - protected $Id = '0072,0516'; - - protected $Name = 'ReformattingOpInitialViewDir'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reformatting Op Initial View Dir'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingOperationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingOperationType.php deleted file mode 100644 index f53ceeecb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingOperationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReformattingOperationType extends AbstractTag -{ - - protected $Id = '0072,0510'; - - protected $Name = 'ReformattingOperationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reformatting Operation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingThickness.php deleted file mode 100644 index 383f1069d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReformattingThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReformattingThickness extends AbstractTag -{ - - protected $Id = '0072,0512'; - - protected $Name = 'ReformattingThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reformatting Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RefractiveStateSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RefractiveStateSequence.php deleted file mode 100644 index 81fcf5054..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RefractiveStateSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RefractiveStateSequence extends AbstractTag -{ - - protected $Id = '0022,001B'; - - protected $Name = 'RefractiveStateSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Refractive State Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionDataType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionDataType.php deleted file mode 100644 index ae350c87f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionDataType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionDataType extends AbstractTag -{ - - protected $Id = '0018,6014'; - - protected $Name = 'RegionDataType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Data Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionFlags.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionFlags.php deleted file mode 100644 index 93fe3cae7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionFlags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionFlags extends AbstractTag -{ - - protected $Id = '0018,6016'; - - protected $Name = 'RegionFlags'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMaxX1.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMaxX1.php deleted file mode 100644 index 2a466fd90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMaxX1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionLocationMaxX1 extends AbstractTag -{ - - protected $Id = '0018,601C'; - - protected $Name = 'RegionLocationMaxX1'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Location Max X1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMaxY1.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMaxY1.php deleted file mode 100644 index be6e07518..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMaxY1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionLocationMaxY1 extends AbstractTag -{ - - protected $Id = '0018,601E'; - - protected $Name = 'RegionLocationMaxY1'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Location Max Y1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMinX0.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMinX0.php deleted file mode 100644 index dde577467..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMinX0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionLocationMinX0 extends AbstractTag -{ - - protected $Id = '0018,6018'; - - protected $Name = 'RegionLocationMinX0'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Location Min X0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMinY0.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMinY0.php deleted file mode 100644 index 53128331a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionLocationMinY0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionLocationMinY0 extends AbstractTag -{ - - protected $Id = '0018,601A'; - - protected $Name = 'RegionLocationMinY0'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Location Min Y0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionOfResidence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionOfResidence.php deleted file mode 100644 index fb583ec88..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionOfResidence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionOfResidence extends AbstractTag -{ - - protected $Id = '0010,2152'; - - protected $Name = 'RegionOfResidence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Of Residence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionPixelShiftSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionPixelShiftSequence.php deleted file mode 100644 index 73a6bfe91..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionPixelShiftSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionPixelShiftSequence extends AbstractTag -{ - - protected $Id = '0028,9502'; - - protected $Name = 'RegionPixelShiftSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Pixel Shift Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegionSpatialFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegionSpatialFormat.php deleted file mode 100644 index b8648ef67..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegionSpatialFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionSpatialFormat extends AbstractTag -{ - - protected $Id = '0018,6012'; - - protected $Name = 'RegionSpatialFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Region Spatial Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegistrationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegistrationSequence.php deleted file mode 100644 index 4e9b82258..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegistrationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegistrationSequence extends AbstractTag -{ - - protected $Id = '0070,0308'; - - protected $Name = 'RegistrationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Registration Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RegistrationTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RegistrationTypeCodeSequence.php deleted file mode 100644 index 33eff3c5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RegistrationTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegistrationTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0070,030D'; - - protected $Name = 'RegistrationTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Registration Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedFrameOfReferenceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelatedFrameOfReferenceUID.php deleted file mode 100644 index 37e6555c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedFrameOfReferenceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedFrameOfReferenceUID extends AbstractTag -{ - - protected $Id = '3006,00C2'; - - protected $Name = 'RelatedFrameOfReferenceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related Frame Of Reference UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedGeneralSOPClassUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelatedGeneralSOPClassUID.php deleted file mode 100644 index a0464ce03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedGeneralSOPClassUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedGeneralSOPClassUID extends AbstractTag -{ - - protected $Id = '0008,001A'; - - protected $Name = 'RelatedGeneralSOPClassUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related General SOP Class UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedProcedureStepSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelatedProcedureStepSequence.php deleted file mode 100644 index 655005380..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedProcedureStepSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedProcedureStepSequence extends AbstractTag -{ - - protected $Id = '0074,1220'; - - protected $Name = 'RelatedProcedureStepSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related Procedure Step Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedRTROIObservationsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelatedRTROIObservationsSequence.php deleted file mode 100644 index 842fc9378..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedRTROIObservationsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedRTROIObservationsSequence extends AbstractTag -{ - - protected $Id = '3006,00A0'; - - protected $Name = 'RelatedRTROIObservationsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related RTROI Observations Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedReferenceRTImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelatedReferenceRTImageSequence.php deleted file mode 100644 index 93514f784..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedReferenceRTImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedReferenceRTImageSequence extends AbstractTag -{ - - protected $Id = '0074,1040'; - - protected $Name = 'RelatedReferenceRTImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related Reference RT Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedSeriesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelatedSeriesSequence.php deleted file mode 100644 index 553258554..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelatedSeriesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedSeriesSequence extends AbstractTag -{ - - protected $Id = '0008,1250'; - - protected $Name = 'RelatedSeriesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related Series Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelationshipGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelationshipGroupLength.php deleted file mode 100644 index 05e4a9a39..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelationshipGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelationshipGroupLength extends AbstractTag -{ - - protected $Id = '0020,0000'; - - protected $Name = 'RelationshipGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relationship Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelationshipType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelationshipType.php deleted file mode 100644 index 891309b0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelationshipType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelationshipType extends AbstractTag -{ - - protected $Id = '0040,A010'; - - protected $Name = 'RelationshipType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relationship Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeImagePositionCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelativeImagePositionCodeSequence.php deleted file mode 100644 index d49dc9ce3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeImagePositionCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeImagePositionCodeSequence extends AbstractTag -{ - - protected $Id = '0022,001D'; - - protected $Name = 'RelativeImagePositionCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relative Image Position Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeOpacity.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelativeOpacity.php deleted file mode 100644 index 023270b3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeOpacity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeOpacity extends AbstractTag -{ - - protected $Id = '0070,0403'; - - protected $Name = 'RelativeOpacity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relative Opacity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelativeTime.php deleted file mode 100644 index cadbf1e61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeTime extends AbstractTag -{ - - protected $Id = '0072,0038'; - - protected $Name = 'RelativeTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relative Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeTimeUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelativeTimeUnits.php deleted file mode 100644 index 5c9e2b6ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeTimeUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeTimeUnits extends AbstractTag -{ - - protected $Id = '0072,003A'; - - protected $Name = 'RelativeTimeUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relative Time Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeXRayExposure.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelativeXRayExposure.php deleted file mode 100644 index 9ee784063..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelativeXRayExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeXRayExposure extends AbstractTag -{ - - protected $Id = '0018,1405'; - - protected $Name = 'RelativeXRayExposure'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relative X Ray Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RelevantInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RelevantInformationSequence.php deleted file mode 100644 index ccd213c77..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RelevantInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelevantInformationSequence extends AbstractTag -{ - - protected $Id = '0040,4022'; - - protected $Name = 'RelevantInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relevant Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RenderingType3D.php b/lib/PHPExiftool/Driver/Tag/DICOM/RenderingType3D.php deleted file mode 100644 index a47a22810..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RenderingType3D.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenderingType3D extends AbstractTag -{ - - protected $Id = '0072,0520'; - - protected $Name = 'RenderingType3D'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rendering Type 3D'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RepeatFractionCycleLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/RepeatFractionCycleLength.php deleted file mode 100644 index 9f3f393e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RepeatFractionCycleLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatFractionCycleLength extends AbstractTag -{ - - protected $Id = '300A,007A'; - - protected $Name = 'RepeatFractionCycleLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Repeat Fraction Cycle Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RepeatInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/RepeatInterval.php deleted file mode 100644 index 956301923..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RepeatInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatInterval extends AbstractTag -{ - - protected $Id = '0028,0068'; - - protected $Name = 'RepeatInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Repeat Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RepetitionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RepetitionTime.php deleted file mode 100644 index ebd274b5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RepetitionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepetitionTime extends AbstractTag -{ - - protected $Id = '0018,0080'; - - protected $Name = 'RepetitionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Repetition Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReportedValuesOrigin.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReportedValuesOrigin.php deleted file mode 100644 index bddf778f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReportedValuesOrigin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReportedValuesOrigin extends AbstractTag -{ - - protected $Id = '3002,000A'; - - protected $Name = 'ReportedValuesOrigin'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reported Values Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReportingPriority.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReportingPriority.php deleted file mode 100644 index 4f39374d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReportingPriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReportingPriority extends AbstractTag -{ - - protected $Id = '0040,1009'; - - protected $Name = 'ReportingPriority'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reporting Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RepresentativeFrameNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/RepresentativeFrameNumber.php deleted file mode 100644 index db3565e13..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RepresentativeFrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepresentativeFrameNumber extends AbstractTag -{ - - protected $Id = '0028,6010'; - - protected $Name = 'RepresentativeFrameNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Representative Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReprojectionMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReprojectionMethod.php deleted file mode 100644 index eceae0e97..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReprojectionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReprojectionMethod extends AbstractTag -{ - - protected $Id = '0054,1004'; - - protected $Name = 'ReprojectionMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reprojection Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestAttributesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestAttributesSequence.php deleted file mode 100644 index b7f6e3848..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestAttributesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestAttributesSequence extends AbstractTag -{ - - protected $Id = '0040,0275'; - - protected $Name = 'RequestAttributesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Request Attributes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestPriority.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestPriority.php deleted file mode 100644 index 2105b9def..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestPriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestPriority extends AbstractTag -{ - - protected $Id = '2200,0020'; - - protected $Name = 'RequestPriority'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Request Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedContrastAgent.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedContrastAgent.php deleted file mode 100644 index 677bfd138..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedContrastAgent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedContrastAgent extends AbstractTag -{ - - protected $Id = '0032,1070'; - - protected $Name = 'RequestedContrastAgent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Contrast Agent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedDecimateCropBehavior.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedDecimateCropBehavior.php deleted file mode 100644 index e6fa6fc33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedDecimateCropBehavior.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedDecimateCropBehavior extends AbstractTag -{ - - protected $Id = '2020,0040'; - - protected $Name = 'RequestedDecimate-CropBehavior'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Decimate-Crop Behavior'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedImageSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedImageSize.php deleted file mode 100644 index 6410567d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedImageSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedImageSize extends AbstractTag -{ - - protected $Id = '2020,0030'; - - protected $Name = 'RequestedImageSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Image Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedImageSizeFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedImageSizeFlag.php deleted file mode 100644 index 27d3a9e79..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedImageSizeFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedImageSizeFlag extends AbstractTag -{ - - protected $Id = '2020,00A0'; - - protected $Name = 'RequestedImageSizeFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Image Size Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedMediaApplicationProfile.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedMediaApplicationProfile.php deleted file mode 100644 index 9b3282aa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedMediaApplicationProfile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedMediaApplicationProfile extends AbstractTag -{ - - protected $Id = '2200,000C'; - - protected $Name = 'RequestedMediaApplicationProfile'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Media Application Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureCodeSequence.php deleted file mode 100644 index cb9a25193..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedProcedureCodeSequence extends AbstractTag -{ - - protected $Id = '0032,1064'; - - protected $Name = 'RequestedProcedureCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Procedure Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureComments.php deleted file mode 100644 index b7783e7b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedProcedureComments extends AbstractTag -{ - - protected $Id = '0040,1400'; - - protected $Name = 'RequestedProcedureComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Procedure Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureDescription.php deleted file mode 100644 index 58766fb06..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedProcedureDescription extends AbstractTag -{ - - protected $Id = '0032,1060'; - - protected $Name = 'RequestedProcedureDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Procedure Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureID.php deleted file mode 100644 index 67f88b827..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedProcedureID extends AbstractTag -{ - - protected $Id = '0040,1001'; - - protected $Name = 'RequestedProcedureID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Procedure ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureLocation.php deleted file mode 100644 index 36c1aa09c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedureLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedProcedureLocation extends AbstractTag -{ - - protected $Id = '0040,1005'; - - protected $Name = 'RequestedProcedureLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Procedure Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedurePriority.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedurePriority.php deleted file mode 100644 index 68c088533..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedProcedurePriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedProcedurePriority extends AbstractTag -{ - - protected $Id = '0040,1003'; - - protected $Name = 'RequestedProcedurePriority'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Procedure Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedResolutionID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedResolutionID.php deleted file mode 100644 index 8cc3888ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedResolutionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedResolutionID extends AbstractTag -{ - - protected $Id = '2020,0050'; - - protected $Name = 'RequestedResolutionID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Resolution ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedSubsequentWorkItemCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestedSubsequentWorkItemCodeSeq.php deleted file mode 100644 index a842747aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestedSubsequentWorkItemCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestedSubsequentWorkItemCodeSeq extends AbstractTag -{ - - protected $Id = '0040,4031'; - - protected $Name = 'RequestedSubsequentWorkItemCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requested Subsequent Work Item Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingAE.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestingAE.php deleted file mode 100644 index d14ad1f85..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingAE.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestingAE extends AbstractTag -{ - - protected $Id = '0074,1236'; - - protected $Name = 'RequestingAE'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requesting AE'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingPhysician.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestingPhysician.php deleted file mode 100644 index f1aac1c66..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingPhysician.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestingPhysician extends AbstractTag -{ - - protected $Id = '0032,1032'; - - protected $Name = 'RequestingPhysician'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requesting Physician'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingPhysicianIDSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestingPhysicianIDSequence.php deleted file mode 100644 index 356046188..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingPhysicianIDSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestingPhysicianIDSequence extends AbstractTag -{ - - protected $Id = '0032,1031'; - - protected $Name = 'RequestingPhysicianIDSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requesting Physician ID Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingService.php b/lib/PHPExiftool/Driver/Tag/DICOM/RequestingService.php deleted file mode 100644 index c2331904f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RequestingService.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestingService extends AbstractTag -{ - - protected $Id = '0032,1033'; - - protected $Name = 'RequestingService'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requesting Service'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RescaleIntercept.php b/lib/PHPExiftool/Driver/Tag/DICOM/RescaleIntercept.php deleted file mode 100644 index ded13d0d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RescaleIntercept.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RescaleIntercept extends AbstractTag -{ - - protected $Id = '0028,1052'; - - protected $Name = 'RescaleIntercept'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rescale Intercept'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RescaleSlope.php b/lib/PHPExiftool/Driver/Tag/DICOM/RescaleSlope.php deleted file mode 100644 index dbbdbaa80..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RescaleSlope.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RescaleSlope extends AbstractTag -{ - - protected $Id = '0028,1053'; - - protected $Name = 'RescaleSlope'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rescale Slope'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RescaleType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RescaleType.php deleted file mode 100644 index cc9147c80..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RescaleType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RescaleType extends AbstractTag -{ - - protected $Id = '0028,1054'; - - protected $Name = 'RescaleType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rescale Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResidualSyringeCounts.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResidualSyringeCounts.php deleted file mode 100644 index 33b807073..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResidualSyringeCounts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResidualSyringeCounts extends AbstractTag -{ - - protected $Id = '0054,0017'; - - protected $Name = 'ResidualSyringeCounts'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Residual Syringe Counts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResonantNucleus.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResonantNucleus.php deleted file mode 100644 index 18d8346f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResonantNucleus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResonantNucleus extends AbstractTag -{ - - protected $Id = '0018,9100'; - - protected $Name = 'ResonantNucleus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resonant Nucleus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryCyclePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryCyclePosition.php deleted file mode 100644 index b878b81dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryCyclePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryCyclePosition extends AbstractTag -{ - - protected $Id = '0018,9214'; - - protected $Name = 'RespiratoryCyclePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Cycle Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryIntervalTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryIntervalTime.php deleted file mode 100644 index 6b2a65caa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryIntervalTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryIntervalTime extends AbstractTag -{ - - protected $Id = '0020,9254'; - - protected $Name = 'RespiratoryIntervalTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Interval Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryMotionCompTechDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryMotionCompTechDescr.php deleted file mode 100644 index 8932ebdc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryMotionCompTechDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryMotionCompTechDescr extends AbstractTag -{ - - protected $Id = '0018,9185'; - - protected $Name = 'RespiratoryMotionCompTechDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Motion Comp Tech Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryMotionCompTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryMotionCompTechnique.php deleted file mode 100644 index e3ffdadc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryMotionCompTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryMotionCompTechnique extends AbstractTag -{ - - protected $Id = '0018,9170'; - - protected $Name = 'RespiratoryMotionCompTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Motion Comp Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryRateBpm.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryRateBpm.php deleted file mode 100644 index d1118f292..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryRateBpm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryRateBpm extends AbstractTag -{ - - protected $Id = '0043,1008'; - - protected $Name = 'RespiratoryRateBpm'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Rate Bpm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySignalSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySignalSource.php deleted file mode 100644 index 8806ac391..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySignalSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratorySignalSource extends AbstractTag -{ - - protected $Id = '0018,9171'; - - protected $Name = 'RespiratorySignalSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Signal Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySignalSourceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySignalSourceID.php deleted file mode 100644 index 8553e2819..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySignalSourceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratorySignalSourceID extends AbstractTag -{ - - protected $Id = '0018,9186'; - - protected $Name = 'RespiratorySignalSourceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Signal Source ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySynchronizationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySynchronizationSequence.php deleted file mode 100644 index 14e8bfc55..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratorySynchronizationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratorySynchronizationSequence extends AbstractTag -{ - - protected $Id = '0020,9253'; - - protected $Name = 'RespiratorySynchronizationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Synchronization Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerDelayThreshold.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerDelayThreshold.php deleted file mode 100644 index 3ff464200..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerDelayThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryTriggerDelayThreshold extends AbstractTag -{ - - protected $Id = '0020,9256'; - - protected $Name = 'RespiratoryTriggerDelayThreshold'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Trigger Delay Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerPoint.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerPoint.php deleted file mode 100644 index 59ea6181c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryTriggerPoint extends AbstractTag -{ - - protected $Id = '0043,1009'; - - protected $Name = 'RespiratoryTriggerPoint'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Trigger Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerType.php b/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerType.php deleted file mode 100644 index 139fa99be..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RespiratoryTriggerType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RespiratoryTriggerType extends AbstractTag -{ - - protected $Id = '0020,9250'; - - protected $Name = 'RespiratoryTriggerType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Respiratory Trigger Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResponsibleOrganization.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResponsibleOrganization.php deleted file mode 100644 index bf702515c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResponsibleOrganization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResponsibleOrganization extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ResponsibleOrganization'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Responsible Organization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResponsiblePerson.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResponsiblePerson.php deleted file mode 100644 index 5570f0023..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResponsiblePerson.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResponsiblePerson extends AbstractTag -{ - - protected $Id = '0010,2297'; - - protected $Name = 'ResponsiblePerson'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Responsible Person'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResponsiblePersonRole.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResponsiblePersonRole.php deleted file mode 100644 index 6389ff84e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResponsiblePersonRole.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResponsiblePersonRole extends AbstractTag -{ - - protected $Id = '0010,2298'; - - protected $Name = 'ResponsiblePersonRole'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Responsible Person Role'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResultingGenPurposePerfProcStepSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResultingGenPurposePerfProcStepSeq.php deleted file mode 100644 index fb54d97aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResultingGenPurposePerfProcStepSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResultingGenPurposePerfProcStepSeq extends AbstractTag -{ - - protected $Id = '0040,4015'; - - protected $Name = 'ResultingGenPurposePerfProcStepSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resulting Gen Purpose Perf Proc Step Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResultsComments.php deleted file mode 100644 index c3a5fdfed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResultsComments extends AbstractTag -{ - - protected $Id = '4008,4000'; - - protected $Name = 'ResultsComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Results Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsDistributionListSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResultsDistributionListSequence.php deleted file mode 100644 index 3e80128c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsDistributionListSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResultsDistributionListSequence extends AbstractTag -{ - - protected $Id = '4008,0118'; - - protected $Name = 'ResultsDistributionListSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Results Distribution List Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResultsID.php deleted file mode 100644 index b99d88eef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResultsID extends AbstractTag -{ - - protected $Id = '4008,0040'; - - protected $Name = 'ResultsID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Results ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsIDIssuer.php b/lib/PHPExiftool/Driver/Tag/DICOM/ResultsIDIssuer.php deleted file mode 100644 index a4a79bedd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ResultsIDIssuer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResultsIDIssuer extends AbstractTag -{ - - protected $Id = '4008,0042'; - - protected $Name = 'ResultsIDIssuer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Results ID Issuer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveAETitle.php b/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveAETitle.php deleted file mode 100644 index 3d5844011..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveAETitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetrieveAETitle extends AbstractTag -{ - - protected $Id = '0008,0054'; - - protected $Name = 'RetrieveAETitle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Retrieve AE Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveLocationUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveLocationUID.php deleted file mode 100644 index ce0853e96..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveLocationUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetrieveLocationUID extends AbstractTag -{ - - protected $Id = '0040,E011'; - - protected $Name = 'RetrieveLocationUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Retrieve Location UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveURI.php b/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveURI.php deleted file mode 100644 index 9ce98797c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RetrieveURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetrieveURI extends AbstractTag -{ - - protected $Id = '0040,E010'; - - protected $Name = 'RetrieveURI'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Retrieve URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReviewDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReviewDate.php deleted file mode 100644 index 620f7c14e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReviewDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReviewDate extends AbstractTag -{ - - protected $Id = '300E,0004'; - - protected $Name = 'ReviewDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Review Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReviewTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReviewTime.php deleted file mode 100644 index 82b1de634..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReviewTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReviewTime extends AbstractTag -{ - - protected $Id = '300E,0005'; - - protected $Name = 'ReviewTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Review Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ReviewerName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ReviewerName.php deleted file mode 100644 index 9a497cda2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ReviewerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReviewerName extends AbstractTag -{ - - protected $Id = '300E,0008'; - - protected $Name = 'ReviewerName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reviewer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RevolutionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/RevolutionTime.php deleted file mode 100644 index 579e3300a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RevolutionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RevolutionTime extends AbstractTag -{ - - protected $Id = '0018,9305'; - - protected $Name = 'RevolutionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revolution Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RightImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RightImageSequence.php deleted file mode 100644 index ce2a93228..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RightImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightImageSequence extends AbstractTag -{ - - protected $Id = '0022,0022'; - - protected $Name = 'RightImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Right Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RightLensSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RightLensSequence.php deleted file mode 100644 index 98e96fa1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RightLensSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightLensSequence extends AbstractTag -{ - - protected $Id = '0046,0014'; - - protected $Name = 'RightLensSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Right Lens Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationDirection.php deleted file mode 100644 index 7522ab9f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationDirection extends AbstractTag -{ - - protected $Id = '0018,1140'; - - protected $Name = 'RotationDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceXRot.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceXRot.php deleted file mode 100644 index bdcdca145..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceXRot.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationFromSourceXRot extends AbstractTag -{ - - protected $Id = '0021,1051'; - - protected $Name = 'RotationFromSourceXRot'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation From Source X Rot'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceYRot.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceYRot.php deleted file mode 100644 index 8d4ee1279..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceYRot.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationFromSourceYRot extends AbstractTag -{ - - protected $Id = '0021,1052'; - - protected $Name = 'RotationFromSourceYRot'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation From Source Y Rot'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceZRot.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceZRot.php deleted file mode 100644 index 30ef39630..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationFromSourceZRot.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationFromSourceZRot extends AbstractTag -{ - - protected $Id = '0021,1053'; - - protected $Name = 'RotationFromSourceZRot'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation From Source Z Rot'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationInformationSequence.php deleted file mode 100644 index 77f0c07a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationInformationSequence extends AbstractTag -{ - - protected $Id = '0054,0052'; - - protected $Name = 'RotationInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationOfScannedFilm.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationOfScannedFilm.php deleted file mode 100644 index 635aa2e23..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationOfScannedFilm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationOfScannedFilm extends AbstractTag -{ - - protected $Id = '0018,2030'; - - protected $Name = 'RotationOfScannedFilm'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation Of Scanned Film'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationOffset.php deleted file mode 100644 index a0ec33eba..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationOffset extends AbstractTag -{ - - protected $Id = '0018,1146'; - - protected $Name = 'RotationOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RotationVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/RotationVector.php deleted file mode 100644 index 17928eece..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RotationVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationVector extends AbstractTag -{ - - protected $Id = '0054,0050'; - - protected $Name = 'RotationVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RouteOfAdmissions.php b/lib/PHPExiftool/Driver/Tag/DICOM/RouteOfAdmissions.php deleted file mode 100644 index 98d80b9ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RouteOfAdmissions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RouteOfAdmissions extends AbstractTag -{ - - protected $Id = '0038,0016'; - - protected $Name = 'RouteOfAdmissions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Route Of Admissions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RowOverlap.php b/lib/PHPExiftool/Driver/Tag/DICOM/RowOverlap.php deleted file mode 100644 index f0d3588dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RowOverlap.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RowOverlap extends AbstractTag -{ - - protected $Id = '0028,0093'; - - protected $Name = 'RowOverlap'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Row Overlap'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Rows.php b/lib/PHPExiftool/Driver/Tag/DICOM/Rows.php deleted file mode 100644 index 8a05674f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Rows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rows extends AbstractTag -{ - - protected $Id = '0028,0010'; - - protected $Name = 'Rows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/RunLengthTriplet.php b/lib/PHPExiftool/Driver/Tag/DICOM/RunLengthTriplet.php deleted file mode 100644 index 16b0d4568..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/RunLengthTriplet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RunLengthTriplet extends AbstractTag -{ - - protected $Id = '1000,xxx1'; - - protected $Name = 'RunLengthTriplet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Run Length Triplet'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SAR.php b/lib/PHPExiftool/Driver/Tag/DICOM/SAR.php deleted file mode 100644 index 4f4a512ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SAR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SAR extends AbstractTag -{ - - protected $Id = '0018,1316'; - - protected $Name = 'SAR'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATFatWaterBone.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATFatWaterBone.php deleted file mode 100644 index fbebe78e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATFatWaterBone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATFatWaterBone extends AbstractTag -{ - - protected $Id = '0019,10A4'; - - protected $Name = 'SATFatWaterBone'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Fat Water Bone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationA.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationA.php deleted file mode 100644 index bdaf76c18..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationA.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATLocationA extends AbstractTag -{ - - protected $Id = '0019,10C4'; - - protected $Name = 'SATLocationA'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Location A'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationF.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationF.php deleted file mode 100644 index f0fb34c13..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationF.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATLocationF extends AbstractTag -{ - - protected $Id = '0019,10C7'; - - protected $Name = 'SATLocationF'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Location F'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationH.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationH.php deleted file mode 100644 index 7684fd38a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationH.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATLocationH extends AbstractTag -{ - - protected $Id = '0019,10C6'; - - protected $Name = 'SATLocationH'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Location H'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationL.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationL.php deleted file mode 100644 index c4fc309f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATLocationL extends AbstractTag -{ - - protected $Id = '0019,10C3'; - - protected $Name = 'SATLocationL'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Location L'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationP.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationP.php deleted file mode 100644 index 77b471228..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATLocationP extends AbstractTag -{ - - protected $Id = '0019,10C5'; - - protected $Name = 'SATLocationP'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Location P'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationR.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationR.php deleted file mode 100644 index 5159e1ca8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATLocationR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATLocationR extends AbstractTag -{ - - protected $Id = '0019,10C2'; - - protected $Name = 'SATLocationR'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Location R'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessAP.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessAP.php deleted file mode 100644 index c88d0fe89..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessAP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATThicknessAP extends AbstractTag -{ - - protected $Id = '0019,10C9'; - - protected $Name = 'SATThicknessA-P'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Thickness A-P'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessHF.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessHF.php deleted file mode 100644 index 61325e334..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessHF.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATThicknessHF extends AbstractTag -{ - - protected $Id = '0019,10CA'; - - protected $Name = 'SATThicknessH-F'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Thickness H-F'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessRL.php b/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessRL.php deleted file mode 100644 index f7771d241..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SATThicknessRL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SATThicknessRL extends AbstractTag -{ - - protected $Id = '0019,10C8'; - - protected $Name = 'SATThicknessR-L'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAT Thickness R-L'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SCPStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/SCPStatus.php deleted file mode 100644 index b24d86964..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SCPStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SCPStatus extends AbstractTag -{ - - protected $Id = '0074,1242'; - - protected $Name = 'SCPStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SCP Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SCoordOfBottomRightCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/SCoordOfBottomRightCorner.php deleted file mode 100644 index ee77849dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SCoordOfBottomRightCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SCoordOfBottomRightCorner extends AbstractTag -{ - - protected $Id = '0027,104D'; - - protected $Name = 'SCoordOfBottomRightCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'S Coord Of Bottom Right Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SCoordOfTopRightCorner.php b/lib/PHPExiftool/Driver/Tag/DICOM/SCoordOfTopRightCorner.php deleted file mode 100644 index d53ef1406..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SCoordOfTopRightCorner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SCoordOfTopRightCorner extends AbstractTag -{ - - protected $Id = '0027,104A'; - - protected $Name = 'SCoordOfTopRightCorner'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'S Coord Of Top Right Corner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SOPAuthorizationComment.php b/lib/PHPExiftool/Driver/Tag/DICOM/SOPAuthorizationComment.php deleted file mode 100644 index 6c4ee1e60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SOPAuthorizationComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SOPAuthorizationComment extends AbstractTag -{ - - protected $Id = '0100,0424'; - - protected $Name = 'SOPAuthorizationComment'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SOP Authorization Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SOPAuthorizationDateAndTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SOPAuthorizationDateAndTime.php deleted file mode 100644 index 2cd463211..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SOPAuthorizationDateAndTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SOPAuthorizationDateAndTime extends AbstractTag -{ - - protected $Id = '0100,0420'; - - protected $Name = 'SOPAuthorizationDateAndTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SOP Authorization Date And Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassUID.php deleted file mode 100644 index e7053ad7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SOPClassUID extends AbstractTag -{ - - protected $Id = '0008,0016'; - - protected $Name = 'SOPClassUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SOP Class UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassesInStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassesInStudy.php deleted file mode 100644 index f4e341f8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassesInStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SOPClassesInStudy extends AbstractTag -{ - - protected $Id = '0008,0062'; - - protected $Name = 'SOPClassesInStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SOP Classes In Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassesSupported.php b/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassesSupported.php deleted file mode 100644 index cf8a1376a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SOPClassesSupported.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SOPClassesSupported extends AbstractTag -{ - - protected $Id = '0008,115A'; - - protected $Name = 'SOPClassesSupported'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SOP Classes Supported'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SOPInstanceStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/SOPInstanceStatus.php deleted file mode 100644 index 097f298f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SOPInstanceStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SOPInstanceStatus extends AbstractTag -{ - - protected $Id = '0100,0410'; - - protected $Name = 'SOPInstanceStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SOP Instance Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SOPInstanceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SOPInstanceUID.php deleted file mode 100644 index 825cde66f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SOPInstanceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SOPInstanceUID extends AbstractTag -{ - - protected $Id = '0008,0018'; - - protected $Name = 'SOPInstanceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SOP Instance UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionExitDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionExitDate.php deleted file mode 100644 index 0a27e20d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionExitDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SafePositionExitDate extends AbstractTag -{ - - protected $Id = '3008,0162'; - - protected $Name = 'SafePositionExitDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Safe Position Exit Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionExitTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionExitTime.php deleted file mode 100644 index d36752807..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionExitTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SafePositionExitTime extends AbstractTag -{ - - protected $Id = '3008,0164'; - - protected $Name = 'SafePositionExitTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Safe Position Exit Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionReturnDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionReturnDate.php deleted file mode 100644 index b3fe0ee9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionReturnDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SafePositionReturnDate extends AbstractTag -{ - - protected $Id = '3008,0166'; - - protected $Name = 'SafePositionReturnDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Safe Position Return Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionReturnTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionReturnTime.php deleted file mode 100644 index 8f2882a45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SafePositionReturnTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SafePositionReturnTime extends AbstractTag -{ - - protected $Id = '3008,0168'; - - protected $Name = 'SafePositionReturnTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Safe Position Return Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SampleRate.php b/lib/PHPExiftool/Driver/Tag/DICOM/SampleRate.php deleted file mode 100644 index 76a87d785..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = '50xx,2008'; - - protected $Name = 'SampleRate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SamplesPerPixel.php b/lib/PHPExiftool/Driver/Tag/DICOM/SamplesPerPixel.php deleted file mode 100644 index 7fb61e210..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SamplesPerPixel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamplesPerPixel extends AbstractTag -{ - - protected $Id = '0028,0002'; - - protected $Name = 'SamplesPerPixel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Samples Per Pixel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SamplesPerPixelUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/SamplesPerPixelUsed.php deleted file mode 100644 index 0ad83b22e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SamplesPerPixelUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamplesPerPixelUsed extends AbstractTag -{ - - protected $Id = '0028,0003'; - - protected $Name = 'SamplesPerPixelUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Samples Per Pixel Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SamplingFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/SamplingFrequency.php deleted file mode 100644 index f02529f6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SamplingFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamplingFrequency extends AbstractTag -{ - - protected $Id = '003A,001A'; - - protected $Name = 'SamplingFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sampling Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Saravghead.php b/lib/PHPExiftool/Driver/Tag/DICOM/Saravghead.php deleted file mode 100644 index ced9d6c0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Saravghead.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saravghead extends AbstractTag -{ - - protected $Id = '0043,100F'; - - protected $Name = 'Saravghead'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Saravghead'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SaturationPlanes.php b/lib/PHPExiftool/Driver/Tag/DICOM/SaturationPlanes.php deleted file mode 100644 index d87db4d59..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SaturationPlanes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationPlanes extends AbstractTag -{ - - protected $Id = '0019,10C0'; - - protected $Name = 'SaturationPlanes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Saturation Planes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SaturationRecovery.php b/lib/PHPExiftool/Driver/Tag/DICOM/SaturationRecovery.php deleted file mode 100644 index 2c8ecf387..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SaturationRecovery.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationRecovery extends AbstractTag -{ - - protected $Id = '0018,9024'; - - protected $Name = 'SaturationRecovery'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Saturation Recovery'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SaveCompInstancesAfterMediaCreate.php b/lib/PHPExiftool/Driver/Tag/DICOM/SaveCompInstancesAfterMediaCreate.php deleted file mode 100644 index c1a13f18e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SaveCompInstancesAfterMediaCreate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaveCompInstancesAfterMediaCreate extends AbstractTag -{ - - protected $Id = '2200,000A'; - - protected $Name = 'SaveCompInstancesAfterMediaCreate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Save Comp Instances After Media Create'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanArc.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanArc.php deleted file mode 100644 index 2ad507dc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanArc extends AbstractTag -{ - - protected $Id = '0018,1143'; - - protected $Name = 'ScanArc'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanFOVType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanFOVType.php deleted file mode 100644 index 960b270ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanFOVType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanFOVType extends AbstractTag -{ - - protected $Id = '0019,1039'; - - protected $Name = 'ScanFOVType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan FOV Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanLength.php deleted file mode 100644 index b6b7bede5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanLength extends AbstractTag -{ - - protected $Id = '0018,1302'; - - protected $Name = 'ScanLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanMode.php deleted file mode 100644 index 6bc124d13..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanMode extends AbstractTag -{ - - protected $Id = '300A,0308'; - - protected $Name = 'ScanMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanOptions.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanOptions.php deleted file mode 100644 index 3d09bb054..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanOptions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanOptions extends AbstractTag -{ - - protected $Id = '0018,0022'; - - protected $Name = 'ScanOptions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Options'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanPitchRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanPitchRatio.php deleted file mode 100644 index 75773b72b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanPitchRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanPitchRatio extends AbstractTag -{ - - protected $Id = '0043,1027'; - - protected $Name = 'ScanPitchRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Pitch Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotMetersetWeights.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotMetersetWeights.php deleted file mode 100644 index d892ffcce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotMetersetWeights.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanSpotMetersetWeights extends AbstractTag -{ - - protected $Id = '300A,0396'; - - protected $Name = 'ScanSpotMetersetWeights'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Spot Meterset Weights'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotMetersetsDelivered.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotMetersetsDelivered.php deleted file mode 100644 index 0f803e517..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotMetersetsDelivered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanSpotMetersetsDelivered extends AbstractTag -{ - - protected $Id = '3008,0047'; - - protected $Name = 'ScanSpotMetersetsDelivered'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Spot Metersets Delivered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotPositionMap.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotPositionMap.php deleted file mode 100644 index ab75437bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotPositionMap.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanSpotPositionMap extends AbstractTag -{ - - protected $Id = '300A,0394'; - - protected $Name = 'ScanSpotPositionMap'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Spot Position Map'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotTuneID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotTuneID.php deleted file mode 100644 index 67e5c2080..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanSpotTuneID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanSpotTuneID extends AbstractTag -{ - - protected $Id = '300A,0390'; - - protected $Name = 'ScanSpotTuneID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Spot Tune ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanVelocity.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanVelocity.php deleted file mode 100644 index 6e80bb409..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanVelocity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanVelocity extends AbstractTag -{ - - protected $Id = '0018,1300'; - - protected $Name = 'ScanVelocity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Velocity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScannerStudyEntityUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScannerStudyEntityUID.php deleted file mode 100644 index e07ba780e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScannerStudyEntityUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerStudyEntityUID extends AbstractTag -{ - - protected $Id = '0043,1061'; - - protected $Name = 'ScannerStudyEntityUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanner Study Entity UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScannerStudyID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScannerStudyID.php deleted file mode 100644 index c8797106f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScannerStudyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerStudyID extends AbstractTag -{ - - protected $Id = '0043,1062'; - - protected $Name = 'ScannerStudyID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanner Study ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScannerTableEntry.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScannerTableEntry.php deleted file mode 100644 index 3a2f1fc98..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScannerTableEntry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerTableEntry extends AbstractTag -{ - - protected $Id = '0043,106f'; - - protected $Name = 'ScannerTableEntry'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanner Table Entry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanningSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanningSequence.php deleted file mode 100644 index 68aa27d8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanningSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanningSequence extends AbstractTag -{ - - protected $Id = '0018,0020'; - - protected $Name = 'ScanningSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanning Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScanningSpotSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScanningSpotSize.php deleted file mode 100644 index ad66fac1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScanningSpotSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanningSpotSize extends AbstractTag -{ - - protected $Id = '300A,0398'; - - protected $Name = 'ScanningSpotSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanning Spot Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScatterCorrected.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScatterCorrected.php deleted file mode 100644 index 8263a4717..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScatterCorrected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScatterCorrected extends AbstractTag -{ - - protected $Id = '0018,9760'; - - protected $Name = 'ScatterCorrected'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scatter Corrected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScatterCorrectionMethod.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScatterCorrectionMethod.php deleted file mode 100644 index 99a1fdb51..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScatterCorrectionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScatterCorrectionMethod extends AbstractTag -{ - - protected $Id = '0054,1105'; - - protected $Name = 'ScatterCorrectionMethod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scatter Correction Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScatterFractionFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScatterFractionFactor.php deleted file mode 100644 index 8c350ae7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScatterFractionFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScatterFractionFactor extends AbstractTag -{ - - protected $Id = '0054,1323'; - - protected $Name = 'ScatterFractionFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scatter Fraction Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcStepModificationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcStepModificationDateTime.php deleted file mode 100644 index f7a31dc55..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcStepModificationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SchedProcStepModificationDateTime extends AbstractTag -{ - - protected $Id = '0040,4010'; - - protected $Name = 'SchedProcStepModificationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sched Proc Step Modification Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcedureStepStartDateAndTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcedureStepStartDateAndTime.php deleted file mode 100644 index 2f199a855..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcedureStepStartDateAndTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SchedProcedureStepStartDateAndTime extends AbstractTag -{ - - protected $Id = '0040,4005'; - - protected $Name = 'SchedProcedureStepStartDateAndTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sched Procedure Step Start Date And Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcessingApplicationsCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcessingApplicationsCodeSeq.php deleted file mode 100644 index 049310d4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SchedProcessingApplicationsCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SchedProcessingApplicationsCodeSeq extends AbstractTag -{ - - protected $Id = '0040,4004'; - - protected $Name = 'SchedProcessingApplicationsCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sched Processing Applications Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SchedStationGeographicLocCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/SchedStationGeographicLocCodeSeq.php deleted file mode 100644 index c21b99ae9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SchedStationGeographicLocCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SchedStationGeographicLocCodeSeq extends AbstractTag -{ - - protected $Id = '0040,4027'; - - protected $Name = 'SchedStationGeographicLocCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sched Station Geographic Loc Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledAdmissionDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledAdmissionDate.php deleted file mode 100644 index 82b49f50d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledAdmissionDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledAdmissionDate extends AbstractTag -{ - - protected $Id = '0038,001A'; - - protected $Name = 'ScheduledAdmissionDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Admission Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledAdmissionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledAdmissionTime.php deleted file mode 100644 index 3dbfd29a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledAdmissionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledAdmissionTime extends AbstractTag -{ - - protected $Id = '0038,001B'; - - protected $Name = 'ScheduledAdmissionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Admission Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledDischargeDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledDischargeDate.php deleted file mode 100644 index 71d642134..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledDischargeDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledDischargeDate extends AbstractTag -{ - - protected $Id = '0038,001C'; - - protected $Name = 'ScheduledDischargeDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Discharge Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledDischargeTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledDischargeTime.php deleted file mode 100644 index a6ec02f8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledDischargeTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledDischargeTime extends AbstractTag -{ - - protected $Id = '0038,001D'; - - protected $Name = 'ScheduledDischargeTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Discharge Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledHumanPerformersSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledHumanPerformersSequence.php deleted file mode 100644 index d9b7eef90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledHumanPerformersSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledHumanPerformersSequence extends AbstractTag -{ - - protected $Id = '0040,4034'; - - protected $Name = 'ScheduledHumanPerformersSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Human Performers Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPatientInstitResidence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPatientInstitResidence.php deleted file mode 100644 index 3bfd7546a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPatientInstitResidence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledPatientInstitResidence extends AbstractTag -{ - - protected $Id = '0038,001E'; - - protected $Name = 'ScheduledPatientInstitResidence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Patient Instit Residence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPerformingPhysicianIDSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPerformingPhysicianIDSeq.php deleted file mode 100644 index c10b12e5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPerformingPhysicianIDSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledPerformingPhysicianIDSeq extends AbstractTag -{ - - protected $Id = '0040,000B'; - - protected $Name = 'ScheduledPerformingPhysicianIDSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Performing Physician ID Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPerformingPhysiciansName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPerformingPhysiciansName.php deleted file mode 100644 index cc6c8ea25..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledPerformingPhysiciansName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledPerformingPhysiciansName extends AbstractTag -{ - - protected $Id = '0040,0006'; - - protected $Name = 'ScheduledPerformingPhysiciansName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Performing Physicians Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepDescription.php deleted file mode 100644 index 68973148a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepDescription extends AbstractTag -{ - - protected $Id = '0040,0007'; - - protected $Name = 'ScheduledProcedureStepDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepEndDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepEndDate.php deleted file mode 100644 index 86da0f8d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepEndDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepEndDate extends AbstractTag -{ - - protected $Id = '0040,0004'; - - protected $Name = 'ScheduledProcedureStepEndDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step End Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepEndTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepEndTime.php deleted file mode 100644 index ca090bdb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepEndTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepEndTime extends AbstractTag -{ - - protected $Id = '0040,0005'; - - protected $Name = 'ScheduledProcedureStepEndTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step End Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepID.php deleted file mode 100644 index aa6de69f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepID extends AbstractTag -{ - - protected $Id = '0040,0009'; - - protected $Name = 'ScheduledProcedureStepID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepLocation.php deleted file mode 100644 index 717f1182d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepLocation extends AbstractTag -{ - - protected $Id = '0040,0011'; - - protected $Name = 'ScheduledProcedureStepLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepPriority.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepPriority.php deleted file mode 100644 index ce3663879..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepPriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepPriority extends AbstractTag -{ - - protected $Id = '0074,1200'; - - protected $Name = 'ScheduledProcedureStepPriority'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepSequence.php deleted file mode 100644 index ec23d5c8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepSequence extends AbstractTag -{ - - protected $Id = '0040,0100'; - - protected $Name = 'ScheduledProcedureStepSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStartDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStartDate.php deleted file mode 100644 index b95636748..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStartDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepStartDate extends AbstractTag -{ - - protected $Id = '0040,0002'; - - protected $Name = 'ScheduledProcedureStepStartDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step Start Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStartTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStartTime.php deleted file mode 100644 index f1e202780..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepStartTime extends AbstractTag -{ - - protected $Id = '0040,0003'; - - protected $Name = 'ScheduledProcedureStepStartTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStatus.php deleted file mode 100644 index 931d82464..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcedureStepStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcedureStepStatus extends AbstractTag -{ - - protected $Id = '0040,0020'; - - protected $Name = 'ScheduledProcedureStepStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Procedure Step Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcessingParametersSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcessingParametersSeq.php deleted file mode 100644 index bea7e789d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProcessingParametersSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProcessingParametersSeq extends AbstractTag -{ - - protected $Id = '0074,1210'; - - protected $Name = 'ScheduledProcessingParametersSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Processing Parameters Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProtocolCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProtocolCodeSequence.php deleted file mode 100644 index 27b892b09..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledProtocolCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledProtocolCodeSequence extends AbstractTag -{ - - protected $Id = '0040,0008'; - - protected $Name = 'ScheduledProtocolCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Protocol Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationAETitle.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationAETitle.php deleted file mode 100644 index 8a8cc7a80..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationAETitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStationAETitle extends AbstractTag -{ - - protected $Id = '0040,0001'; - - protected $Name = 'ScheduledStationAETitle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Station AE Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationClassCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationClassCodeSequence.php deleted file mode 100644 index 5dd1780b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationClassCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStationClassCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4026'; - - protected $Name = 'ScheduledStationClassCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Station Class Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationName.php deleted file mode 100644 index e9cf59264..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStationName extends AbstractTag -{ - - protected $Id = '0040,0010'; - - protected $Name = 'ScheduledStationName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationNameCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationNameCodeSequence.php deleted file mode 100644 index 383200b48..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStationNameCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStationNameCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4025'; - - protected $Name = 'ScheduledStationNameCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Station Name Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStepAttributesSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStepAttributesSequence.php deleted file mode 100644 index f07f20aea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStepAttributesSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStepAttributesSequence extends AbstractTag -{ - - protected $Id = '0040,0270'; - - protected $Name = 'ScheduledStepAttributesSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Step Attributes Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyLocation.php deleted file mode 100644 index bcfb99380..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStudyLocation extends AbstractTag -{ - - protected $Id = '0032,1020'; - - protected $Name = 'ScheduledStudyLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Study Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyLocationAETitle.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyLocationAETitle.php deleted file mode 100644 index 307386e27..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyLocationAETitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStudyLocationAETitle extends AbstractTag -{ - - protected $Id = '0032,1021'; - - protected $Name = 'ScheduledStudyLocationAETitle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Study Location AE Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStartDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStartDate.php deleted file mode 100644 index c6c3e11d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStartDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStudyStartDate extends AbstractTag -{ - - protected $Id = '0032,1000'; - - protected $Name = 'ScheduledStudyStartDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Study Start Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStartTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStartTime.php deleted file mode 100644 index 311ab4c3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStudyStartTime extends AbstractTag -{ - - protected $Id = '0032,1001'; - - protected $Name = 'ScheduledStudyStartTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Study Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStopDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStopDate.php deleted file mode 100644 index 712f13b94..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStopDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStudyStopDate extends AbstractTag -{ - - protected $Id = '0032,1010'; - - protected $Name = 'ScheduledStudyStopDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Study Stop Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStopTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStopTime.php deleted file mode 100644 index ce4a286c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledStudyStopTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledStudyStopTime extends AbstractTag -{ - - protected $Id = '0032,1011'; - - protected $Name = 'ScheduledStudyStopTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Study Stop Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledWorkitemCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledWorkitemCodeSequence.php deleted file mode 100644 index 59b34ad24..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScheduledWorkitemCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScheduledWorkitemCodeSequence extends AbstractTag -{ - - protected $Id = '0040,4018'; - - protected $Name = 'ScheduledWorkitemCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scheduled Workitem Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScoutType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScoutType.php deleted file mode 100644 index 5ea10ed0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScoutType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScoutType extends AbstractTag -{ - - protected $Id = '0027,1010'; - - protected $Name = 'ScoutType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scout Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScreenFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScreenFormat.php deleted file mode 100644 index ebfb2a63e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScreenFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenFormat extends AbstractTag -{ - - protected $Id = '0021,1037'; - - protected $Name = 'ScreenFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screen Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScreenMinimumColorBitDepth.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScreenMinimumColorBitDepth.php deleted file mode 100644 index 9e98c8e34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScreenMinimumColorBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenMinimumColorBitDepth extends AbstractTag -{ - - protected $Id = '0072,010C'; - - protected $Name = 'ScreenMinimumColorBitDepth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screen Minimum Color Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ScreenMinimumGrayscaleBitDepth.php b/lib/PHPExiftool/Driver/Tag/DICOM/ScreenMinimumGrayscaleBitDepth.php deleted file mode 100644 index 1a9323543..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ScreenMinimumGrayscaleBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenMinimumGrayscaleBitDepth extends AbstractTag -{ - - protected $Id = '0072,010A'; - - protected $Name = 'ScreenMinimumGrayscaleBitDepth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screen Minimum Grayscale Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondEcho.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondEcho.php deleted file mode 100644 index bbf62747a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondEcho.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondEcho extends AbstractTag -{ - - protected $Id = '0019,107D'; - - protected $Name = 'SecondEcho'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Second Echo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceID.php deleted file mode 100644 index 08baad7bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryCaptureDeviceID extends AbstractTag -{ - - protected $Id = '0018,1010'; - - protected $Name = 'SecondaryCaptureDeviceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Capture Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceManufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceManufacturer.php deleted file mode 100644 index 9941db5d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryCaptureDeviceManufacturer extends AbstractTag -{ - - protected $Id = '0018,1016'; - - protected $Name = 'SecondaryCaptureDeviceManufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Capture Device Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceModelName.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceModelName.php deleted file mode 100644 index cfc24463d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceModelName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryCaptureDeviceModelName extends AbstractTag -{ - - protected $Id = '0018,1018'; - - protected $Name = 'SecondaryCaptureDeviceModelName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Capture Device Model Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceSoftwareVers.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceSoftwareVers.php deleted file mode 100644 index 1db0c1adb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCaptureDeviceSoftwareVers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryCaptureDeviceSoftwareVers extends AbstractTag -{ - - protected $Id = '0018,1019'; - - protected $Name = 'SecondaryCaptureDeviceSoftwareVers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Capture Device Software Vers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCountsAccumulated.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCountsAccumulated.php deleted file mode 100644 index 1eb274cfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCountsAccumulated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryCountsAccumulated extends AbstractTag -{ - - protected $Id = '0054,1311'; - - protected $Name = 'SecondaryCountsAccumulated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Counts Accumulated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCountsType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCountsType.php deleted file mode 100644 index 0a295ae2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryCountsType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryCountsType extends AbstractTag -{ - - protected $Id = '0054,1220'; - - protected $Name = 'SecondaryCountsType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Counts Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerIncrement.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerIncrement.php deleted file mode 100644 index 2bfd8eee6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerIncrement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryPositionerIncrement extends AbstractTag -{ - - protected $Id = '0018,9515'; - - protected $Name = 'SecondaryPositionerIncrement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Positioner Increment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerScanArc.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerScanArc.php deleted file mode 100644 index e255c569b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerScanArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryPositionerScanArc extends AbstractTag -{ - - protected $Id = '0018,9509'; - - protected $Name = 'SecondaryPositionerScanArc'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Positioner Scan Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerScanStartAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerScanStartAngle.php deleted file mode 100644 index 148d64e3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SecondaryPositionerScanStartAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryPositionerScanStartAngle extends AbstractTag -{ - - protected $Id = '0018,9511'; - - protected $Name = 'SecondaryPositionerScanStartAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Positioner Scan Start Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentAlgorithmName.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentAlgorithmName.php deleted file mode 100644 index 04bcf6304..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentAlgorithmName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentAlgorithmName extends AbstractTag -{ - - protected $Id = '0062,0009'; - - protected $Name = 'SegmentAlgorithmName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Algorithm Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentAlgorithmType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentAlgorithmType.php deleted file mode 100644 index 83e8ebdef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentAlgorithmType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentAlgorithmType extends AbstractTag -{ - - protected $Id = '0062,0008'; - - protected $Name = 'SegmentAlgorithmType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Algorithm Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentDescription.php deleted file mode 100644 index 12fb4896e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentDescription extends AbstractTag -{ - - protected $Id = '0062,0006'; - - protected $Name = 'SegmentDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentIdentificationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentIdentificationSequence.php deleted file mode 100644 index 40bc36d57..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentIdentificationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentIdentificationSequence extends AbstractTag -{ - - protected $Id = '0062,000A'; - - protected $Name = 'SegmentIdentificationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Identification Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentLabel.php deleted file mode 100644 index 48d8b3327..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentLabel extends AbstractTag -{ - - protected $Id = '0062,0005'; - - protected $Name = 'SegmentLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentNumber.php deleted file mode 100644 index 1db003623..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SegmentNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentSequence.php deleted file mode 100644 index 9c6c0e402..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentSequence extends AbstractTag -{ - - protected $Id = '0062,0002'; - - protected $Name = 'SegmentSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentationFractionalType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentationFractionalType.php deleted file mode 100644 index e1c17d24f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentationFractionalType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentationFractionalType extends AbstractTag -{ - - protected $Id = '0062,0010'; - - protected $Name = 'SegmentationFractionalType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmentation Fractional Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentationType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentationType.php deleted file mode 100644 index 5aac8b23b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentationType extends AbstractTag -{ - - protected $Id = '0062,0001'; - - protected $Name = 'SegmentationType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmentation Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedBlueColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedBlueColorTableData.php deleted file mode 100644 index a26b2a32e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedBlueColorTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentedBlueColorTableData extends AbstractTag -{ - - protected $Id = '0028,1223'; - - protected $Name = 'SegmentedBlueColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmented Blue Color Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedGreenColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedGreenColorTableData.php deleted file mode 100644 index c270d296d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedGreenColorTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentedGreenColorTableData extends AbstractTag -{ - - protected $Id = '0028,1222'; - - protected $Name = 'SegmentedGreenColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmented Green Color Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedKSpaceTraversal.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedKSpaceTraversal.php deleted file mode 100644 index ff0e43bab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedKSpaceTraversal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentedKSpaceTraversal extends AbstractTag -{ - - protected $Id = '0018,9033'; - - protected $Name = 'SegmentedKSpaceTraversal'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmented K Space Traversal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedPropertyCategoryCodeSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedPropertyCategoryCodeSeq.php deleted file mode 100644 index deb0841a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedPropertyCategoryCodeSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentedPropertyCategoryCodeSeq extends AbstractTag -{ - - protected $Id = '0062,0003'; - - protected $Name = 'SegmentedPropertyCategoryCodeSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmented Property Category Code Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedPropertyTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedPropertyTypeCodeSequence.php deleted file mode 100644 index 6ea4ba949..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedPropertyTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentedPropertyTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0062,000F'; - - protected $Name = 'SegmentedPropertyTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmented Property Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedRedColorTableData.php b/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedRedColorTableData.php deleted file mode 100644 index d9376de9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SegmentedRedColorTableData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentedRedColorTableData extends AbstractTag -{ - - protected $Id = '0028,1221'; - - protected $Name = 'SegmentedRedColorTableData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segmented Red Color Table Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorATValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorATValue.php deleted file mode 100644 index bbafe8542..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorATValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorATValue extends AbstractTag -{ - - protected $Id = '0072,0060'; - - protected $Name = 'SelectorATValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector AT Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttribute.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttribute.php deleted file mode 100644 index 15e4b2e90..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttribute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorAttribute extends AbstractTag -{ - - protected $Id = '0072,0026'; - - protected $Name = 'SelectorAttribute'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector Attribute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttributePrivateCreator.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttributePrivateCreator.php deleted file mode 100644 index b48aea8b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttributePrivateCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorAttributePrivateCreator extends AbstractTag -{ - - protected $Id = '0072,0056'; - - protected $Name = 'SelectorAttributePrivateCreator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector Attribute Private Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttributeVR.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttributeVR.php deleted file mode 100644 index f291f6124..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorAttributeVR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorAttributeVR extends AbstractTag -{ - - protected $Id = '0072,0050'; - - protected $Name = 'SelectorAttributeVR'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector Attribute VR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorCSValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorCSValue.php deleted file mode 100644 index 8d9ef14a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorCSValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorCSValue extends AbstractTag -{ - - protected $Id = '0072,0062'; - - protected $Name = 'SelectorCSValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector CS Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorCodeSequenceValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorCodeSequenceValue.php deleted file mode 100644 index 30b5badc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorCodeSequenceValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorCodeSequenceValue extends AbstractTag -{ - - protected $Id = '0072,0080'; - - protected $Name = 'SelectorCodeSequenceValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector Code Sequence Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorDSValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorDSValue.php deleted file mode 100644 index fdbfa9520..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorDSValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorDSValue extends AbstractTag -{ - - protected $Id = '0072,0072'; - - protected $Name = 'SelectorDSValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector DS Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorFDValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorFDValue.php deleted file mode 100644 index d157b0974..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorFDValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorFDValue extends AbstractTag -{ - - protected $Id = '0072,0074'; - - protected $Name = 'SelectorFDValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector FD Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorFLValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorFLValue.php deleted file mode 100644 index c51639a8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorFLValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorFLValue extends AbstractTag -{ - - protected $Id = '0072,0076'; - - protected $Name = 'SelectorFLValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector FL Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorISValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorISValue.php deleted file mode 100644 index 00427a0fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorISValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorISValue extends AbstractTag -{ - - protected $Id = '0072,0064'; - - protected $Name = 'SelectorISValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector IS Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorLOValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorLOValue.php deleted file mode 100644 index 369d80a67..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorLOValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorLOValue extends AbstractTag -{ - - protected $Id = '0072,0066'; - - protected $Name = 'SelectorLOValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector LO Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorLTValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorLTValue.php deleted file mode 100644 index 3b2bafca7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorLTValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorLTValue extends AbstractTag -{ - - protected $Id = '0072,0068'; - - protected $Name = 'SelectorLTValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector LT Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorPNValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorPNValue.php deleted file mode 100644 index e1e6359f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorPNValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorPNValue extends AbstractTag -{ - - protected $Id = '0072,006A'; - - protected $Name = 'SelectorPNValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector PN Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSHValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSHValue.php deleted file mode 100644 index 61757c8c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSHValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorSHValue extends AbstractTag -{ - - protected $Id = '0072,006C'; - - protected $Name = 'SelectorSHValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector SH Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSLValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSLValue.php deleted file mode 100644 index d45aa4008..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSLValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorSLValue extends AbstractTag -{ - - protected $Id = '0072,007C'; - - protected $Name = 'SelectorSLValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector SL Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSSValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSSValue.php deleted file mode 100644 index b0e2b1e3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSSValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorSSValue extends AbstractTag -{ - - protected $Id = '0072,007E'; - - protected $Name = 'SelectorSSValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector SS Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSTValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSTValue.php deleted file mode 100644 index 3e59bd8fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSTValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorSTValue extends AbstractTag -{ - - protected $Id = '0072,006E'; - - protected $Name = 'SelectorSTValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector ST Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSeqPointerPrivateCreator.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSeqPointerPrivateCreator.php deleted file mode 100644 index f8c4d2c43..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSeqPointerPrivateCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorSeqPointerPrivateCreator extends AbstractTag -{ - - protected $Id = '0072,0054'; - - protected $Name = 'SelectorSeqPointerPrivateCreator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector Seq Pointer Private Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSequencePointer.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSequencePointer.php deleted file mode 100644 index d7c5c855a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorSequencePointer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorSequencePointer extends AbstractTag -{ - - protected $Id = '0072,0052'; - - protected $Name = 'SelectorSequencePointer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector Sequence Pointer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorULValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorULValue.php deleted file mode 100644 index f1c0d107c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorULValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorULValue extends AbstractTag -{ - - protected $Id = '0072,0078'; - - protected $Name = 'SelectorULValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector UL Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorUSValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorUSValue.php deleted file mode 100644 index be751b098..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorUSValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorUSValue extends AbstractTag -{ - - protected $Id = '0072,007A'; - - protected $Name = 'SelectorUSValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector US Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorUTValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorUTValue.php deleted file mode 100644 index 34c7b2645..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorUTValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorUTValue extends AbstractTag -{ - - protected $Id = '0072,0070'; - - protected $Name = 'SelectorUTValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector UT Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorValueNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SelectorValueNumber.php deleted file mode 100644 index 45d69b83e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SelectorValueNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectorValueNumber extends AbstractTag -{ - - protected $Id = '0072,0028'; - - protected $Name = 'SelectorValueNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selector Value Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Sensitivity.php b/lib/PHPExiftool/Driver/Tag/DICOM/Sensitivity.php deleted file mode 100644 index 8a54d7083..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Sensitivity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sensitivity extends AbstractTag -{ - - protected $Id = '0018,6000'; - - protected $Name = 'Sensitivity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensitivity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SensitivityCalibrated.php b/lib/PHPExiftool/Driver/Tag/DICOM/SensitivityCalibrated.php deleted file mode 100644 index b922ebf9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SensitivityCalibrated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensitivityCalibrated extends AbstractTag -{ - - protected $Id = '0018,9767'; - - protected $Name = 'SensitivityCalibrated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensitivity Calibrated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceName.php b/lib/PHPExiftool/Driver/Tag/DICOM/SequenceName.php deleted file mode 100644 index 2982d872a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceName extends AbstractTag -{ - - protected $Id = '0018,0024'; - - protected $Name = 'SequenceName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sequence Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceOfCompressedData.php b/lib/PHPExiftool/Driver/Tag/DICOM/SequenceOfCompressedData.php deleted file mode 100644 index a79eac09f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceOfCompressedData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceOfCompressedData extends AbstractTag -{ - - protected $Id = '0028,0403'; - - protected $Name = 'SequenceOfCompressedData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sequence Of Compressed Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceOfUltrasoundRegions.php b/lib/PHPExiftool/Driver/Tag/DICOM/SequenceOfUltrasoundRegions.php deleted file mode 100644 index 8a553aea8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceOfUltrasoundRegions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceOfUltrasoundRegions extends AbstractTag -{ - - protected $Id = '0018,6011'; - - protected $Name = 'SequenceOfUltrasoundRegions'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sequence Of Ultrasound Regions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceVariant.php b/lib/PHPExiftool/Driver/Tag/DICOM/SequenceVariant.php deleted file mode 100644 index 3d02676c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SequenceVariant.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceVariant extends AbstractTag -{ - - protected $Id = '0018,0021'; - - protected $Name = 'SequenceVariant'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sequence Variant'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesCompleteFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesCompleteFlag.php deleted file mode 100644 index 2e214c963..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesCompleteFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesCompleteFlag extends AbstractTag -{ - - protected $Id = '0025,1017'; - - protected $Name = 'SeriesCompleteFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Complete Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesContrast.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesContrast.php deleted file mode 100644 index 7b6e96e1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesContrast extends AbstractTag -{ - - protected $Id = '0019,1011'; - - protected $Name = 'SeriesContrast'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesDate.php deleted file mode 100644 index 3a43be1a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesDate extends AbstractTag -{ - - protected $Id = '0008,0021'; - - protected $Name = 'SeriesDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesDescription.php deleted file mode 100644 index 58de44c0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesDescription extends AbstractTag -{ - - protected $Id = '0008,103E'; - - protected $Name = 'SeriesDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesFromWhichPrescribed.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesFromWhichPrescribed.php deleted file mode 100644 index 3d0ab01c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesFromWhichPrescribed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesFromWhichPrescribed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SeriesFromWhichPrescribed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series From Which Prescribed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesInStudy.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesInStudy.php deleted file mode 100644 index 9fb2c7025..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesInStudy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesInStudy extends AbstractTag -{ - - protected $Id = '0020,1000'; - - protected $Name = 'SeriesInStudy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series In Study'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesInstanceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesInstanceUID.php deleted file mode 100644 index cd7cfd2ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesInstanceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesInstanceUID extends AbstractTag -{ - - protected $Id = '0020,000E'; - - protected $Name = 'SeriesInstanceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Instance UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesNumber.php deleted file mode 100644 index d0d18dc76..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesNumber extends AbstractTag -{ - - protected $Id = '0020,0011'; - - protected $Name = 'SeriesNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesPlane.php deleted file mode 100644 index 2199c1cde..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesPlane extends AbstractTag -{ - - protected $Id = '0019,1017'; - - protected $Name = 'SeriesPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesRecordChecksum.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesRecordChecksum.php deleted file mode 100644 index bee745c54..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesRecordChecksum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesRecordChecksum extends AbstractTag -{ - - protected $Id = '0021,1007'; - - protected $Name = 'SeriesRecordChecksum'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Record Checksum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesTime.php deleted file mode 100644 index a55c75933..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesTime extends AbstractTag -{ - - protected $Id = '0008,0031'; - - protected $Name = 'SeriesTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SeriesType.php deleted file mode 100644 index 357adb5f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SeriesType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesType extends AbstractTag -{ - - protected $Id = '0054,1000'; - - protected $Name = 'SeriesType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ServiceEpisodeDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ServiceEpisodeDescription.php deleted file mode 100644 index 471e51001..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ServiceEpisodeDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ServiceEpisodeDescription extends AbstractTag -{ - - protected $Id = '0038,0062'; - - protected $Name = 'ServiceEpisodeDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Service Episode Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ServiceEpisodeID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ServiceEpisodeID.php deleted file mode 100644 index fb67fac4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ServiceEpisodeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ServiceEpisodeID extends AbstractTag -{ - - protected $Id = '0038,0060'; - - protected $Name = 'ServiceEpisodeID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Service Episode ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ServiceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/ServiceID.php deleted file mode 100644 index 4bfbb7a95..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ServiceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ServiceID extends AbstractTag -{ - - protected $Id = '0009,1030'; - - protected $Name = 'ServiceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Service ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetIfFatqEstimatesWereUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetIfFatqEstimatesWereUsed.php deleted file mode 100644 index 18c23cbb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetIfFatqEstimatesWereUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetIfFatqEstimatesWereUsed extends AbstractTag -{ - - protected $Id = '0019,1071'; - - protected $Name = 'SetIfFatqEstimatesWereUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Set If Fatq Estimates Were Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceDescription.php deleted file mode 100644 index 6421df1ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupDeviceDescription extends AbstractTag -{ - - protected $Id = '300A,01BA'; - - protected $Name = 'SetupDeviceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Device Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceLabel.php deleted file mode 100644 index 81998c44b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupDeviceLabel extends AbstractTag -{ - - protected $Id = '300A,01B8'; - - protected $Name = 'SetupDeviceLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Device Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceParameter.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceParameter.php deleted file mode 100644 index 3a8ea4e79..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceParameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupDeviceParameter extends AbstractTag -{ - - protected $Id = '300A,01BC'; - - protected $Name = 'SetupDeviceParameter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Device Parameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceSequence.php deleted file mode 100644 index c4f46a76a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupDeviceSequence extends AbstractTag -{ - - protected $Id = '300A,01B4'; - - protected $Name = 'SetupDeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceType.php deleted file mode 100644 index 8a3d6fe8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupDeviceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupDeviceType extends AbstractTag -{ - - protected $Id = '300A,01B6'; - - protected $Name = 'SetupDeviceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Device Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupImageComment.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupImageComment.php deleted file mode 100644 index daf07e71d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupImageComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupImageComment extends AbstractTag -{ - - protected $Id = '300A,0402'; - - protected $Name = 'SetupImageComment'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Image Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupReferenceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupReferenceDescription.php deleted file mode 100644 index 786add623..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupReferenceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupReferenceDescription extends AbstractTag -{ - - protected $Id = '300A,01D0'; - - protected $Name = 'SetupReferenceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Reference Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupTechnique.php deleted file mode 100644 index 55207eb29..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupTechnique extends AbstractTag -{ - - protected $Id = '300A,01B0'; - - protected $Name = 'SetupTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SetupTechniqueDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/SetupTechniqueDescription.php deleted file mode 100644 index d44d9c61e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SetupTechniqueDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetupTechniqueDescription extends AbstractTag -{ - - protected $Id = '300A,01B2'; - - protected $Name = 'SetupTechniqueDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setup Technique Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShapeType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShapeType.php deleted file mode 100644 index 433acb502..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShapeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShapeType extends AbstractTag -{ - - protected $Id = '0070,0306'; - - protected $Name = 'ShapeType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shape Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SharedFunctionalGroupsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SharedFunctionalGroupsSequence.php deleted file mode 100644 index 1cb7b10dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SharedFunctionalGroupsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharedFunctionalGroupsSequence extends AbstractTag -{ - - protected $Id = '5200,9229'; - - protected $Name = 'SharedFunctionalGroupsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shared Functional Groups Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceDescription.php deleted file mode 100644 index d2ded6b1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShieldingDeviceDescription extends AbstractTag -{ - - protected $Id = '300A,01A6'; - - protected $Name = 'ShieldingDeviceDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shielding Device Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceLabel.php deleted file mode 100644 index 4a8dc3ebf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShieldingDeviceLabel extends AbstractTag -{ - - protected $Id = '300A,01A4'; - - protected $Name = 'ShieldingDeviceLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shielding Device Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDevicePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDevicePosition.php deleted file mode 100644 index be070157e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDevicePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShieldingDevicePosition extends AbstractTag -{ - - protected $Id = '300A,01A8'; - - protected $Name = 'ShieldingDevicePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shielding Device Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceSequence.php deleted file mode 100644 index 87bf8b80f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShieldingDeviceSequence extends AbstractTag -{ - - protected $Id = '300A,01A0'; - - protected $Name = 'ShieldingDeviceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shielding Device Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceType.php deleted file mode 100644 index c4c6cd168..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShieldingDeviceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShieldingDeviceType extends AbstractTag -{ - - protected $Id = '300A,01A2'; - - protected $Name = 'ShieldingDeviceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shielding Device Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShiftTableSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShiftTableSize.php deleted file mode 100644 index 5b5991bd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShiftTableSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShiftTableSize extends AbstractTag -{ - - protected $Id = '1000,xxx4'; - - protected $Name = 'ShiftTableSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shift Table Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShiftTableTriplet.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShiftTableTriplet.php deleted file mode 100644 index a3a134c84..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShiftTableTriplet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShiftTableTriplet extends AbstractTag -{ - - protected $Id = '1000,xxx5'; - - protected $Name = 'ShiftTableTriplet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shift Table Triplet'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShowAcquisitionTechniquesFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShowAcquisitionTechniquesFlag.php deleted file mode 100644 index 557150ea2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShowAcquisitionTechniquesFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShowAcquisitionTechniquesFlag extends AbstractTag -{ - - protected $Id = '0072,0716'; - - protected $Name = 'ShowAcquisitionTechniquesFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Show Acquisition Techniques Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShowGraphicAnnotationFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShowGraphicAnnotationFlag.php deleted file mode 100644 index fc9cb448d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShowGraphicAnnotationFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShowGraphicAnnotationFlag extends AbstractTag -{ - - protected $Id = '0072,0712'; - - protected $Name = 'ShowGraphicAnnotationFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Show Graphic Annotation Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShowGrayscaleInverted.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShowGrayscaleInverted.php deleted file mode 100644 index feaa926c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShowGrayscaleInverted.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShowGrayscaleInverted extends AbstractTag -{ - - protected $Id = '0072,0706'; - - protected $Name = 'ShowGrayscaleInverted'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Show Grayscale Inverted'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShowImageTrueSizeFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShowImageTrueSizeFlag.php deleted file mode 100644 index 80ec97d9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShowImageTrueSizeFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShowImageTrueSizeFlag extends AbstractTag -{ - - protected $Id = '0072,0710'; - - protected $Name = 'ShowImageTrueSizeFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Show Image True Size Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShowPatientDemographicsFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShowPatientDemographicsFlag.php deleted file mode 100644 index e48343e50..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShowPatientDemographicsFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShowPatientDemographicsFlag extends AbstractTag -{ - - protected $Id = '0072,0714'; - - protected $Name = 'ShowPatientDemographicsFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Show Patient Demographics Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterLeftVerticalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterLeftVerticalEdge.php deleted file mode 100644 index 8ba0e5a7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterLeftVerticalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterLeftVerticalEdge extends AbstractTag -{ - - protected $Id = '0018,1602'; - - protected $Name = 'ShutterLeftVerticalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Left Vertical Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterLowerHorizontalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterLowerHorizontalEdge.php deleted file mode 100644 index c17c8633b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterLowerHorizontalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterLowerHorizontalEdge extends AbstractTag -{ - - protected $Id = '0018,1608'; - - protected $Name = 'ShutterLowerHorizontalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Lower Horizontal Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterOverlayGroup.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterOverlayGroup.php deleted file mode 100644 index f421f3bbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterOverlayGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterOverlayGroup extends AbstractTag -{ - - protected $Id = '0018,1623'; - - protected $Name = 'ShutterOverlayGroup'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Overlay Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterPresentationColorCIELabVal.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterPresentationColorCIELabVal.php deleted file mode 100644 index 1c61f501e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterPresentationColorCIELabVal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterPresentationColorCIELabVal extends AbstractTag -{ - - protected $Id = '0018,1624'; - - protected $Name = 'ShutterPresentationColorCIELabVal'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Presentation Color CIE Lab Val'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterPresentationValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterPresentationValue.php deleted file mode 100644 index 28c7ce05c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterPresentationValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterPresentationValue extends AbstractTag -{ - - protected $Id = '0018,1622'; - - protected $Name = 'ShutterPresentationValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Presentation Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterRightVerticalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterRightVerticalEdge.php deleted file mode 100644 index e92b0041e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterRightVerticalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterRightVerticalEdge extends AbstractTag -{ - - protected $Id = '0018,1604'; - - protected $Name = 'ShutterRightVerticalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Right Vertical Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterShape.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterShape.php deleted file mode 100644 index d1016c5f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterShape.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterShape extends AbstractTag -{ - - protected $Id = '0018,1600'; - - protected $Name = 'ShutterShape'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Shape'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterUpperHorizontalEdge.php b/lib/PHPExiftool/Driver/Tag/DICOM/ShutterUpperHorizontalEdge.php deleted file mode 100644 index dfac80225..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ShutterUpperHorizontalEdge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterUpperHorizontalEdge extends AbstractTag -{ - - protected $Id = '0018,1606'; - - protected $Name = 'ShutterUpperHorizontalEdge'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Upper Horizontal Edge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SigmaMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/SigmaMode.php deleted file mode 100644 index f3ab61832..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SigmaMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SigmaMode extends AbstractTag -{ - - protected $Id = '0045,1013'; - - protected $Name = 'SigmaMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sigma Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SigmaRowNumberWhichRowsWereUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/SigmaRowNumberWhichRowsWereUsed.php deleted file mode 100644 index a0cc6c5f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SigmaRowNumberWhichRowsWereUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SigmaRowNumberWhichRowsWereUsed extends AbstractTag -{ - - protected $Id = '0045,1009'; - - protected $Name = 'SigmaRowNumberWhichRowsWereUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sigma Row Number Which Rows Were Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SignalDomainColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/SignalDomainColumns.php deleted file mode 100644 index 19cd5ab8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SignalDomainColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignalDomainColumns extends AbstractTag -{ - - protected $Id = '0028,9003'; - - protected $Name = 'SignalDomainColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signal Domain Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SignalDomainRows.php b/lib/PHPExiftool/Driver/Tag/DICOM/SignalDomainRows.php deleted file mode 100644 index 255173506..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SignalDomainRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignalDomainRows extends AbstractTag -{ - - protected $Id = '0028,9235'; - - protected $Name = 'SignalDomainRows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signal Domain Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Signature.php b/lib/PHPExiftool/Driver/Tag/DICOM/Signature.php deleted file mode 100644 index 9f7999d23..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Signature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Signature extends AbstractTag -{ - - protected $Id = '0400,0120'; - - protected $Name = 'Signature'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SimpleFrameList.php b/lib/PHPExiftool/Driver/Tag/DICOM/SimpleFrameList.php deleted file mode 100644 index 588be41e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SimpleFrameList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SimpleFrameList extends AbstractTag -{ - - protected $Id = '0008,1161'; - - protected $Name = 'SimpleFrameList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Simple Frame List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SingleCollimationWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/SingleCollimationWidth.php deleted file mode 100644 index 1330d9774..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SingleCollimationWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SingleCollimationWidth extends AbstractTag -{ - - protected $Id = '0018,9306'; - - protected $Name = 'SingleCollimationWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Single Collimation Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SkipBeats.php b/lib/PHPExiftool/Driver/Tag/DICOM/SkipBeats.php deleted file mode 100644 index e0d856398..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SkipBeats.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SkipBeats extends AbstractTag -{ - - protected $Id = '0018,1086'; - - protected $Name = 'SkipBeats'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Skip Beats'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SkipFrameRangeFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/SkipFrameRangeFlag.php deleted file mode 100644 index deb4f8739..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SkipFrameRangeFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SkipFrameRangeFlag extends AbstractTag -{ - - protected $Id = '0008,9460'; - - protected $Name = 'SkipFrameRangeFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Skip Frame Range Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SlabOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/SlabOrientation.php deleted file mode 100644 index 9c3a4c0cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SlabOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlabOrientation extends AbstractTag -{ - - protected $Id = '0018,9105'; - - protected $Name = 'SlabOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slab Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SlabThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/SlabThickness.php deleted file mode 100644 index f1a98b020..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SlabThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlabThickness extends AbstractTag -{ - - protected $Id = '0018,9104'; - - protected $Name = 'SlabThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slab Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SliceLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/SliceLocation.php deleted file mode 100644 index f73dedac4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SliceLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceLocation extends AbstractTag -{ - - protected $Id = '0020,1041'; - - protected $Name = 'SliceLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SliceLocationVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/SliceLocationVector.php deleted file mode 100644 index 149ef91af..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SliceLocationVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceLocationVector extends AbstractTag -{ - - protected $Id = '0018,2005'; - - protected $Name = 'SliceLocationVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Location Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SliceOffsetOnFreqAxis.php b/lib/PHPExiftool/Driver/Tag/DICOM/SliceOffsetOnFreqAxis.php deleted file mode 100644 index 93eb77ee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SliceOffsetOnFreqAxis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceOffsetOnFreqAxis extends AbstractTag -{ - - protected $Id = '0019,1092'; - - protected $Name = 'SliceOffsetOnFreqAxis'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Offset On Freq Axis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SliceProgressionDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/SliceProgressionDirection.php deleted file mode 100644 index d2bb5c337..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SliceProgressionDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceProgressionDirection extends AbstractTag -{ - - protected $Id = '0054,0500'; - - protected $Name = 'SliceProgressionDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Progression Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SliceSensitivityFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/SliceSensitivityFactor.php deleted file mode 100644 index 1293d131d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SliceSensitivityFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceSensitivityFactor extends AbstractTag -{ - - protected $Id = '0054,1320'; - - protected $Name = 'SliceSensitivityFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Sensitivity Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SliceThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/SliceThickness.php deleted file mode 100644 index bfb8319ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SliceThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceThickness extends AbstractTag -{ - - protected $Id = '0018,0050'; - - protected $Name = 'SliceThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SliceVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/SliceVector.php deleted file mode 100644 index b581de30f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SliceVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceVector extends AbstractTag -{ - - protected $Id = '0054,0080'; - - protected $Name = 'SliceVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SlideIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/SlideIdentifier.php deleted file mode 100644 index 224b702e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SlideIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlideIdentifier extends AbstractTag -{ - - protected $Id = '0040,06FA'; - - protected $Name = 'SlideIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slide Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SlopInt1017.php b/lib/PHPExiftool/Driver/Tag/DICOM/SlopInt1017.php deleted file mode 100644 index f77c86054..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SlopInt1017.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlopInt1017 extends AbstractTag -{ - - protected $Id = '0043,1060'; - - protected $Name = 'SlopInt10-17'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slop Int 10-17'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SlopInt69.php b/lib/PHPExiftool/Driver/Tag/DICOM/SlopInt69.php deleted file mode 100644 index 72bb8df2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SlopInt69.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlopInt69 extends AbstractTag -{ - - protected $Id = '0043,1039'; - - protected $Name = 'SlopInt6-9'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slop Int 6-9'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestImagePixelValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SmallestImagePixelValue.php deleted file mode 100644 index 60a169440..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestImagePixelValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmallestImagePixelValue extends AbstractTag -{ - - protected $Id = '0028,0106'; - - protected $Name = 'SmallestImagePixelValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Smallest Image Pixel Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestImagePixelValueInPlane.php b/lib/PHPExiftool/Driver/Tag/DICOM/SmallestImagePixelValueInPlane.php deleted file mode 100644 index 92f405383..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestImagePixelValueInPlane.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmallestImagePixelValueInPlane extends AbstractTag -{ - - protected $Id = '0028,0110'; - - protected $Name = 'SmallestImagePixelValueInPlane'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Smallest Image Pixel Value In Plane'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestPixelValueInSeries.php b/lib/PHPExiftool/Driver/Tag/DICOM/SmallestPixelValueInSeries.php deleted file mode 100644 index 622a4f5b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestPixelValueInSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmallestPixelValueInSeries extends AbstractTag -{ - - protected $Id = '0028,0108'; - - protected $Name = 'SmallestPixelValueInSeries'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Smallest Pixel Value In Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestValidPixelValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SmallestValidPixelValue.php deleted file mode 100644 index 36e5afbf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SmallestValidPixelValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmallestValidPixelValue extends AbstractTag -{ - - protected $Id = '0028,0104'; - - protected $Name = 'SmallestValidPixelValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Smallest Valid Pixel Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SmartScanOnOffFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/SmartScanOnOffFlag.php deleted file mode 100644 index c1b2156dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SmartScanOnOffFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmartScanOnOffFlag extends AbstractTag -{ - - protected $Id = '0027,1020'; - - protected $Name = 'SmartScanOnOffFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Smart Scan On Off Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SmokingStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/SmokingStatus.php deleted file mode 100644 index 34c5bdfc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SmokingStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmokingStatus extends AbstractTag -{ - - protected $Id = '0010,21A0'; - - protected $Name = 'SmokingStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Smoking Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SmoothingType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SmoothingType.php deleted file mode 100644 index 28c73a113..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SmoothingType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmoothingType extends AbstractTag -{ - - protected $Id = '2010,0080'; - - protected $Name = 'SmoothingType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Smoothing Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SnoutID.php deleted file mode 100644 index 1c9ef68f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SnoutID extends AbstractTag -{ - - protected $Id = '300A,030F'; - - protected $Name = 'SnoutID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Snout ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/SnoutPosition.php deleted file mode 100644 index c36e7bb7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SnoutPosition extends AbstractTag -{ - - protected $Id = '300A,030D'; - - protected $Name = 'SnoutPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Snout Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutPositionTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SnoutPositionTolerance.php deleted file mode 100644 index 29fb133b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutPositionTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SnoutPositionTolerance extends AbstractTag -{ - - protected $Id = '300A,004B'; - - protected $Name = 'SnoutPositionTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Snout Position Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SnoutSequence.php deleted file mode 100644 index 0ed67afa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SnoutSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SnoutSequence extends AbstractTag -{ - - protected $Id = '300A,030C'; - - protected $Name = 'SnoutSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Snout Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueFocusThermalIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueFocusThermalIndex.php deleted file mode 100644 index f52b1927e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueFocusThermalIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftTissueFocusThermalIndex extends AbstractTag -{ - - protected $Id = '0018,5028'; - - protected $Name = 'SoftTissueFocusThermalIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Soft Tissue Focus Thermal Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueSurfaceThermalIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueSurfaceThermalIndex.php deleted file mode 100644 index 95d1592fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueSurfaceThermalIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftTissueSurfaceThermalIndex extends AbstractTag -{ - - protected $Id = '0018,5029'; - - protected $Name = 'SoftTissueSurfaceThermalIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Soft Tissue Surface Thermal Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueThermalIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueThermalIndex.php deleted file mode 100644 index 4a47ba57e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SoftTissueThermalIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftTissueThermalIndex extends AbstractTag -{ - - protected $Id = '0018,5027'; - - protected $Name = 'SoftTissueThermalIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Soft Tissue Thermal Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SoftcopyVOILUTSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SoftcopyVOILUTSequence.php deleted file mode 100644 index 87ee7adf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SoftcopyVOILUTSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftcopyVOILUTSequence extends AbstractTag -{ - - protected $Id = '0028,3110'; - - protected $Name = 'SoftcopyVOILUTSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Softcopy VOILUT Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SoftwareVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/SoftwareVersion.php deleted file mode 100644 index 66071e243..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SoftwareVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftwareVersion extends AbstractTag -{ - - protected $Id = '0018,1020'; - - protected $Name = 'SoftwareVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SortByCategory.php b/lib/PHPExiftool/Driver/Tag/DICOM/SortByCategory.php deleted file mode 100644 index 683ff9881..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SortByCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortByCategory extends AbstractTag -{ - - protected $Id = '0072,0602'; - - protected $Name = 'SortByCategory'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sort By Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SortingDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/SortingDirection.php deleted file mode 100644 index 756e9095f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SortingDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortingDirection extends AbstractTag -{ - - protected $Id = '0072,0604'; - - protected $Name = 'SortingDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sorting Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SortingOperationsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SortingOperationsSequence.php deleted file mode 100644 index 55f91739d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SortingOperationsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortingOperationsSequence extends AbstractTag -{ - - protected $Id = '0072,0600'; - - protected $Name = 'SortingOperationsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sorting Operations Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicationEntityTitle.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicationEntityTitle.php deleted file mode 100644 index 75dedadd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicationEntityTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicationEntityTitle extends AbstractTag -{ - - protected $Id = '0002,0016'; - - protected $Name = 'SourceApplicationEntityTitle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Application Entity Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorID.php deleted file mode 100644 index 4f0248ed2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorID extends AbstractTag -{ - - protected $Id = '300A,0291'; - - protected $Name = 'SourceApplicatorID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorLength.php deleted file mode 100644 index bc3073f6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorLength extends AbstractTag -{ - - protected $Id = '300A,0296'; - - protected $Name = 'SourceApplicatorLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorManufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorManufacturer.php deleted file mode 100644 index f939a99cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorManufacturer extends AbstractTag -{ - - protected $Id = '300A,0298'; - - protected $Name = 'SourceApplicatorManufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorName.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorName.php deleted file mode 100644 index f278cd3c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorName extends AbstractTag -{ - - protected $Id = '300A,0294'; - - protected $Name = 'SourceApplicatorName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorNumber.php deleted file mode 100644 index 1a2a2c6ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorNumber extends AbstractTag -{ - - protected $Id = '300A,0290'; - - protected $Name = 'SourceApplicatorNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorStepSize.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorStepSize.php deleted file mode 100644 index 0a7f30cf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorStepSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorStepSize extends AbstractTag -{ - - protected $Id = '300A,02A0'; - - protected $Name = 'SourceApplicatorStepSize'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Step Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorType.php deleted file mode 100644 index a03d0701c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorType extends AbstractTag -{ - - protected $Id = '300A,0292'; - - protected $Name = 'SourceApplicatorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorWallNomThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorWallNomThickness.php deleted file mode 100644 index 1a4e14b60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorWallNomThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorWallNomThickness extends AbstractTag -{ - - protected $Id = '300A,029C'; - - protected $Name = 'SourceApplicatorWallNomThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Wall Nom Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorWallNomTrans.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorWallNomTrans.php deleted file mode 100644 index 2c3c8facd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceApplicatorWallNomTrans.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceApplicatorWallNomTrans extends AbstractTag -{ - - protected $Id = '300A,029E'; - - protected $Name = 'SourceApplicatorWallNomTrans'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Applicator Wall Nom Trans'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceAxisDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceAxisDistance.php deleted file mode 100644 index 96d0419ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceAxisDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceAxisDistance extends AbstractTag -{ - - protected $Id = '300A,00B4'; - - protected $Name = 'SourceAxisDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Axis Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceEncapsulationNomThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceEncapsulationNomThickness.php deleted file mode 100644 index 129a48a6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceEncapsulationNomThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceEncapsulationNomThickness extends AbstractTag -{ - - protected $Id = '300A,0222'; - - protected $Name = 'SourceEncapsulationNomThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Encapsulation Nom Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceEncapsulationNomTransmission.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceEncapsulationNomTransmission.php deleted file mode 100644 index dd8c1d42d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceEncapsulationNomTransmission.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceEncapsulationNomTransmission extends AbstractTag -{ - - protected $Id = '300A,0224'; - - protected $Name = 'SourceEncapsulationNomTransmission'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Encapsulation Nom Transmission'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceFrameOfReferenceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceFrameOfReferenceUID.php deleted file mode 100644 index f15ecb02f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceFrameOfReferenceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceFrameOfReferenceUID extends AbstractTag -{ - - protected $Id = '0064,0003'; - - protected $Name = 'SourceFrameOfReferenceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Frame Of Reference UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceHangingProtocolSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceHangingProtocolSequence.php deleted file mode 100644 index 8ed87cd0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceHangingProtocolSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceHangingProtocolSequence extends AbstractTag -{ - - protected $Id = '0072,0012'; - - protected $Name = 'SourceHangingProtocolSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Hanging Protocol Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageEvidenceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageEvidenceSequence.php deleted file mode 100644 index 9556fc07f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageEvidenceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageEvidenceSequence extends AbstractTag -{ - - protected $Id = '0008,9154'; - - protected $Name = 'SourceImageEvidenceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Image Evidence Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageIDs.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageIDs.php deleted file mode 100644 index 6c16db64e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageIDs extends AbstractTag -{ - - protected $Id = '0020,31xx'; - - protected $Name = 'SourceImageIDs'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Image I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageSequence.php deleted file mode 100644 index 57cb7b9b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceImageSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageSequence extends AbstractTag -{ - - protected $Id = '0008,2112'; - - protected $Name = 'SourceImageSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Image Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceInstanceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceInstanceSequence.php deleted file mode 100644 index 339a49771..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceInstanceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceInstanceSequence extends AbstractTag -{ - - protected $Id = '0042,0013'; - - protected $Name = 'SourceInstanceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Instance Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceIsotopeHalfLife.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceIsotopeHalfLife.php deleted file mode 100644 index cab6856e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceIsotopeHalfLife.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceIsotopeHalfLife extends AbstractTag -{ - - protected $Id = '300A,0228'; - - protected $Name = 'SourceIsotopeHalfLife'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Isotope Half Life'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceIsotopeName.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceIsotopeName.php deleted file mode 100644 index c28daf5cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceIsotopeName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceIsotopeName extends AbstractTag -{ - - protected $Id = '300A,0226'; - - protected $Name = 'SourceIsotopeName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Isotope Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceManufacturer.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceManufacturer.php deleted file mode 100644 index 9e2931043..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceManufacturer extends AbstractTag -{ - - protected $Id = '300A,0216'; - - protected $Name = 'SourceManufacturer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceMovementType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceMovementType.php deleted file mode 100644 index 5a7d12fad..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceMovementType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceMovementType extends AbstractTag -{ - - protected $Id = '300A,0288'; - - protected $Name = 'SourceMovementType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Movement Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceNumber.php deleted file mode 100644 index 27736de9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceNumber extends AbstractTag -{ - - protected $Id = '300A,0212'; - - protected $Name = 'SourceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceOfPreviousValues.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceOfPreviousValues.php deleted file mode 100644 index 0d4fb3fbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceOfPreviousValues.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceOfPreviousValues extends AbstractTag -{ - - protected $Id = '0400,0564'; - - protected $Name = 'SourceOfPreviousValues'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Of Previous Values'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceSequence.php deleted file mode 100644 index 5ab0a5db6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceSequence extends AbstractTag -{ - - protected $Id = '300A,0210'; - - protected $Name = 'SourceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceSerialNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceSerialNumber.php deleted file mode 100644 index 663578a08..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceSerialNumber extends AbstractTag -{ - - protected $Id = '3008,0105'; - - protected $Name = 'SourceSerialNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrength.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrength.php deleted file mode 100644 index 2381eb46f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceStrength extends AbstractTag -{ - - protected $Id = '300A,022B'; - - protected $Name = 'SourceStrength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Strength'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthReferenceDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthReferenceDate.php deleted file mode 100644 index 47c29ea9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthReferenceDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceStrengthReferenceDate extends AbstractTag -{ - - protected $Id = '300A,022C'; - - protected $Name = 'SourceStrengthReferenceDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Strength Reference Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthReferenceTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthReferenceTime.php deleted file mode 100644 index f9c52e364..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthReferenceTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceStrengthReferenceTime extends AbstractTag -{ - - protected $Id = '300A,022E'; - - protected $Name = 'SourceStrengthReferenceTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Strength Reference Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthUnits.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthUnits.php deleted file mode 100644 index 3714c9443..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceStrengthUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceStrengthUnits extends AbstractTag -{ - - protected $Id = '300A,0229'; - - protected $Name = 'SourceStrengthUnits'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Strength Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToBeamLimitingDeviceDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToBeamLimitingDeviceDistance.php deleted file mode 100644 index 828f24d34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToBeamLimitingDeviceDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToBeamLimitingDeviceDistance extends AbstractTag -{ - - protected $Id = '300A,00BA'; - - protected $Name = 'SourceToBeamLimitingDeviceDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Beam Limiting Device Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToBlockTrayDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToBlockTrayDistance.php deleted file mode 100644 index 6f1729e45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToBlockTrayDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToBlockTrayDistance extends AbstractTag -{ - - protected $Id = '300A,00F6'; - - protected $Name = 'SourceToBlockTrayDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Block Tray Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToCompensatorDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToCompensatorDistance.php deleted file mode 100644 index a98bab549..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToCompensatorDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToCompensatorDistance extends AbstractTag -{ - - protected $Id = '300A,02E2'; - - protected $Name = 'SourceToCompensatorDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Compensator Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToCompensatorTrayDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToCompensatorTrayDistance.php deleted file mode 100644 index 4ef292d88..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToCompensatorTrayDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToCompensatorTrayDistance extends AbstractTag -{ - - protected $Id = '300A,00E6'; - - protected $Name = 'SourceToCompensatorTrayDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Compensator Tray Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToDataCollectionCenterDist.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToDataCollectionCenterDist.php deleted file mode 100644 index 20fe9e5d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToDataCollectionCenterDist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToDataCollectionCenterDist extends AbstractTag -{ - - protected $Id = '0018,9335'; - - protected $Name = 'SourceToDataCollectionCenterDist'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Data Collection Center Dist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToReferenceObjectDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToReferenceObjectDistance.php deleted file mode 100644 index 1f86b7b45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToReferenceObjectDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToReferenceObjectDistance extends AbstractTag -{ - - protected $Id = '3002,0028'; - - protected $Name = 'SourceToReferenceObjectDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Reference Object Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToSurfaceDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToSurfaceDistance.php deleted file mode 100644 index 84656a099..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToSurfaceDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToSurfaceDistance extends AbstractTag -{ - - protected $Id = '300A,0130'; - - protected $Name = 'SourceToSurfaceDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Surface Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToWedgeTrayDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceToWedgeTrayDistance.php deleted file mode 100644 index 03e9bec45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceToWedgeTrayDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceToWedgeTrayDistance extends AbstractTag -{ - - protected $Id = '300A,00DA'; - - protected $Name = 'SourceToWedgeTrayDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source To Wedge Tray Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceType.php deleted file mode 100644 index 3250ef1f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceType extends AbstractTag -{ - - protected $Id = '300A,0214'; - - protected $Name = 'SourceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SourceWaveformSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SourceWaveformSequence.php deleted file mode 100644 index b55bd7593..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SourceWaveformSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceWaveformSequence extends AbstractTag -{ - - protected $Id = '003A,020A'; - - protected $Name = 'SourceWaveformSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Waveform Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpacingBetweenSlices.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpacingBetweenSlices.php deleted file mode 100644 index 83f99719a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpacingBetweenSlices.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpacingBetweenSlices extends AbstractTag -{ - - protected $Id = '0018,0088'; - - protected $Name = 'SpacingBetweenSlices'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spacing Between Slices'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpatialLocationsPreserved.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpatialLocationsPreserved.php deleted file mode 100644 index 929b93761..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpatialLocationsPreserved.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialLocationsPreserved extends AbstractTag -{ - - protected $Id = '0028,135A'; - - protected $Name = 'SpatialLocationsPreserved'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spatial Locations Preserved'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpatialPresaturation.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpatialPresaturation.php deleted file mode 100644 index c25460c20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpatialPresaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialPresaturation extends AbstractTag -{ - - protected $Id = '0018,9027'; - - protected $Name = 'SpatialPresaturation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spatial Presaturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpatialResolution.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpatialResolution.php deleted file mode 100644 index 9c5f3b582..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpatialResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialResolution extends AbstractTag -{ - - protected $Id = '0018,1050'; - - protected $Name = 'SpatialResolution'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spatial Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecialNeeds.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecialNeeds.php deleted file mode 100644 index 090cd983f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecialNeeds.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialNeeds extends AbstractTag -{ - - protected $Id = '0038,0050'; - - protected $Name = 'SpecialNeeds'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Special Needs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateDefinition.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateDefinition.php deleted file mode 100644 index 7a128a730..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecificAbsorptionRateDefinition extends AbstractTag -{ - - protected $Id = '0018,9179'; - - protected $Name = 'SpecificAbsorptionRateDefinition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specific Absorption Rate Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateSequence.php deleted file mode 100644 index 616572581..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecificAbsorptionRateSequence extends AbstractTag -{ - - protected $Id = '0018,9239'; - - protected $Name = 'SpecificAbsorptionRateSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specific Absorption Rate Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateValue.php deleted file mode 100644 index 6b3ce2ccb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificAbsorptionRateValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecificAbsorptionRateValue extends AbstractTag -{ - - protected $Id = '0018,9181'; - - protected $Name = 'SpecificAbsorptionRateValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specific Absorption Rate Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificCharacterSet.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecificCharacterSet.php deleted file mode 100644 index 490b80174..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificCharacterSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecificCharacterSet extends AbstractTag -{ - - protected $Id = '0008,0005'; - - protected $Name = 'SpecificCharacterSet'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specific Character Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificCharacterSetOfFile.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecificCharacterSetOfFile.php deleted file mode 100644 index f3ce29610..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecificCharacterSetOfFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecificCharacterSetOfFile extends AbstractTag -{ - - protected $Id = '0004,1142'; - - protected $Name = 'SpecificCharacterSetOfFile'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specific Character Set Of File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedChannelTotalTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedChannelTotalTime.php deleted file mode 100644 index 44536342c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedChannelTotalTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecifiedChannelTotalTime extends AbstractTag -{ - - protected $Id = '3008,0132'; - - protected $Name = 'SpecifiedChannelTotalTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specified Channel Total Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedMeterset.php deleted file mode 100644 index cec1aba0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecifiedMeterset extends AbstractTag -{ - - protected $Id = '3008,0042'; - - protected $Name = 'SpecifiedMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specified Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedNumberOfPulses.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedNumberOfPulses.php deleted file mode 100644 index 182d8a6d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedNumberOfPulses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecifiedNumberOfPulses extends AbstractTag -{ - - protected $Id = '3008,0136'; - - protected $Name = 'SpecifiedNumberOfPulses'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specified Number Of Pulses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedPrimaryMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedPrimaryMeterset.php deleted file mode 100644 index f85757de3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedPrimaryMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecifiedPrimaryMeterset extends AbstractTag -{ - - protected $Id = '3008,0032'; - - protected $Name = 'SpecifiedPrimaryMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specified Primary Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedPulseRepetitionInterval.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedPulseRepetitionInterval.php deleted file mode 100644 index 18bf897b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedPulseRepetitionInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecifiedPulseRepetitionInterval extends AbstractTag -{ - - protected $Id = '3008,013A'; - - protected $Name = 'SpecifiedPulseRepetitionInterval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specified Pulse Repetition Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedSecondaryMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedSecondaryMeterset.php deleted file mode 100644 index 0f9f86fe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedSecondaryMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecifiedSecondaryMeterset extends AbstractTag -{ - - protected $Id = '3008,0033'; - - protected $Name = 'SpecifiedSecondaryMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specified Secondary Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedTreatmentTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedTreatmentTime.php deleted file mode 100644 index f2e88a3fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecifiedTreatmentTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecifiedTreatmentTime extends AbstractTag -{ - - protected $Id = '3008,003A'; - - protected $Name = 'SpecifiedTreatmentTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specified Treatment Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenAccessionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenAccessionNumber.php deleted file mode 100644 index 1b5893903..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenAccessionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenAccessionNumber extends AbstractTag -{ - - protected $Id = '0040,050A'; - - protected $Name = 'SpecimenAccessionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen Accession Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenDescriptionSequenceTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenDescriptionSequenceTrial.php deleted file mode 100644 index 4e278d0bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenDescriptionSequenceTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenDescriptionSequenceTrial extends AbstractTag -{ - - protected $Id = '0040,0552'; - - protected $Name = 'SpecimenDescriptionSequenceTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen Description Sequence Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenDescriptionTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenDescriptionTrial.php deleted file mode 100644 index 86e834f37..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenDescriptionTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenDescriptionTrial extends AbstractTag -{ - - protected $Id = '0040,0553'; - - protected $Name = 'SpecimenDescriptionTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen Description Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenIdentifier.php deleted file mode 100644 index 40261521d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenIdentifier extends AbstractTag -{ - - protected $Id = '0040,0551'; - - protected $Name = 'SpecimenIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenSequence.php deleted file mode 100644 index 82ea93aeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenSequence extends AbstractTag -{ - - protected $Id = '0040,0550'; - - protected $Name = 'SpecimenSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenShortDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenShortDescription.php deleted file mode 100644 index 007c3804b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenShortDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenShortDescription extends AbstractTag -{ - - protected $Id = '0040,0600'; - - protected $Name = 'SpecimenShortDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen Short Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenTypeCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenTypeCodeSequence.php deleted file mode 100644 index fb9f4626a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenTypeCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenTypeCodeSequence extends AbstractTag -{ - - protected $Id = '0040,059A'; - - protected $Name = 'SpecimenTypeCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen Type Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenUID.php deleted file mode 100644 index 0fc9de60d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpecimenUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecimenUID extends AbstractTag -{ - - protected $Id = '0040,0554'; - - protected $Name = 'SpecimenUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Specimen UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectralWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectralWidth.php deleted file mode 100644 index 8f535d422..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectralWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectralWidth extends AbstractTag -{ - - protected $Id = '0018,9052'; - - protected $Name = 'SpectralWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectral Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectrallySelectedExcitation.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectrallySelectedExcitation.php deleted file mode 100644 index 74d2367b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectrallySelectedExcitation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectrallySelectedExcitation extends AbstractTag -{ - - protected $Id = '0018,9026'; - - protected $Name = 'SpectrallySelectedExcitation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectrally Selected Excitation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectrallySelectedSuppression.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectrallySelectedSuppression.php deleted file mode 100644 index d8cb1f2dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectrallySelectedSuppression.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectrallySelectedSuppression extends AbstractTag -{ - - protected $Id = '0018,9025'; - - protected $Name = 'SpectrallySelectedSuppression'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectrally Selected Suppression'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcqPhaseColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcqPhaseColumns.php deleted file mode 100644 index b2b0fa645..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcqPhaseColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectroscopyAcqPhaseColumns extends AbstractTag -{ - - protected $Id = '0018,9234'; - - protected $Name = 'SpectroscopyAcqPhaseColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectroscopy Acq Phase Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcquisitionDataColumns.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcquisitionDataColumns.php deleted file mode 100644 index 63c7065a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcquisitionDataColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectroscopyAcquisitionDataColumns extends AbstractTag -{ - - protected $Id = '0018,9127'; - - protected $Name = 'SpectroscopyAcquisitionDataColumns'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectroscopy Acquisition Data Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcquisitionPhaseRows.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcquisitionPhaseRows.php deleted file mode 100644 index 23a14b41f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyAcquisitionPhaseRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectroscopyAcquisitionPhaseRows extends AbstractTag -{ - - protected $Id = '0018,9095'; - - protected $Name = 'SpectroscopyAcquisitionPhaseRows'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectroscopy Acquisition Phase Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyData.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyData.php deleted file mode 100644 index 88c09aa5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectroscopyData extends AbstractTag -{ - - protected $Id = '5600,0020'; - - protected $Name = 'SpectroscopyData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectroscopy Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyOutOfPlanePhaseSteps.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyOutOfPlanePhaseSteps.php deleted file mode 100644 index 3d80ea6e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpectroscopyOutOfPlanePhaseSteps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectroscopyOutOfPlanePhaseSteps extends AbstractTag -{ - - protected $Id = '0018,9159'; - - protected $Name = 'SpectroscopyOutOfPlanePhaseSteps'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spectroscopy Out Of Plane Phase Steps'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpherePower.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpherePower.php deleted file mode 100644 index f0f43cdc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpherePower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpherePower extends AbstractTag -{ - - protected $Id = '0046,0146'; - - protected $Name = 'SpherePower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sphere Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SphericalLensPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/SphericalLensPower.php deleted file mode 100644 index 6e945e5c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SphericalLensPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SphericalLensPower extends AbstractTag -{ - - protected $Id = '0022,0007'; - - protected $Name = 'SphericalLensPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spherical Lens Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SpiralPitchFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/SpiralPitchFactor.php deleted file mode 100644 index edce81509..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SpiralPitchFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpiralPitchFactor extends AbstractTag -{ - - protected $Id = '0018,9311'; - - protected $Name = 'SpiralPitchFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spiral Pitch Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Spoiling.php b/lib/PHPExiftool/Driver/Tag/DICOM/Spoiling.php deleted file mode 100644 index acf7de212..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Spoiling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Spoiling extends AbstractTag -{ - - protected $Id = '0018,9016'; - - protected $Name = 'Spoiling'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spoiling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StackID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StackID.php deleted file mode 100644 index 354b1e931..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StackID extends AbstractTag -{ - - protected $Id = '0020,9056'; - - protected $Name = 'StackID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stack ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StageCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/StageCodeSequence.php deleted file mode 100644 index 3a3a6babb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StageCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StageCodeSequence extends AbstractTag -{ - - protected $Id = '0040,000A'; - - protected $Name = 'StageCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stage Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StageName.php b/lib/PHPExiftool/Driver/Tag/DICOM/StageName.php deleted file mode 100644 index 5f23009b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StageName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StageName extends AbstractTag -{ - - protected $Id = '0008,2120'; - - protected $Name = 'StageName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stage Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StageNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/StageNumber.php deleted file mode 100644 index 91c1e51e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StageNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StageNumber extends AbstractTag -{ - - protected $Id = '0008,2122'; - - protected $Name = 'StageNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stage Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartAcquisitionDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartAcquisitionDateTime.php deleted file mode 100644 index 2033ab64f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartAcquisitionDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartAcquisitionDateTime extends AbstractTag -{ - - protected $Id = '0018,9516'; - - protected $Name = 'StartAcquisitionDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Acquisition Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartAngle.php deleted file mode 100644 index fe39c929d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartAngle extends AbstractTag -{ - - protected $Id = '0054,0200'; - - protected $Name = 'StartAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartCumulativeMetersetWeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartCumulativeMetersetWeight.php deleted file mode 100644 index 13f78d4cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartCumulativeMetersetWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartCumulativeMetersetWeight extends AbstractTag -{ - - protected $Id = '300C,0008'; - - protected $Name = 'StartCumulativeMetersetWeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Cumulative Meterset Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartDensityThreshold.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartDensityThreshold.php deleted file mode 100644 index e06b4ee38..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartDensityThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartDensityThreshold extends AbstractTag -{ - - protected $Id = '0018,9715'; - - protected $Name = 'StartDensityThreshold'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Density Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartMeterset.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartMeterset.php deleted file mode 100644 index b23c79996..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartMeterset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartMeterset extends AbstractTag -{ - - protected $Id = '3008,0078'; - - protected $Name = 'StartMeterset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Meterset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartNumberForBaseline.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartNumberForBaseline.php deleted file mode 100644 index 169b7e77a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartNumberForBaseline.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartNumberForBaseline extends AbstractTag -{ - - protected $Id = '0019,1013'; - - protected $Name = 'StartNumberForBaseline'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Number For Baseline'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartNumberForEnhancedScans.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartNumberForEnhancedScans.php deleted file mode 100644 index cda0109cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartNumberForEnhancedScans.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartNumberForEnhancedScans extends AbstractTag -{ - - protected $Id = '0019,1015'; - - protected $Name = 'StartNumberForEnhancedScans'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Number For Enhanced Scans'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartOfItem.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartOfItem.php deleted file mode 100644 index 894cd5e1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartOfItem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartOfItem extends AbstractTag -{ - - protected $Id = 'FFFE,E000'; - - protected $Name = 'StartOfItem'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Of Item'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartScanToXrayOnDelay.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartScanToXrayOnDelay.php deleted file mode 100644 index 976e06d8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartScanToXrayOnDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartScanToXrayOnDelay extends AbstractTag -{ - - protected $Id = '0043,104D'; - - protected $Name = 'StartScanToXrayOnDelay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Scan To Xray On Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartTimeSecsInFirstAxial.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartTimeSecsInFirstAxial.php deleted file mode 100644 index 12307551f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartTimeSecsInFirstAxial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimeSecsInFirstAxial extends AbstractTag -{ - - protected $Id = '0023,1070'; - - protected $Name = 'StartTimeSecsInFirstAxial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Time Secs In First Axial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartTrim.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartTrim.php deleted file mode 100644 index c6da49b51..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartTrim.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTrim extends AbstractTag -{ - - protected $Id = '0008,2142'; - - protected $Name = 'StartTrim'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Trim'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingChannelNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingChannelNumber.php deleted file mode 100644 index 52024a530..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingChannelNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingChannelNumber extends AbstractTag -{ - - protected $Id = '0043,101A'; - - protected $Name = 'StartingChannelNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting Channel Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingChannelOfView.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingChannelOfView.php deleted file mode 100644 index cebc935ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingChannelOfView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingChannelOfView extends AbstractTag -{ - - protected $Id = '0043,104A'; - - protected $Name = 'StartingChannelOfView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting Channel Of View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingRespiratoryAmplitude.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingRespiratoryAmplitude.php deleted file mode 100644 index a35855578..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingRespiratoryAmplitude.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingRespiratoryAmplitude extends AbstractTag -{ - - protected $Id = '0020,9246'; - - protected $Name = 'StartingRespiratoryAmplitude'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting Respiratory Amplitude'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingRespiratoryPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingRespiratoryPhase.php deleted file mode 100644 index 8756bb94c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingRespiratoryPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingRespiratoryPhase extends AbstractTag -{ - - protected $Id = '0020,9247'; - - protected $Name = 'StartingRespiratoryPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting Respiratory Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingView.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingView.php deleted file mode 100644 index 4132c73f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingView extends AbstractTag -{ - - protected $Id = '0019,1060'; - - protected $Name = 'StartingView'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow1a.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow1a.php deleted file mode 100644 index 4e3f91596..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow1a.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingViewForRow1a extends AbstractTag -{ - - protected $Id = '0045,1012'; - - protected $Name = 'StartingViewForRow1a'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting View For Row 1a'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow1b.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow1b.php deleted file mode 100644 index 7828f4926..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow1b.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingViewForRow1b extends AbstractTag -{ - - protected $Id = '0045,1017'; - - protected $Name = 'StartingViewForRow1b'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting View For Row 1b'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow2a.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow2a.php deleted file mode 100644 index 84d35d810..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow2a.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingViewForRow2a extends AbstractTag -{ - - protected $Id = '0045,1010'; - - protected $Name = 'StartingViewForRow2a'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting View For Row 2a'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow2b.php b/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow2b.php deleted file mode 100644 index 752b8b5bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StartingViewForRow2b.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingViewForRow2b extends AbstractTag -{ - - protected $Id = '0045,1015'; - - protected $Name = 'StartingViewForRow2b'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starting View For Row 2b'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StatReconFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/StatReconFlag.php deleted file mode 100644 index 18335558f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StatReconFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StatReconFlag extends AbstractTag -{ - - protected $Id = '0019,1040'; - - protected $Name = 'StatReconFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stat Recon Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StationName.php b/lib/PHPExiftool/Driver/Tag/DICOM/StationName.php deleted file mode 100644 index 474b57d0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StationName extends AbstractTag -{ - - protected $Id = '0008,1010'; - - protected $Name = 'StationName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SteadyStatePulseSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SteadyStatePulseSequence.php deleted file mode 100644 index f7b2cbecb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SteadyStatePulseSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SteadyStatePulseSequence extends AbstractTag -{ - - protected $Id = '0018,9017'; - - protected $Name = 'SteadyStatePulseSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Steady State Pulse Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SteeringAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/SteeringAngle.php deleted file mode 100644 index a66961c02..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SteeringAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SteeringAngle extends AbstractTag -{ - - protected $Id = '0018,6036'; - - protected $Name = 'SteeringAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Steering Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StereoBaselineAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/StereoBaselineAngle.php deleted file mode 100644 index 889e9b028..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StereoBaselineAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StereoBaselineAngle extends AbstractTag -{ - - protected $Id = '0022,0010'; - - protected $Name = 'StereoBaselineAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stereo Baseline Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StereoBaselineDisplacement.php b/lib/PHPExiftool/Driver/Tag/DICOM/StereoBaselineDisplacement.php deleted file mode 100644 index 94f704e12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StereoBaselineDisplacement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StereoBaselineDisplacement extends AbstractTag -{ - - protected $Id = '0022,0011'; - - protected $Name = 'StereoBaselineDisplacement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stereo Baseline Displacement'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StereoHorizontalPixelOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/StereoHorizontalPixelOffset.php deleted file mode 100644 index 459bb094a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StereoHorizontalPixelOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StereoHorizontalPixelOffset extends AbstractTag -{ - - protected $Id = '0022,0012'; - - protected $Name = 'StereoHorizontalPixelOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stereo Horizontal Pixel Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StereoPairsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/StereoPairsSequence.php deleted file mode 100644 index 2ac895ca5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StereoPairsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StereoPairsSequence extends AbstractTag -{ - - protected $Id = '0022,0020'; - - protected $Name = 'StereoPairsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stereo Pairs Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StereoRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/StereoRotation.php deleted file mode 100644 index 111a99c59..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StereoRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StereoRotation extends AbstractTag -{ - - protected $Id = '0022,0014'; - - protected $Name = 'StereoRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stereo Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StereoVerticalPixelOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/StereoVerticalPixelOffset.php deleted file mode 100644 index 5499f5748..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StereoVerticalPixelOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StereoVerticalPixelOffset extends AbstractTag -{ - - protected $Id = '0022,0013'; - - protected $Name = 'StereoVerticalPixelOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stereo Vertical Pixel Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StopTrim.php b/lib/PHPExiftool/Driver/Tag/DICOM/StopTrim.php deleted file mode 100644 index 7419c8fd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StopTrim.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StopTrim extends AbstractTag -{ - - protected $Id = '0008,2143'; - - protected $Name = 'StopTrim'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stop Trim'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StorageMediaFileSetID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StorageMediaFileSetID.php deleted file mode 100644 index a548e6690..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StorageMediaFileSetID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageMediaFileSetID extends AbstractTag -{ - - protected $Id = '0088,0130'; - - protected $Name = 'StorageMediaFileSetID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Storage Media File Set ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StorageMediaFileSetUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StorageMediaFileSetUID.php deleted file mode 100644 index e6af8adef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StorageMediaFileSetUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageMediaFileSetUID extends AbstractTag -{ - - protected $Id = '0088,0140'; - - protected $Name = 'StorageMediaFileSetUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Storage Media File Set UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StringSlopField1.php b/lib/PHPExiftool/Driver/Tag/DICOM/StringSlopField1.php deleted file mode 100644 index e2ee8467b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StringSlopField1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StringSlopField1 extends AbstractTag -{ - - protected $Id = '0043,102D'; - - protected $Name = 'StringSlopField1'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'String Slop Field 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StringSlopField2.php b/lib/PHPExiftool/Driver/Tag/DICOM/StringSlopField2.php deleted file mode 100644 index 77c856bf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StringSlopField2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StringSlopField2 extends AbstractTag -{ - - protected $Id = '0043,102E'; - - protected $Name = 'StringSlopField2'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'String Slop Field 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetDate.php deleted file mode 100644 index bab68a521..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StructureSetDate extends AbstractTag -{ - - protected $Id = '3006,0008'; - - protected $Name = 'StructureSetDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Structure Set Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetDescription.php deleted file mode 100644 index 4fc67f5e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StructureSetDescription extends AbstractTag -{ - - protected $Id = '3006,0006'; - - protected $Name = 'StructureSetDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Structure Set Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetLabel.php deleted file mode 100644 index 1a0597273..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StructureSetLabel extends AbstractTag -{ - - protected $Id = '3006,0002'; - - protected $Name = 'StructureSetLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Structure Set Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetName.php b/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetName.php deleted file mode 100644 index f108349d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StructureSetName extends AbstractTag -{ - - protected $Id = '3006,0004'; - - protected $Name = 'StructureSetName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Structure Set Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetROISequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetROISequence.php deleted file mode 100644 index 6e47283e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetROISequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StructureSetROISequence extends AbstractTag -{ - - protected $Id = '3006,0020'; - - protected $Name = 'StructureSetROISequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Structure Set ROI Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetTime.php deleted file mode 100644 index b95e5cb5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StructureSetTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StructureSetTime extends AbstractTag -{ - - protected $Id = '3006,0009'; - - protected $Name = 'StructureSetTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Structure Set Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyArrivalDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyArrivalDate.php deleted file mode 100644 index f8e3f5514..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyArrivalDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyArrivalDate extends AbstractTag -{ - - protected $Id = '0032,1040'; - - protected $Name = 'StudyArrivalDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Arrival Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyArrivalTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyArrivalTime.php deleted file mode 100644 index b712d60e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyArrivalTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyArrivalTime extends AbstractTag -{ - - protected $Id = '0032,1041'; - - protected $Name = 'StudyArrivalTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Arrival Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyComments.php deleted file mode 100644 index 88a2e1459..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyComments extends AbstractTag -{ - - protected $Id = '0032,4000'; - - protected $Name = 'StudyComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyCompletionDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyCompletionDate.php deleted file mode 100644 index 654a79ee3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyCompletionDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyCompletionDate extends AbstractTag -{ - - protected $Id = '0032,1050'; - - protected $Name = 'StudyCompletionDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Completion Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyCompletionTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyCompletionTime.php deleted file mode 100644 index 98ec53536..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyCompletionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyCompletionTime extends AbstractTag -{ - - protected $Id = '0032,1051'; - - protected $Name = 'StudyCompletionTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Completion Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyComponentStatusID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyComponentStatusID.php deleted file mode 100644 index c3abf05b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyComponentStatusID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyComponentStatusID extends AbstractTag -{ - - protected $Id = '0032,1055'; - - protected $Name = 'StudyComponentStatusID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Component Status ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyDate.php deleted file mode 100644 index cbcf932e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyDate extends AbstractTag -{ - - protected $Id = '0008,0020'; - - protected $Name = 'StudyDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyDescription.php deleted file mode 100644 index 6c0c5cc44..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyDescription extends AbstractTag -{ - - protected $Id = '0008,1030'; - - protected $Name = 'StudyDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyGroupLength.php deleted file mode 100644 index 7b30ec1a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyGroupLength extends AbstractTag -{ - - protected $Id = '0032,0000'; - - protected $Name = 'StudyGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyID.php deleted file mode 100644 index ad9e8ccf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyID extends AbstractTag -{ - - protected $Id = '0020,0010'; - - protected $Name = 'StudyID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyIDIssuer.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyIDIssuer.php deleted file mode 100644 index a278f123a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyIDIssuer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyIDIssuer extends AbstractTag -{ - - protected $Id = '0032,0012'; - - protected $Name = 'StudyIDIssuer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study ID Issuer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyInstanceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyInstanceUID.php deleted file mode 100644 index a9e2474f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyInstanceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyInstanceUID extends AbstractTag -{ - - protected $Id = '0020,000D'; - - protected $Name = 'StudyInstanceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Instance UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyPriorityID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyPriorityID.php deleted file mode 100644 index 4771934d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyPriorityID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyPriorityID extends AbstractTag -{ - - protected $Id = '0032,000C'; - - protected $Name = 'StudyPriorityID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Priority ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyReadDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyReadDate.php deleted file mode 100644 index d824509e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyReadDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyReadDate extends AbstractTag -{ - - protected $Id = '0032,0034'; - - protected $Name = 'StudyReadDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Read Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyReadTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyReadTime.php deleted file mode 100644 index 054e3dc59..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyReadTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyReadTime extends AbstractTag -{ - - protected $Id = '0032,0035'; - - protected $Name = 'StudyReadTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Read Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyStatusID.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyStatusID.php deleted file mode 100644 index 32fa7c0af..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyStatusID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyStatusID extends AbstractTag -{ - - protected $Id = '0032,000A'; - - protected $Name = 'StudyStatusID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Status ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyTime.php deleted file mode 100644 index eb9838406..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyTime extends AbstractTag -{ - - protected $Id = '0008,0030'; - - protected $Name = 'StudyTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyVerifiedDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyVerifiedDate.php deleted file mode 100644 index ac70d573a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyVerifiedDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyVerifiedDate extends AbstractTag -{ - - protected $Id = '0032,0032'; - - protected $Name = 'StudyVerifiedDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Verified Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/StudyVerifiedTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/StudyVerifiedTime.php deleted file mode 100644 index 203bbab6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/StudyVerifiedTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyVerifiedTime extends AbstractTag -{ - - protected $Id = '0032,0033'; - - protected $Name = 'StudyVerifiedTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Study Verified Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SubscriptionListStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/SubscriptionListStatus.php deleted file mode 100644 index 9f1b8c48f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SubscriptionListStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubscriptionListStatus extends AbstractTag -{ - - protected $Id = '0074,1244'; - - protected $Name = 'SubscriptionListStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subscription List Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdminParameterSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdminParameterSeq.php deleted file mode 100644 index 6637c7601..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdminParameterSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubstanceAdminParameterSeq extends AbstractTag -{ - - protected $Id = '0044,0019'; - - protected $Name = 'SubstanceAdminParameterSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Substance Admin Parameter Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationApproval.php b/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationApproval.php deleted file mode 100644 index f84a900ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationApproval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubstanceAdministrationApproval extends AbstractTag -{ - - protected $Id = '0044,0002'; - - protected $Name = 'SubstanceAdministrationApproval'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Substance Administration Approval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationDateTime.php deleted file mode 100644 index d01e8b2bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubstanceAdministrationDateTime extends AbstractTag -{ - - protected $Id = '0044,0010'; - - protected $Name = 'SubstanceAdministrationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Substance Administration Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationDeviceID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationDeviceID.php deleted file mode 100644 index b67489e46..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationDeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubstanceAdministrationDeviceID extends AbstractTag -{ - - protected $Id = '0044,0012'; - - protected $Name = 'SubstanceAdministrationDeviceID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Substance Administration Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationNotes.php b/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationNotes.php deleted file mode 100644 index 317ef435c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SubstanceAdministrationNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubstanceAdministrationNotes extends AbstractTag -{ - - protected $Id = '0044,0011'; - - protected $Name = 'SubstanceAdministrationNotes'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Substance Administration Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SubtractionItemID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SubtractionItemID.php deleted file mode 100644 index ed33175a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SubtractionItemID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubtractionItemID extends AbstractTag -{ - - protected $Id = '0028,9416'; - - protected $Name = 'SubtractionItemID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtraction Item ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SuiteID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SuiteID.php deleted file mode 100644 index 371e43462..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SuiteID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SuiteID extends AbstractTag -{ - - protected $Id = '0009,1002'; - - protected $Name = 'SuiteID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Suite ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SummaryImage.php b/lib/PHPExiftool/Driver/Tag/DICOM/SummaryImage.php deleted file mode 100644 index 9e04f69f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SummaryImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SummaryImage extends AbstractTag -{ - - protected $Id = '0023,1050'; - - protected $Name = 'SummaryImage'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Summary Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SupportedImageDisplayFormatSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/SupportedImageDisplayFormatSeq.php deleted file mode 100644 index d94b111a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SupportedImageDisplayFormatSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupportedImageDisplayFormatSeq extends AbstractTag -{ - - protected $Id = '2000,00A8'; - - protected $Name = 'SupportedImageDisplayFormatSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Supported Image Display Format Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCoilIntensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCoilIntensity.php deleted file mode 100644 index 448e850a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCoilIntensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceCoilIntensity extends AbstractTag -{ - - protected $Id = '0019,10C1'; - - protected $Name = 'SurfaceCoilIntensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Coil Intensity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCoilType.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCoilType.php deleted file mode 100644 index d07852f99..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCoilType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceCoilType extends AbstractTag -{ - - protected $Id = '0019,10A0'; - - protected $Name = 'SurfaceCoilType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Coil Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceComments.php deleted file mode 100644 index c2589127d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceComments extends AbstractTag -{ - - protected $Id = '0066,0004'; - - protected $Name = 'SurfaceComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCount.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCount.php deleted file mode 100644 index 95317fa54..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceCount extends AbstractTag -{ - - protected $Id = '0066,002A'; - - protected $Name = 'SurfaceCount'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceEntryPoint.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceEntryPoint.php deleted file mode 100644 index c6e78ffa8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceEntryPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceEntryPoint extends AbstractTag -{ - - protected $Id = '300A,012E'; - - protected $Name = 'SurfaceEntryPoint'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Entry Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceNumber.php deleted file mode 100644 index cb1349729..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceNumber extends AbstractTag -{ - - protected $Id = '0066,0003'; - - protected $Name = 'SurfaceNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfacePointsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfacePointsSequence.php deleted file mode 100644 index a02adaa12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfacePointsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfacePointsSequence extends AbstractTag -{ - - protected $Id = '0066,0011'; - - protected $Name = 'SurfacePointsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Points Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceProcessing.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceProcessing.php deleted file mode 100644 index 3bfba862f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceProcessing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceProcessing extends AbstractTag -{ - - protected $Id = '0066,0009'; - - protected $Name = 'SurfaceProcessing'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Processing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceProcessingRatio.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceProcessingRatio.php deleted file mode 100644 index efe9c9ee9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceProcessingRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceProcessingRatio extends AbstractTag -{ - - protected $Id = '0066,000A'; - - protected $Name = 'SurfaceProcessingRatio'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Processing Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceSequence.php deleted file mode 100644 index c20bda206..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SurfaceSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SurfaceSequence extends AbstractTag -{ - - protected $Id = '0066,0002'; - - protected $Name = 'SurfaceSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Surface Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Swappf.php b/lib/PHPExiftool/Driver/Tag/DICOM/Swappf.php deleted file mode 100644 index 3c0734573..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Swappf.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Swappf extends AbstractTag -{ - - protected $Id = '0019,108F'; - - protected $Name = 'Swappf'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Swappf'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationChannel.php b/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationChannel.php deleted file mode 100644 index af8847df3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationChannel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizationChannel extends AbstractTag -{ - - protected $Id = '0018,106C'; - - protected $Name = 'SynchronizationChannel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronization Channel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationFrameOfReferenceUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationFrameOfReferenceUID.php deleted file mode 100644 index a8b65a215..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationFrameOfReferenceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizationFrameOfReferenceUID extends AbstractTag -{ - - protected $Id = '0020,0200'; - - protected $Name = 'SynchronizationFrameOfReferenceUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronization Frame Of Reference UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationTrigger.php b/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationTrigger.php deleted file mode 100644 index c850111b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizationTrigger.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizationTrigger extends AbstractTag -{ - - protected $Id = '0018,106A'; - - protected $Name = 'SynchronizationTrigger'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronization Trigger'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizedImageBoxList.php b/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizedImageBoxList.php deleted file mode 100644 index 0e1c47b1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizedImageBoxList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizedImageBoxList extends AbstractTag -{ - - protected $Id = '0072,0432'; - - protected $Name = 'SynchronizedImageBoxList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronized Image Box List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizedScrollingSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizedScrollingSequence.php deleted file mode 100644 index af44caaa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SynchronizedScrollingSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizedScrollingSequence extends AbstractTag -{ - - protected $Id = '0072,0210'; - - protected $Name = 'SynchronizedScrollingSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronized Scrolling Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/SyringeCounts.php b/lib/PHPExiftool/Driver/Tag/DICOM/SyringeCounts.php deleted file mode 100644 index c0f4edc27..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/SyringeCounts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SyringeCounts extends AbstractTag -{ - - protected $Id = '0018,1045'; - - protected $Name = 'SyringeCounts'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Syringe Counts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/T2Preparation.php b/lib/PHPExiftool/Driver/Tag/DICOM/T2Preparation.php deleted file mode 100644 index 1b10f07f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/T2Preparation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class T2Preparation extends AbstractTag -{ - - protected $Id = '0018,9021'; - - protected $Name = 'T2Preparation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'T2 Preparation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TGGCTriggerMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/TGGCTriggerMode.php deleted file mode 100644 index 00a0bba11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TGGCTriggerMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TGGCTriggerMode extends AbstractTag -{ - - protected $Id = '0043,104C'; - - protected $Name = 'TGGCTriggerMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TGGC Trigger Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TIDOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/TIDOffset.php deleted file mode 100644 index 200b94faf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TIDOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TIDOffset extends AbstractTag -{ - - protected $Id = '0028,6120'; - - protected $Name = 'TIDOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TID Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX0.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX0.php deleted file mode 100644 index 8773756d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionX0 extends AbstractTag -{ - - protected $Id = '0018,603D'; - - protected $Name = 'TMLinePositionX0'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position X0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX0Retired.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX0Retired.php deleted file mode 100644 index 7003b9f1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX0Retired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionX0Retired extends AbstractTag -{ - - protected $Id = '0018,603C'; - - protected $Name = 'TMLinePositionX0Retired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position X0 Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX1.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX1.php deleted file mode 100644 index 5f4064979..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionX1 extends AbstractTag -{ - - protected $Id = '0018,6041'; - - protected $Name = 'TMLinePositionX1'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position X1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX1Retired.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX1Retired.php deleted file mode 100644 index ec764b601..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionX1Retired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionX1Retired extends AbstractTag -{ - - protected $Id = '0018,6040'; - - protected $Name = 'TMLinePositionX1Retired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position X1 Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY0.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY0.php deleted file mode 100644 index 9f481d727..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionY0 extends AbstractTag -{ - - protected $Id = '0018,603F'; - - protected $Name = 'TMLinePositionY0'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position Y0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY0Retired.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY0Retired.php deleted file mode 100644 index 5ef1b824a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY0Retired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionY0Retired extends AbstractTag -{ - - protected $Id = '0018,603E'; - - protected $Name = 'TMLinePositionY0Retired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position Y0 Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY1.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY1.php deleted file mode 100644 index 03b8dc014..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionY1 extends AbstractTag -{ - - protected $Id = '0018,6043'; - - protected $Name = 'TMLinePositionY1'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position Y1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY1Retired.php b/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY1Retired.php deleted file mode 100644 index d686fe65f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TMLinePositionY1Retired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TMLinePositionY1Retired extends AbstractTag -{ - - protected $Id = '0018,6042'; - - protected $Name = 'TMLinePositionY1Retired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TM Line Position Y1 Retired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableAngle.php deleted file mode 100644 index afe06e8ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableAngle extends AbstractTag -{ - - protected $Id = '0018,1138'; - - protected $Name = 'TableAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableCradleTiltAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableCradleTiltAngle.php deleted file mode 100644 index 955829e53..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableCradleTiltAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableCradleTiltAngle extends AbstractTag -{ - - protected $Id = '0018,9471'; - - protected $Name = 'TableCradleTiltAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Cradle Tilt Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableDelta.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableDelta.php deleted file mode 100644 index 70f3e6bcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableDelta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableDelta extends AbstractTag -{ - - protected $Id = '0019,107F'; - - protected $Name = 'TableDelta'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Delta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableDirectionInOrOut.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableDirectionInOrOut.php deleted file mode 100644 index f87cf2153..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableDirectionInOrOut.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableDirectionInOrOut extends AbstractTag -{ - - protected $Id = '0045,1006'; - - protected $Name = 'TableDirectionInOrOut'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Direction In Or Out'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableEndLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableEndLocation.php deleted file mode 100644 index ac73ce776..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableEndLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableEndLocation extends AbstractTag -{ - - protected $Id = '0027,1051'; - - protected $Name = 'TableEndLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table End Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableFeedPerRotation.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableFeedPerRotation.php deleted file mode 100644 index 05b438795..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableFeedPerRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableFeedPerRotation extends AbstractTag -{ - - protected $Id = '0018,9310'; - - protected $Name = 'TableFeedPerRotation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Feed Per Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableHeadTiltAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableHeadTiltAngle.php deleted file mode 100644 index 593f774db..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableHeadTiltAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableHeadTiltAngle extends AbstractTag -{ - - protected $Id = '0018,9470'; - - protected $Name = 'TableHeadTiltAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Head Tilt Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableHeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableHeight.php deleted file mode 100644 index 008069532..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableHeight extends AbstractTag -{ - - protected $Id = '0018,1130'; - - protected $Name = 'TableHeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableHorizontalRotationAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableHorizontalRotationAngle.php deleted file mode 100644 index 181da21ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableHorizontalRotationAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableHorizontalRotationAngle extends AbstractTag -{ - - protected $Id = '0018,9469'; - - protected $Name = 'TableHorizontalRotationAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Horizontal Rotation Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableLateralIncrement.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableLateralIncrement.php deleted file mode 100644 index f2d80b82e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableLateralIncrement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableLateralIncrement extends AbstractTag -{ - - protected $Id = '0018,1136'; - - protected $Name = 'TableLateralIncrement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Lateral Increment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableLongitudinalIncrement.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableLongitudinalIncrement.php deleted file mode 100644 index 4be7e3088..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableLongitudinalIncrement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableLongitudinalIncrement extends AbstractTag -{ - - protected $Id = '0018,1137'; - - protected $Name = 'TableLongitudinalIncrement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Longitudinal Increment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableMotion.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableMotion.php deleted file mode 100644 index eb920c582..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableMotion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableMotion extends AbstractTag -{ - - protected $Id = '0018,1134'; - - protected $Name = 'TableMotion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Motion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfParameterValues.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableOfParameterValues.php deleted file mode 100644 index fc6ddb912..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfParameterValues.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableOfParameterValues extends AbstractTag -{ - - protected $Id = '0018,605A'; - - protected $Name = 'TableOfParameterValues'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Of Parameter Values'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfPixelValues.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableOfPixelValues.php deleted file mode 100644 index bb9a92f31..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfPixelValues.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableOfPixelValues extends AbstractTag -{ - - protected $Id = '0018,6058'; - - protected $Name = 'TableOfPixelValues'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Of Pixel Values'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfXBreakPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableOfXBreakPoints.php deleted file mode 100644 index f6c50362c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfXBreakPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableOfXBreakPoints extends AbstractTag -{ - - protected $Id = '0018,6052'; - - protected $Name = 'TableOfXBreakPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Of X Break Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfYBreakPoints.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableOfYBreakPoints.php deleted file mode 100644 index 4fba91793..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableOfYBreakPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableOfYBreakPoints extends AbstractTag -{ - - protected $Id = '0018,6054'; - - protected $Name = 'TableOfYBreakPoints'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Of Y Break Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TablePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TablePosition.php deleted file mode 100644 index 0d381448e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TablePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TablePosition extends AbstractTag -{ - - protected $Id = '0018,9327'; - - protected $Name = 'TablePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TablePositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TablePositionSequence.php deleted file mode 100644 index 042e2bbac..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TablePositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TablePositionSequence extends AbstractTag -{ - - protected $Id = '0018,9406'; - - protected $Name = 'TablePositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableSpeed.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableSpeed.php deleted file mode 100644 index f0577a09a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableSpeed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TableSpeed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableStartLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableStartLocation.php deleted file mode 100644 index e6cbbc4dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableStartLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableStartLocation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TableStartLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Start Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAngle.php deleted file mode 100644 index 9797318af..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopEccentricAngle extends AbstractTag -{ - - protected $Id = '300A,0125'; - - protected $Name = 'TableTopEccentricAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Eccentric Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAngleTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAngleTolerance.php deleted file mode 100644 index 9b9511888..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAngleTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopEccentricAngleTolerance extends AbstractTag -{ - - protected $Id = '300A,004E'; - - protected $Name = 'TableTopEccentricAngleTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Eccentric Angle Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAxisDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAxisDistance.php deleted file mode 100644 index 9e768e82b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricAxisDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopEccentricAxisDistance extends AbstractTag -{ - - protected $Id = '300A,0124'; - - protected $Name = 'TableTopEccentricAxisDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Eccentric Axis Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricRotateDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricRotateDirection.php deleted file mode 100644 index 6cf093cf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopEccentricRotateDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopEccentricRotateDirection extends AbstractTag -{ - - protected $Id = '300A,0126'; - - protected $Name = 'TableTopEccentricRotateDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Eccentric Rotate Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralPosition.php deleted file mode 100644 index 89b219507..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopLateralPosition extends AbstractTag -{ - - protected $Id = '300A,012A'; - - protected $Name = 'TableTopLateralPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Lateral Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralPositionTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralPositionTolerance.php deleted file mode 100644 index 39c8dc2a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralPositionTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopLateralPositionTolerance extends AbstractTag -{ - - protected $Id = '300A,0053'; - - protected $Name = 'TableTopLateralPositionTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Lateral Position Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralSetupDisplacement.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralSetupDisplacement.php deleted file mode 100644 index 8bd8fe087..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLateralSetupDisplacement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopLateralSetupDisplacement extends AbstractTag -{ - - protected $Id = '300A,01D6'; - - protected $Name = 'TableTopLateralSetupDisplacement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Lateral Setup Displacement'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalPosition.php deleted file mode 100644 index 7881a9073..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopLongitudinalPosition extends AbstractTag -{ - - protected $Id = '300A,0129'; - - protected $Name = 'TableTopLongitudinalPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Longitudinal Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalPositionTol.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalPositionTol.php deleted file mode 100644 index 7a4d6dec5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalPositionTol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopLongitudinalPositionTol extends AbstractTag -{ - - protected $Id = '300A,0052'; - - protected $Name = 'TableTopLongitudinalPositionTol'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Longitudinal Position Tol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalSetupDisplace.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalSetupDisplace.php deleted file mode 100644 index 7a1024335..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopLongitudinalSetupDisplace.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopLongitudinalSetupDisplace extends AbstractTag -{ - - protected $Id = '300A,01D4'; - - protected $Name = 'TableTopLongitudinalSetupDisplace'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Longitudinal Setup Displace'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchAngle.php deleted file mode 100644 index 4b0866b3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopPitchAngle extends AbstractTag -{ - - protected $Id = '300A,0140'; - - protected $Name = 'TableTopPitchAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Pitch Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchAngleTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchAngleTolerance.php deleted file mode 100644 index 331b2f083..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchAngleTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopPitchAngleTolerance extends AbstractTag -{ - - protected $Id = '300A,004F'; - - protected $Name = 'TableTopPitchAngleTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Pitch Angle Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchRotationDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchRotationDirection.php deleted file mode 100644 index 371ea0996..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopPitchRotationDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopPitchRotationDirection extends AbstractTag -{ - - protected $Id = '300A,0142'; - - protected $Name = 'TableTopPitchRotationDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Pitch Rotation Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollAngle.php deleted file mode 100644 index 9ed4cf02b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopRollAngle extends AbstractTag -{ - - protected $Id = '300A,0144'; - - protected $Name = 'TableTopRollAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Roll Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollAngleTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollAngleTolerance.php deleted file mode 100644 index 258a5b9aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollAngleTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopRollAngleTolerance extends AbstractTag -{ - - protected $Id = '300A,0050'; - - protected $Name = 'TableTopRollAngleTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Roll Angle Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollRotationDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollRotationDirection.php deleted file mode 100644 index 624b5d3f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopRollRotationDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopRollRotationDirection extends AbstractTag -{ - - protected $Id = '300A,0146'; - - protected $Name = 'TableTopRollRotationDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Roll Rotation Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalPosition.php deleted file mode 100644 index a8d04bc61..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopVerticalPosition extends AbstractTag -{ - - protected $Id = '300A,0128'; - - protected $Name = 'TableTopVerticalPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Vertical Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalPositionTolerance.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalPositionTolerance.php deleted file mode 100644 index 3cb1fd2ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalPositionTolerance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopVerticalPositionTolerance extends AbstractTag -{ - - protected $Id = '300A,0051'; - - protected $Name = 'TableTopVerticalPositionTolerance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Vertical Position Tolerance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalSetupDisplacement.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalSetupDisplacement.php deleted file mode 100644 index d7fea8f02..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTopVerticalSetupDisplacement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTopVerticalSetupDisplacement extends AbstractTag -{ - - protected $Id = '300A,01D2'; - - protected $Name = 'TableTopVerticalSetupDisplacement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Top Vertical Setup Displacement'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableTraverse.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableTraverse.php deleted file mode 100644 index 920fa7d46..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableTraverse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableTraverse extends AbstractTag -{ - - protected $Id = '0018,1131'; - - protected $Name = 'TableTraverse'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Traverse'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableType.php deleted file mode 100644 index 3420cc6f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableType extends AbstractTag -{ - - protected $Id = '0018,113A'; - - protected $Name = 'TableType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableVerticalIncrement.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableVerticalIncrement.php deleted file mode 100644 index 0571e9ec3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableVerticalIncrement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableVerticalIncrement extends AbstractTag -{ - - protected $Id = '0018,1135'; - - protected $Name = 'TableVerticalIncrement'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Vertical Increment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableXPositionToIsocenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableXPositionToIsocenter.php deleted file mode 100644 index 7610034cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableXPositionToIsocenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableXPositionToIsocenter extends AbstractTag -{ - - protected $Id = '0018,9466'; - - protected $Name = 'TableXPositionToIsocenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table X Position To Isocenter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableYPositionToIsocenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableYPositionToIsocenter.php deleted file mode 100644 index 7c7871993..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableYPositionToIsocenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableYPositionToIsocenter extends AbstractTag -{ - - protected $Id = '0018,9467'; - - protected $Name = 'TableYPositionToIsocenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Y Position To Isocenter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TableZPositionToIsocenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/TableZPositionToIsocenter.php deleted file mode 100644 index 7363cb3d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TableZPositionToIsocenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TableZPositionToIsocenter extends AbstractTag -{ - - protected $Id = '0018,9468'; - - protected $Name = 'TableZPositionToIsocenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Table Z Position To Isocenter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TagAngleFirstAxis.php b/lib/PHPExiftool/Driver/Tag/DICOM/TagAngleFirstAxis.php deleted file mode 100644 index d6851aaf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TagAngleFirstAxis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagAngleFirstAxis extends AbstractTag -{ - - protected $Id = '0018,9019'; - - protected $Name = 'TagAngleFirstAxis'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tag Angle First Axis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TagAngleSecondAxis.php b/lib/PHPExiftool/Driver/Tag/DICOM/TagAngleSecondAxis.php deleted file mode 100644 index 2f79a062f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TagAngleSecondAxis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagAngleSecondAxis extends AbstractTag -{ - - protected $Id = '0018,9219'; - - protected $Name = 'TagAngleSecondAxis'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tag Angle Second Axis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TagSpacingFirstDimension.php b/lib/PHPExiftool/Driver/Tag/DICOM/TagSpacingFirstDimension.php deleted file mode 100644 index 3d0fea726..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TagSpacingFirstDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagSpacingFirstDimension extends AbstractTag -{ - - protected $Id = '0018,9030'; - - protected $Name = 'TagSpacingFirstDimension'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tag Spacing First Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TagSpacingSecondDimension.php b/lib/PHPExiftool/Driver/Tag/DICOM/TagSpacingSecondDimension.php deleted file mode 100644 index 2235bfbfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TagSpacingSecondDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagSpacingSecondDimension extends AbstractTag -{ - - protected $Id = '0018,9218'; - - protected $Name = 'TagSpacingSecondDimension'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tag Spacing Second Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TagThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/TagThickness.php deleted file mode 100644 index c61eff8e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TagThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagThickness extends AbstractTag -{ - - protected $Id = '0018,9035'; - - protected $Name = 'TagThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tag Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Tagging.php b/lib/PHPExiftool/Driver/Tag/DICOM/Tagging.php deleted file mode 100644 index ef72dc294..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Tagging.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tagging extends AbstractTag -{ - - protected $Id = '0018,9028'; - - protected $Name = 'Tagging'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tagging'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TaggingDelay.php b/lib/PHPExiftool/Driver/Tag/DICOM/TaggingDelay.php deleted file mode 100644 index 2bfcdf82f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TaggingDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaggingDelay extends AbstractTag -{ - - protected $Id = '0018,9184'; - - protected $Name = 'TaggingDelay'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tagging Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TargetMaximumDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/TargetMaximumDose.php deleted file mode 100644 index db4cfb26c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TargetMaximumDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetMaximumDose extends AbstractTag -{ - - protected $Id = '300A,0027'; - - protected $Name = 'TargetMaximumDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Maximum Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TargetMinimumDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/TargetMinimumDose.php deleted file mode 100644 index eedc0e95a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TargetMinimumDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetMinimumDose extends AbstractTag -{ - - protected $Id = '300A,0025'; - - protected $Name = 'TargetMinimumDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Minimum Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TargetPrescriptionDose.php b/lib/PHPExiftool/Driver/Tag/DICOM/TargetPrescriptionDose.php deleted file mode 100644 index 6029ca34b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TargetPrescriptionDose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetPrescriptionDose extends AbstractTag -{ - - protected $Id = '300A,0026'; - - protected $Name = 'TargetPrescriptionDose'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Prescription Dose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TargetUnderdoseVolumeFraction.php b/lib/PHPExiftool/Driver/Tag/DICOM/TargetUnderdoseVolumeFraction.php deleted file mode 100644 index e047c56a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TargetUnderdoseVolumeFraction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetUnderdoseVolumeFraction extends AbstractTag -{ - - protected $Id = '300A,0028'; - - protected $Name = 'TargetUnderdoseVolumeFraction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Underdose Volume Fraction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TelephoneNumberTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/TelephoneNumberTrial.php deleted file mode 100644 index 9fc228f20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TelephoneNumberTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TelephoneNumberTrial extends AbstractTag -{ - - protected $Id = '0040,A354'; - - protected $Name = 'TelephoneNumberTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Telephone Number Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionCreatorUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionCreatorUID.php deleted file mode 100644 index 5a0d363d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionCreatorUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateExtensionCreatorUID extends AbstractTag -{ - - protected $Id = '0040,DB0D'; - - protected $Name = 'TemplateExtensionCreatorUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Extension Creator UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionFlag.php deleted file mode 100644 index 667cb2c12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateExtensionFlag extends AbstractTag -{ - - protected $Id = '0040,DB0B'; - - protected $Name = 'TemplateExtensionFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Extension Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionOrganizationUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionOrganizationUID.php deleted file mode 100644 index 219246483..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateExtensionOrganizationUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateExtensionOrganizationUID extends AbstractTag -{ - - protected $Id = '0040,DB0C'; - - protected $Name = 'TemplateExtensionOrganizationUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Extension Organization UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateIdentifier.php deleted file mode 100644 index 409f06c96..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateIdentifier extends AbstractTag -{ - - protected $Id = '0040,DB00'; - - protected $Name = 'TemplateIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateLocalVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateLocalVersion.php deleted file mode 100644 index d7028eb12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateLocalVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateLocalVersion extends AbstractTag -{ - - protected $Id = '0040,DB07'; - - protected $Name = 'TemplateLocalVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Local Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateName.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateName.php deleted file mode 100644 index 9a2200d5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateName extends AbstractTag -{ - - protected $Id = '300A,0244'; - - protected $Name = 'TemplateName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateNumber.php deleted file mode 100644 index 361eb31e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateNumber extends AbstractTag -{ - - protected $Id = '300A,0240'; - - protected $Name = 'TemplateNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateType.php deleted file mode 100644 index 8a30c40c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateType extends AbstractTag -{ - - protected $Id = '300A,0242'; - - protected $Name = 'TemplateType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateVersion.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemplateVersion.php deleted file mode 100644 index 8345bec68..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemplateVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemplateVersion extends AbstractTag -{ - - protected $Id = '0040,DB06'; - - protected $Name = 'TemplateVersion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalPositionIdentifier.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemporalPositionIdentifier.php deleted file mode 100644 index 2638718e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalPositionIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemporalPositionIdentifier extends AbstractTag -{ - - protected $Id = '0020,0100'; - - protected $Name = 'TemporalPositionIdentifier'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Temporal Position Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalPositionIndex.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemporalPositionIndex.php deleted file mode 100644 index 9d495e390..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalPositionIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemporalPositionIndex extends AbstractTag -{ - - protected $Id = '0020,9128'; - - protected $Name = 'TemporalPositionIndex'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Temporal Position Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalRangeType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemporalRangeType.php deleted file mode 100644 index 981a6a1ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalRangeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemporalRangeType extends AbstractTag -{ - - protected $Id = '0040,A130'; - - protected $Name = 'TemporalRangeType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Temporal Range Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalResolution.php b/lib/PHPExiftool/Driver/Tag/DICOM/TemporalResolution.php deleted file mode 100644 index 9905a70af..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TemporalResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemporalResolution extends AbstractTag -{ - - protected $Id = '0020,0110'; - - protected $Name = 'TemporalResolution'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Temporal Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TerminationTimeThreshold.php b/lib/PHPExiftool/Driver/Tag/DICOM/TerminationTimeThreshold.php deleted file mode 100644 index 19f7d2491..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TerminationTimeThreshold.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TerminationTimeThreshold extends AbstractTag -{ - - protected $Id = '0018,9722'; - - protected $Name = 'TerminationTimeThreshold'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Termination Time Threshold'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TextComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/TextComments.php deleted file mode 100644 index 77007aaa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TextComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextComments extends AbstractTag -{ - - protected $Id = '4000,4000'; - - protected $Name = 'TextComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TextGroupLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/TextGroupLength.php deleted file mode 100644 index 01be1be6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TextGroupLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextGroupLength extends AbstractTag -{ - - protected $Id = '4000,0000'; - - protected $Name = 'TextGroupLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text Group Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TextObjectSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TextObjectSequence.php deleted file mode 100644 index 0d5a8c7b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TextObjectSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextObjectSequence extends AbstractTag -{ - - protected $Id = '0070,0008'; - - protected $Name = 'TextObjectSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text Object Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TextString.php b/lib/PHPExiftool/Driver/Tag/DICOM/TextString.php deleted file mode 100644 index 5ad1c8f8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TextString.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextString extends AbstractTag -{ - - protected $Id = '2030,0020'; - - protected $Name = 'TextString'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text String'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TextValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/TextValue.php deleted file mode 100644 index 05fe9bc08..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TextValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextValue extends AbstractTag -{ - - protected $Id = '0040,A160'; - - protected $Name = 'TextValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TherapyDescription.php b/lib/PHPExiftool/Driver/Tag/DICOM/TherapyDescription.php deleted file mode 100644 index f751fda7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TherapyDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TherapyDescription extends AbstractTag -{ - - protected $Id = '0018,0039'; - - protected $Name = 'TherapyDescription'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Therapy Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TherapyType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TherapyType.php deleted file mode 100644 index eebe64ef6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TherapyType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TherapyType extends AbstractTag -{ - - protected $Id = '0018,0037'; - - protected $Name = 'TherapyType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Therapy Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ThicknessDisclaimer.php b/lib/PHPExiftool/Driver/Tag/DICOM/ThicknessDisclaimer.php deleted file mode 100644 index db184655e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ThicknessDisclaimer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThicknessDisclaimer extends AbstractTag -{ - - protected $Id = '0019,10CD'; - - protected $Name = 'ThicknessDisclaimer'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thickness Disclaimer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ThresholdDensity.php b/lib/PHPExiftool/Driver/Tag/DICOM/ThresholdDensity.php deleted file mode 100644 index 46bc066d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ThresholdDensity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThresholdDensity extends AbstractTag -{ - - protected $Id = '2040,0100'; - - protected $Name = 'ThresholdDensity'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Threshold Density'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Time.php b/lib/PHPExiftool/Driver/Tag/DICOM/Time.php deleted file mode 100644 index 538ee33f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Time.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Time extends AbstractTag -{ - - protected $Id = '0040,A122'; - - protected $Name = 'Time'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeBasedImageSetsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeBasedImageSetsSequence.php deleted file mode 100644 index 6777fa753..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeBasedImageSetsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeBasedImageSetsSequence extends AbstractTag -{ - - protected $Id = '0072,0030'; - - protected $Name = 'TimeBasedImageSetsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Based Image Sets Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeDistributionProtocol.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeDistributionProtocol.php deleted file mode 100644 index 4370753e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeDistributionProtocol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeDistributionProtocol extends AbstractTag -{ - - protected $Id = '0018,1802'; - - protected $Name = 'TimeDistributionProtocol'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Distribution Protocol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeDomainFiltering.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeDomainFiltering.php deleted file mode 100644 index 860acebd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeDomainFiltering.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeDomainFiltering extends AbstractTag -{ - - protected $Id = '0018,9065'; - - protected $Name = 'TimeDomainFiltering'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Domain Filtering'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfFlightContrast.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfFlightContrast.php deleted file mode 100644 index a05b08b85..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfFlightContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeOfFlightContrast extends AbstractTag -{ - - protected $Id = '0018,9015'; - - protected $Name = 'TimeOfFlightContrast'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Of Flight Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfLastCalibration.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfLastCalibration.php deleted file mode 100644 index 8ea599213..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfLastCalibration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeOfLastCalibration extends AbstractTag -{ - - protected $Id = '0018,1201'; - - protected $Name = 'TimeOfLastCalibration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Of Last Calibration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfLastDetectorCalibration.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfLastDetectorCalibration.php deleted file mode 100644 index 8d6435b10..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfLastDetectorCalibration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeOfLastDetectorCalibration extends AbstractTag -{ - - protected $Id = '0018,700E'; - - protected $Name = 'TimeOfLastDetectorCalibration'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Of Last Detector Calibration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfSecondaryCapture.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfSecondaryCapture.php deleted file mode 100644 index fc631456e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeOfSecondaryCapture.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeOfSecondaryCapture extends AbstractTag -{ - - protected $Id = '0018,1014'; - - protected $Name = 'TimeOfSecondaryCapture'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Of Secondary Capture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeRange.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeRange.php deleted file mode 100644 index e7af1e7a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeRange extends AbstractTag -{ - - protected $Id = '0008,1163'; - - protected $Name = 'TimeRange'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSliceVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeSliceVector.php deleted file mode 100644 index 119f1544b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSliceVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSliceVector extends AbstractTag -{ - - protected $Id = '0054,0100'; - - protected $Name = 'TimeSliceVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Slice Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotInformationSequence.php deleted file mode 100644 index 950a65111..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSlotInformationSequence extends AbstractTag -{ - - protected $Id = '0054,0072'; - - protected $Name = 'TimeSlotInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Slot Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotNumber.php deleted file mode 100644 index 222462d66..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSlotNumber extends AbstractTag -{ - - protected $Id = '0020,0017'; - - protected $Name = 'TimeSlotNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Slot Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotTime.php deleted file mode 100644 index 70744e666..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSlotTime extends AbstractTag -{ - - protected $Id = '0054,0073'; - - protected $Name = 'TimeSlotTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Slot Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotVector.php deleted file mode 100644 index 018e9605d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSlotVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSlotVector extends AbstractTag -{ - - protected $Id = '0054,0070'; - - protected $Name = 'TimeSlotVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Slot Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSource.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimeSource.php deleted file mode 100644 index 940af0c58..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimeSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSource extends AbstractTag -{ - - protected $Id = '0018,1801'; - - protected $Name = 'TimeSource'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TimezoneOffsetFromUTC.php b/lib/PHPExiftool/Driver/Tag/DICOM/TimezoneOffsetFromUTC.php deleted file mode 100644 index fe299a552..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TimezoneOffsetFromUTC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimezoneOffsetFromUTC extends AbstractTag -{ - - protected $Id = '0008,0201'; - - protected $Name = 'TimezoneOffsetFromUTC'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timezone Offset From UTC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TissueHeterogeneityCorrection.php b/lib/PHPExiftool/Driver/Tag/DICOM/TissueHeterogeneityCorrection.php deleted file mode 100644 index 25cf6dc06..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TissueHeterogeneityCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TissueHeterogeneityCorrection extends AbstractTag -{ - - protected $Id = '3004,0014'; - - protected $Name = 'TissueHeterogeneityCorrection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tissue Heterogeneity Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ToWindowLevelLevel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ToWindowLevelLevel.php deleted file mode 100644 index 5519140d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ToWindowLevelLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToWindowLevelLevel extends AbstractTag -{ - - protected $Id = '0021,1084'; - - protected $Name = 'ToWindowLevelLevel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'To Window Level Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableLabel.php deleted file mode 100644 index 55cc2e5e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToleranceTableLabel extends AbstractTag -{ - - protected $Id = '300A,0043'; - - protected $Name = 'ToleranceTableLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tolerance Table Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableNumber.php deleted file mode 100644 index 7f23a10dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToleranceTableNumber extends AbstractTag -{ - - protected $Id = '300A,0042'; - - protected $Name = 'ToleranceTableNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tolerance Table Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableSequence.php deleted file mode 100644 index ccb2eda94..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ToleranceTableSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToleranceTableSequence extends AbstractTag -{ - - protected $Id = '300A,0040'; - - protected $Name = 'ToleranceTableSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tolerance Table Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TomoAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TomoAngle.php deleted file mode 100644 index 4604a024c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TomoAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TomoAngle extends AbstractTag -{ - - protected $Id = '0018,1470'; - - protected $Name = 'TomoAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tomo Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TomoClass.php b/lib/PHPExiftool/Driver/Tag/DICOM/TomoClass.php deleted file mode 100644 index fa885f5c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TomoClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TomoClass extends AbstractTag -{ - - protected $Id = '0018,1491'; - - protected $Name = 'TomoClass'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tomo Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TomoLayerHeight.php b/lib/PHPExiftool/Driver/Tag/DICOM/TomoLayerHeight.php deleted file mode 100644 index d8c55c8bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TomoLayerHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TomoLayerHeight extends AbstractTag -{ - - protected $Id = '0018,1460'; - - protected $Name = 'TomoLayerHeight'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tomo Layer Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TomoTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/TomoTime.php deleted file mode 100644 index 6c43f4936..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TomoTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TomoTime extends AbstractTag -{ - - protected $Id = '0018,1480'; - - protected $Name = 'TomoTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tomo Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TomoType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TomoType.php deleted file mode 100644 index aa73e2df4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TomoType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TomoType extends AbstractTag -{ - - protected $Id = '0018,1490'; - - protected $Name = 'TomoType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tomo Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TopicAuthor.php b/lib/PHPExiftool/Driver/Tag/DICOM/TopicAuthor.php deleted file mode 100644 index aa3a83235..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TopicAuthor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TopicAuthor extends AbstractTag -{ - - protected $Id = '0088,0910'; - - protected $Name = 'TopicAuthor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Topic Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TopicKeywords.php b/lib/PHPExiftool/Driver/Tag/DICOM/TopicKeywords.php deleted file mode 100644 index 78967ccfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TopicKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TopicKeywords extends AbstractTag -{ - - protected $Id = '0088,0912'; - - protected $Name = 'TopicKeywords'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Topic Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TopicSubject.php b/lib/PHPExiftool/Driver/Tag/DICOM/TopicSubject.php deleted file mode 100644 index 3ef0326a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TopicSubject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TopicSubject extends AbstractTag -{ - - protected $Id = '0088,0906'; - - protected $Name = 'TopicSubject'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Topic Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TopicTitle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TopicTitle.php deleted file mode 100644 index af905e1f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TopicTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TopicTitle extends AbstractTag -{ - - protected $Id = '0088,0904'; - - protected $Name = 'TopicTitle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Topic Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalBlockTrayFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalBlockTrayFactor.php deleted file mode 100644 index 7dcba1efa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalBlockTrayFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalBlockTrayFactor extends AbstractTag -{ - - protected $Id = '300A,00F2'; - - protected $Name = 'TotalBlockTrayFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Block Tray Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalBlockTrayWaterEquivThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalBlockTrayWaterEquivThickness.php deleted file mode 100644 index a4c4e4bae..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalBlockTrayWaterEquivThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalBlockTrayWaterEquivThickness extends AbstractTag -{ - - protected $Id = '300A,00F3'; - - protected $Name = 'TotalBlockTrayWaterEquivThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Block Tray Water Equiv Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalCollimationWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalCollimationWidth.php deleted file mode 100644 index bf9cf16ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalCollimationWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalCollimationWidth extends AbstractTag -{ - - protected $Id = '0018,9307'; - - protected $Name = 'TotalCollimationWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Collimation Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalCompTrayWaterEquivThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalCompTrayWaterEquivThickness.php deleted file mode 100644 index 50c637209..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalCompTrayWaterEquivThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalCompTrayWaterEquivThickness extends AbstractTag -{ - - protected $Id = '300A,02E3'; - - protected $Name = 'TotalCompTrayWaterEquivThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Comp Tray Water Equiv Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalCompensatorTrayFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalCompensatorTrayFactor.php deleted file mode 100644 index ecf0453fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalCompensatorTrayFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalCompensatorTrayFactor extends AbstractTag -{ - - protected $Id = '300A,00E2'; - - protected $Name = 'TotalCompensatorTrayFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Compensator Tray Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalGain.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalGain.php deleted file mode 100644 index 3abb76ef1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalGain extends AbstractTag -{ - - protected $Id = '0018,5040'; - - protected $Name = 'TotalGain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalInputViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalInputViews.php deleted file mode 100644 index 8c6e4c514..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalInputViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalInputViews extends AbstractTag -{ - - protected $Id = '0043,1011'; - - protected $Name = 'TotalInputViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Input Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalNoOfRefChannels.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalNoOfRefChannels.php deleted file mode 100644 index db1e54f39..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalNoOfRefChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalNoOfRefChannels extends AbstractTag -{ - - protected $Id = '0019,104A'; - - protected $Name = 'TotalNoOfRefChannels'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total No Of Ref Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalNumberMediaPiecesCreated.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalNumberMediaPiecesCreated.php deleted file mode 100644 index 8acdd0a6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalNumberMediaPiecesCreated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalNumberMediaPiecesCreated extends AbstractTag -{ - - protected $Id = '2200,000B'; - - protected $Name = 'TotalNumberMediaPiecesCreated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Number Media Pieces Created'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalNumberOfExposures.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalNumberOfExposures.php deleted file mode 100644 index d78ffdcc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalNumberOfExposures.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalNumberOfExposures extends AbstractTag -{ - - protected $Id = '0040,0301'; - - protected $Name = 'TotalNumberOfExposures'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Number Of Exposures'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalOutputViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalOutputViews.php deleted file mode 100644 index db10eeb20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalOutputViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalOutputViews extends AbstractTag -{ - - protected $Id = '0043,1015'; - - protected $Name = 'TotalOutputViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Output Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalReferenceAirKerma.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalReferenceAirKerma.php deleted file mode 100644 index 04be5bd80..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalReferenceAirKerma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalReferenceAirKerma extends AbstractTag -{ - - protected $Id = '300A,0250'; - - protected $Name = 'TotalReferenceAirKerma'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Reference Air Kerma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalSegmentsRequested.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalSegmentsRequested.php deleted file mode 100644 index 0f5e6d6af..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalSegmentsRequested.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalSegmentsRequested extends AbstractTag -{ - - protected $Id = '0019,1043'; - - protected $Name = 'TotalSegmentsRequested'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Segments Requested'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalTime.php deleted file mode 100644 index 3dfbe4f4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalTime extends AbstractTag -{ - - protected $Id = '50xx,200A'; - - protected $Name = 'TotalTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalTimeOfFluoroscopy.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalTimeOfFluoroscopy.php deleted file mode 100644 index bb65455e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalTimeOfFluoroscopy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalTimeOfFluoroscopy extends AbstractTag -{ - - protected $Id = '0040,0300'; - - protected $Name = 'TotalTimeOfFluoroscopy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Time Of Fluoroscopy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TotalWedgeTrayWaterEquivThickness.php b/lib/PHPExiftool/Driver/Tag/DICOM/TotalWedgeTrayWaterEquivThickness.php deleted file mode 100644 index 502f70e80..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TotalWedgeTrayWaterEquivThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalWedgeTrayWaterEquivThickness extends AbstractTag -{ - - protected $Id = '300A,00D7'; - - protected $Name = 'TotalWedgeTrayWaterEquivThickness'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Wedge Tray Water Equiv Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransactionUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransactionUID.php deleted file mode 100644 index 3d3c78c53..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransactionUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransactionUID extends AbstractTag -{ - - protected $Id = '0008,1195'; - - protected $Name = 'TransactionUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transaction UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerData.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerData.php deleted file mode 100644 index 62fe05090..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerData extends AbstractTag -{ - - protected $Id = '0018,5010'; - - protected $Name = 'TransducerData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerFrequency.php deleted file mode 100644 index 9bc722a04..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerFrequency extends AbstractTag -{ - - protected $Id = '0018,6030'; - - protected $Name = 'TransducerFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientation.php deleted file mode 100644 index aa21e18c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerOrientation extends AbstractTag -{ - - protected $Id = '0008,2204'; - - protected $Name = 'TransducerOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientationModifierSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientationModifierSeq.php deleted file mode 100644 index 71d150822..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientationModifierSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerOrientationModifierSeq extends AbstractTag -{ - - protected $Id = '0008,2246'; - - protected $Name = 'TransducerOrientationModifierSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Orientation Modifier Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientationSequence.php deleted file mode 100644 index 83df353a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerOrientationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerOrientationSequence extends AbstractTag -{ - - protected $Id = '0008,2244'; - - protected $Name = 'TransducerOrientationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Orientation Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPosition.php deleted file mode 100644 index 989bedf1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerPosition extends AbstractTag -{ - - protected $Id = '0008,2200'; - - protected $Name = 'TransducerPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPositionModifierSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPositionModifierSequence.php deleted file mode 100644 index 087abab45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPositionModifierSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerPositionModifierSequence extends AbstractTag -{ - - protected $Id = '0008,2242'; - - protected $Name = 'TransducerPositionModifierSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Position Modifier Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPositionSequence.php deleted file mode 100644 index b5b824c31..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerPositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerPositionSequence extends AbstractTag -{ - - protected $Id = '0008,2240'; - - protected $Name = 'TransducerPositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransducerType.php deleted file mode 100644 index bd85f5d7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransducerType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransducerType extends AbstractTag -{ - - protected $Id = '0018,6031'; - - protected $Name = 'TransducerType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transducer Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransferSyntaxUID.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransferSyntaxUID.php deleted file mode 100644 index cc608f913..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransferSyntaxUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransferSyntaxUID extends AbstractTag -{ - - protected $Id = '0002,0010'; - - protected $Name = 'TransferSyntaxUID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transfer Syntax UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransferTubeLength.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransferTubeLength.php deleted file mode 100644 index 27b9d2f07..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransferTubeLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransferTubeLength extends AbstractTag -{ - - protected $Id = '300A,02A4'; - - protected $Name = 'TransferTubeLength'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transfer Tube Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransferTubeNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransferTubeNumber.php deleted file mode 100644 index ebe4e48c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransferTubeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransferTubeNumber extends AbstractTag -{ - - protected $Id = '300A,02A2'; - - protected $Name = 'TransferTubeNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transfer Tube Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransformLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransformLabel.php deleted file mode 100644 index de1f04648..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransformLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransformLabel extends AbstractTag -{ - - protected $Id = '0028,0400'; - - protected $Name = 'TransformLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transform Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransformVersionNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransformVersionNumber.php deleted file mode 100644 index acb89ee01..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransformVersionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransformVersionNumber extends AbstractTag -{ - - protected $Id = '0028,0401'; - - protected $Name = 'TransformVersionNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transform Version Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransmissionGain.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransmissionGain.php deleted file mode 100644 index 609de693a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransmissionGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmissionGain extends AbstractTag -{ - - protected $Id = '0019,10F9'; - - protected $Name = 'TransmissionGain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transmission Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilManufacturerName.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilManufacturerName.php deleted file mode 100644 index 63b586c7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilManufacturerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmitCoilManufacturerName extends AbstractTag -{ - - protected $Id = '0018,9050'; - - protected $Name = 'TransmitCoilManufacturerName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transmit Coil Manufacturer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilName.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilName.php deleted file mode 100644 index 229d420f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmitCoilName extends AbstractTag -{ - - protected $Id = '0018,1251'; - - protected $Name = 'TransmitCoilName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transmit Coil Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilType.php deleted file mode 100644 index 2cf3275e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitCoilType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmitCoilType extends AbstractTag -{ - - protected $Id = '0018,9051'; - - protected $Name = 'TransmitCoilType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transmit Coil Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitGain.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransmitGain.php deleted file mode 100644 index 262766e54..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmitGain extends AbstractTag -{ - - protected $Id = '0019,1094'; - - protected $Name = 'TransmitGain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transmit Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitterFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransmitterFrequency.php deleted file mode 100644 index d3fe24f5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransmitterFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmitterFrequency extends AbstractTag -{ - - protected $Id = '0018,9098'; - - protected $Name = 'TransmitterFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transmitter Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransmittingCoil.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransmittingCoil.php deleted file mode 100644 index 833c0062d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransmittingCoil.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmittingCoil extends AbstractTag -{ - - protected $Id = '0019,109F'; - - protected $Name = 'TransmittingCoil'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transmitting Coil'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TransverseMash.php b/lib/PHPExiftool/Driver/Tag/DICOM/TransverseMash.php deleted file mode 100644 index 89e38804b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TransverseMash.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransverseMash extends AbstractTag -{ - - protected $Id = '0054,1202'; - - protected $Name = 'TransverseMash'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transverse Mash'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentControlPointDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentControlPointDate.php deleted file mode 100644 index 1a327a5bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentControlPointDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentControlPointDate extends AbstractTag -{ - - protected $Id = '3008,0024'; - - protected $Name = 'TreatmentControlPointDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Control Point Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentControlPointTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentControlPointTime.php deleted file mode 100644 index 92f71b8fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentControlPointTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentControlPointTime extends AbstractTag -{ - - protected $Id = '3008,0025'; - - protected $Name = 'TreatmentControlPointTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Control Point Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentDate.php deleted file mode 100644 index b83c6d839..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentDate extends AbstractTag -{ - - protected $Id = '3008,0250'; - - protected $Name = 'TreatmentDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentDeliveryType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentDeliveryType.php deleted file mode 100644 index c30b28666..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentDeliveryType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentDeliveryType extends AbstractTag -{ - - protected $Id = '300A,00CE'; - - protected $Name = 'TreatmentDeliveryType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Delivery Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentMachineName.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentMachineName.php deleted file mode 100644 index 0f96b9d2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentMachineName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentMachineName extends AbstractTag -{ - - protected $Id = '300A,00B2'; - - protected $Name = 'TreatmentMachineName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Machine Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentMachineSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentMachineSequence.php deleted file mode 100644 index c12ef518e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentMachineSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentMachineSequence extends AbstractTag -{ - - protected $Id = '300A,0206'; - - protected $Name = 'TreatmentMachineSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Machine Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentProtocols.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentProtocols.php deleted file mode 100644 index 194afa5ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentProtocols.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentProtocols extends AbstractTag -{ - - protected $Id = '300A,0009'; - - protected $Name = 'TreatmentProtocols'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Protocols'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionAppSetupSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionAppSetupSeq.php deleted file mode 100644 index 64980f940..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionAppSetupSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentSessionAppSetupSeq extends AbstractTag -{ - - protected $Id = '3008,0110'; - - protected $Name = 'TreatmentSessionAppSetupSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Session App Setup Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionBeamSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionBeamSequence.php deleted file mode 100644 index 24eaffdec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionBeamSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentSessionBeamSequence extends AbstractTag -{ - - protected $Id = '3008,0020'; - - protected $Name = 'TreatmentSessionBeamSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Session Beam Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionIonBeamSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionIonBeamSequence.php deleted file mode 100644 index 790895dd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSessionIonBeamSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentSessionIonBeamSequence extends AbstractTag -{ - - protected $Id = '3008,0021'; - - protected $Name = 'TreatmentSessionIonBeamSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Session Ion Beam Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSites.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSites.php deleted file mode 100644 index f017fed45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSites.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentSites extends AbstractTag -{ - - protected $Id = '300A,000B'; - - protected $Name = 'TreatmentSites'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Sites'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentStatusComment.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentStatusComment.php deleted file mode 100644 index 00e9f7304..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentStatusComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentStatusComment extends AbstractTag -{ - - protected $Id = '3008,0202'; - - protected $Name = 'TreatmentStatusComment'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Status Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSummaryCalcDoseRefSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSummaryCalcDoseRefSeq.php deleted file mode 100644 index 081d7750a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSummaryCalcDoseRefSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentSummaryCalcDoseRefSeq extends AbstractTag -{ - - protected $Id = '3008,0050'; - - protected $Name = 'TreatmentSummaryCalcDoseRefSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Summary Calc Dose Ref Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSummaryMeasuredDoseRefSeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSummaryMeasuredDoseRefSeq.php deleted file mode 100644 index 3ccaf1058..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentSummaryMeasuredDoseRefSeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentSummaryMeasuredDoseRefSeq extends AbstractTag -{ - - protected $Id = '3008,00E0'; - - protected $Name = 'TreatmentSummaryMeasuredDoseRefSeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Summary Measured Dose Ref Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTerminationCode.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTerminationCode.php deleted file mode 100644 index 70890130c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTerminationCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentTerminationCode extends AbstractTag -{ - - protected $Id = '3008,002B'; - - protected $Name = 'TreatmentTerminationCode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Termination Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTerminationStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTerminationStatus.php deleted file mode 100644 index 99cd654c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTerminationStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentTerminationStatus extends AbstractTag -{ - - protected $Id = '3008,002A'; - - protected $Name = 'TreatmentTerminationStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Termination Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTime.php deleted file mode 100644 index 1316621d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentTime extends AbstractTag -{ - - protected $Id = '3008,0251'; - - protected $Name = 'TreatmentTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentVerificationStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentVerificationStatus.php deleted file mode 100644 index 764cb52c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TreatmentVerificationStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TreatmentVerificationStatus extends AbstractTag -{ - - protected $Id = '3008,002C'; - - protected $Name = 'TreatmentVerificationStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Treatment Verification Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriangleFanSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriangleFanSequence.php deleted file mode 100644 index 393c779d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriangleFanSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriangleFanSequence extends AbstractTag -{ - - protected $Id = '0066,0027'; - - protected $Name = 'TriangleFanSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Triangle Fan Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TrianglePointIndexList.php b/lib/PHPExiftool/Driver/Tag/DICOM/TrianglePointIndexList.php deleted file mode 100644 index 4823228bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TrianglePointIndexList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrianglePointIndexList extends AbstractTag -{ - - protected $Id = '0066,0023'; - - protected $Name = 'TrianglePointIndexList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Triangle Point Index List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriangleStripSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriangleStripSequence.php deleted file mode 100644 index 0cf7f0cc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriangleStripSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriangleStripSequence extends AbstractTag -{ - - protected $Id = '0066,0026'; - - protected $Name = 'TriangleStripSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Triangle Strip Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerDelayTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerDelayTime.php deleted file mode 100644 index a5d68d0ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerDelayTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerDelayTime extends AbstractTag -{ - - protected $Id = '0020,9153'; - - protected $Name = 'TriggerDelayTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Delay Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerFrequency.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerFrequency.php deleted file mode 100644 index 006eba6d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerFrequency extends AbstractTag -{ - - protected $Id = '0019,102F'; - - protected $Name = 'TriggerFrequency'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerOnPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerOnPosition.php deleted file mode 100644 index a8c94fc6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerOnPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerOnPosition extends AbstractTag -{ - - protected $Id = '0043,1040'; - - protected $Name = 'TriggerOnPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger On Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerSamplePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerSamplePosition.php deleted file mode 100644 index 6943e4eb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerSamplePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerSamplePosition extends AbstractTag -{ - - protected $Id = '0018,106E'; - - protected $Name = 'TriggerSamplePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Sample Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerSourceOrType.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerSourceOrType.php deleted file mode 100644 index 1ea867535..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerSourceOrType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerSourceOrType extends AbstractTag -{ - - protected $Id = '0018,1061'; - - protected $Name = 'TriggerSourceOrType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Source Or Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerTime.php deleted file mode 100644 index 06849034f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerTime extends AbstractTag -{ - - protected $Id = '0018,1060'; - - protected $Name = 'TriggerTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerTimeOffset.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerTimeOffset.php deleted file mode 100644 index 8c03cc0fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerTimeOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerTimeOffset extends AbstractTag -{ - - protected $Id = '0018,1069'; - - protected $Name = 'TriggerTimeOffset'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Time Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerVector.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerVector.php deleted file mode 100644 index c2e0ad5a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerVector extends AbstractTag -{ - - protected $Id = '0054,0210'; - - protected $Name = 'TriggerVector'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerWindow.php b/lib/PHPExiftool/Driver/Tag/DICOM/TriggerWindow.php deleted file mode 100644 index db45292aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TriggerWindow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerWindow extends AbstractTag -{ - - protected $Id = '0018,1094'; - - protected $Name = 'TriggerWindow'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trigger Window'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Trim.php b/lib/PHPExiftool/Driver/Tag/DICOM/Trim.php deleted file mode 100644 index 7bfe8ccb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Trim.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Trim extends AbstractTag -{ - - protected $Id = '2010,0140'; - - protected $Name = 'Trim'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trim'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TubeAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/TubeAngle.php deleted file mode 100644 index f727b6a2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TubeAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TubeAngle extends AbstractTag -{ - - protected $Id = '0018,9303'; - - protected $Name = 'TubeAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tube Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TubeFocalSpotPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/TubeFocalSpotPosition.php deleted file mode 100644 index 45b0d9115..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TubeFocalSpotPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TubeFocalSpotPosition extends AbstractTag -{ - - protected $Id = '0021,1090'; - - protected $Name = 'TubeFocalSpotPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tube Focal Spot Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfData.php b/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfData.php deleted file mode 100644 index 814701d35..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeOfData extends AbstractTag -{ - - protected $Id = '50xx,0020'; - - protected $Name = 'TypeOfData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Of Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfDetectorMotion.php b/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfDetectorMotion.php deleted file mode 100644 index 6940e0970..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfDetectorMotion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeOfDetectorMotion extends AbstractTag -{ - - protected $Id = '0054,0202'; - - protected $Name = 'TypeOfDetectorMotion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Of Detector Motion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfFilters.php b/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfFilters.php deleted file mode 100644 index df59965fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfFilters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeOfFilters extends AbstractTag -{ - - protected $Id = '0018,1161'; - - protected $Name = 'TypeOfFilters'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Of Filters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfPatientID.php b/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfPatientID.php deleted file mode 100644 index 9b51338c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfPatientID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeOfPatientID extends AbstractTag -{ - - protected $Id = '0010,0022'; - - protected $Name = 'TypeOfPatientID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Of Patient ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfReceiverUsed.php b/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfReceiverUsed.php deleted file mode 100644 index 5c3a3d407..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfReceiverUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeOfReceiverUsed extends AbstractTag -{ - - protected $Id = '0043,100A'; - - protected $Name = 'TypeOfReceiverUsed'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Of Receiver Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfSynchronization.php b/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfSynchronization.php deleted file mode 100644 index a3f8f7820..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/TypeOfSynchronization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeOfSynchronization extends AbstractTag -{ - - protected $Id = '0072,0434'; - - protected $Name = 'TypeOfSynchronization'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Of Synchronization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UID.php b/lib/PHPExiftool/Driver/Tag/DICOM/UID.php deleted file mode 100644 index 2eb778f75..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UID extends AbstractTag -{ - - protected $Id = '0040,A124'; - - protected $Name = 'UID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UPSListStatus.php b/lib/PHPExiftool/Driver/Tag/DICOM/UPSListStatus.php deleted file mode 100644 index 85486e6e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UPSListStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UPSListStatus extends AbstractTag -{ - - protected $Id = '0074,1246'; - - protected $Name = 'UPSListStatus'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UPS List Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UPSPerformedProcedureSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/UPSPerformedProcedureSequence.php deleted file mode 100644 index 14061afb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UPSPerformedProcedureSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UPSPerformedProcedureSequence extends AbstractTag -{ - - protected $Id = '0074,1216'; - - protected $Name = 'UPSPerformedProcedureSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UPS Performed Procedure Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UPSProgressInformationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/UPSProgressInformationSequence.php deleted file mode 100644 index 1e4f5acbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UPSProgressInformationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UPSProgressInformationSequence extends AbstractTag -{ - - protected $Id = '0074,1002'; - - protected $Name = 'UPSProgressInformationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UPS Progress Information Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UltrasoundColorDataPresent.php b/lib/PHPExiftool/Driver/Tag/DICOM/UltrasoundColorDataPresent.php deleted file mode 100644 index 11fb5d096..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UltrasoundColorDataPresent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UltrasoundColorDataPresent extends AbstractTag -{ - - protected $Id = '0028,0014'; - - protected $Name = 'UltrasoundColorDataPresent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ultrasound Color Data Present'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UnformattedTextValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/UnformattedTextValue.php deleted file mode 100644 index 7741029bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UnformattedTextValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnformattedTextValue extends AbstractTag -{ - - protected $Id = '0070,0006'; - - protected $Name = 'UnformattedTextValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unformatted Text Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepComURISeq.php b/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepComURISeq.php deleted file mode 100644 index 36ff2014e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepComURISeq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnifiedProcedureStepComURISeq extends AbstractTag -{ - - protected $Id = '0074,1008'; - - protected $Name = 'UnifiedProcedureStepComURISeq'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unified Procedure Step Com URI Seq'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepProgress.php b/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepProgress.php deleted file mode 100644 index b32955fd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepProgress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnifiedProcedureStepProgress extends AbstractTag -{ - - protected $Id = '0074,1004'; - - protected $Name = 'UnifiedProcedureStepProgress'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unified Procedure Step Progress'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepProgressDescr.php b/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepProgressDescr.php deleted file mode 100644 index 41d4f19ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepProgressDescr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnifiedProcedureStepProgressDescr extends AbstractTag -{ - - protected $Id = '0074,1006'; - - protected $Name = 'UnifiedProcedureStepProgressDescr'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unified Procedure Step Progress Descr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepState.php b/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepState.php deleted file mode 100644 index 282ef3925..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UnifiedProcedureStepState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnifiedProcedureStepState extends AbstractTag -{ - - protected $Id = '0074,1000'; - - protected $Name = 'UnifiedProcedureStepState'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unified Procedure Step State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UniqueImageIden.php b/lib/PHPExiftool/Driver/Tag/DICOM/UniqueImageIden.php deleted file mode 100644 index 566bc4737..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UniqueImageIden.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniqueImageIden extends AbstractTag -{ - - protected $Id = '0043,1028'; - - protected $Name = 'UniqueImageIden'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unique Image Iden'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/Units.php b/lib/PHPExiftool/Driver/Tag/DICOM/Units.php deleted file mode 100644 index b749f0161..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/Units.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Units extends AbstractTag -{ - - protected $Id = '0054,1001'; - - protected $Name = 'Units'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UniversalEntityID.php b/lib/PHPExiftool/Driver/Tag/DICOM/UniversalEntityID.php deleted file mode 100644 index e5c3b8e1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UniversalEntityID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniversalEntityID extends AbstractTag -{ - - protected $Id = '0040,0032'; - - protected $Name = 'UniversalEntityID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Universal Entity ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UniversalEntityIDType.php b/lib/PHPExiftool/Driver/Tag/DICOM/UniversalEntityIDType.php deleted file mode 100644 index 222c0ea99..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UniversalEntityIDType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniversalEntityIDType extends AbstractTag -{ - - protected $Id = '0040,0033'; - - protected $Name = 'UniversalEntityIDType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Universal Entity ID Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UpperLowerPixelValues.php b/lib/PHPExiftool/Driver/Tag/DICOM/UpperLowerPixelValues.php deleted file mode 100644 index 3ccb41aa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UpperLowerPixelValues.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UpperLowerPixelValues extends AbstractTag -{ - - protected $Id = '0018,1240'; - - protected $Name = 'UpperLowerPixelValues'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Upper Lower Pixel Values'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UpperRangeOfPixels2.php b/lib/PHPExiftool/Driver/Tag/DICOM/UpperRangeOfPixels2.php deleted file mode 100644 index daf072afe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UpperRangeOfPixels2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UpperRangeOfPixels2 extends AbstractTag -{ - - protected $Id = '0029,1018'; - - protected $Name = 'UpperRangeOfPixels2'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Upper Range Of Pixels 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UsedFiducialsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/UsedFiducialsSequence.php deleted file mode 100644 index c2fa9660a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UsedFiducialsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsedFiducialsSequence extends AbstractTag -{ - - protected $Id = '0070,0314'; - - protected $Name = 'UsedFiducialsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Used Fiducials Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/User2548.php b/lib/PHPExiftool/Driver/Tag/DICOM/User2548.php deleted file mode 100644 index 969b39fef..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/User2548.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class User2548 extends AbstractTag -{ - - protected $Id = '0043,1038'; - - protected $Name = 'User25-48'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User 25-48'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData.php deleted file mode 100644 index 391aaa2a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UserData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData01.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData01.php deleted file mode 100644 index c2ca9dff1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData01.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData01 extends AbstractTag -{ - - protected $Id = '0019,10A7'; - - protected $Name = 'UserData01'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 01'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData02.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData02.php deleted file mode 100644 index 4bb439292..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData02.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData02 extends AbstractTag -{ - - protected $Id = '0019,10A8'; - - protected $Name = 'UserData02'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 02'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData03.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData03.php deleted file mode 100644 index 5ad94bce8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData03.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData03 extends AbstractTag -{ - - protected $Id = '0019,10A9'; - - protected $Name = 'UserData03'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 03'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData04.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData04.php deleted file mode 100644 index 8b11d7223..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData04.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData04 extends AbstractTag -{ - - protected $Id = '0019,10AA'; - - protected $Name = 'UserData04'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 04'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData05.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData05.php deleted file mode 100644 index 7f2fcdc30..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData05.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData05 extends AbstractTag -{ - - protected $Id = '0019,10AB'; - - protected $Name = 'UserData05'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 05'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData06.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData06.php deleted file mode 100644 index 7404fa173..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData06.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData06 extends AbstractTag -{ - - protected $Id = '0019,10AC'; - - protected $Name = 'UserData06'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 06'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData07.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData07.php deleted file mode 100644 index fcb499ddf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData07.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData07 extends AbstractTag -{ - - protected $Id = '0019,10AD'; - - protected $Name = 'UserData07'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 07'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData08.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData08.php deleted file mode 100644 index b191305e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData08.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData08 extends AbstractTag -{ - - protected $Id = '0019,10AE'; - - protected $Name = 'UserData08'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 08'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData09.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData09.php deleted file mode 100644 index 21cb4dc6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData09.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData09 extends AbstractTag -{ - - protected $Id = '0019,10AF'; - - protected $Name = 'UserData09'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 09'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData10.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData10.php deleted file mode 100644 index 8ed45645e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData10.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData10 extends AbstractTag -{ - - protected $Id = '0019,10B0'; - - protected $Name = 'UserData10'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 10'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData11.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData11.php deleted file mode 100644 index e2827aa0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData11.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData11 extends AbstractTag -{ - - protected $Id = '0019,10B1'; - - protected $Name = 'UserData11'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 11'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData12.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData12.php deleted file mode 100644 index 57a5dcec2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData12.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData12 extends AbstractTag -{ - - protected $Id = '0019,10B2'; - - protected $Name = 'UserData12'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 12'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData13.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData13.php deleted file mode 100644 index 97f1faf11..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData13.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData13 extends AbstractTag -{ - - protected $Id = '0019,10B3'; - - protected $Name = 'UserData13'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 13'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData14.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData14.php deleted file mode 100644 index fcd44c6ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData14.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData14 extends AbstractTag -{ - - protected $Id = '0019,10B4'; - - protected $Name = 'UserData14'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 14'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData15.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData15.php deleted file mode 100644 index 50308500b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData15.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData15 extends AbstractTag -{ - - protected $Id = '0019,10B5'; - - protected $Name = 'UserData15'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 15'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData16.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData16.php deleted file mode 100644 index c07b06e16..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData16.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData16 extends AbstractTag -{ - - protected $Id = '0019,10B6'; - - protected $Name = 'UserData16'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 16'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData17.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData17.php deleted file mode 100644 index 2a73273bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData17.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData17 extends AbstractTag -{ - - protected $Id = '0019,10B7'; - - protected $Name = 'UserData17'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 17'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData18.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData18.php deleted file mode 100644 index 00e2b3fde..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData18.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData18 extends AbstractTag -{ - - protected $Id = '0019,10B8'; - - protected $Name = 'UserData18'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 18'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData19.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData19.php deleted file mode 100644 index de63efdb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData19.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData19 extends AbstractTag -{ - - protected $Id = '0019,10B9'; - - protected $Name = 'UserData19'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 19'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData20.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData20.php deleted file mode 100644 index 7671044cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData20.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData20 extends AbstractTag -{ - - protected $Id = '0019,10BA'; - - protected $Name = 'UserData20'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 20'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData21.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData21.php deleted file mode 100644 index 9a49c1c28..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData21.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData21 extends AbstractTag -{ - - protected $Id = '0019,10BB'; - - protected $Name = 'UserData21'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 21'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData22.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData22.php deleted file mode 100644 index 85a031e4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData22.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData22 extends AbstractTag -{ - - protected $Id = '0019,10BC'; - - protected $Name = 'UserData22'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 22'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserData23.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserData23.php deleted file mode 100644 index c55c9bcd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserData23.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserData23 extends AbstractTag -{ - - protected $Id = '0019,10BD'; - - protected $Name = 'UserData23'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data 23'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserDefinedData.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserDefinedData.php deleted file mode 100644 index 633a9e9f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserDefinedData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedData extends AbstractTag -{ - - protected $Id = '0043,102A'; - - protected $Name = 'UserDefinedData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserFillMapLSW.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserFillMapLSW.php deleted file mode 100644 index afce32f03..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserFillMapLSW.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserFillMapLSW extends AbstractTag -{ - - protected $Id = '0043,1037'; - - protected $Name = 'UserFillMapLSW'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Fill Map LSW'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserFillMapMSW.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserFillMapMSW.php deleted file mode 100644 index 578d74f7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserFillMapMSW.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserFillMapMSW extends AbstractTag -{ - - protected $Id = '0043,1036'; - - protected $Name = 'UserFillMapMSW'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Fill Map MSW'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/UserUsageTag.php b/lib/PHPExiftool/Driver/Tag/DICOM/UserUsageTag.php deleted file mode 100644 index 152fac193..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/UserUsageTag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserUsageTag extends AbstractTag -{ - - protected $Id = '0043,1035'; - - protected $Name = 'UserUsageTag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Usage Tag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VOILUTFunction.php b/lib/PHPExiftool/Driver/Tag/DICOM/VOILUTFunction.php deleted file mode 100644 index 515f3294a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VOILUTFunction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VOILUTFunction extends AbstractTag -{ - - protected $Id = '0028,1056'; - - protected $Name = 'VOI_LUTFunction'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VOI LUT Function'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VOILUTSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/VOILUTSequence.php deleted file mode 100644 index f8c7b7c5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VOILUTSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VOILUTSequence extends AbstractTag -{ - - protected $Id = '0028,3010'; - - protected $Name = 'VOILUTSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VOILUT Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VOIType.php b/lib/PHPExiftool/Driver/Tag/DICOM/VOIType.php deleted file mode 100644 index 06150637a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VOIType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VOIType extends AbstractTag -{ - - protected $Id = '0072,0702'; - - protected $Name = 'VOIType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VOI Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ValueOfBackProjectionButton.php b/lib/PHPExiftool/Driver/Tag/DICOM/ValueOfBackProjectionButton.php deleted file mode 100644 index 1a1d7f92d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ValueOfBackProjectionButton.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ValueOfBackProjectionButton extends AbstractTag -{ - - protected $Id = '0019,1070'; - - protected $Name = 'ValueOfBackProjectionButton'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Value Of Back Projection Button'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ValueType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ValueType.php deleted file mode 100644 index 071232040..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ValueType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ValueType extends AbstractTag -{ - - protected $Id = '0040,A040'; - - protected $Name = 'ValueType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Value Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDDN.php b/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDDN.php deleted file mode 100644 index ce1d61036..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDDN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariableCoefficientsSDDN extends AbstractTag -{ - - protected $Id = '7Fxx,0040'; - - protected $Name = 'VariableCoefficientsSDDN'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Variable Coefficients SDDN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDHN.php b/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDHN.php deleted file mode 100644 index 792db00b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDHN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariableCoefficientsSDHN extends AbstractTag -{ - - protected $Id = '7Fxx,0030'; - - protected $Name = 'VariableCoefficientsSDHN'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Variable Coefficients SDHN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDVN.php b/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDVN.php deleted file mode 100644 index 516164a6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VariableCoefficientsSDVN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariableCoefficientsSDVN extends AbstractTag -{ - - protected $Id = '7Fxx,0020'; - - protected $Name = 'VariableCoefficientsSDVN'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Variable Coefficients SDVN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VariableEchoflag.php b/lib/PHPExiftool/Driver/Tag/DICOM/VariableEchoflag.php deleted file mode 100644 index c55bfd67e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VariableEchoflag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariableEchoflag extends AbstractTag -{ - - protected $Id = '0019,10D8'; - - protected $Name = 'VariableEchoflag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Variable Echoflag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VariableFlipAngleFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/VariableFlipAngleFlag.php deleted file mode 100644 index 4083cd0c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VariableFlipAngleFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariableFlipAngleFlag extends AbstractTag -{ - - protected $Id = '0018,1315'; - - protected $Name = 'VariableFlipAngleFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Variable Flip Angle Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VariableNextDataGroup.php b/lib/PHPExiftool/Driver/Tag/DICOM/VariableNextDataGroup.php deleted file mode 100644 index af40d6464..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VariableNextDataGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariableNextDataGroup extends AbstractTag -{ - - protected $Id = '7Fxx,0011'; - - protected $Name = 'VariableNextDataGroup'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Variable Next Data Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VectorAccuracy.php b/lib/PHPExiftool/Driver/Tag/DICOM/VectorAccuracy.php deleted file mode 100644 index f3b0ba02c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VectorAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VectorAccuracy extends AbstractTag -{ - - protected $Id = '0066,0020'; - - protected $Name = 'VectorAccuracy'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vector Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VectorCoordinateData.php b/lib/PHPExiftool/Driver/Tag/DICOM/VectorCoordinateData.php deleted file mode 100644 index b6580d578..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VectorCoordinateData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VectorCoordinateData extends AbstractTag -{ - - protected $Id = '0066,0021'; - - protected $Name = 'VectorCoordinateData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vector Coordinate Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VectorDimensionality.php b/lib/PHPExiftool/Driver/Tag/DICOM/VectorDimensionality.php deleted file mode 100644 index af0d26770..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VectorDimensionality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VectorDimensionality extends AbstractTag -{ - - protected $Id = '0066,001F'; - - protected $Name = 'VectorDimensionality'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vector Dimensionality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VectorGridData.php b/lib/PHPExiftool/Driver/Tag/DICOM/VectorGridData.php deleted file mode 100644 index b513652f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VectorGridData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VectorGridData extends AbstractTag -{ - - protected $Id = '0064,0009'; - - protected $Name = 'VectorGridData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vector Grid Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodeScale.php b/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodeScale.php deleted file mode 100644 index 16d1b0381..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodeScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VelocityEncodeScale extends AbstractTag -{ - - protected $Id = '0019,10E2'; - - protected $Name = 'VelocityEncodeScale'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Velocity Encode Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncoding.php b/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncoding.php deleted file mode 100644 index 6fa55cfe4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VelocityEncoding extends AbstractTag -{ - - protected $Id = '0019,10CC'; - - protected $Name = 'VelocityEncoding'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Velocity Encoding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingDirection.php b/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingDirection.php deleted file mode 100644 index 51a9fac86..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VelocityEncodingDirection extends AbstractTag -{ - - protected $Id = '0018,9090'; - - protected $Name = 'VelocityEncodingDirection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Velocity Encoding Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingMaximumValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingMaximumValue.php deleted file mode 100644 index 811039722..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingMaximumValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VelocityEncodingMaximumValue extends AbstractTag -{ - - protected $Id = '0018,9217'; - - protected $Name = 'VelocityEncodingMaximumValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Velocity Encoding Maximum Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingMinimumValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingMinimumValue.php deleted file mode 100644 index 5a3649e35..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VelocityEncodingMinimumValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VelocityEncodingMinimumValue extends AbstractTag -{ - - protected $Id = '0018,9091'; - - protected $Name = 'VelocityEncodingMinimumValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Velocity Encoding Minimum Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerificationDateTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerificationDateTime.php deleted file mode 100644 index a40a8e7a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerificationDateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerificationDateTime extends AbstractTag -{ - - protected $Id = '0040,A030'; - - protected $Name = 'VerificationDateTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Verification Date Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerificationFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerificationFlag.php deleted file mode 100644 index 2e59c849e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerificationFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerificationFlag extends AbstractTag -{ - - protected $Id = '0040,A493'; - - protected $Name = 'VerificationFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Verification Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerificationImageTiming.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerificationImageTiming.php deleted file mode 100644 index 2b1c453f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerificationImageTiming.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerificationImageTiming extends AbstractTag -{ - - protected $Id = '0074,1032'; - - protected $Name = 'VerificationImageTiming'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Verification Image Timing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverIdentCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverIdentCodeSequence.php deleted file mode 100644 index 1a02033be..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverIdentCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerifyingObserverIdentCodeSequence extends AbstractTag -{ - - protected $Id = '0040,A088'; - - protected $Name = 'VerifyingObserverIdentCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Verifying Observer Ident Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverName.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverName.php deleted file mode 100644 index 495f4a314..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerifyingObserverName extends AbstractTag -{ - - protected $Id = '0040,A075'; - - protected $Name = 'VerifyingObserverName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Verifying Observer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverSequence.php deleted file mode 100644 index 23802dc28..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingObserverSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerifyingObserverSequence extends AbstractTag -{ - - protected $Id = '0040,A073'; - - protected $Name = 'VerifyingObserverSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Verifying Observer Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingOrganization.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingOrganization.php deleted file mode 100644 index 718d9dd1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerifyingOrganization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerifyingOrganization extends AbstractTag -{ - - protected $Id = '0040,A027'; - - protected $Name = 'VerifyingOrganization'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Verifying Organization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VersionOfTheHdrStruct.php b/lib/PHPExiftool/Driver/Tag/DICOM/VersionOfTheHdrStruct.php deleted file mode 100644 index 3c91a726b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VersionOfTheHdrStruct.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionOfTheHdrStruct extends AbstractTag -{ - - protected $Id = '0029,1026'; - - protected $Name = 'VersionOfTheHdrStruct'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version Of The Hdr Struct'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VertexPointIndexList.php b/lib/PHPExiftool/Driver/Tag/DICOM/VertexPointIndexList.php deleted file mode 100644 index 11ab0028d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VertexPointIndexList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VertexPointIndexList extends AbstractTag -{ - - protected $Id = '0066,0025'; - - protected $Name = 'VertexPointIndexList'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertex Point Index List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerticalPrismBase.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerticalPrismBase.php deleted file mode 100644 index 1c0db7000..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerticalPrismBase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalPrismBase extends AbstractTag -{ - - protected $Id = '0046,0036'; - - protected $Name = 'VerticalPrismBase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertical Prism Base'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerticalPrismPower.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerticalPrismPower.php deleted file mode 100644 index ae3832887..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerticalPrismPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalPrismPower extends AbstractTag -{ - - protected $Id = '0046,0034'; - - protected $Name = 'VerticalPrismPower'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertical Prism Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfPolygonalCollimator.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfPolygonalCollimator.php deleted file mode 100644 index 37ed6ba97..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfPolygonalCollimator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticesOfPolygonalCollimator extends AbstractTag -{ - - protected $Id = '0018,1720'; - - protected $Name = 'VerticesOfPolygonalCollimator'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertices Of Polygonal Collimator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfPolygonalShutter.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfPolygonalShutter.php deleted file mode 100644 index 5ebfa962b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfPolygonalShutter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticesOfPolygonalShutter extends AbstractTag -{ - - protected $Id = '0018,1620'; - - protected $Name = 'VerticesOfPolygonalShutter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertices Of Polygonal Shutter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfTheRegion.php b/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfTheRegion.php deleted file mode 100644 index 45b7628cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VerticesOfTheRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticesOfTheRegion extends AbstractTag -{ - - protected $Id = '0028,9503'; - - protected $Name = 'VerticesOfTheRegion'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertices Of The Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VideoImageFormatAcquired.php b/lib/PHPExiftool/Driver/Tag/DICOM/VideoImageFormatAcquired.php deleted file mode 100644 index a3e1fdb7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VideoImageFormatAcquired.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoImageFormatAcquired extends AbstractTag -{ - - protected $Id = '0018,1022'; - - protected $Name = 'VideoImageFormatAcquired'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Image Format Acquired'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewCodeSequence.php deleted file mode 100644 index 9a4d50395..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewCodeSequence extends AbstractTag -{ - - protected $Id = '0054,0220'; - - protected $Name = 'ViewCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewCompressionFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewCompressionFactor.php deleted file mode 100644 index 72c6fc978..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewCompressionFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewCompressionFactor extends AbstractTag -{ - - protected $Id = '0019,1047'; - - protected $Name = 'ViewCompressionFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Compression Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewModifierCodeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewModifierCodeSequence.php deleted file mode 100644 index 89766525b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewModifierCodeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewModifierCodeSequence extends AbstractTag -{ - - protected $Id = '0054,0222'; - - protected $Name = 'ViewModifierCodeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Modifier Code Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewName.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewName.php deleted file mode 100644 index 10ab7027c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewName extends AbstractTag -{ - - protected $Id = '0008,2127'; - - protected $Name = 'ViewName'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewNumber.php deleted file mode 100644 index 4fcdf18c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewNumber extends AbstractTag -{ - - protected $Id = '0008,2128'; - - protected $Name = 'ViewNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewPosition.php deleted file mode 100644 index 51b8565b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewPosition extends AbstractTag -{ - - protected $Id = '0018,5101'; - - protected $Name = 'ViewPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewWeightingMode.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewWeightingMode.php deleted file mode 100644 index b5c841edf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewWeightingMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewWeightingMode extends AbstractTag -{ - - protected $Id = '0045,1008'; - - protected $Name = 'ViewWeightingMode'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Weighting Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewingDistance.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewingDistance.php deleted file mode 100644 index 4f6a072c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewingDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingDistance extends AbstractTag -{ - - protected $Id = '0046,0106'; - - protected $Name = 'ViewingDistance'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Viewing Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewingDistanceType.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewingDistanceType.php deleted file mode 100644 index 1d5e05831..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewingDistanceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingDistanceType extends AbstractTag -{ - - protected $Id = '0046,0125'; - - protected $Name = 'ViewingDistanceType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Viewing Distance Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ViewsPerSegment.php b/lib/PHPExiftool/Driver/Tag/DICOM/ViewsPerSegment.php deleted file mode 100644 index cbc00bacb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ViewsPerSegment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewsPerSegment extends AbstractTag -{ - - protected $Id = '0043,1007'; - - protected $Name = 'ViewsPerSegment'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Views Per Segment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VirtualSourceAxisDistances.php b/lib/PHPExiftool/Driver/Tag/DICOM/VirtualSourceAxisDistances.php deleted file mode 100644 index c1e55ab4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VirtualSourceAxisDistances.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VirtualSourceAxisDistances extends AbstractTag -{ - - protected $Id = '300A,030A'; - - protected $Name = 'VirtualSourceAxisDistances'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Virtual Source Axis Distances'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VisitComments.php b/lib/PHPExiftool/Driver/Tag/DICOM/VisitComments.php deleted file mode 100644 index 38bc792cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VisitComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VisitComments extends AbstractTag -{ - - protected $Id = '0038,4000'; - - protected $Name = 'VisitComments'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Visit Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VisitStatusID.php b/lib/PHPExiftool/Driver/Tag/DICOM/VisitStatusID.php deleted file mode 100644 index b31a8fe06..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VisitStatusID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VisitStatusID extends AbstractTag -{ - - protected $Id = '0038,0008'; - - protected $Name = 'VisitStatusID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Visit Status ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VisualAcuityModifiers.php b/lib/PHPExiftool/Driver/Tag/DICOM/VisualAcuityModifiers.php deleted file mode 100644 index 5805e1ed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VisualAcuityModifiers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VisualAcuityModifiers extends AbstractTag -{ - - protected $Id = '0046,0135'; - - protected $Name = 'VisualAcuityModifiers'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Visual Acuity Modifiers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VitalStainCodeSequenceTrial.php b/lib/PHPExiftool/Driver/Tag/DICOM/VitalStainCodeSequenceTrial.php deleted file mode 100644 index c22fa3edf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VitalStainCodeSequenceTrial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VitalStainCodeSequenceTrial extends AbstractTag -{ - - protected $Id = '0040,09F8'; - - protected $Name = 'VitalStainCodeSequenceTrial'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vital Stain Code Sequence Trial'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VmaClip.php b/lib/PHPExiftool/Driver/Tag/DICOM/VmaClip.php deleted file mode 100644 index 55320b282..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VmaClip.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VmaClip extends AbstractTag -{ - - protected $Id = '0027,101F'; - - protected $Name = 'VmaClip'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vma Clip'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VmaMamp.php b/lib/PHPExiftool/Driver/Tag/DICOM/VmaMamp.php deleted file mode 100644 index 1234d5b72..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VmaMamp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VmaMamp extends AbstractTag -{ - - protected $Id = '0027,101C'; - - protected $Name = 'VmaMamp'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vma Mamp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VmaMod.php b/lib/PHPExiftool/Driver/Tag/DICOM/VmaMod.php deleted file mode 100644 index 5d0bf2186..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VmaMod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VmaMod extends AbstractTag -{ - - protected $Id = '0027,101E'; - - protected $Name = 'VmaMod'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vma Mod'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VmaPhase.php b/lib/PHPExiftool/Driver/Tag/DICOM/VmaPhase.php deleted file mode 100644 index d1331aeed..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VmaPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VmaPhase extends AbstractTag -{ - - protected $Id = '0027,101D'; - - protected $Name = 'VmaPhase'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vma Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VolumeBasedCalculationTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/VolumeBasedCalculationTechnique.php deleted file mode 100644 index 188e08680..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VolumeBasedCalculationTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VolumeBasedCalculationTechnique extends AbstractTag -{ - - protected $Id = '0008,9207'; - - protected $Name = 'VolumeBasedCalculationTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Volume Based Calculation Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VolumeLocalizationSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/VolumeLocalizationSequence.php deleted file mode 100644 index 429013a35..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VolumeLocalizationSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VolumeLocalizationSequence extends AbstractTag -{ - - protected $Id = '0018,9126'; - - protected $Name = 'VolumeLocalizationSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Volume Localization Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VolumeLocalizationTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/VolumeLocalizationTechnique.php deleted file mode 100644 index e71a451dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VolumeLocalizationTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VolumeLocalizationTechnique extends AbstractTag -{ - - protected $Id = '0018,9054'; - - protected $Name = 'VolumeLocalizationTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Volume Localization Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/VolumetricProperties.php b/lib/PHPExiftool/Driver/Tag/DICOM/VolumetricProperties.php deleted file mode 100644 index 4d1d21213..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/VolumetricProperties.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VolumetricProperties extends AbstractTag -{ - - protected $Id = '0008,9206'; - - protected $Name = 'VolumetricProperties'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Volumetric Properties'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaterReferencedPhaseCorrection.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaterReferencedPhaseCorrection.php deleted file mode 100644 index 76a52e980..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaterReferencedPhaseCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaterReferencedPhaseCorrection extends AbstractTag -{ - - protected $Id = '0018,9199'; - - protected $Name = 'WaterReferencedPhaseCorrection'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Water Referenced Phase Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformBitsAllocated.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformBitsAllocated.php deleted file mode 100644 index c16fba7aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformBitsAllocated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformBitsAllocated extends AbstractTag -{ - - protected $Id = '5400,1004'; - - protected $Name = 'WaveformBitsAllocated'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Bits Allocated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformBitsStored.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformBitsStored.php deleted file mode 100644 index 91b7135d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformBitsStored.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformBitsStored extends AbstractTag -{ - - protected $Id = '003A,021A'; - - protected $Name = 'WaveformBitsStored'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Bits Stored'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformChannelNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformChannelNumber.php deleted file mode 100644 index 14baf8b43..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformChannelNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformChannelNumber extends AbstractTag -{ - - protected $Id = '003A,0202'; - - protected $Name = 'WaveformChannelNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Channel Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformData.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformData.php deleted file mode 100644 index 573a508f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformData extends AbstractTag -{ - - protected $Id = '5400,1010'; - - protected $Name = 'WaveformData'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformDataDisplayScale.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformDataDisplayScale.php deleted file mode 100644 index 38b3f5a9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformDataDisplayScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformDataDisplayScale extends AbstractTag -{ - - protected $Id = '003A,0230'; - - protected $Name = 'WaveformDataDisplayScale'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Data Display Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformDisplayBkgCIELabValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformDisplayBkgCIELabValue.php deleted file mode 100644 index 1283ab034..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformDisplayBkgCIELabValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformDisplayBkgCIELabValue extends AbstractTag -{ - - protected $Id = '003A,0231'; - - protected $Name = 'WaveformDisplayBkgCIELabValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Display Bkg CIE Lab Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformOriginality.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformOriginality.php deleted file mode 100644 index 37a550c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformOriginality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformOriginality extends AbstractTag -{ - - protected $Id = '003A,0004'; - - protected $Name = 'WaveformOriginality'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Originality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformPaddingValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformPaddingValue.php deleted file mode 100644 index 38a451833..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformPaddingValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformPaddingValue extends AbstractTag -{ - - protected $Id = '5400,100A'; - - protected $Name = 'WaveformPaddingValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Padding Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformPresentationGroupSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformPresentationGroupSequence.php deleted file mode 100644 index 5bdb240d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformPresentationGroupSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformPresentationGroupSequence extends AbstractTag -{ - - protected $Id = '003A,0240'; - - protected $Name = 'WaveformPresentationGroupSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Presentation Group Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformSampleInterpretation.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformSampleInterpretation.php deleted file mode 100644 index 71a13436a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformSampleInterpretation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformSampleInterpretation extends AbstractTag -{ - - protected $Id = '5400,1006'; - - protected $Name = 'WaveformSampleInterpretation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Sample Interpretation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/WaveformSequence.php deleted file mode 100644 index 81fd754dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WaveformSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WaveformSequence extends AbstractTag -{ - - protected $Id = '5400,0100'; - - protected $Name = 'WaveformSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Waveform Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeAngle.php deleted file mode 100644 index 463d4c213..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeAngle extends AbstractTag -{ - - protected $Id = '300A,00D5'; - - protected $Name = 'WedgeAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeFactor.php deleted file mode 100644 index 4f73640f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeFactor extends AbstractTag -{ - - protected $Id = '300A,00D6'; - - protected $Name = 'WedgeFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeID.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeID.php deleted file mode 100644 index 5906a3538..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeID extends AbstractTag -{ - - protected $Id = '300A,00D4'; - - protected $Name = 'WedgeID'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeNumber.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeNumber.php deleted file mode 100644 index cf82d0f2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeNumber extends AbstractTag -{ - - protected $Id = '300A,00D2'; - - protected $Name = 'WedgeNumber'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeOrientation.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeOrientation.php deleted file mode 100644 index ac6ab6a86..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeOrientation extends AbstractTag -{ - - protected $Id = '300A,00D8'; - - protected $Name = 'WedgeOrientation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgePosition.php deleted file mode 100644 index 856e6ed0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgePosition extends AbstractTag -{ - - protected $Id = '300A,0118'; - - protected $Name = 'WedgePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgePositionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgePositionSequence.php deleted file mode 100644 index d5cbeb094..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgePositionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgePositionSequence extends AbstractTag -{ - - protected $Id = '300A,0116'; - - protected $Name = 'WedgePositionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Position Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeSequence.php deleted file mode 100644 index 6e03dae65..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeSequence extends AbstractTag -{ - - protected $Id = '300A,00D1'; - - protected $Name = 'WedgeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeThinEdgePosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeThinEdgePosition.php deleted file mode 100644 index 4c6d01172..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeThinEdgePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeThinEdgePosition extends AbstractTag -{ - - protected $Id = '300A,00DB'; - - protected $Name = 'WedgeThinEdgePosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Thin Edge Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeType.php b/lib/PHPExiftool/Driver/Tag/DICOM/WedgeType.php deleted file mode 100644 index e7a215df7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WedgeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WedgeType extends AbstractTag -{ - - protected $Id = '300A,00D3'; - - protected $Name = 'WedgeType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wedge Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WholeBodyTechnique.php b/lib/PHPExiftool/Driver/Tag/DICOM/WholeBodyTechnique.php deleted file mode 100644 index 76a2cef4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WholeBodyTechnique.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WholeBodyTechnique extends AbstractTag -{ - - protected $Id = '0018,1301'; - - protected $Name = 'WholeBodyTechnique'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Whole Body Technique'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WindowCenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/WindowCenter.php deleted file mode 100644 index 9f67a4c1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WindowCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowCenter extends AbstractTag -{ - - protected $Id = '0028,1050'; - - protected $Name = 'WindowCenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Window Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WindowCenterAndWidthExplanation.php b/lib/PHPExiftool/Driver/Tag/DICOM/WindowCenterAndWidthExplanation.php deleted file mode 100644 index d219f00e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WindowCenterAndWidthExplanation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowCenterAndWidthExplanation extends AbstractTag -{ - - protected $Id = '0028,1055'; - - protected $Name = 'WindowCenterAndWidthExplanation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Window Center And Width Explanation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WindowValue.php b/lib/PHPExiftool/Driver/Tag/DICOM/WindowValue.php deleted file mode 100644 index 50f6d7964..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WindowValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowValue extends AbstractTag -{ - - protected $Id = '0043,1010'; - - protected $Name = 'WindowValue'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Window Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WindowWidth.php b/lib/PHPExiftool/Driver/Tag/DICOM/WindowWidth.php deleted file mode 100644 index 17a234026..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WindowWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowWidth extends AbstractTag -{ - - protected $Id = '0028,1051'; - - protected $Name = 'WindowWidth'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Window Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/WorklistLabel.php b/lib/PHPExiftool/Driver/Tag/DICOM/WorklistLabel.php deleted file mode 100644 index 545cf29c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/WorklistLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorklistLabel extends AbstractTag -{ - - protected $Id = '0074,1202'; - - protected $Name = 'WorklistLabel'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Worklist Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XAXRFFrameCharacteristicsSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/XAXRFFrameCharacteristicsSequence.php deleted file mode 100644 index 1028ca490..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XAXRFFrameCharacteristicsSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XAXRFFrameCharacteristicsSequence extends AbstractTag -{ - - protected $Id = '0018,9412'; - - protected $Name = 'XA-XRFFrameCharacteristicsSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'XA-XRF Frame Characteristics Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XFocusCenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/XFocusCenter.php deleted file mode 100644 index 1b01119a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XFocusCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XFocusCenter extends AbstractTag -{ - - protected $Id = '0018,1183'; - - protected $Name = 'XFocusCenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Focus Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XOffsetInSlideCoordinateSystem.php b/lib/PHPExiftool/Driver/Tag/DICOM/XOffsetInSlideCoordinateSystem.php deleted file mode 100644 index b54b95b5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XOffsetInSlideCoordinateSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XOffsetInSlideCoordinateSystem extends AbstractTag -{ - - protected $Id = '0040,072A'; - - protected $Name = 'XOffsetInSlideCoordinateSystem'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Offset In Slide Coordinate System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DAcquisitionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DAcquisitionSequence.php deleted file mode 100644 index 15d9bb16b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DAcquisitionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRay3DAcquisitionSequence extends AbstractTag -{ - - protected $Id = '0018,9507'; - - protected $Name = 'XRay3DAcquisitionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray 3D Acquisition Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DFrameTypeSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DFrameTypeSequence.php deleted file mode 100644 index 19d00862b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DFrameTypeSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRay3DFrameTypeSequence extends AbstractTag -{ - - protected $Id = '0018,9504'; - - protected $Name = 'XRay3DFrameTypeSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray 3D Frame Type Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DReconstructionSequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DReconstructionSequence.php deleted file mode 100644 index 45f84fe45..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRay3DReconstructionSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRay3DReconstructionSequence extends AbstractTag -{ - - protected $Id = '0018,9530'; - - protected $Name = 'XRay3DReconstructionSequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray 3D Reconstruction Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayChain.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayChain.php deleted file mode 100644 index 72c9bde52..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayChain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayChain extends AbstractTag -{ - - protected $Id = '0043,1012'; - - protected $Name = 'X-RayChain'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X-Ray Chain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayGeometrySequence.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayGeometrySequence.php deleted file mode 100644 index 25c2450f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayGeometrySequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayGeometrySequence extends AbstractTag -{ - - protected $Id = '0018,9476'; - - protected $Name = 'XRayGeometrySequence'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Geometry Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayImageReceptorAngle.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayImageReceptorAngle.php deleted file mode 100644 index 0eaa2b064..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayImageReceptorAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayImageReceptorAngle extends AbstractTag -{ - - protected $Id = '3002,000E'; - - protected $Name = 'XRayImageReceptorAngle'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Image Receptor Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayImageReceptorTranslation.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayImageReceptorTranslation.php deleted file mode 100644 index 32c959cc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayImageReceptorTranslation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayImageReceptorTranslation extends AbstractTag -{ - - protected $Id = '3002,000D'; - - protected $Name = 'XRayImageReceptorTranslation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Image Receptor Translation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayOffPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayOffPosition.php deleted file mode 100644 index 0dcc89d56..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayOffPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayOffPosition extends AbstractTag -{ - - protected $Id = '0019,102B'; - - protected $Name = 'XRayOffPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Off Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayOnPosition.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayOnPosition.php deleted file mode 100644 index 8a2aab888..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayOnPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayOnPosition extends AbstractTag -{ - - protected $Id = '0019,102A'; - - protected $Name = 'XRayOnPosition'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray On Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayOutput.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayOutput.php deleted file mode 100644 index 5ed219a12..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayOutput.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayOutput extends AbstractTag -{ - - protected $Id = '0040,0312'; - - protected $Name = 'XRayOutput'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Output'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayReceptorType.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayReceptorType.php deleted file mode 100644 index 4029d574f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayReceptorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayReceptorType extends AbstractTag -{ - - protected $Id = '0018,9420'; - - protected $Name = 'XRayReceptorType'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Receptor Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrent.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrent.php deleted file mode 100644 index a38680eb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayTubeCurrent extends AbstractTag -{ - - protected $Id = '0018,1151'; - - protected $Name = 'XRayTubeCurrent'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Tube Current'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrentInMicroAmps.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrentInMicroAmps.php deleted file mode 100644 index 04db4754e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrentInMicroAmps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayTubeCurrentInMicroAmps extends AbstractTag -{ - - protected $Id = '0018,8151'; - - protected $Name = 'XRayTubeCurrentInMicroAmps'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Tube Current In Micro Amps'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrentInMilliAmps.php b/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrentInMilliAmps.php deleted file mode 100644 index 111f87d04..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/XRayTubeCurrentInMilliAmps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XRayTubeCurrentInMilliAmps extends AbstractTag -{ - - protected $Id = '0018,9330'; - - protected $Name = 'XRayTubeCurrentInMilliAmps'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Ray Tube Current In Milli Amps'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/YFocusCenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/YFocusCenter.php deleted file mode 100644 index 63e43e80b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/YFocusCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YFocusCenter extends AbstractTag -{ - - protected $Id = '0018,1184'; - - protected $Name = 'YFocusCenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Y Focus Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/YOffsetInSlideCoordinateSystem.php b/lib/PHPExiftool/Driver/Tag/DICOM/YOffsetInSlideCoordinateSystem.php deleted file mode 100644 index 56baf3277..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/YOffsetInSlideCoordinateSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YOffsetInSlideCoordinateSystem extends AbstractTag -{ - - protected $Id = '0040,073A'; - - protected $Name = 'YOffsetInSlideCoordinateSystem'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Y Offset In Slide Coordinate System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZChanAvgOverViews.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZChanAvgOverViews.php deleted file mode 100644 index 2fbeaec8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZChanAvgOverViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZChanAvgOverViews extends AbstractTag -{ - - protected $Id = '0019,1072'; - - protected $Name = 'ZChanAvgOverViews'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Z Chan Avg Over Views'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZOffsetInSlideCoordinateSystem.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZOffsetInSlideCoordinateSystem.php deleted file mode 100644 index 4b6dfd59f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZOffsetInSlideCoordinateSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZOffsetInSlideCoordinateSystem extends AbstractTag -{ - - protected $Id = '0040,074A'; - - protected $Name = 'ZOffsetInSlideCoordinateSystem'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Z Offset In Slide Coordinate System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZSlopeCalibrationDate.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZSlopeCalibrationDate.php deleted file mode 100644 index de12c5e41..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZSlopeCalibrationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZSlopeCalibrationDate extends AbstractTag -{ - - protected $Id = '0045,101D'; - - protected $Name = 'ZSlopeCalibrationDate'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Z Slope Calibration Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZSlopeCalibrationTime.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZSlopeCalibrationTime.php deleted file mode 100644 index 2b0f1afb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZSlopeCalibrationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZSlopeCalibrationTime extends AbstractTag -{ - - protected $Id = '0045,101E'; - - protected $Name = 'ZSlopeCalibrationTime'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Z Slope Calibration Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZSmoothingFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZSmoothingFactor.php deleted file mode 100644 index 72f9d1fe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZSmoothingFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZSmoothingFactor extends AbstractTag -{ - - protected $Id = '0045,1007'; - - protected $Name = 'ZSmoothingFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Z Smoothing Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZTrackingFlag.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZTrackingFlag.php deleted file mode 100644 index 7d1c475a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZTrackingFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZTrackingFlag extends AbstractTag -{ - - protected $Id = '0045,100D'; - - protected $Name = 'ZTrackingFlag'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Z Tracking Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZTrackingMaximumError.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZTrackingMaximumError.php deleted file mode 100644 index fd34abe2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZTrackingMaximumError.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZTrackingMaximumError extends AbstractTag -{ - - protected $Id = '0045,100F'; - - protected $Name = 'ZTrackingMaximumError'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Z Tracking Maximum Error'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMap.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMap.php deleted file mode 100644 index c6ead6cd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMap.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZonalMap extends AbstractTag -{ - - protected $Id = '1010,xxxx'; - - protected $Name = 'ZonalMap'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Zonal Map'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapFormat.php deleted file mode 100644 index e09ab76a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZonalMapFormat extends AbstractTag -{ - - protected $Id = '0028,0722'; - - protected $Name = 'ZonalMapFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Zonal Map Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapLocation.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapLocation.php deleted file mode 100644 index 403958614..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZonalMapLocation extends AbstractTag -{ - - protected $Id = '0028,0721'; - - protected $Name = 'ZonalMapLocation'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Zonal Map Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapNumberFormat.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapNumberFormat.php deleted file mode 100644 index 0b6ea0508..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZonalMapNumberFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZonalMapNumberFormat extends AbstractTag -{ - - protected $Id = '0028,0720'; - - protected $Name = 'ZonalMapNumberFormat'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Zonal Map Number Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZoomCenter.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZoomCenter.php deleted file mode 100644 index 96628ebf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZoomCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomCenter extends AbstractTag -{ - - protected $Id = '0028,0032'; - - protected $Name = 'ZoomCenter'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Zoom Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DICOM/ZoomFactor.php b/lib/PHPExiftool/Driver/Tag/DICOM/ZoomFactor.php deleted file mode 100644 index fc73d8050..000000000 --- a/lib/PHPExiftool/Driver/Tag/DICOM/ZoomFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomFactor extends AbstractTag -{ - - protected $Id = '0028,0031'; - - protected $Name = 'ZoomFactor'; - - protected $FullName = 'DICOM::Main'; - - protected $GroupName = 'DICOM'; - - protected $g0 = 'DICOM'; - - protected $g1 = 'DICOM'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Zoom Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawCreator.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawCreator.php deleted file mode 100644 index d711324da..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalRawCreator extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'OriginalRawCreator'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Raw Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawFileType.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawFileType.php deleted file mode 100644 index 5420de285..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalRawFileType extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'OriginalRawFileType'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Raw File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawImage.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawImage.php deleted file mode 100644 index 2abaa19c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalRawImage extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'OriginalRawImage'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Raw Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawResource.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawResource.php deleted file mode 100644 index 0ac345c72..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalRawResource.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalRawResource extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'OriginalRawResource'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Raw Resource'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMCreator.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMCreator.php deleted file mode 100644 index a449d6d5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalTHMCreator extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'OriginalTHMCreator'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original THM Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMFileType.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMFileType.php deleted file mode 100644 index b0cbcc340..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalTHMFileType extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'OriginalTHMFileType'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original THM File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMImage.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMImage.php deleted file mode 100644 index c899974ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalTHMImage extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'OriginalTHMImage'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original THM Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMResource.php b/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMResource.php deleted file mode 100644 index d4f931fdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/DNG/OriginalTHMResource.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalTHMResource extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'OriginalTHMResource'; - - protected $FullName = 'DNG::OriginalRaw'; - - protected $GroupName = 'DNG'; - - protected $g0 = 'DNG'; - - protected $g1 = 'DNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original THM Resource'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/AspectRatio.php b/lib/PHPExiftool/Driver/Tag/DV/AspectRatio.php deleted file mode 100644 index 0d81191bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/AspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatio extends AbstractTag -{ - - protected $Id = 'AspectRatio'; - - protected $Name = 'AspectRatio'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/AudioBitsPerSample.php b/lib/PHPExiftool/Driver/Tag/DV/AudioBitsPerSample.php deleted file mode 100644 index 1f2a7b673..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/AudioBitsPerSample.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitsPerSample extends AbstractTag -{ - - protected $Id = 'AudioBitsPerSample'; - - protected $Name = 'AudioBitsPerSample'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bits Per Sample'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/DV/AudioChannels.php deleted file mode 100644 index ae3d8e902..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/AudioChannels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 'AudioChannels'; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/DV/AudioSampleRate.php deleted file mode 100644 index 544de2296..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/AudioSampleRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 'AudioSampleRate'; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/Colorimetry.php b/lib/PHPExiftool/Driver/Tag/DV/Colorimetry.php deleted file mode 100644 index 32152fdbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/Colorimetry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorimetry extends AbstractTag -{ - - protected $Id = 'Colorimetry'; - - protected $Name = 'Colorimetry'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Colorimetry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/DV/DateTimeOriginal.php deleted file mode 100644 index 83973d0f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'DateTimeOriginal'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/Duration.php b/lib/PHPExiftool/Driver/Tag/DV/Duration.php deleted file mode 100644 index 1dd05dc04..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'Duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/FrameRate.php b/lib/PHPExiftool/Driver/Tag/DV/FrameRate.php deleted file mode 100644 index ab0f95711..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 'FrameRate'; - - protected $Name = 'FrameRate'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/DV/ImageHeight.php deleted file mode 100644 index dd8299cb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'ImageHeight'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/DV/ImageWidth.php deleted file mode 100644 index 4ff64def3..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'ImageWidth'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/TotalBitrate.php b/lib/PHPExiftool/Driver/Tag/DV/TotalBitrate.php deleted file mode 100644 index 8d60e3af5..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/TotalBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalBitrate extends AbstractTag -{ - - protected $Id = 'TotalBitrate'; - - protected $Name = 'TotalBitrate'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/VideoFormat.php b/lib/PHPExiftool/Driver/Tag/DV/VideoFormat.php deleted file mode 100644 index 0e59de66c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/VideoFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFormat extends AbstractTag -{ - - protected $Id = 'VideoFormat'; - - protected $Name = 'VideoFormat'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DV/VideoScanType.php b/lib/PHPExiftool/Driver/Tag/DV/VideoScanType.php deleted file mode 100644 index d63faf046..000000000 --- a/lib/PHPExiftool/Driver/Tag/DV/VideoScanType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DV; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoScanType extends AbstractTag -{ - - protected $Id = 'VideoScanType'; - - protected $Name = 'VideoScanType'; - - protected $FullName = 'DV::Main'; - - protected $GroupName = 'DV'; - - protected $g0 = 'DV'; - - protected $g1 = 'DV'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Scan Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/DjVuVersion.php b/lib/PHPExiftool/Driver/Tag/DjVu/DjVuVersion.php deleted file mode 100644 index a5fe2477e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/DjVuVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DjVuVersion extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'DjVuVersion'; - - protected $FullName = 'DjVu::Info'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'DjVu Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/Gamma.php b/lib/PHPExiftool/Driver/Tag/DjVu/Gamma.php deleted file mode 100644 index 4b16c0528..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Gamma'; - - protected $FullName = 'DjVu::Info'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/DjVu/ImageHeight.php deleted file mode 100644 index 0e625c716..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'DjVu::Info'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/DjVu/ImageWidth.php deleted file mode 100644 index eb7c7a5a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'DjVu::Info'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/IncludedFileID.php b/lib/PHPExiftool/Driver/Tag/DjVu/IncludedFileID.php deleted file mode 100644 index 27e49f3fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/IncludedFileID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncludedFileID extends AbstractTag -{ - - protected $Id = 'INCL'; - - protected $Name = 'IncludedFileID'; - - protected $FullName = 'DjVu::Main'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Included File ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/Orientation.php b/lib/PHPExiftool/Driver/Tag/DjVu/Orientation.php deleted file mode 100644 index d56795e56..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/Orientation.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'Orientation'; - - protected $FullName = 'DjVu::Info'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 180', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Rotate 90 CW', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/SpatialResolution.php b/lib/PHPExiftool/Driver/Tag/DjVu/SpatialResolution.php deleted file mode 100644 index 42375d9a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/SpatialResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialResolution extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'SpatialResolution'; - - protected $FullName = 'DjVu::Info'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Spatial Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVu/SubfileType.php b/lib/PHPExiftool/Driver/Tag/DjVu/SubfileType.php deleted file mode 100644 index d66b726a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVu/SubfileType.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVu; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SubfileType'; - - protected $FullName = 'DjVu::Form'; - - protected $GroupName = 'DjVu'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Subfile Type'; - - protected $MaxLength = 4; - - protected $Values = array( - 'BM44' => array( - 'Id' => 'BM44', - 'Label' => 'Grayscale IW44', - ), - 'DJVI' => array( - 'Id' => 'DJVI', - 'Label' => 'Shared component', - ), - 'DJVM' => array( - 'Id' => 'DJVM', - 'Label' => 'Multi-page document', - ), - 'DJVU' => array( - 'Id' => 'DJVU', - 'Label' => 'Single-page image', - ), - 'PM44' => array( - 'Id' => 'PM44', - 'Label' => 'Color IW44', - ), - 'THUM' => array( - 'Id' => 'THUM', - 'Label' => 'Thumbnail image', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Address.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Address.php deleted file mode 100644 index 85dba4ad6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Address.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Address extends AbstractTag -{ - - protected $Id = 'address'; - - protected $Name = 'Address'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Address'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Annotation.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Annotation.php deleted file mode 100644 index 2c3e02031..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Annotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Annotation extends AbstractTag -{ - - protected $Id = 'annote'; - - protected $Name = 'Annotation'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Author.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Author.php deleted file mode 100644 index cd00eca34..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Author'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/BookTitle.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/BookTitle.php deleted file mode 100644 index 841b661bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/BookTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BookTitle extends AbstractTag -{ - - protected $Id = 'booktitle'; - - protected $Name = 'BookTitle'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Book Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Chapter.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Chapter.php deleted file mode 100644 index f193c41bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Chapter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Chapter extends AbstractTag -{ - - protected $Id = 'chapter'; - - protected $Name = 'Chapter'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/CreateDate.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/CreateDate.php deleted file mode 100644 index 7aeb3b08d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'CreationDate'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Creator.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Creator.php deleted file mode 100644 index 907656d93..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Creator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 'Creator'; - - protected $Name = 'Creator'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/CrossRef.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/CrossRef.php deleted file mode 100644 index 0973487c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/CrossRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CrossRef extends AbstractTag -{ - - protected $Id = 'crossref'; - - protected $Name = 'CrossRef'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cross Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/EPrint.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/EPrint.php deleted file mode 100644 index 596f1476b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/EPrint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EPrint extends AbstractTag -{ - - protected $Id = 'eprint'; - - protected $Name = 'EPrint'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'E Print'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Edition.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Edition.php deleted file mode 100644 index 186fffffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Edition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edition extends AbstractTag -{ - - protected $Id = 'edition'; - - protected $Name = 'Edition'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/HowPublished.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/HowPublished.php deleted file mode 100644 index db728bd20..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/HowPublished.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HowPublished extends AbstractTag -{ - - protected $Id = 'howpublished'; - - protected $Name = 'HowPublished'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'How Published'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Institution.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Institution.php deleted file mode 100644 index 994f3d94e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Institution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Institution extends AbstractTag -{ - - protected $Id = 'institution'; - - protected $Name = 'Institution'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Institution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Journal.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Journal.php deleted file mode 100644 index f046545d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Journal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Journal extends AbstractTag -{ - - protected $Id = 'journal'; - - protected $Name = 'Journal'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Journal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Key.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Key.php deleted file mode 100644 index 2584dc45c..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Key.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Key extends AbstractTag -{ - - protected $Id = 'key'; - - protected $Name = 'Key'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Keywords.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Keywords.php deleted file mode 100644 index 71c3773bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/ModifyDate.php deleted file mode 100644 index 1a1d80ac2..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'ModDate'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Month.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Month.php deleted file mode 100644 index efbdb0da6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Month.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Month extends AbstractTag -{ - - protected $Id = 'month'; - - protected $Name = 'Month'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Note.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Note.php deleted file mode 100644 index 34d5fb8fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Note.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Note extends AbstractTag -{ - - protected $Id = 'note'; - - protected $Name = 'Note'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Note'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Number.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Number.php deleted file mode 100644 index ed45ca37b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Number.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Number extends AbstractTag -{ - - protected $Id = 'number'; - - protected $Name = 'Number'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Organization.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Organization.php deleted file mode 100644 index 7b5b6cf60..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Organization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Organization extends AbstractTag -{ - - protected $Id = 'organization'; - - protected $Name = 'Organization'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Pages.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Pages.php deleted file mode 100644 index 3d584db6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Pages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pages extends AbstractTag -{ - - protected $Id = 'pages'; - - protected $Name = 'Pages'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Producer.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Producer.php deleted file mode 100644 index 9872ce375..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Producer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = 'Producer'; - - protected $Name = 'Producer'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Publisher.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Publisher.php deleted file mode 100644 index d9b55ef56..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'publisher'; - - protected $Name = 'Publisher'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/School.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/School.php deleted file mode 100644 index ea8929ef6..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/School.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class School extends AbstractTag -{ - - protected $Id = 'school'; - - protected $Name = 'School'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'School'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Series.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Series.php deleted file mode 100644 index 9c785bcf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Series.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Series extends AbstractTag -{ - - protected $Id = 'series'; - - protected $Name = 'Series'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Subject.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Subject.php deleted file mode 100644 index 7b4cd9826..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'Subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Title.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Title.php deleted file mode 100644 index 7efa51a5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Title'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Trapped.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Trapped.php deleted file mode 100644 index f5f56628b..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Trapped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Trapped extends AbstractTag -{ - - protected $Id = 'Trapped'; - - protected $Name = 'Trapped'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trapped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Type.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Type.php deleted file mode 100644 index 558924b33..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Type.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Type extends AbstractTag -{ - - protected $Id = 'type'; - - protected $Name = 'Type'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/URL.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/URL.php deleted file mode 100644 index 011a3a03f..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'url'; - - protected $Name = 'URL'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Volume.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Volume.php deleted file mode 100644 index 19017b9e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Volume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Volume extends AbstractTag -{ - - protected $Id = 'volume'; - - protected $Name = 'Volume'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Year.php b/lib/PHPExiftool/Driver/Tag/DjVuMeta/Year.php deleted file mode 100644 index 6ce344996..000000000 --- a/lib/PHPExiftool/Driver/Tag/DjVuMeta/Year.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\DjVuMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'year'; - - protected $Name = 'Year'; - - protected $FullName = 'DjVu::Meta'; - - protected $GroupName = 'DjVu-Meta'; - - protected $g0 = 'DjVu'; - - protected $g1 = 'DjVu-Meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ducky/Comment.php b/lib/PHPExiftool/Driver/Tag/Ducky/Comment.php deleted file mode 100644 index bbdce1357..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ducky/Comment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ducky; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Comment'; - - protected $FullName = 'APP12::Ducky'; - - protected $GroupName = 'Ducky'; - - protected $g0 = 'Ducky'; - - protected $g1 = 'Ducky'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Comment'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ducky/Copyright.php b/lib/PHPExiftool/Driver/Tag/Ducky/Copyright.php deleted file mode 100644 index b37356891..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ducky/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ducky; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Copyright'; - - protected $FullName = 'APP12::Ducky'; - - protected $GroupName = 'Ducky'; - - protected $g0 = 'Ducky'; - - protected $g1 = 'Ducky'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ducky/Quality.php b/lib/PHPExiftool/Driver/Tag/Ducky/Quality.php deleted file mode 100644 index 69ba18d5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ducky/Quality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ducky; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Quality'; - - protected $FullName = 'APP12::Ducky'; - - protected $GroupName = 'Ducky'; - - protected $g0 = 'Ducky'; - - protected $g1 = 'Ducky'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EPPIM/PrintIM.php b/lib/PHPExiftool/Driver/Tag/EPPIM/PrintIM.php deleted file mode 100644 index f90624ed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/EPPIM/PrintIM.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EPPIM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintIM extends AbstractTag -{ - - protected $Id = 50341; - - protected $Name = 'PrintIM'; - - protected $FullName = 'JPEG::EPPIM'; - - protected $GroupName = 'EPPIM'; - - protected $g0 = 'APP6'; - - protected $g1 = 'EPPIM'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Print Image Matching'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/BuildDate.php b/lib/PHPExiftool/Driver/Tag/EXE/BuildDate.php deleted file mode 100644 index caca5ed66..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/BuildDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BuildDate extends AbstractTag -{ - - protected $Id = 'BuildDate'; - - protected $Name = 'BuildDate'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Build Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/BuildVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/BuildVersion.php deleted file mode 100644 index a01be588e..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/BuildVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BuildVersion extends AbstractTag -{ - - protected $Id = 'BuildVersion'; - - protected $Name = 'BuildVersion'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Build Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CHMVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/CHMVersion.php deleted file mode 100644 index 4beba50fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CHMVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CHMVersion extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CHMVersion'; - - protected $FullName = 'EXE::CHM'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'CHM Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CPUArchitecture.php b/lib/PHPExiftool/Driver/Tag/EXE/CPUArchitecture.php deleted file mode 100644 index 5bd7f0254..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CPUArchitecture.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CPUArchitecture extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CPUArchitecture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'CPU Architecture'; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => '32 bit', - ), - 1 => array( - 'Id' => 2, - 'Label' => '64 bit', - ), - 'm68k' => array( - 'Id' => 'm68k', - 'Label' => 68000, - ), - 'pwpc' => array( - 'Id' => 'pwpc', - 'Label' => 'PowerPC', - ), - ); - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CPUByteOrder.php b/lib/PHPExiftool/Driver/Tag/EXE/CPUByteOrder.php deleted file mode 100644 index ea0287b35..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CPUByteOrder.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CPUByteOrder extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CPUByteOrder'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'CPU Byte Order'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Little endian', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Big endian', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CPUCount.php b/lib/PHPExiftool/Driver/Tag/EXE/CPUCount.php deleted file mode 100644 index ac507e327..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CPUCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CPUCount extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CPUCount'; - - protected $FullName = 'EXE::MachO'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CPU Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CPUSubtype.php b/lib/PHPExiftool/Driver/Tag/EXE/CPUSubtype.php deleted file mode 100644 index f60fbd284..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CPUSubtype.php +++ /dev/null @@ -1,448 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CPUSubtype extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CPUSubtype'; - - protected $FullName = 'EXE::MachO'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CPU Subtype'; - - protected $flag_List = true; - - protected $Values = array( - '1 0' => array( - 'Id' => '1 0', - 'Label' => 'VAX (all)', - ), - '1 1' => array( - 'Id' => '1 1', - 'Label' => 'VAX780', - ), - '1 2' => array( - 'Id' => '1 2', - 'Label' => 'VAX785', - ), - '1 3' => array( - 'Id' => '1 3', - 'Label' => 'VAX750', - ), - '1 4' => array( - 'Id' => '1 4', - 'Label' => 'VAX730', - ), - '1 5' => array( - 'Id' => '1 5', - 'Label' => 'UVAXI', - ), - '1 6' => array( - 'Id' => '1 6', - 'Label' => 'UVAXII', - ), - '1 7' => array( - 'Id' => '1 7', - 'Label' => 'VAX8200', - ), - '1 8' => array( - 'Id' => '1 8', - 'Label' => 'VAX8500', - ), - '1 9' => array( - 'Id' => '1 9', - 'Label' => 'VAX8600', - ), - '1 10' => array( - 'Id' => '1 10', - 'Label' => 'VAX8650', - ), - '1 11' => array( - 'Id' => '1 11', - 'Label' => 'VAX8800', - ), - '1 12' => array( - 'Id' => '1 12', - 'Label' => 'UVAXIII', - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 'RT (all)', - ), - '2 1' => array( - 'Id' => '2 1', - 'Label' => 'RT PC', - ), - '2 2' => array( - 'Id' => '2 2', - 'Label' => 'RT APC', - ), - '2 3' => array( - 'Id' => '2 3', - 'Label' => 'RT 135', - ), - '4 0' => array( - 'Id' => '4 0', - 'Label' => 'NS32032 (all)', - ), - '4 1' => array( - 'Id' => '4 1', - 'Label' => 'NS32032 DPC (032 CPU)', - ), - '4 2' => array( - 'Id' => '4 2', - 'Label' => 'NS32032 SQT', - ), - '4 3' => array( - 'Id' => '4 3', - 'Label' => 'NS32032 APC FPU (32081)', - ), - '4 4' => array( - 'Id' => '4 4', - 'Label' => 'NS32032 APC FPA (Weitek)', - ), - '4 5' => array( - 'Id' => '4 5', - 'Label' => 'NS32032 XPC (532)', - ), - '5 0' => array( - 'Id' => '5 0', - 'Label' => 'NS32332 (all)', - ), - '5 1' => array( - 'Id' => '5 1', - 'Label' => 'NS32332 DPC (032 CPU)', - ), - '5 2' => array( - 'Id' => '5 2', - 'Label' => 'NS32332 SQT', - ), - '5 3' => array( - 'Id' => '5 3', - 'Label' => 'NS32332 APC FPU (32081)', - ), - '5 4' => array( - 'Id' => '5 4', - 'Label' => 'NS32332 APC FPA (Weitek)', - ), - '5 5' => array( - 'Id' => '5 5', - 'Label' => 'NS32332 XPC (532)', - ), - '6 1' => array( - 'Id' => '6 1', - 'Label' => 'MC680x0 (all)', - ), - '6 2' => array( - 'Id' => '6 2', - 'Label' => 'MC68040', - ), - '6 3' => array( - 'Id' => '6 3', - 'Label' => 'MC68030', - ), - '7 3' => array( - 'Id' => '7 3', - 'Label' => 'i386 (all)', - ), - '7 4' => array( - 'Id' => '7 4', - 'Label' => 'i486', - ), - '7 5' => array( - 'Id' => '7 5', - 'Label' => 'i586', - ), - '7 8' => array( - 'Id' => '7 8', - 'Label' => 'Pentium III', - ), - '7 9' => array( - 'Id' => '7 9', - 'Label' => 'Pentium M', - ), - '7 10' => array( - 'Id' => '7 10', - 'Label' => 'Pentium 4', - ), - '7 11' => array( - 'Id' => '7 11', - 'Label' => 'Itanium', - ), - '7 12' => array( - 'Id' => '7 12', - 'Label' => 'Xeon', - ), - '7 22' => array( - 'Id' => '7 22', - 'Label' => 'Pentium Pro', - ), - '7 24' => array( - 'Id' => '7 24', - 'Label' => 'Pentium III M', - ), - '7 26' => array( - 'Id' => '7 26', - 'Label' => 'Pentium 4 M', - ), - '7 27' => array( - 'Id' => '7 27', - 'Label' => 'Itanium 2', - ), - '7 28' => array( - 'Id' => '7 28', - 'Label' => 'Xeon MP', - ), - '7 40' => array( - 'Id' => '7 40', - 'Label' => 'Pentium III Xeon', - ), - '7 54' => array( - 'Id' => '7 54', - 'Label' => 'Pentium II M3', - ), - '7 86' => array( - 'Id' => '7 86', - 'Label' => 'Pentium II M5', - ), - '7 103' => array( - 'Id' => '7 103', - 'Label' => 'Celeron', - ), - '7 119' => array( - 'Id' => '7 119', - 'Label' => 'Celeron Mobile', - ), - '7 132' => array( - 'Id' => '7 132', - 'Label' => 'i486SX', - ), - '8 0' => array( - 'Id' => '8 0', - 'Label' => 'MIPS (all)', - ), - '8 1' => array( - 'Id' => '8 1', - 'Label' => 'MIPS R2300', - ), - '8 2' => array( - 'Id' => '8 2', - 'Label' => 'MIPS R2600', - ), - '8 3' => array( - 'Id' => '8 3', - 'Label' => 'MIPS R2800', - ), - '8 4' => array( - 'Id' => '8 4', - 'Label' => 'MIPS R2000a', - ), - '8 5' => array( - 'Id' => '8 5', - 'Label' => 'MIPS R2000', - ), - '8 6' => array( - 'Id' => '8 6', - 'Label' => 'MIPS R3000a', - ), - '8 7' => array( - 'Id' => '8 7', - 'Label' => 'MIPS R3000', - ), - '10 0' => array( - 'Id' => '10 0', - 'Label' => 'MC98000 (all)', - ), - '10 1' => array( - 'Id' => '10 1', - 'Label' => 'MC98601', - ), - '11 0' => array( - 'Id' => '11 0', - 'Label' => 'HPPA (all)', - ), - '11 1' => array( - 'Id' => '11 1', - 'Label' => 'HPPA 7100LC', - ), - '12 0' => array( - 'Id' => '12 0', - 'Label' => 'ARM (all)', - ), - '12 1' => array( - 'Id' => '12 1', - 'Label' => 'ARM A500 ARCH', - ), - '12 2' => array( - 'Id' => '12 2', - 'Label' => 'ARM A500', - ), - '12 3' => array( - 'Id' => '12 3', - 'Label' => 'ARM A440', - ), - '12 4' => array( - 'Id' => '12 4', - 'Label' => 'ARM M4', - ), - '12 5' => array( - 'Id' => '12 5', - 'Label' => 'ARM A680/V4T', - ), - '12 6' => array( - 'Id' => '12 6', - 'Label' => 'ARM V6', - ), - '12 7' => array( - 'Id' => '12 7', - 'Label' => 'ARM V5TEJ', - ), - '12 8' => array( - 'Id' => '12 8', - 'Label' => 'ARM XSCALE', - ), - '12 9' => array( - 'Id' => '12 9', - 'Label' => 'ARM V7', - ), - '13 0' => array( - 'Id' => '13 0', - 'Label' => 'MC88000 (all)', - ), - '13 1' => array( - 'Id' => '13 1', - 'Label' => 'MC88100', - ), - '13 2' => array( - 'Id' => '13 2', - 'Label' => 'MC88110', - ), - '14 0' => array( - 'Id' => '14 0', - 'Label' => 'SPARC (all)', - ), - '14 1' => array( - 'Id' => '14 1', - 'Label' => 'SUN 4/260', - ), - '14 2' => array( - 'Id' => '14 2', - 'Label' => 'SUN 4/110', - ), - '15 0' => array( - 'Id' => '15 0', - 'Label' => 'i860 (all)', - ), - '15 1' => array( - 'Id' => '15 1', - 'Label' => 'i860 860', - ), - '16 0' => array( - 'Id' => '16 0', - 'Label' => 'i860 little (all)', - ), - '16 1' => array( - 'Id' => '16 1', - 'Label' => 'i860 little', - ), - '17 0' => array( - 'Id' => '17 0', - 'Label' => 'RS6000 (all)', - ), - '17 1' => array( - 'Id' => '17 1', - 'Label' => 'RS6000', - ), - '18 0' => array( - 'Id' => '18 0', - 'Label' => 'PowerPC (all)', - ), - '18 1' => array( - 'Id' => '18 1', - 'Label' => 'PowerPC 601', - ), - '18 2' => array( - 'Id' => '18 2', - 'Label' => 'PowerPC 602', - ), - '18 3' => array( - 'Id' => '18 3', - 'Label' => 'PowerPC 603', - ), - '18 4' => array( - 'Id' => '18 4', - 'Label' => 'PowerPC 603e', - ), - '18 5' => array( - 'Id' => '18 5', - 'Label' => 'PowerPC 603ev', - ), - '18 6' => array( - 'Id' => '18 6', - 'Label' => 'PowerPC 604', - ), - '18 7' => array( - 'Id' => '18 7', - 'Label' => 'PowerPC 604e', - ), - '18 8' => array( - 'Id' => '18 8', - 'Label' => 'PowerPC 620', - ), - '18 9' => array( - 'Id' => '18 9', - 'Label' => 'PowerPC 750', - ), - '18 10' => array( - 'Id' => '18 10', - 'Label' => 'PowerPC 7400', - ), - '18 11' => array( - 'Id' => '18 11', - 'Label' => 'PowerPC 7450', - ), - '18 100' => array( - 'Id' => '18 100', - 'Label' => 'PowerPC 970', - ), - '255 1' => array( - 'Id' => '255 1', - 'Label' => 'VEO 1', - ), - '255 2' => array( - 'Id' => '255 2', - 'Label' => 'VEO 2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CPUType.php b/lib/PHPExiftool/Driver/Tag/EXE/CPUType.php deleted file mode 100644 index ccb3c7f8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CPUType.php +++ /dev/null @@ -1,240 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CPUType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CPUType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'CPU Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AT&T WE 32100', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'SPARC', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'i386', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Motorola 68000', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Motorola 88000', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'i486', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'i860', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'MIPS R3000', - ), - 9 => array( - 'Id' => 10, - 'Label' => 'MIPS R4000', - ), - 10 => array( - 'Id' => 15, - 'Label' => 'HPPA', - ), - 11 => array( - 'Id' => 18, - 'Label' => 'Sun v8plus', - ), - 12 => array( - 'Id' => 20, - 'Label' => 'PowerPC', - ), - 13 => array( - 'Id' => 21, - 'Label' => 'PowerPC 64-bit', - ), - 14 => array( - 'Id' => 22, - 'Label' => 'IBM S/390', - ), - 15 => array( - 'Id' => 23, - 'Label' => 'Cell BE SPU', - ), - 16 => array( - 'Id' => 42, - 'Label' => 'SuperH', - ), - 17 => array( - 'Id' => 43, - 'Label' => 'SPARC v9 64-bit', - ), - 18 => array( - 'Id' => 46, - 'Label' => 'Renesas H8/300,300H,H8S', - ), - 19 => array( - 'Id' => 50, - 'Label' => 'HP/Intel IA-64', - ), - 20 => array( - 'Id' => 62, - 'Label' => 'AMD x86-64', - ), - 21 => array( - 'Id' => 76, - 'Label' => 'Axis Communications 32-bit embedded processor', - ), - 22 => array( - 'Id' => 87, - 'Label' => 'NEC v850', - ), - 23 => array( - 'Id' => 88, - 'Label' => 'Renesas M32R', - ), - 24 => array( - 'Id' => 21569, - 'Label' => 'Fujitsu FR-V', - ), - 25 => array( - 'Id' => 36902, - 'Label' => 'Alpha', - ), - 26 => array( - 'Id' => 36929, - 'Label' => 'm32r (old)', - ), - 27 => array( - 'Id' => 36992, - 'Label' => 'v850 (old)', - ), - 28 => array( - 'Id' => 41872, - 'Label' => 'S/390 (old)', - ), - 29 => array( - 'Id' => '-1', - 'Label' => 'Any', - ), - 30 => array( - 'Id' => 1, - 'Label' => 'VAX', - ), - 31 => array( - 'Id' => 2, - 'Label' => 'ROMP', - ), - 32 => array( - 'Id' => 4, - 'Label' => 'NS32032', - ), - 33 => array( - 'Id' => 5, - 'Label' => 'NS32332', - ), - 34 => array( - 'Id' => 6, - 'Label' => 'MC680x0', - ), - 35 => array( - 'Id' => 7, - 'Label' => 'x86', - ), - 36 => array( - 'Id' => 8, - 'Label' => 'MIPS', - ), - 37 => array( - 'Id' => 9, - 'Label' => 'NS32532', - ), - 38 => array( - 'Id' => 10, - 'Label' => 'MC98000', - ), - 39 => array( - 'Id' => 11, - 'Label' => 'HPPA', - ), - 40 => array( - 'Id' => 12, - 'Label' => 'ARM', - ), - 41 => array( - 'Id' => 13, - 'Label' => 'MC88000', - ), - 42 => array( - 'Id' => 14, - 'Label' => 'SPARC', - ), - 43 => array( - 'Id' => 15, - 'Label' => 'i860 big endian', - ), - 44 => array( - 'Id' => 16, - 'Label' => 'i860 little endian', - ), - 45 => array( - 'Id' => 17, - 'Label' => 'RS6000', - ), - 46 => array( - 'Id' => 18, - 'Label' => 'PowerPC', - ), - 47 => array( - 'Id' => 255, - 'Label' => 'VEO', - ), - ); - - protected $flag_List = false; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CharacterSet.php b/lib/PHPExiftool/Driver/Tag/EXE/CharacterSet.php deleted file mode 100644 index 167bbf7e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CharacterSet.php +++ /dev/null @@ -1,98 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharacterSet extends AbstractTag -{ - - protected $Id = 'CharacterSet'; - - protected $Name = 'CharacterSet'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Character Set'; - - protected $Values = array( - 0000 => array( - 'Id' => 0000, - 'Label' => 'ASCII', - ), - '03A4' => array( - 'Id' => '03A4', - 'Label' => 'Windows, Japan (Shift - JIS X-0208)', - ), - '03A8' => array( - 'Id' => '03A8', - 'Label' => 'Windows, Chinese (Simplified)', - ), - '03B5' => array( - 'Id' => '03B5', - 'Label' => 'Windows, Korea (Shift - KSC 5601)', - ), - '03B6' => array( - 'Id' => '03B6', - 'Label' => 'Windows, Taiwan (Big5)', - ), - '04B0' => array( - 'Id' => '04B0', - 'Label' => 'Unicode', - ), - '04E2' => array( - 'Id' => '04E2', - 'Label' => 'Windows, Latin2 (Eastern European)', - ), - '04E3' => array( - 'Id' => '04E3', - 'Label' => 'Windows, Cyrillic', - ), - '04E4' => array( - 'Id' => '04E4', - 'Label' => 'Windows, Latin1', - ), - '04E5' => array( - 'Id' => '04E5', - 'Label' => 'Windows, Greek', - ), - '04E6' => array( - 'Id' => '04E6', - 'Label' => 'Windows, Turkish', - ), - '04E7' => array( - 'Id' => '04E7', - 'Label' => 'Windows, Hebrew', - ), - '04E8' => array( - 'Id' => '04E8', - 'Label' => 'Windows, Arabic', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CodeSize.php b/lib/PHPExiftool/Driver/Tag/EXE/CodeSize.php deleted file mode 100644 index 108b1ff23..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CodeSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodeSize extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'CodeSize'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Code Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/Comments.php b/lib/PHPExiftool/Driver/Tag/EXE/Comments.php deleted file mode 100644 index c418d823c..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/Comments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comments extends AbstractTag -{ - - protected $Id = 'Comments'; - - protected $Name = 'Comments'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/CompanyName.php b/lib/PHPExiftool/Driver/Tag/EXE/CompanyName.php deleted file mode 100644 index 49e781442..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/CompanyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompanyName extends AbstractTag -{ - - protected $Id = 'CompanyName'; - - protected $Name = 'CompanyName'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Company Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/Copyright.php b/lib/PHPExiftool/Driver/Tag/EXE/Copyright.php deleted file mode 100644 index ad9064038..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/Copyright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'Copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/EntryPoint.php b/lib/PHPExiftool/Driver/Tag/EXE/EntryPoint.php deleted file mode 100644 index 0ea2fb698..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/EntryPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EntryPoint extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'EntryPoint'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Entry Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/FileDescription.php b/lib/PHPExiftool/Driver/Tag/EXE/FileDescription.php deleted file mode 100644 index 4ccbfb482..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/FileDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileDescription extends AbstractTag -{ - - protected $Id = 'FileDescription'; - - protected $Name = 'FileDescription'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/FileFlags.php b/lib/PHPExiftool/Driver/Tag/EXE/FileFlags.php deleted file mode 100644 index 1e2a2c65f..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/FileFlags.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileFlags extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'FileFlags'; - - protected $FullName = 'EXE::PEVersion'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Flags'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Debug', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pre-release', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Patched', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Private build', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Info inferred', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Special build', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/FileFlagsMask.php b/lib/PHPExiftool/Driver/Tag/EXE/FileFlagsMask.php deleted file mode 100644 index 92c8780c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/FileFlagsMask.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileFlagsMask extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'FileFlagsMask'; - - protected $FullName = 'EXE::PEVersion'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Flags Mask'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/FileOS.php b/lib/PHPExiftool/Driver/Tag/EXE/FileOS.php deleted file mode 100644 index 0a1319401..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/FileOS.php +++ /dev/null @@ -1,98 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileOS extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'FileOS'; - - protected $FullName = 'EXE::PEVersion'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File OS'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Win16', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'PM-16', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'PM-32', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Win32', - ), - 65536 => array( - 'Id' => 65536, - 'Label' => 'DOS', - ), - 65537 => array( - 'Id' => 65537, - 'Label' => 'Windows 16-bit', - ), - 65540 => array( - 'Id' => 65540, - 'Label' => 'Windows 32-bit', - ), - 131072 => array( - 'Id' => 131072, - 'Label' => 'OS/2 16-bit', - ), - 131074 => array( - 'Id' => 131074, - 'Label' => 'OS/2 16-bit PM-16', - ), - 196608 => array( - 'Id' => 196608, - 'Label' => 'OS/2 32-bit', - ), - 196611 => array( - 'Id' => 196611, - 'Label' => 'OS/2 32-bit PM-32', - ), - 262144 => array( - 'Id' => 262144, - 'Label' => 'Windows NT', - ), - 262148 => array( - 'Id' => 262148, - 'Label' => 'Windows NT 32-bit', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/FileSubtype.php b/lib/PHPExiftool/Driver/Tag/EXE/FileSubtype.php deleted file mode 100644 index 1951c5de1..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/FileSubtype.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSubtype extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'FileSubtype'; - - protected $FullName = 'EXE::PEVersion'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Subtype'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/FileVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/FileVersion.php deleted file mode 100644 index 64ac298fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/FileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileVersion extends AbstractTag -{ - - protected $Id = 'FileVersion'; - - protected $Name = 'FileVersion'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/FileVersionNumber.php b/lib/PHPExiftool/Driver/Tag/EXE/FileVersionNumber.php deleted file mode 100644 index feef63450..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/FileVersionNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileVersionNumber extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FileVersionNumber'; - - protected $FullName = 'EXE::PEVersion'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'File Version Number'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/ImageVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/ImageVersion.php deleted file mode 100644 index 4ff3f9594..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/ImageVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageVersion extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'ImageVersion'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/InitializedDataSize.php b/lib/PHPExiftool/Driver/Tag/EXE/InitializedDataSize.php deleted file mode 100644 index 3aec8bc23..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/InitializedDataSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitializedDataSize extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'InitializedDataSize'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Initialized Data Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/InternalName.php b/lib/PHPExiftool/Driver/Tag/EXE/InternalName.php deleted file mode 100644 index 235eaaac5..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/InternalName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalName extends AbstractTag -{ - - protected $Id = 'InternalName'; - - protected $Name = 'InternalName'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internal Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/LanguageCode.php b/lib/PHPExiftool/Driver/Tag/EXE/LanguageCode.php deleted file mode 100644 index e87f887fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/LanguageCode.php +++ /dev/null @@ -1,494 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LanguageCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LanguageCode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Language Code'; - - protected $Values = array( - 0000 => array( - 'Id' => 0000, - 'Label' => 'Neutral', - ), - 0400 => array( - 'Id' => 0400, - 'Label' => 'Process default', - ), - 0401 => array( - 'Id' => 0401, - 'Label' => 'Arabic', - ), - 0402 => array( - 'Id' => 0402, - 'Label' => 'Bulgarian', - ), - 0403 => array( - 'Id' => 0403, - 'Label' => 'Catalan', - ), - 0404 => array( - 'Id' => 0404, - 'Label' => 'Chinese (Traditional)', - ), - 0405 => array( - 'Id' => 0405, - 'Label' => 'Czech', - ), - 0406 => array( - 'Id' => 0406, - 'Label' => 'Danish', - ), - 0407 => array( - 'Id' => 0407, - 'Label' => 'German', - ), - 0408 => array( - 'Id' => 0408, - 'Label' => 'Greek', - ), - 0409 => array( - 'Id' => 0409, - 'Label' => 'English (U.S.)', - ), - 0410 => array( - 'Id' => 0410, - 'Label' => 'Italian', - ), - 0411 => array( - 'Id' => 0411, - 'Label' => 'Japanese', - ), - 0412 => array( - 'Id' => 0412, - 'Label' => 'Korean', - ), - 0413 => array( - 'Id' => 0413, - 'Label' => 'Dutch', - ), - 0414 => array( - 'Id' => 0414, - 'Label' => 'Norwegian (Bokml)', - ), - 0415 => array( - 'Id' => 0415, - 'Label' => 'Polish', - ), - 0416 => array( - 'Id' => 0416, - 'Label' => 'Portuguese (Brazilian)', - ), - 0417 => array( - 'Id' => 0417, - 'Label' => 'Rhaeto-Romanic', - ), - 0418 => array( - 'Id' => 0418, - 'Label' => 'Romanian', - ), - 0419 => array( - 'Id' => 0419, - 'Label' => 'Russian', - ), - 0420 => array( - 'Id' => 0420, - 'Label' => 'Urdu', - ), - 0421 => array( - 'Id' => 0421, - 'Label' => 'Indonesian', - ), - 0422 => array( - 'Id' => 0422, - 'Label' => 'Ukrainian', - ), - 0423 => array( - 'Id' => 0423, - 'Label' => 'Belarusian', - ), - 0424 => array( - 'Id' => 0424, - 'Label' => 'Slovenian', - ), - 0425 => array( - 'Id' => 0425, - 'Label' => 'Estonian', - ), - 0426 => array( - 'Id' => 0426, - 'Label' => 'Latvian', - ), - 0427 => array( - 'Id' => 0427, - 'Label' => 'Lithuanian', - ), - 0428 => array( - 'Id' => 0428, - 'Label' => 'Maori', - ), - 0429 => array( - 'Id' => 0429, - 'Label' => 'Farsi', - ), - 0430 => array( - 'Id' => 0430, - 'Label' => 'Sutu', - ), - 0431 => array( - 'Id' => 0431, - 'Label' => 'Tsonga', - ), - 0432 => array( - 'Id' => 0432, - 'Label' => 'Tswana', - ), - 0433 => array( - 'Id' => 0433, - 'Label' => 'Venda', - ), - 0434 => array( - 'Id' => 0434, - 'Label' => 'Xhosa', - ), - 0435 => array( - 'Id' => 0435, - 'Label' => 'Zulu', - ), - 0436 => array( - 'Id' => 0436, - 'Label' => 'Afrikaans', - ), - 0437 => array( - 'Id' => 0437, - 'Label' => 'Georgian', - ), - 0438 => array( - 'Id' => 0438, - 'Label' => 'Faeroese', - ), - 0439 => array( - 'Id' => 0439, - 'Label' => 'Hindi', - ), - 0440 => array( - 'Id' => 0440, - 'Label' => 'Kyrgyz', - ), - 0441 => array( - 'Id' => 0441, - 'Label' => 'Swahili', - ), - 0443 => array( - 'Id' => 0443, - 'Label' => 'Uzbek', - ), - 0444 => array( - 'Id' => 0444, - 'Label' => 'Tatar', - ), - 0445 => array( - 'Id' => 0445, - 'Label' => 'Bengali', - ), - 0446 => array( - 'Id' => 0446, - 'Label' => 'Punjabi', - ), - 0447 => array( - 'Id' => 0447, - 'Label' => 'Gujarati', - ), - 0448 => array( - 'Id' => 0448, - 'Label' => 'Oriya', - ), - 0449 => array( - 'Id' => 0449, - 'Label' => 'Tamil', - ), - 0450 => array( - 'Id' => 0450, - 'Label' => 'Mongolian', - ), - 0456 => array( - 'Id' => 0456, - 'Label' => 'Galician', - ), - 0457 => array( - 'Id' => 0457, - 'Label' => 'Konkani', - ), - 0458 => array( - 'Id' => 0458, - 'Label' => 'Manipuri', - ), - 0459 => array( - 'Id' => 0459, - 'Label' => 'Sindhi', - ), - 0460 => array( - 'Id' => 0460, - 'Label' => 'Kashmiri', - ), - 0461 => array( - 'Id' => 0461, - 'Label' => 'Nepali', - ), - 0465 => array( - 'Id' => 0465, - 'Label' => 'Divehi', - ), - 0490 => array( - 'Id' => 0490, - 'Label' => 'Walon', - ), - 0491 => array( - 'Id' => 0491, - 'Label' => 'Cornish', - ), - 0492 => array( - 'Id' => 0492, - 'Label' => 'Welsh', - ), - 0493 => array( - 'Id' => 0493, - 'Label' => 'Breton', - ), - 0800 => array( - 'Id' => 0800, - 'Label' => 'Neutral 2', - ), - 0804 => array( - 'Id' => 0804, - 'Label' => 'Chinese (Simplified)', - ), - 0807 => array( - 'Id' => 0807, - 'Label' => 'German (Swiss)', - ), - 0809 => array( - 'Id' => 0809, - 'Label' => 'English (British)', - ), - 0810 => array( - 'Id' => 0810, - 'Label' => 'Italian (Swiss)', - ), - 0813 => array( - 'Id' => 0813, - 'Label' => 'Dutch (Belgian)', - ), - 0814 => array( - 'Id' => 0814, - 'Label' => 'Norwegian (Nynorsk)', - ), - 0816 => array( - 'Id' => 0816, - 'Label' => 'Portuguese', - ), - 1009 => array( - 'Id' => 1009, - 'Label' => 'English (Canadian)', - ), - '007F' => array( - 'Id' => '007F', - 'Label' => 'Invariant', - ), - '040A' => array( - 'Id' => '040A', - 'Label' => 'Spanish (Castilian)', - ), - '040B' => array( - 'Id' => '040B', - 'Label' => 'Finnish', - ), - '040C' => array( - 'Id' => '040C', - 'Label' => 'French', - ), - '040D' => array( - 'Id' => '040D', - 'Label' => 'Hebrew', - ), - '040E' => array( - 'Id' => '040E', - 'Label' => 'Hungarian', - ), - '040F' => array( - 'Id' => '040F', - 'Label' => 'Icelandic', - ), - '041A' => array( - 'Id' => '041A', - 'Label' => 'Croato-Serbian (Latin)', - ), - '041B' => array( - 'Id' => '041B', - 'Label' => 'Slovak', - ), - '041C' => array( - 'Id' => '041C', - 'Label' => 'Albanian', - ), - '041D' => array( - 'Id' => '041D', - 'Label' => 'Swedish', - ), - '041E' => array( - 'Id' => '041E', - 'Label' => 'Thai', - ), - '041F' => array( - 'Id' => '041F', - 'Label' => 'Turkish', - ), - '042a' => array( - 'Id' => '042a', - 'Label' => 'Vietnamese', - ), - '042b' => array( - 'Id' => '042b', - 'Label' => 'Armenian', - ), - '042c' => array( - 'Id' => '042c', - 'Label' => 'Azeri', - ), - '042d' => array( - 'Id' => '042d', - 'Label' => 'Basque', - ), - '042e' => array( - 'Id' => '042e', - 'Label' => 'Sorbian', - ), - '042f' => array( - 'Id' => '042f', - 'Label' => 'Macedonian', - ), - '043a' => array( - 'Id' => '043a', - 'Label' => 'Maltese', - ), - '043b' => array( - 'Id' => '043b', - 'Label' => 'Saami', - ), - '043c' => array( - 'Id' => '043c', - 'Label' => 'Gaelic', - ), - '043e' => array( - 'Id' => '043e', - 'Label' => 'Malay', - ), - '043f' => array( - 'Id' => '043f', - 'Label' => 'Kazak', - ), - '044a' => array( - 'Id' => '044a', - 'Label' => 'Telugu', - ), - '044b' => array( - 'Id' => '044b', - 'Label' => 'Kannada', - ), - '044c' => array( - 'Id' => '044c', - 'Label' => 'Malayalam', - ), - '044d' => array( - 'Id' => '044d', - 'Label' => 'Assamese', - ), - '044e' => array( - 'Id' => '044e', - 'Label' => 'Marathi', - ), - '044f' => array( - 'Id' => '044f', - 'Label' => 'Sanskrit', - ), - '045a' => array( - 'Id' => '045a', - 'Label' => 'Syriac', - ), - '047f' => array( - 'Id' => '047f', - 'Label' => 'Invariant', - ), - '048f' => array( - 'Id' => '048f', - 'Label' => 'Esperanto', - ), - '080A' => array( - 'Id' => '080A', - 'Label' => 'Spanish (Mexican)', - ), - '080C' => array( - 'Id' => '080C', - 'Label' => 'French (Belgian)', - ), - '081A' => array( - 'Id' => '081A', - 'Label' => 'Serbo-Croatian (Cyrillic)', - ), - '0C07' => array( - 'Id' => '0C07', - 'Label' => 'German (Austrian)', - ), - '0C09' => array( - 'Id' => '0C09', - 'Label' => 'English (Australian)', - ), - '0C0A' => array( - 'Id' => '0C0A', - 'Label' => 'Spanish (Modern)', - ), - '0C0C' => array( - 'Id' => '0C0C', - 'Label' => 'French (Canadian)', - ), - '100C' => array( - 'Id' => '100C', - 'Label' => 'French (Swiss)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/LegalCopyright.php b/lib/PHPExiftool/Driver/Tag/EXE/LegalCopyright.php deleted file mode 100644 index de308307b..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/LegalCopyright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LegalCopyright extends AbstractTag -{ - - protected $Id = 'LegalCopyright'; - - protected $Name = 'LegalCopyright'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Legal Copyright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/LegalTrademarks.php b/lib/PHPExiftool/Driver/Tag/EXE/LegalTrademarks.php deleted file mode 100644 index 27ef173a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/LegalTrademarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LegalTrademarks extends AbstractTag -{ - - protected $Id = 'LegalTrademarks'; - - protected $Name = 'LegalTrademarks'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Legal Trademarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/LinkerVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/LinkerVersion.php deleted file mode 100644 index 2dadc778d..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/LinkerVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkerVersion extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'LinkerVersion'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Linker Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/MachineType.php b/lib/PHPExiftool/Driver/Tag/EXE/MachineType.php deleted file mode 100644 index 3a2f38f02..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/MachineType.php +++ /dev/null @@ -1,154 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MachineType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MachineType'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Machine Type'; - - protected $Values = array( - 332 => array( - 'Id' => 332, - 'Label' => 'Intel 386 or later, and compatibles', - ), - 333 => array( - 'Id' => 333, - 'Label' => 'Intel i860', - ), - 354 => array( - 'Id' => 354, - 'Label' => 'MIPS R3000', - ), - 358 => array( - 'Id' => 358, - 'Label' => 'MIPS little endian (R4000)', - ), - 360 => array( - 'Id' => 360, - 'Label' => 'MIPS R10000', - ), - 361 => array( - 'Id' => 361, - 'Label' => 'MIPS little endian WCI v2', - ), - 387 => array( - 'Id' => 387, - 'Label' => 'Alpha AXP (old)', - ), - 388 => array( - 'Id' => 388, - 'Label' => 'Alpha AXP', - ), - 418 => array( - 'Id' => 418, - 'Label' => 'Hitachi SH3', - ), - 419 => array( - 'Id' => 419, - 'Label' => 'Hitachi SH3 DSP', - ), - 422 => array( - 'Id' => 422, - 'Label' => 'Hitachi SH4', - ), - 424 => array( - 'Id' => 424, - 'Label' => 'Hitachi SH5', - ), - 448 => array( - 'Id' => 448, - 'Label' => 'ARM little endian', - ), - 450 => array( - 'Id' => 450, - 'Label' => 'Thumb', - ), - 467 => array( - 'Id' => 467, - 'Label' => 'Matsushita AM33', - ), - 496 => array( - 'Id' => 496, - 'Label' => 'PowerPC little endian', - ), - 497 => array( - 'Id' => 497, - 'Label' => 'PowerPC with floating point support', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Intel IA64', - ), - 614 => array( - 'Id' => 614, - 'Label' => 'MIPS16', - ), - 616 => array( - 'Id' => 616, - 'Label' => 'Motorola 68000 series', - ), - 644 => array( - 'Id' => 644, - 'Label' => 'Alpha AXP 64-bit', - ), - 870 => array( - 'Id' => 870, - 'Label' => 'MIPS with FPU', - ), - 1126 => array( - 'Id' => 1126, - 'Label' => 'MIPS16 with FPU', - ), - 3772 => array( - 'Id' => 3772, - 'Label' => 'EFI Byte Code', - ), - 34404 => array( - 'Id' => 34404, - 'Label' => 'AMD AMD64', - ), - 36929 => array( - 'Id' => 36929, - 'Label' => 'Mitsubishi M32R little endian', - ), - 49390 => array( - 'Id' => 49390, - 'Label' => 'clr pure MSIL', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/OSVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/OSVersion.php deleted file mode 100644 index e4662f77b..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/OSVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OSVersion extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'OSVersion'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'OS Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/ObjectFileType.php b/lib/PHPExiftool/Driver/Tag/EXE/ObjectFileType.php deleted file mode 100644 index 460bbf004..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/ObjectFileType.php +++ /dev/null @@ -1,134 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectFileType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ObjectFileType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Object File Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Relocatable file', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Executable file', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Shared object file', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Core file', - ), - 5 => array( - 'Id' => '-1', - 'Label' => 'Static library', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Relocatable object', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Demand paged executable', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Fixed VM shared library', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Core', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Preloaded executable', - ), - 11 => array( - 'Id' => 6, - 'Label' => 'Dynamically bound shared library', - ), - 12 => array( - 'Id' => 7, - 'Label' => 'Dynamic link editor', - ), - 13 => array( - 'Id' => 8, - 'Label' => 'Dynamically bound bundle', - ), - 14 => array( - 'Id' => 9, - 'Label' => 'Shared library stub for static linking', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 16 => array( - 'Id' => 1, - 'Label' => 'Executable application', - ), - 17 => array( - 'Id' => 2, - 'Label' => 'Dynamic link library', - ), - 18 => array( - 'Id' => 3, - 'Label' => 'Driver', - ), - 19 => array( - 'Id' => 4, - 'Label' => 'Font', - ), - 20 => array( - 'Id' => 5, - 'Label' => 'VxD', - ), - 21 => array( - 'Id' => 7, - 'Label' => 'Static library', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/OriginalFilename.php b/lib/PHPExiftool/Driver/Tag/EXE/OriginalFilename.php deleted file mode 100644 index fc697a64e..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/OriginalFilename.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFilename extends AbstractTag -{ - - protected $Id = 'OriginalFilename'; - - protected $Name = 'OriginalFilename'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Filename'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/PEFVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/PEFVersion.php deleted file mode 100644 index b24c5d523..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/PEFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PEFVersion extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PEFVersion'; - - protected $FullName = 'EXE::PEF'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'PEF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/PEType.php b/lib/PHPExiftool/Driver/Tag/EXE/PEType.php deleted file mode 100644 index c311b2edd..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/PEType.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PEType extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'PEType'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'PE Type'; - - protected $Values = array( - 267 => array( - 'Id' => 267, - 'Label' => 'PE32', - ), - 523 => array( - 'Id' => 523, - 'Label' => 'PE32+', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/PrivateBuild.php b/lib/PHPExiftool/Driver/Tag/EXE/PrivateBuild.php deleted file mode 100644 index bf818a882..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/PrivateBuild.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrivateBuild extends AbstractTag -{ - - protected $Id = 'PrivateBuild'; - - protected $Name = 'PrivateBuild'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Private Build'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/ProductName.php b/lib/PHPExiftool/Driver/Tag/EXE/ProductName.php deleted file mode 100644 index 980af4e70..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/ProductName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductName extends AbstractTag -{ - - protected $Id = 'ProductName'; - - protected $Name = 'ProductName'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/ProductVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/ProductVersion.php deleted file mode 100644 index 5ac53523d..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/ProductVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductVersion extends AbstractTag -{ - - protected $Id = 'ProductVersion'; - - protected $Name = 'ProductVersion'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/ProductVersionNumber.php b/lib/PHPExiftool/Driver/Tag/EXE/ProductVersionNumber.php deleted file mode 100644 index 109e987b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/ProductVersionNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductVersionNumber extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ProductVersionNumber'; - - protected $FullName = 'EXE::PEVersion'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Product Version Number'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/SpecialBuild.php b/lib/PHPExiftool/Driver/Tag/EXE/SpecialBuild.php deleted file mode 100644 index 0876d9a40..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/SpecialBuild.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialBuild extends AbstractTag -{ - - protected $Id = 'SpecialBuild'; - - protected $Name = 'SpecialBuild'; - - protected $FullName = 'EXE::PEString'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Special Build'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/Subsystem.php b/lib/PHPExiftool/Driver/Tag/EXE/Subsystem.php deleted file mode 100644 index 83ed75ba2..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/Subsystem.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subsystem extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'Subsystem'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Subsystem'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Native', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Windows GUI', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Windows command line', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'OS/2 command line', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'POSIX command line', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Windows CE GUI', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'EFI application', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'EFI boot service', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'EFI runtime driver', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'EFI ROM', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'XBOX', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/SubsystemVersion.php b/lib/PHPExiftool/Driver/Tag/EXE/SubsystemVersion.php deleted file mode 100644 index 701874b0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/SubsystemVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubsystemVersion extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'SubsystemVersion'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Subsystem Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/TimeStamp.php b/lib/PHPExiftool/Driver/Tag/EXE/TimeStamp.php deleted file mode 100644 index 3787a9e4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/TimeStamp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeStamp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TimeStamp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Time Stamp'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/EXE/UninitializedDataSize.php b/lib/PHPExiftool/Driver/Tag/EXE/UninitializedDataSize.php deleted file mode 100644 index 34b216432..000000000 --- a/lib/PHPExiftool/Driver/Tag/EXE/UninitializedDataSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\EXE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UninitializedDataSize extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'UninitializedDataSize'; - - protected $FullName = 'EXE::Main'; - - protected $GroupName = 'EXE'; - - protected $g0 = 'EXE'; - - protected $g1 = 'EXE'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Uninitialized Data Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/A100DataOffset.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/A100DataOffset.php deleted file mode 100644 index 929cbb71d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/A100DataOffset.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class A100DataOffset extends AbstractTag -{ - - protected $Id = 330; - - protected $Name = 'A100DataOffset'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'A100 Data Offset'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Protected = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/AdventRevision.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/AdventRevision.php deleted file mode 100644 index d7159d19c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/AdventRevision.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdventRevision extends AbstractTag -{ - - protected $Id = 33590; - - protected $Name = 'AdventRevision'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Advent Revision'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/AdventScale.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/AdventScale.php deleted file mode 100644 index 3af64c6d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/AdventScale.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdventScale extends AbstractTag -{ - - protected $Id = 33589; - - protected $Name = 'AdventScale'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Advent Scale'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/AliasLayerMetadata.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/AliasLayerMetadata.php deleted file mode 100644 index f9ed4b6b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/AliasLayerMetadata.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AliasLayerMetadata extends AbstractTag -{ - - protected $Id = 50784; - - protected $Name = 'AliasLayerMetadata'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alias Layer Metadata'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaByteCount.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaByteCount.php deleted file mode 100644 index 2d74235a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaByteCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaByteCount extends AbstractTag -{ - - protected $Id = 48323; - - protected $Name = 'AlphaByteCount'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alpha Byte Count'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaDataDiscard.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaDataDiscard.php deleted file mode 100644 index 00d8c2c6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaDataDiscard.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaDataDiscard extends AbstractTag -{ - - protected $Id = 48325; - - protected $Name = 'AlphaDataDiscard'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alpha Data Discard'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Full Resolution', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Flexbits Discarded', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'HighPass Frequency Data Discarded', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Highpass and LowPass Frequency Data Discarded', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaOffset.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaOffset.php deleted file mode 100644 index 90b6f86c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/AlphaOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaOffset extends AbstractTag -{ - - protected $Id = 48322; - - protected $Name = 'AlphaOffset'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alpha Offset'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Annotations.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Annotations.php deleted file mode 100644 index f4706801d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Annotations.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Annotations extends AbstractTag -{ - - protected $Id = 50255; - - protected $Name = 'Annotations'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotations'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ApertureValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ApertureValue.php deleted file mode 100644 index 166b0a777..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureValue extends AbstractTag -{ - - protected $Id = 37378; - - protected $Name = 'ApertureValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Aperture Value'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ApplicationNotes.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ApplicationNotes.php deleted file mode 100644 index dad54bb29..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ApplicationNotes.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationNotes extends AbstractTag -{ - - protected $Id = 700; - - protected $Name = 'ApplicationNotes'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Application Notes'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/BackgroundColorIndicator.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/BackgroundColorIndicator.php deleted file mode 100644 index 65a5f3185..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/BackgroundColorIndicator.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColorIndicator extends AbstractTag -{ - - protected $Id = 34024; - - protected $Name = 'BackgroundColorIndicator'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Background Color Indicator'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unspecified Background Color', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Specified Background Color', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/BackgroundColorValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/BackgroundColorValue.php deleted file mode 100644 index e40f3b1ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/BackgroundColorValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColorValue extends AbstractTag -{ - - protected $Id = 34026; - - protected $Name = 'BackgroundColorValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Background Color Value'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/BadFaxLines.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/BadFaxLines.php deleted file mode 100644 index 8f655b5e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/BadFaxLines.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BadFaxLines extends AbstractTag -{ - - protected $Id = 326; - - protected $Name = 'BadFaxLines'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bad Fax Lines'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/BatteryLevel.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/BatteryLevel.php deleted file mode 100644 index c02adf46e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/BatteryLevel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryLevel extends AbstractTag -{ - - protected $Id = 33423; - - protected $Name = 'BatteryLevel'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Battery Level'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/BitsPerExtendedRunLength.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/BitsPerExtendedRunLength.php deleted file mode 100644 index 2507d65a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/BitsPerExtendedRunLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerExtendedRunLength extends AbstractTag -{ - - protected $Id = 34021; - - protected $Name = 'BitsPerExtendedRunLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Per Extended Run Length'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/BitsPerRunLength.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/BitsPerRunLength.php deleted file mode 100644 index a68c4a61b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/BitsPerRunLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerRunLength extends AbstractTag -{ - - protected $Id = 34020; - - protected $Name = 'BitsPerRunLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Per Run Length'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Brightness.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Brightness.php deleted file mode 100644 index b7ff6cb61..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Brightness.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 65107; - - protected $Name = 'Brightness'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Brightness'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/BrightnessValue.php deleted file mode 100644 index 581316571..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/BrightnessValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 37379; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Brightness Value'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CFALayout.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CFALayout.php deleted file mode 100644 index 8b86f7aeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CFALayout.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFALayout extends AbstractTag -{ - - protected $Id = 50711; - - protected $Name = 'CFALayout'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CFA Layout'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Rectangular', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Even columns offset down 1/2 row', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Even columns offset up 1/2 row', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Even rows offset right 1/2 column', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Even rows offset left 1/2 column', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Even rows offset up by 1/2 row, even columns offset left by 1/2 column', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Even rows offset up by 1/2 row, even columns offset right by 1/2 column', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Even rows offset down by 1/2 row, even columns offset left by 1/2 column', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Even rows offset down by 1/2 row, even columns offset right by 1/2 column', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CFAPattern.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CFAPattern.php deleted file mode 100644 index aca73ae04..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CFAPattern.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPattern extends AbstractTag -{ - - protected $Id = 41730; - - protected $Name = 'CFAPattern'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'CFA Pattern'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CFAPlaneColor.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CFAPlaneColor.php deleted file mode 100644 index c5c1b4087..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CFAPlaneColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPlaneColor extends AbstractTag -{ - - protected $Id = 50710; - - protected $Name = 'CFAPlaneColor'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CFA Plane Color'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3DataFile.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3DataFile.php deleted file mode 100644 index a9c0ea46f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3DataFile.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CIP3DataFile extends AbstractTag -{ - - protected $Id = 37434; - - protected $Name = 'CIP3DataFile'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CIP3 Data File'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3Sheet.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3Sheet.php deleted file mode 100644 index 4eb88b92e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3Sheet.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CIP3Sheet extends AbstractTag -{ - - protected $Id = 37435; - - protected $Name = 'CIP3Sheet'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CIP3 Sheet'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3Side.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3Side.php deleted file mode 100644 index 3e7e9a211..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CIP3Side.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CIP3Side extends AbstractTag -{ - - protected $Id = 37436; - - protected $Name = 'CIP3Side'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CIP3 Side'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CMYKEquivalent.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CMYKEquivalent.php deleted file mode 100644 index a87066dfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CMYKEquivalent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMYKEquivalent extends AbstractTag -{ - - protected $Id = 34032; - - protected $Name = 'CMYKEquivalent'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CMYK Equivalent'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CleanFaxData.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CleanFaxData.php deleted file mode 100644 index 9e9c0fb3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CleanFaxData.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CleanFaxData extends AbstractTag -{ - - protected $Id = 327; - - protected $Name = 'CleanFaxData'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clean Fax Data'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Clean', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Regenerated', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Unclean', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ClipPath.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ClipPath.php deleted file mode 100644 index 4aef11e65..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ClipPath.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipPath extends AbstractTag -{ - - protected $Id = 343; - - protected $Name = 'ClipPath'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clip Path'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CodingMethods.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CodingMethods.php deleted file mode 100644 index 1cfb32d49..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CodingMethods.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingMethods extends AbstractTag -{ - - protected $Id = 403; - - protected $Name = 'CodingMethods'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Methods'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Unspecified compression', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Modified Huffman', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Modified Read', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Modified MR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'JBIG', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Baseline JPEG', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'JBIG color', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorCharacterization.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorCharacterization.php deleted file mode 100644 index c45d68498..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorCharacterization.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCharacterization extends AbstractTag -{ - - protected $Id = 34029; - - protected $Name = 'ColorCharacterization'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Characterization'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorMap.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorMap.php deleted file mode 100644 index 575d9e218..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorMap.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMap extends AbstractTag -{ - - protected $Id = 320; - - protected $Name = 'ColorMap'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'binary'; - - protected $Writable = false; - - protected $Description = 'Color Map'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorResponseUnit.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorResponseUnit.php deleted file mode 100644 index 5c74993a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorResponseUnit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorResponseUnit extends AbstractTag -{ - - protected $Id = 300; - - protected $Name = 'ColorResponseUnit'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Response Unit'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorSequence.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorSequence.php deleted file mode 100644 index bdc764972..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorSequence.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSequence extends AbstractTag -{ - - protected $Id = 34017; - - protected $Name = 'ColorSequence'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Sequence'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorSpace.php deleted file mode 100644 index c1d19692d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorSpace.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 40961; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Mandatory = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'sRGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Adobe RGB', - ), - 65533 => array( - 'Id' => 65533, - 'Label' => 'Wide Gamut RGB', - ), - 65534 => array( - 'Id' => 65534, - 'Label' => 'ICC Profile', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Uncalibrated', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorTable.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorTable.php deleted file mode 100644 index 570265032..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ColorTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTable extends AbstractTag -{ - - protected $Id = 34022; - - protected $Name = 'ColorTable'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Table'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ComponentsConfiguration.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ComponentsConfiguration.php deleted file mode 100644 index 0dccd9a73..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ComponentsConfiguration.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentsConfiguration extends AbstractTag -{ - - protected $Id = 37121; - - protected $Name = 'ComponentsConfiguration'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Components Configuration'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Unsafe = true; - - protected $flag_Mandatory = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '-', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Y', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cb', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Cr', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'R', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'G', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'B', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CompressedBitsPerPixel.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CompressedBitsPerPixel.php deleted file mode 100644 index 3947ba43a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CompressedBitsPerPixel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedBitsPerPixel extends AbstractTag -{ - - protected $Id = 37122; - - protected $Name = 'CompressedBitsPerPixel'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Compressed Bits Per Pixel'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ConsecutiveBadFaxLines.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ConsecutiveBadFaxLines.php deleted file mode 100644 index 04eeeb7d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ConsecutiveBadFaxLines.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConsecutiveBadFaxLines extends AbstractTag -{ - - protected $Id = 328; - - protected $Name = 'ConsecutiveBadFaxLines'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Consecutive Bad Fax Lines'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Contrast.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Contrast.php deleted file mode 100644 index 3a882d5d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Contrast.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Contrast'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - - protected $flag_Avoid = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Converter.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Converter.php deleted file mode 100644 index a4035d439..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Converter.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Converter extends AbstractTag -{ - - protected $Id = 65101; - - protected $Name = 'Converter'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Converter'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CreateDate.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CreateDate.php deleted file mode 100644 index 07979c74f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CreateDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 36868; - - protected $Name = 'CreateDate'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Create Date'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/CustomRendered.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/CustomRendered.php deleted file mode 100644 index 437190acf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/CustomRendered.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomRendered extends AbstractTag -{ - - protected $Id = 41985; - - protected $Name = 'CustomRendered'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Custom Rendered'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/DataType.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/DataType.php deleted file mode 100644 index 635477a22..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/DataType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataType extends AbstractTag -{ - - protected $Id = 32996; - - protected $Name = 'DataType'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Type'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/DateTimeOriginal.php deleted file mode 100644 index 5ca62329f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/DateTimeOriginal.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 36867; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Date/Time Original'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Decode.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Decode.php deleted file mode 100644 index 64a1c53b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Decode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Decode extends AbstractTag -{ - - protected $Id = 433; - - protected $Name = 'Decode'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decode'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/DefaultImageColor.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/DefaultImageColor.php deleted file mode 100644 index f03d9bf80..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/DefaultImageColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultImageColor extends AbstractTag -{ - - protected $Id = 434; - - protected $Name = 'DefaultImageColor'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Image Color'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/DeviceSettingDescription.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/DeviceSettingDescription.php deleted file mode 100644 index b01efd067..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/DeviceSettingDescription.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSettingDescription extends AbstractTag -{ - - protected $Id = 41995; - - protected $Name = 'DeviceSettingDescription'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Setting Description'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/DigitalZoomRatio.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/DigitalZoomRatio.php deleted file mode 100644 index 4c4f995b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/DigitalZoomRatio.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoomRatio extends AbstractTag -{ - - protected $Id = 41988; - - protected $Name = 'DigitalZoomRatio'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom Ratio'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifImageHeight.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifImageHeight.php deleted file mode 100644 index 833e7ca12..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifImageHeight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifImageHeight extends AbstractTag -{ - - protected $Id = 40963; - - protected $Name = 'ExifImageHeight'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exif Image Height'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifImageWidth.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifImageWidth.php deleted file mode 100644 index 1d06f938c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifImageWidth.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifImageWidth extends AbstractTag -{ - - protected $Id = 40962; - - protected $Name = 'ExifImageWidth'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exif Image Width'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifVersion.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifVersion.php deleted file mode 100644 index eaaf5dfe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExifVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifVersion extends AbstractTag -{ - - protected $Id = 36864; - - protected $Name = 'ExifVersion'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Exif Version'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFilm.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFilm.php deleted file mode 100644 index a8afb6fc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFilm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpandFilm extends AbstractTag -{ - - protected $Id = 44994; - - protected $Name = 'ExpandFilm'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expand Film'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFilterLens.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFilterLens.php deleted file mode 100644 index 64f6c2640..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFilterLens.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpandFilterLens extends AbstractTag -{ - - protected $Id = 44995; - - protected $Name = 'ExpandFilterLens'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expand Filter Lens'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFlashLamp.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFlashLamp.php deleted file mode 100644 index 476254963..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandFlashLamp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpandFlashLamp extends AbstractTag -{ - - protected $Id = 44997; - - protected $Name = 'ExpandFlashLamp'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expand Flash Lamp'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandLens.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandLens.php deleted file mode 100644 index c223095db..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandLens.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpandLens extends AbstractTag -{ - - protected $Id = 44993; - - protected $Name = 'ExpandLens'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expand Lens'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandScanner.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandScanner.php deleted file mode 100644 index 89a70ca4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandScanner.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpandScanner extends AbstractTag -{ - - protected $Id = 44996; - - protected $Name = 'ExpandScanner'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expand Scanner'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandSoftware.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandSoftware.php deleted file mode 100644 index 0c379494f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExpandSoftware.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpandSoftware extends AbstractTag -{ - - protected $Id = 44992; - - protected $Name = 'ExpandSoftware'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expand Software'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Exposure.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Exposure.php deleted file mode 100644 index 0a71d9c9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Exposure.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Exposure extends AbstractTag -{ - - protected $Id = 65105; - - protected $Name = 'Exposure'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Exposure'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureCompensation.php deleted file mode 100644 index cb04bf3fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 37380; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureIndex.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureIndex.php deleted file mode 100644 index 4e78d8cc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureIndex extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureIndex'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Index'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureMode.php deleted file mode 100644 index 3c32040bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureMode.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 41986; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto bracket', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureProgram.php deleted file mode 100644 index 1e7c9b450..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureProgram.php +++ /dev/null @@ -1,90 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 34850; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Program'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Defined', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Creative (Slow speed)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Action (High speed)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Portrait', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Landscape', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Bulb', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureTime.php deleted file mode 100644 index debe86a18..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 33434; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Exposure Time'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FNumber.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FNumber.php deleted file mode 100644 index 1e93d01bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 33437; - - protected $Name = 'FNumber'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'F Number'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxProfile.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxProfile.php deleted file mode 100644 index d8e334692..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxProfile.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaxProfile extends AbstractTag -{ - - protected $Id = 402; - - protected $Name = 'FaxProfile'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fax Profile'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Minimal B&W lossless, S', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Extended B&W lossless, F', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Lossless JBIG B&W, J', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Lossy color and grayscale, C', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Lossless color and grayscale, L', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Mixed raster content, M', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Profile T', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Multi Profiles', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxRecvParams.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxRecvParams.php deleted file mode 100644 index 3f539cd09..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxRecvParams.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaxRecvParams extends AbstractTag -{ - - protected $Id = 34908; - - protected $Name = 'FaxRecvParams'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fax Recv Params'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxRecvTime.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxRecvTime.php deleted file mode 100644 index b9cef0db1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxRecvTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaxRecvTime extends AbstractTag -{ - - protected $Id = 34910; - - protected $Name = 'FaxRecvTime'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fax Recv Time'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxSubAddress.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxSubAddress.php deleted file mode 100644 index a62722ac4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FaxSubAddress.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaxSubAddress extends AbstractTag -{ - - protected $Id = 34909; - - protected $Name = 'FaxSubAddress'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fax Sub Address'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FileSource.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FileSource.php deleted file mode 100644 index 74d222af2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FileSource.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSource extends AbstractTag -{ - - protected $Id = 41728; - - protected $Name = 'FileSource'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'File Source'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Film Scanner', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Reflection Print Scanner', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Digital Camera', - ), - '\\x03\\x00\\x00\\x00' => array( - 'Id' => '\\x03\\x00\\x00\\x00', - 'Label' => 'Sigma Digital Camera', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Flash.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Flash.php deleted file mode 100644 index fc0211125..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Flash.php +++ /dev/null @@ -1,158 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 37385; - - protected $Name = 'Flash'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Fired, Return not detected', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Fired, Return detected', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'On, Did not fire', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'On, Fired', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'On, Return not detected', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'On, Return detected', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Off, Did not fire', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Off, Did not fire, Return not detected', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Auto, Did not fire', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Auto, Fired', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Auto, Fired, Return not detected', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Auto, Fired, Return detected', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'No flash function', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Off, No flash function', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Fired, Red-eye reduction', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Fired, Red-eye reduction, Return not detected', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Fired, Red-eye reduction, Return detected', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'On, Red-eye reduction', - ), - 77 => array( - 'Id' => 77, - 'Label' => 'On, Red-eye reduction, Return not detected', - ), - 79 => array( - 'Id' => 79, - 'Label' => 'On, Red-eye reduction, Return detected', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Off, Red-eye reduction', - ), - 88 => array( - 'Id' => 88, - 'Label' => 'Auto, Did not fire, Red-eye reduction', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Auto, Fired, Red-eye reduction', - ), - 93 => array( - 'Id' => 93, - 'Label' => 'Auto, Fired, Red-eye reduction, Return not detected', - ), - 95 => array( - 'Id' => 95, - 'Label' => 'Auto, Fired, Red-eye reduction, Return detected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FlashEnergy.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FlashEnergy.php deleted file mode 100644 index 32d5f9cc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FlashEnergy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashEnergy extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashEnergy'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Flash Energy'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FlashpixVersion.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FlashpixVersion.php deleted file mode 100644 index 95984b7e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FlashpixVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashpixVersion extends AbstractTag -{ - - protected $Id = 40960; - - protected $Name = 'FlashpixVersion'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Flashpix Version'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalLength.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalLength.php deleted file mode 100644 index 2a29ed3ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 37386; - - protected $Name = 'FocalLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Focal Length'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalLengthIn35mmFormat.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalLengthIn35mmFormat.php deleted file mode 100644 index 5fbcc55ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalLengthIn35mmFormat.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLengthIn35mmFormat extends AbstractTag -{ - - protected $Id = 41989; - - protected $Name = 'FocalLengthIn35mmFormat'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focal Length In 35mm Format'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneResolutionUnit.php deleted file mode 100644 index f38f1c902..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneResolutionUnit.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneResolutionUnit extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalPlaneResolutionUnit'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Plane Resolution Unit'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'inches', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'cm', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'mm', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'um', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneXResolution.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneXResolution.php deleted file mode 100644 index c0012f299..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneXResolution.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneXResolution extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalPlaneXResolution'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Plane X Resolution'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneYResolution.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneYResolution.php deleted file mode 100644 index 18eda756a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FocalPlaneYResolution.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneYResolution extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalPlaneYResolution'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Plane Y Resolution'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FreeByteCounts.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FreeByteCounts.php deleted file mode 100644 index bdb51da40..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FreeByteCounts.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FreeByteCounts extends AbstractTag -{ - - protected $Id = 289; - - protected $Name = 'FreeByteCounts'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Free Byte Counts'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/FreeOffsets.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/FreeOffsets.php deleted file mode 100644 index 8643b51b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/FreeOffsets.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FreeOffsets extends AbstractTag -{ - - protected $Id = 288; - - protected $Name = 'FreeOffsets'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Free Offsets'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/GDALMetadata.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/GDALMetadata.php deleted file mode 100644 index eb728306e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/GDALMetadata.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GDALMetadata extends AbstractTag -{ - - protected $Id = 42112; - - protected $Name = 'GDALMetadata'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GDAL Metadata'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/GDALNoData.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/GDALNoData.php deleted file mode 100644 index 243776854..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/GDALNoData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GDALNoData extends AbstractTag -{ - - protected $Id = 42113; - - protected $Name = 'GDALNoData'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GDAL No Data'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/GainControl.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/GainControl.php deleted file mode 100644 index a0405bcc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/GainControl.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainControl extends AbstractTag -{ - - protected $Id = 41991; - - protected $Name = 'GainControl'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Gain Control'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low gain up', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High gain up', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Low gain down', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High gain down', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Gamma.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Gamma.php deleted file mode 100644 index 4058763cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Gamma.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 42240; - - protected $Name = 'Gamma'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Gamma'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/GrayResponseCurve.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/GrayResponseCurve.php deleted file mode 100644 index 89c1e0e72..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/GrayResponseCurve.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayResponseCurve extends AbstractTag -{ - - protected $Id = 291; - - protected $Name = 'GrayResponseCurve'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gray Response Curve'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/HCUsage.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/HCUsage.php deleted file mode 100644 index b507617ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/HCUsage.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HCUsage extends AbstractTag -{ - - protected $Id = 34030; - - protected $Name = 'HCUsage'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HC Usage'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'CT', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Line Art', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Trap', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/HeightResolution.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/HeightResolution.php deleted file mode 100644 index 2356e9463..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/HeightResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeightResolution extends AbstractTag -{ - - protected $Id = 48259; - - protected $Name = 'HeightResolution'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Height Resolution'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/INGRReserved.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/INGRReserved.php deleted file mode 100644 index e1760413e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/INGRReserved.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class INGRReserved extends AbstractTag -{ - - protected $Id = 33921; - - protected $Name = 'INGRReserved'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'INGR Reserved'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISO.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ISO.php deleted file mode 100644 index f4faa6f1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 34855; - - protected $Name = 'ISO'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ISO'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeed.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeed.php deleted file mode 100644 index b00db54a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeed extends AbstractTag -{ - - protected $Id = 34867; - - protected $Name = 'ISOSpeed'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'ISO Speed'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeedLatitudeyyy.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeedLatitudeyyy.php deleted file mode 100644 index 755c14c38..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeedLatitudeyyy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeedLatitudeyyy extends AbstractTag -{ - - protected $Id = 34868; - - protected $Name = 'ISOSpeedLatitudeyyy'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'ISO Speed Latitude yyy'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeedLatitudezzz.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeedLatitudezzz.php deleted file mode 100644 index d84e1c302..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ISOSpeedLatitudezzz.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeedLatitudezzz extends AbstractTag -{ - - protected $Id = 34869; - - protected $Name = 'ISOSpeedLatitudezzz'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'ISO Speed Latitude zzz'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/IT8Header.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/IT8Header.php deleted file mode 100644 index 1537d8850..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/IT8Header.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IT8Header extends AbstractTag -{ - - protected $Id = 34018; - - protected $Name = 'IT8Header'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IT8 Header'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageByteCount.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageByteCount.php deleted file mode 100644 index cd620a357..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageByteCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageByteCount extends AbstractTag -{ - - protected $Id = 48321; - - protected $Name = 'ImageByteCount'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Byte Count'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageColorIndicator.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageColorIndicator.php deleted file mode 100644 index b4dbc2ee5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageColorIndicator.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageColorIndicator extends AbstractTag -{ - - protected $Id = 34023; - - protected $Name = 'ImageColorIndicator'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Color Indicator'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unspecified Image Color', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Specified Image Color', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageColorValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageColorValue.php deleted file mode 100644 index ed24c8a0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageColorValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageColorValue extends AbstractTag -{ - - protected $Id = 34025; - - protected $Name = 'ImageColorValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Color Value'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageDataDiscard.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageDataDiscard.php deleted file mode 100644 index d60ed91ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageDataDiscard.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDataDiscard extends AbstractTag -{ - - protected $Id = 48324; - - protected $Name = 'ImageDataDiscard'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Data Discard'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Full Resolution', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Flexbits Discarded', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'HighPass Frequency Data Discarded', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Highpass and LowPass Frequency Data Discarded', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageDepth.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageDepth.php deleted file mode 100644 index 76b8b9ad2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDepth extends AbstractTag -{ - - protected $Id = 32997; - - protected $Name = 'ImageDepth'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Depth'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageHeight.php deleted file mode 100644 index 5f5f289f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 48257; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageHistory.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageHistory.php deleted file mode 100644 index c41de6d9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageHistory.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHistory extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageHistory'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image History'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageID.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageID.php deleted file mode 100644 index c79b805d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageID extends AbstractTag -{ - - protected $Id = 32781; - - protected $Name = 'ImageID'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image ID'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageLayer.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageLayer.php deleted file mode 100644 index d12c93e5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageLayer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageLayer extends AbstractTag -{ - - protected $Id = 34732; - - protected $Name = 'ImageLayer'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Layer'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageNumber.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageNumber.php deleted file mode 100644 index aca3cfb30..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageNumber'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Number'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageOffset.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageOffset.php deleted file mode 100644 index 4676a18e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOffset extends AbstractTag -{ - - protected $Id = 48320; - - protected $Name = 'ImageOffset'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Offset'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageType.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageType.php deleted file mode 100644 index 993cf0db0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageType.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageType extends AbstractTag -{ - - protected $Id = 48132; - - protected $Name = 'ImageType'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Type'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Preview', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Page', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageUniqueID.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageUniqueID.php deleted file mode 100644 index 495f33e5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageUniqueID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageUniqueID extends AbstractTag -{ - - protected $Id = 42016; - - protected $Name = 'ImageUniqueID'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Unique ID'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageWidth.php deleted file mode 100644 index 85aa300fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 48256; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Indexed.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Indexed.php deleted file mode 100644 index be52e9d0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Indexed.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Indexed extends AbstractTag -{ - - protected $Id = 346; - - protected $Name = 'Indexed'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Indexed'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not indexed', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Indexed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/InkNames.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/InkNames.php deleted file mode 100644 index 29b6f9e06..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/InkNames.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InkNames extends AbstractTag -{ - - protected $Id = 333; - - protected $Name = 'InkNames'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ink Names'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphFlagRegisters.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphFlagRegisters.php deleted file mode 100644 index ee961dfac..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphFlagRegisters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntergraphFlagRegisters extends AbstractTag -{ - - protected $Id = 33919; - - protected $Name = 'IntergraphFlagRegisters'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intergraph Flag Registers'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphMatrix.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphMatrix.php deleted file mode 100644 index 8cfdb52a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphMatrix.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntergraphMatrix extends AbstractTag -{ - - protected $Id = 33920; - - protected $Name = 'IntergraphMatrix'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intergraph Matrix'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphPacketData.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphPacketData.php deleted file mode 100644 index 5153a7e82..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/IntergraphPacketData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntergraphPacketData extends AbstractTag -{ - - protected $Id = 33918; - - protected $Name = 'IntergraphPacketData'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intergraph Packet Data'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Interlace.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Interlace.php deleted file mode 100644 index fa2fa436f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Interlace.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Interlace extends AbstractTag -{ - - protected $Id = 34857; - - protected $Name = 'Interlace'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interlace'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGACTables.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGACTables.php deleted file mode 100644 index ba722cf83..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGACTables.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGACTables extends AbstractTag -{ - - protected $Id = 521; - - protected $Name = 'JPEGACTables'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEGAC Tables'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGDCTables.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGDCTables.php deleted file mode 100644 index 30a9e5b4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGDCTables.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGDCTables extends AbstractTag -{ - - protected $Id = 520; - - protected $Name = 'JPEGDCTables'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEGDC Tables'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGLosslessPredictors.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGLosslessPredictors.php deleted file mode 100644 index bf9b3895a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGLosslessPredictors.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGLosslessPredictors extends AbstractTag -{ - - protected $Id = 517; - - protected $Name = 'JPEGLosslessPredictors'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Lossless Predictors'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGPointTransforms.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGPointTransforms.php deleted file mode 100644 index 6d33db710..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGPointTransforms.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGPointTransforms extends AbstractTag -{ - - protected $Id = 518; - - protected $Name = 'JPEGPointTransforms'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Point Transforms'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGProc.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGProc.php deleted file mode 100644 index ba66523ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGProc.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGProc extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'JPEGProc'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Proc'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Baseline', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Lossless', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGQTables.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGQTables.php deleted file mode 100644 index 13dbbcfa7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGQTables.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGQTables extends AbstractTag -{ - - protected $Id = 519; - - protected $Name = 'JPEGQTables'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEGQ Tables'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGRestartInterval.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGRestartInterval.php deleted file mode 100644 index 799d2c7d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGRestartInterval.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGRestartInterval extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'JPEGRestartInterval'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Restart Interval'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGTables.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGTables.php deleted file mode 100644 index 2667f83c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/JPEGTables.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGTables extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'JPEGTables'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Tables'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Lens.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Lens.php deleted file mode 100644 index 079e2c3c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Lens.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lens extends AbstractTag -{ - - protected $Id = 65002; - - protected $Name = 'Lens'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensInfo.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/LensInfo.php deleted file mode 100644 index 0411ed2d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensInfo extends AbstractTag -{ - - protected $Id = 42034; - - protected $Name = 'LensInfo'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Lens Info'; - - protected $local_g1 = 'ExifIFD'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensMake.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/LensMake.php deleted file mode 100644 index b995def53..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensMake.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensMake extends AbstractTag -{ - - protected $Id = 42035; - - protected $Name = 'LensMake'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Make'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensModel.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/LensModel.php deleted file mode 100644 index 2387c005e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 42036; - - protected $Name = 'LensModel'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/LensSerialNumber.php deleted file mode 100644 index 4c1bf4ac8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/LensSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 42037; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/LightSource.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/LightSource.php deleted file mode 100644 index cc3695409..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/LightSource.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSource extends AbstractTag -{ - - protected $Id = 37384; - - protected $Name = 'LightSource'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Light Source'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fluorescent', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten (Incandescent)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Flash', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fine Weather', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cloudy', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Shade', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Daylight Fluorescent', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Day White Fluorescent', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Cool White Fluorescent', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'White Fluorescent', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Warm White Fluorescent', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Standard Light A', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Standard Light B', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Standard Light C', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'D55', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'D65', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'D75', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'D50', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'ISO Studio Tungsten', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDColorTable.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDColorTable.php deleted file mode 100644 index 2254359e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDColorTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDColorTable extends AbstractTag -{ - - protected $Id = 33447; - - protected $Name = 'MDColorTable'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD Color Table'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDFileTag.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDFileTag.php deleted file mode 100644 index db625f4f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDFileTag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDFileTag extends AbstractTag -{ - - protected $Id = 33445; - - protected $Name = 'MDFileTag'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD File Tag'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDFileUnits.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDFileUnits.php deleted file mode 100644 index 85989cef6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDFileUnits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDFileUnits extends AbstractTag -{ - - protected $Id = 33452; - - protected $Name = 'MDFileUnits'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD File Units'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDLabName.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDLabName.php deleted file mode 100644 index aa4ae03b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDLabName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDLabName extends AbstractTag -{ - - protected $Id = 33448; - - protected $Name = 'MDLabName'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD Lab Name'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDPrepDate.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDPrepDate.php deleted file mode 100644 index acdb664a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDPrepDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDPrepDate extends AbstractTag -{ - - protected $Id = 33450; - - protected $Name = 'MDPrepDate'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD Prep Date'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDPrepTime.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDPrepTime.php deleted file mode 100644 index fdcc5a39a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDPrepTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDPrepTime extends AbstractTag -{ - - protected $Id = 33451; - - protected $Name = 'MDPrepTime'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD Prep Time'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDSampleInfo.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDSampleInfo.php deleted file mode 100644 index f78cf08ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDSampleInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDSampleInfo extends AbstractTag -{ - - protected $Id = 33449; - - protected $Name = 'MDSampleInfo'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD Sample Info'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDScalePixel.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MDScalePixel.php deleted file mode 100644 index 07ede64b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MDScalePixel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MDScalePixel extends AbstractTag -{ - - protected $Id = 33446; - - protected $Name = 'MDScalePixel'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD Scale Pixel'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MSDocumentText.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MSDocumentText.php deleted file mode 100644 index d96a88616..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MSDocumentText.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MSDocumentText extends AbstractTag -{ - - protected $Id = 37679; - - protected $Name = 'MSDocumentText'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MS Document Text'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MSDocumentTextPosition.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MSDocumentTextPosition.php deleted file mode 100644 index 8575bb1c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MSDocumentTextPosition.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MSDocumentTextPosition extends AbstractTag -{ - - protected $Id = 37681; - - protected $Name = 'MSDocumentTextPosition'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MS Document Text Position'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MSPropertySetStorage.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MSPropertySetStorage.php deleted file mode 100644 index a89dc16a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MSPropertySetStorage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MSPropertySetStorage extends AbstractTag -{ - - protected $Id = 37680; - - protected $Name = 'MSPropertySetStorage'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MS Property Set Storage'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteApple.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteApple.php deleted file mode 100644 index 761215897..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteApple.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteApple extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteApple'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Apple'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCanon.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCanon.php deleted file mode 100644 index 9b6ccaf43..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCanon.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteCanon extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteCanon'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Canon'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCasio.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCasio.php deleted file mode 100644 index b89ed3737..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCasio.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteCasio extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteCasio'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Casio'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCasio2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCasio2.php deleted file mode 100644 index 6e3ce8b73..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteCasio2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteCasio2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteCasio2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Casio 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteFLIR.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteFLIR.php deleted file mode 100644 index 088f75b12..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteFLIR.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteFLIR extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteFLIR'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note FLIR'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteFujiFilm.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteFujiFilm.php deleted file mode 100644 index b8fbaf3d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteFujiFilm.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteFujiFilm extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteFujiFilm'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Fuji Film'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteGE.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteGE.php deleted file mode 100644 index 00bad8a23..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteGE.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteGE extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteGE'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note GE'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteGE2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteGE2.php deleted file mode 100644 index cacc38bef..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteGE2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteGE2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteGE2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note GE2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP.php deleted file mode 100644 index c18ba633f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteHP extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteHP'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note HP'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP2.php deleted file mode 100644 index aec5ec1ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteHP2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteHP2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note HP2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP4.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP4.php deleted file mode 100644 index aa96679a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP4.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteHP4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteHP4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note HP4'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP6.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP6.php deleted file mode 100644 index 2b14a4ea7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHP6.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteHP6 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteHP6'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note HP6'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 13; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHasselblad.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHasselblad.php deleted file mode 100644 index 192615bb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteHasselblad.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteHasselblad extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteHasselblad'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Hasselblad'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteISL.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteISL.php deleted file mode 100644 index 2f808b37b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteISL.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteISL extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteISL'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note ISL'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 14; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteJVC.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteJVC.php deleted file mode 100644 index c0f4fe610..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteJVC.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteJVC extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteJVC'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note JVC'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 15; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteJVCText.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteJVCText.php deleted file mode 100644 index 6c66a33e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteJVCText.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteJVCText extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteJVCText'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note JVC Text'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak10.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak10.php deleted file mode 100644 index 1104490b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak10.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak10 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak10'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 10'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak11.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak11.php deleted file mode 100644 index 63ecd69fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak11.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak11 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak11'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 11'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 31; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak1a.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak1a.php deleted file mode 100644 index 8af5bf1fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak1a.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak1a extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak1a'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 1a'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 17; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak1b.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak1b.php deleted file mode 100644 index ee41cc8fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak1b.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak1b extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak1b'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 1b'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 18; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak2.php deleted file mode 100644 index ad1d0136a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 19; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak3.php deleted file mode 100644 index 4f0137b59..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak3.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak4.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak4.php deleted file mode 100644 index 57aebf7e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak4.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 4'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 21; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak5.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak5.php deleted file mode 100644 index 1ab479472..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak5.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak5 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak5'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 5'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 22; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak6a.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak6a.php deleted file mode 100644 index 676977dde..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak6a.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak6a extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak6a'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 6a'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 23; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak6b.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak6b.php deleted file mode 100644 index 58101287d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak6b.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak6b extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak6b'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 6b'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak7.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak7.php deleted file mode 100644 index 673918523..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak7.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak7 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak7'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 7'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 25; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8a.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8a.php deleted file mode 100644 index cefc238d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8a.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak8a extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak8a'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 8a'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 26; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8b.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8b.php deleted file mode 100644 index a61b0f042..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8b.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak8b extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak8b'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 8b'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8c.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8c.php deleted file mode 100644 index 39434efc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak8c.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak8c extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak8c'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 8c'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 28; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak9.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak9.php deleted file mode 100644 index 40017db20..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodak9.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodak9 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodak9'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak 9'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 29; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodakUnknown.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodakUnknown.php deleted file mode 100644 index bbf36277a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKodakUnknown.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKodakUnknown extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKodakUnknown'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kodak Unknown'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKyocera.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKyocera.php deleted file mode 100644 index c2cc65d3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteKyocera.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteKyocera extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteKyocera'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Kyocera'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica.php deleted file mode 100644 index 60e49869b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteLeica extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteLeica'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Leica'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 42; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica2.php deleted file mode 100644 index 097dec43c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteLeica2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteLeica2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Leica 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 43; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica3.php deleted file mode 100644 index db417a267..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica3.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteLeica3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteLeica3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Leica 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 44; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica4.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica4.php deleted file mode 100644 index 346922823..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica4.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteLeica4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteLeica4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Leica 4'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 45; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica5.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica5.php deleted file mode 100644 index 9dbf3e90d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica5.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteLeica5 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteLeica5'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Leica 5'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 46; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica6.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica6.php deleted file mode 100644 index c6f172f44..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteLeica6.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteLeica6 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteLeica6'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Leica 6'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 47; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta.php deleted file mode 100644 index 95ee0feef..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteMinolta extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteMinolta'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Minolta'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 34; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta2.php deleted file mode 100644 index 04013c3f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteMinolta2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteMinolta2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Minolta 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 35; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta3.php deleted file mode 100644 index 8066324ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteMinolta3.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteMinolta3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteMinolta3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Minolta 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 36; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon.php deleted file mode 100644 index 102dce3b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteNikon extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteNikon'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Nikon'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon2.php deleted file mode 100644 index 21f38de9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteNikon2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteNikon2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Nikon 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 37; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon3.php deleted file mode 100644 index 69fca1d64..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNikon3.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteNikon3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteNikon3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Nikon 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 38; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNintendo.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNintendo.php deleted file mode 100644 index 49265cc80..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteNintendo.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteNintendo extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteNintendo'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Nintendo'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 39; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteOlympus.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteOlympus.php deleted file mode 100644 index 1b75f509d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteOlympus.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteOlympus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteOlympus'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Olympus'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 40; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteOlympus2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteOlympus2.php deleted file mode 100644 index c893a3de3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteOlympus2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteOlympus2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteOlympus2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Olympus 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 41; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePanasonic.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePanasonic.php deleted file mode 100644 index 685b56806..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePanasonic.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePanasonic extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePanasonic'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Panasonic'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 48; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePanasonic2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePanasonic2.php deleted file mode 100644 index 549028378..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePanasonic2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePanasonic2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePanasonic2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Panasonic 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 49; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax.php deleted file mode 100644 index eb930fcab..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePentax extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePentax'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Pentax'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 50; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax2.php deleted file mode 100644 index b4995132b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePentax2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePentax2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Pentax 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 51; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax3.php deleted file mode 100644 index 5753c9203..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax3.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePentax3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePentax3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Pentax 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 52; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax4.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax4.php deleted file mode 100644 index 79aa18514..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax4.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePentax4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePentax4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Pentax 4'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 53; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax5.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax5.php deleted file mode 100644 index 0cd818d1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax5.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePentax5 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePentax5'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Pentax 5'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 54; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax6.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax6.php deleted file mode 100644 index 57afb8816..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePentax6.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePentax6 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePentax6'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Pentax 6'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 55; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePhaseOne.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePhaseOne.php deleted file mode 100644 index 6fabef707..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNotePhaseOne.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePhaseOne extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNotePhaseOne'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Phase One'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 56; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteReconyx.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteReconyx.php deleted file mode 100644 index 11cccef03..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteReconyx.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteReconyx extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteReconyx'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Reconyx'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 57; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicoh.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicoh.php deleted file mode 100644 index be19aa16d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicoh.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteRicoh extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteRicoh'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Ricoh'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 58; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicoh2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicoh2.php deleted file mode 100644 index f5c222f94..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicoh2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteRicoh2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteRicoh2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Ricoh 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 59; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicohText.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicohText.php deleted file mode 100644 index f46372d6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteRicohText.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteRicohText extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteRicohText'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Ricoh Text'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 60; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung1a.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung1a.php deleted file mode 100644 index 7a8c1ce1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung1a.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSamsung1a extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSamsung1a'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Samsung 1a'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 61; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung1b.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung1b.php deleted file mode 100644 index dad63c57d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung1b.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSamsung1b extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSamsung1b'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Samsung 1b'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 62; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung2.php deleted file mode 100644 index 6580a4150..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSamsung2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSamsung2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSamsung2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Samsung 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 63; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyo.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyo.php deleted file mode 100644 index ef0fae499..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyo.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSanyo extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSanyo'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sanyo'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyoC4.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyoC4.php deleted file mode 100644 index 75f1bc294..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyoC4.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSanyoC4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSanyoC4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sanyo C4'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 65; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyoPatch.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyoPatch.php deleted file mode 100644 index a504f9cb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSanyoPatch.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSanyoPatch extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSanyoPatch'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sanyo Patch'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 66; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSigma.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSigma.php deleted file mode 100644 index 7053a58f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSigma.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSigma extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSigma'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sigma'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 67; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony.php deleted file mode 100644 index 866467764..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSony extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSony'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sony'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 68; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony2.php deleted file mode 100644 index 41ce03604..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony2.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSony2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSony2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sony 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 69; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony3.php deleted file mode 100644 index 64f251ece..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony3.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSony3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSony3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sony 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 70; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony4.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony4.php deleted file mode 100644 index e4543a0b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony4.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSony4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSony4'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sony 4'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 71; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony5.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony5.php deleted file mode 100644 index 1698800d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSony5.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSony5 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSony5'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sony 5'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 72; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSonyEricsson.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSonyEricsson.php deleted file mode 100644 index dcff3da99..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSonyEricsson.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSonyEricsson extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSonyEricsson'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sony Ericsson'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 73; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSonySRF.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSonySRF.php deleted file mode 100644 index 6f87d7d54..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteSonySRF.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteSonySRF extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteSonySRF'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Sony SRF'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 74; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknown.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknown.php deleted file mode 100644 index ebdbbdb1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknown.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteUnknown extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteUnknown'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Unknown'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 77; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknownBinary.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknownBinary.php deleted file mode 100644 index 208c64e30..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknownBinary.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteUnknownBinary extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteUnknownBinary'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Unknown Binary'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 76; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknownText.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknownText.php deleted file mode 100644 index cc1305dcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MakerNoteUnknownText.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteUnknownText extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteUnknownText'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Unknown Text'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Permanent = true; - - protected $Index = 75; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Matteing.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Matteing.php deleted file mode 100644 index 9981dbc62..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Matteing.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Matteing extends AbstractTag -{ - - protected $Id = 32995; - - protected $Name = 'Matteing'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Matteing'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MaxApertureValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MaxApertureValue.php deleted file mode 100644 index ad3039485..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MaxApertureValue.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureValue extends AbstractTag -{ - - protected $Id = 37381; - - protected $Name = 'MaxApertureValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture Value'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MeteringMode.php deleted file mode 100644 index f51f649b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MeteringMode.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 37383; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Multi-spot', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Multi-segment', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Partial', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ModeNumber.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ModeNumber.php deleted file mode 100644 index ce7a6cafb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ModeNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModeNumber extends AbstractTag -{ - - protected $Id = 405; - - protected $Name = 'ModeNumber'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mode Number'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Model2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Model2.php deleted file mode 100644 index 95fa4a3f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Model2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model2 extends AbstractTag -{ - - protected $Id = 33405; - - protected $Name = 'Model2'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Model 2'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ModelTransform.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ModelTransform.php deleted file mode 100644 index 456e711c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ModelTransform.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelTransform extends AbstractTag -{ - - protected $Id = 34264; - - protected $Name = 'ModelTransform'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Model Transform'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MoireFilter.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MoireFilter.php deleted file mode 100644 index c26b3624b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MoireFilter.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoireFilter extends AbstractTag -{ - - protected $Id = 65112; - - protected $Name = 'MoireFilter'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Moire Filter'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/MultiProfiles.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/MultiProfiles.php deleted file mode 100644 index c634a533c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/MultiProfiles.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiProfiles extends AbstractTag -{ - - protected $Id = 34688; - - protected $Name = 'MultiProfiles'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi Profiles'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Profile S', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Profile F', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Profile J', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Profile C', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Profile L', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Profile M', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Profile T', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Resolution/Image Width', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'N Layer Profile M', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Shared Data', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'JBIG2 Profile M', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Noise.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Noise.php deleted file mode 100644 index d13b99b0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Noise.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Noise extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Noise'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Noise'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/NumberofInks.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/NumberofInks.php deleted file mode 100644 index ea9b000af..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/NumberofInks.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberofInks extends AbstractTag -{ - - protected $Id = 334; - - protected $Name = 'NumberofInks'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Numberof Inks'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OPIProxy.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OPIProxy.php deleted file mode 100644 index 5ad0e79c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OPIProxy.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OPIProxy extends AbstractTag -{ - - protected $Id = 351; - - protected $Name = 'OPIProxy'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'OPI Proxy'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Higher resolution image does not exist', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Higher resolution image exists', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceApplicationSelector.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OceApplicationSelector.php deleted file mode 100644 index 2640339fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceApplicationSelector.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OceApplicationSelector extends AbstractTag -{ - - protected $Id = 50216; - - protected $Name = 'OceApplicationSelector'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Oce Application Selector'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceIDNumber.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OceIDNumber.php deleted file mode 100644 index 0ba11071d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceIDNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OceIDNumber extends AbstractTag -{ - - protected $Id = 50217; - - protected $Name = 'OceIDNumber'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Oce ID Number'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceImageLogic.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OceImageLogic.php deleted file mode 100644 index 9b6f79ced..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceImageLogic.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OceImageLogic extends AbstractTag -{ - - protected $Id = 50218; - - protected $Name = 'OceImageLogic'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Oce Image Logic'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceScanjobDesc.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OceScanjobDesc.php deleted file mode 100644 index 4f4283761..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OceScanjobDesc.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OceScanjobDesc extends AbstractTag -{ - - protected $Id = 50215; - - protected $Name = 'OceScanjobDesc'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Oce Scanjob Desc'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OffsetSchema.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OffsetSchema.php deleted file mode 100644 index 7e501804f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OffsetSchema.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetSchema extends AbstractTag -{ - - protected $Id = 59933; - - protected $Name = 'OffsetSchema'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Offset Schema'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList1.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList1.php deleted file mode 100644 index 91dc0cc65..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpcodeList1 extends AbstractTag -{ - - protected $Id = 51008; - - protected $Name = 'OpcodeList1'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Opcode List 1'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList2.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList2.php deleted file mode 100644 index d39cfdde6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpcodeList2 extends AbstractTag -{ - - protected $Id = 51009; - - protected $Name = 'OpcodeList2'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Opcode List 2'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList3.php deleted file mode 100644 index 0c3637263..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OpcodeList3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpcodeList3 extends AbstractTag -{ - - protected $Id = 51022; - - protected $Name = 'OpcodeList3'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Opcode List 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OptoElectricConvFactor.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OptoElectricConvFactor.php deleted file mode 100644 index 4003c060b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OptoElectricConvFactor.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptoElectricConvFactor extends AbstractTag -{ - - protected $Id = 34856; - - protected $Name = 'Opto-ElectricConvFactor'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Opto-Electric Conv Factor'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OriginalFileName.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OriginalFileName.php deleted file mode 100644 index a60961405..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OriginalFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFileName extends AbstractTag -{ - - protected $Id = 50547; - - protected $Name = 'OriginalFileName'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original File Name'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OtherImageLength.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OtherImageLength.php deleted file mode 100644 index 4f167ab89..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OtherImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImageLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'OtherImageLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Image Length'; - - protected $local_g1 = 'ExifIFD'; - - protected $Index = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OtherImageStart.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OtherImageStart.php deleted file mode 100644 index e2f8b96f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OtherImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImageStart extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'OtherImageStart'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Image Start'; - - protected $local_g1 = 'ExifIFD'; - - protected $Index = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/OwnerName.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/OwnerName.php deleted file mode 100644 index 80e1dd3fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/OwnerName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OwnerName'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner Name'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Padding.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Padding.php deleted file mode 100644 index 4bde48298..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Padding.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Padding extends AbstractTag -{ - - protected $Id = 59932; - - protected $Name = 'Padding'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Padding'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelFormat.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelFormat.php deleted file mode 100644 index d23237187..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelFormat.php +++ /dev/null @@ -1,268 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelFormat extends AbstractTag -{ - - protected $Id = 48129; - - protected $Name = 'PixelFormat'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Pixel Format'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 5 => array( - 'Id' => 5, - 'Label' => 'Black & White', - ), - 8 => array( - 'Id' => 8, - 'Label' => '8-bit Gray', - ), - 9 => array( - 'Id' => 9, - 'Label' => '16-bit BGR555', - ), - 10 => array( - 'Id' => 10, - 'Label' => '16-bit BGR565', - ), - 11 => array( - 'Id' => 11, - 'Label' => '16-bit Gray', - ), - 12 => array( - 'Id' => 12, - 'Label' => '24-bit BGR', - ), - 13 => array( - 'Id' => 13, - 'Label' => '24-bit RGB', - ), - 14 => array( - 'Id' => 14, - 'Label' => '32-bit BGR', - ), - 15 => array( - 'Id' => 15, - 'Label' => '32-bit BGRA', - ), - 16 => array( - 'Id' => 16, - 'Label' => '32-bit PBGRA', - ), - 17 => array( - 'Id' => 17, - 'Label' => '32-bit Gray Float', - ), - 18 => array( - 'Id' => 18, - 'Label' => '48-bit RGB Fixed Point', - ), - 19 => array( - 'Id' => 19, - 'Label' => '32-bit BGR101010', - ), - 21 => array( - 'Id' => 21, - 'Label' => '48-bit RGB', - ), - 22 => array( - 'Id' => 22, - 'Label' => '64-bit RGBA', - ), - 23 => array( - 'Id' => 23, - 'Label' => '64-bit PRGBA', - ), - 24 => array( - 'Id' => 24, - 'Label' => '96-bit RGB Fixed Point', - ), - 25 => array( - 'Id' => 25, - 'Label' => '128-bit RGBA Float', - ), - 26 => array( - 'Id' => 26, - 'Label' => '128-bit PRGBA Float', - ), - 27 => array( - 'Id' => 27, - 'Label' => '128-bit RGB Float', - ), - 28 => array( - 'Id' => 28, - 'Label' => '32-bit CMYK', - ), - 29 => array( - 'Id' => 29, - 'Label' => '64-bit RGBA Fixed Point', - ), - 30 => array( - 'Id' => 30, - 'Label' => '128-bit RGBA Fixed Point', - ), - 31 => array( - 'Id' => 31, - 'Label' => '64-bit CMYK', - ), - 32 => array( - 'Id' => 32, - 'Label' => '24-bit 3 Channels', - ), - 33 => array( - 'Id' => 33, - 'Label' => '32-bit 4 Channels', - ), - 34 => array( - 'Id' => 34, - 'Label' => '40-bit 5 Channels', - ), - 35 => array( - 'Id' => 35, - 'Label' => '48-bit 6 Channels', - ), - 36 => array( - 'Id' => 36, - 'Label' => '56-bit 7 Channels', - ), - 37 => array( - 'Id' => 37, - 'Label' => '64-bit 8 Channels', - ), - 38 => array( - 'Id' => 38, - 'Label' => '48-bit 3 Channels', - ), - 39 => array( - 'Id' => 39, - 'Label' => '64-bit 4 Channels', - ), - 40 => array( - 'Id' => 40, - 'Label' => '80-bit 5 Channels', - ), - 41 => array( - 'Id' => 41, - 'Label' => '96-bit 6 Channels', - ), - 42 => array( - 'Id' => 42, - 'Label' => '112-bit 7 Channels', - ), - 43 => array( - 'Id' => 43, - 'Label' => '128-bit 8 Channels', - ), - 44 => array( - 'Id' => 44, - 'Label' => '40-bit CMYK Alpha', - ), - 45 => array( - 'Id' => 45, - 'Label' => '80-bit CMYK Alpha', - ), - 46 => array( - 'Id' => 46, - 'Label' => '32-bit 3 Channels Alpha', - ), - 47 => array( - 'Id' => 47, - 'Label' => '40-bit 4 Channels Alpha', - ), - 48 => array( - 'Id' => 48, - 'Label' => '48-bit 5 Channels Alpha', - ), - 49 => array( - 'Id' => 49, - 'Label' => '56-bit 6 Channels Alpha', - ), - 50 => array( - 'Id' => 50, - 'Label' => '64-bit 7 Channels Alpha', - ), - 51 => array( - 'Id' => 51, - 'Label' => '72-bit 8 Channels Alpha', - ), - 52 => array( - 'Id' => 52, - 'Label' => '64-bit 3 Channels Alpha', - ), - 53 => array( - 'Id' => 53, - 'Label' => '80-bit 4 Channels Alpha', - ), - 54 => array( - 'Id' => 54, - 'Label' => '96-bit 5 Channels Alpha', - ), - 55 => array( - 'Id' => 55, - 'Label' => '112-bit 6 Channels Alpha', - ), - 56 => array( - 'Id' => 56, - 'Label' => '128-bit 7 Channels Alpha', - ), - 57 => array( - 'Id' => 57, - 'Label' => '144-bit 8 Channels Alpha', - ), - 58 => array( - 'Id' => 58, - 'Label' => '64-bit RGBA Half', - ), - 59 => array( - 'Id' => 59, - 'Label' => '48-bit RGB Half', - ), - 61 => array( - 'Id' => 61, - 'Label' => '32-bit RGBE', - ), - 62 => array( - 'Id' => 62, - 'Label' => '16-bit Gray Half', - ), - 63 => array( - 'Id' => 63, - 'Label' => '32-bit Gray Fixed Point', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelIntensityRange.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelIntensityRange.php deleted file mode 100644 index a3d2ac298..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelIntensityRange.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelIntensityRange extends AbstractTag -{ - - protected $Id = 34027; - - protected $Name = 'PixelIntensityRange'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Intensity Range'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelMagicJBIGOptions.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelMagicJBIGOptions.php deleted file mode 100644 index 7084815cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelMagicJBIGOptions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelMagicJBIGOptions extends AbstractTag -{ - - protected $Id = 34232; - - protected $Name = 'PixelMagicJBIGOptions'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Magic JBIG Options'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ProfileType.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ProfileType.php deleted file mode 100644 index 04ac4faec..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ProfileType.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileType extends AbstractTag -{ - - protected $Id = 401; - - protected $Name = 'ProfileType'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile Type'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unspecified', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Group 3 FAX', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/RasterPadding.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/RasterPadding.php deleted file mode 100644 index 9ef26ddf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/RasterPadding.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RasterPadding extends AbstractTag -{ - - protected $Id = 34019; - - protected $Name = 'RasterPadding'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raster Padding'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Byte', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Word', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Long Word', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Sector', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Long Sector', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/RawFile.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/RawFile.php deleted file mode 100644 index ac305ceb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/RawFile.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawFile extends AbstractTag -{ - - protected $Id = 65100; - - protected $Name = 'RawFile'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Raw File'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/RawImageSegmentation.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/RawImageSegmentation.php deleted file mode 100644 index ae14323a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/RawImageSegmentation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageSegmentation extends AbstractTag -{ - - protected $Id = 50752; - - protected $Name = 'RawImageSegmentation'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Image Segmentation'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/RecommendedExposureIndex.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/RecommendedExposureIndex.php deleted file mode 100644 index b2a0851a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/RecommendedExposureIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecommendedExposureIndex extends AbstractTag -{ - - protected $Id = 34866; - - protected $Name = 'RecommendedExposureIndex'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Recommended Exposure Index'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/RelatedSoundFile.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/RelatedSoundFile.php deleted file mode 100644 index ccb5cddd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/RelatedSoundFile.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedSoundFile extends AbstractTag -{ - - protected $Id = 40964; - - protected $Name = 'RelatedSoundFile'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Sound File'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/RowInterleaveFactor.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/RowInterleaveFactor.php deleted file mode 100644 index 74db1c62e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/RowInterleaveFactor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RowInterleaveFactor extends AbstractTag -{ - - protected $Id = 50975; - - protected $Name = 'RowInterleaveFactor'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Row Interleave Factor'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SMaxSampleValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SMaxSampleValue.php deleted file mode 100644 index 3762860b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SMaxSampleValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SMaxSampleValue extends AbstractTag -{ - - protected $Id = 341; - - protected $Name = 'SMaxSampleValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'S Max Sample Value'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SMinSampleValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SMinSampleValue.php deleted file mode 100644 index f882e5c02..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SMinSampleValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SMinSampleValue extends AbstractTag -{ - - protected $Id = 340; - - protected $Name = 'SMinSampleValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'S Min Sample Value'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SampleFormat.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SampleFormat.php deleted file mode 100644 index e1ae89ebf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SampleFormat.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleFormat extends AbstractTag -{ - - protected $Id = 339; - - protected $Name = 'SampleFormat'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Format'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Unsigned', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Signed', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Float', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Undefined', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Complex int', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Complex float', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Saturation.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Saturation.php deleted file mode 100644 index 96d88bf65..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Saturation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - - protected $flag_Avoid = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SceneCaptureType.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SceneCaptureType.php deleted file mode 100644 index cf78e89c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SceneCaptureType.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneCaptureType extends AbstractTag -{ - - protected $Id = 41990; - - protected $Name = 'SceneCaptureType'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Scene Capture Type'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Landscape', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SceneType.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SceneType.php deleted file mode 100644 index c4cbb1c67..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SceneType.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneType extends AbstractTag -{ - - protected $Id = 41729; - - protected $Name = 'SceneType'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Scene Type'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Directly photographed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SecurityClassification.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SecurityClassification.php deleted file mode 100644 index e535edacf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SecurityClassification.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecurityClassification extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SecurityClassification'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Security Classification'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 'C' => array( - 'Id' => 'C', - 'Label' => 'Confidential', - ), - 'R' => array( - 'Id' => 'R', - 'Label' => 'Restricted', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'Secret', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'Top Secret', - ), - 'U' => array( - 'Id' => 'U', - 'Label' => 'Unclassified', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SelfTimerMode.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SelfTimerMode.php deleted file mode 100644 index d7a48fb39..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SelfTimerMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimerMode extends AbstractTag -{ - - protected $Id = 34859; - - protected $Name = 'SelfTimerMode'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Self Timer Mode'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SensingMethod.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SensingMethod.php deleted file mode 100644 index e6478709e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SensingMethod.php +++ /dev/null @@ -1,110 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensingMethod extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensingMethod'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Sensing Method'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Monochrome area', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'One-chip color area', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Two-chip color area', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Three-chip color area', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Color sequential area', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'Monochrome linear', - ), - 6 => array( - 'Id' => 7, - 'Label' => 'Trilinear', - ), - 7 => array( - 'Id' => 8, - 'Label' => 'Color sequential linear', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Not defined', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'One-chip color area', - ), - 10 => array( - 'Id' => 3, - 'Label' => 'Two-chip color area', - ), - 11 => array( - 'Id' => 4, - 'Label' => 'Three-chip color area', - ), - 12 => array( - 'Id' => 5, - 'Label' => 'Color sequential area', - ), - 13 => array( - 'Id' => 7, - 'Label' => 'Trilinear', - ), - 14 => array( - 'Id' => 8, - 'Label' => 'Color sequential linear', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SensitivityType.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SensitivityType.php deleted file mode 100644 index b3cee1210..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SensitivityType.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensitivityType extends AbstractTag -{ - - protected $Id = 34864; - - protected $Name = 'SensitivityType'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensitivity Type'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard Output Sensitivity', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Recommended Exposure Index', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ISO Speed', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Standard Output Sensitivity and Recommended Exposure Index', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Standard Output Sensitivity and ISO Speed', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Recommended Exposure Index and ISO Speed', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Standard Output Sensitivity, Recommended Exposure Index and ISO Speed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SerialNumber.php deleted file mode 100644 index 9bb5d0260..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Shadows.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Shadows.php deleted file mode 100644 index f7dbb1ace..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Shadows.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Shadows extends AbstractTag -{ - - protected $Id = 65106; - - protected $Name = 'Shadows'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shadows'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SharedData.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SharedData.php deleted file mode 100644 index 4108448cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SharedData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharedData extends AbstractTag -{ - - protected $Id = 34689; - - protected $Name = 'SharedData'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shared Data'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Sharpness.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Sharpness.php deleted file mode 100644 index 4db4e6dab..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Sharpness.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Soft', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Hard', - ), - ); - - protected $flag_Avoid = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ShutterSpeedValue.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/ShutterSpeedValue.php deleted file mode 100644 index 9316b1256..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ShutterSpeedValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedValue extends AbstractTag -{ - - protected $Id = 37377; - - protected $Name = 'ShutterSpeedValue'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Shutter Speed Value'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Site.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Site.php deleted file mode 100644 index 864bfe01d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Site.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Site extends AbstractTag -{ - - protected $Id = 34016; - - protected $Name = 'Site'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Site'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Smoothness.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Smoothness.php deleted file mode 100644 index c75ef9c13..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Smoothness.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Smoothness extends AbstractTag -{ - - protected $Id = 65111; - - protected $Name = 'Smoothness'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Smoothness'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SpatialFrequencyResponse.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SpatialFrequencyResponse.php deleted file mode 100644 index dedbb2a68..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SpatialFrequencyResponse.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialFrequencyResponse extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SpatialFrequencyResponse'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spatial Frequency Response'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SpectralSensitivity.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SpectralSensitivity.php deleted file mode 100644 index 519ee1b06..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SpectralSensitivity.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectralSensitivity extends AbstractTag -{ - - protected $Id = 34852; - - protected $Name = 'SpectralSensitivity'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Spectral Sensitivity'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/StandardOutputSensitivity.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/StandardOutputSensitivity.php deleted file mode 100644 index 2dd06c178..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/StandardOutputSensitivity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardOutputSensitivity extends AbstractTag -{ - - protected $Id = 34865; - - protected $Name = 'StandardOutputSensitivity'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Standard Output Sensitivity'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/StoNits.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/StoNits.php deleted file mode 100644 index 074939baa..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/StoNits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StoNits extends AbstractTag -{ - - protected $Id = 37439; - - protected $Name = 'StoNits'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sto Nits'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/StripByteCounts.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/StripByteCounts.php deleted file mode 100644 index c4265481b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/StripByteCounts.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StripByteCounts extends AbstractTag -{ - - protected $Id = 279; - - protected $Name = 'StripByteCounts'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Strip Byte Counts'; - - protected $local_g1 = 'ExifIFD'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/StripOffsets.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/StripOffsets.php deleted file mode 100644 index 782aace88..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/StripOffsets.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StripOffsets extends AbstractTag -{ - - protected $Id = 273; - - protected $Name = 'StripOffsets'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Strip Offsets'; - - protected $local_g1 = 'ExifIFD'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/StripRowCounts.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/StripRowCounts.php deleted file mode 100644 index 8a809abd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/StripRowCounts.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StripRowCounts extends AbstractTag -{ - - protected $Id = 559; - - protected $Name = 'StripRowCounts'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Strip Row Counts'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTime.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTime.php deleted file mode 100644 index 1d239f150..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubSecTime extends AbstractTag -{ - - protected $Id = 37520; - - protected $Name = 'SubSecTime'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sub Sec Time'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTimeDigitized.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTimeDigitized.php deleted file mode 100644 index 220a2ae92..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTimeDigitized.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubSecTimeDigitized extends AbstractTag -{ - - protected $Id = 37522; - - protected $Name = 'SubSecTimeDigitized'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sub Sec Time Digitized'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTimeOriginal.php deleted file mode 100644 index 53d210caf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubSecTimeOriginal.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubSecTimeOriginal extends AbstractTag -{ - - protected $Id = 37521; - - protected $Name = 'SubSecTimeOriginal'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sub Sec Time Original'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubTileBlockSize.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubTileBlockSize.php deleted file mode 100644 index db2b74082..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubTileBlockSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubTileBlockSize extends AbstractTag -{ - - protected $Id = 50974; - - protected $Name = 'SubTileBlockSize'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub Tile Block Size'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectArea.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectArea.php deleted file mode 100644 index 4e7b0de08..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectArea.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectArea extends AbstractTag -{ - - protected $Id = 37396; - - protected $Name = 'SubjectArea'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Subject Area'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectDistance.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectDistance.php deleted file mode 100644 index 4433c07dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectDistance.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistance extends AbstractTag -{ - - protected $Id = 37382; - - protected $Name = 'SubjectDistance'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Subject Distance'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectDistanceRange.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectDistanceRange.php deleted file mode 100644 index e259a3068..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectDistanceRange.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistanceRange extends AbstractTag -{ - - protected $Id = 41996; - - protected $Name = 'SubjectDistanceRange'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Subject Distance Range'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Macro', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Close', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Distant', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectLocation.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectLocation.php deleted file mode 100644 index ca3fd0459..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/SubjectLocation.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectLocation extends AbstractTag -{ - - protected $Id = 41492; - - protected $Name = 'SubjectLocation'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Subject Location'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/T4Options.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/T4Options.php deleted file mode 100644 index b1d110540..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/T4Options.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class T4Options extends AbstractTag -{ - - protected $Id = 292; - - protected $Name = 'T4Options'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'T4 Options'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => '2-Dimensional encoding', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Uncompressed', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Fill bits added', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/T6Options.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/T6Options.php deleted file mode 100644 index 921b48e78..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/T6Options.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class T6Options extends AbstractTag -{ - - protected $Id = 293; - - protected $Name = 'T6Options'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'T6 Options'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Uncompressed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/T82Options.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/T82Options.php deleted file mode 100644 index 2fe7f687f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/T82Options.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class T82Options extends AbstractTag -{ - - protected $Id = 435; - - protected $Name = 'T82Options'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'T82 Options'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/T88Options.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/T88Options.php deleted file mode 100644 index 75cdbf80b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/T88Options.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class T88Options extends AbstractTag -{ - - protected $Id = 34690; - - protected $Name = 'T88Options'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'T88 Options'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TIFFEPStandardID.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TIFFEPStandardID.php deleted file mode 100644 index eaf99ca9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TIFFEPStandardID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TIFFEPStandardID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TIFF-EPStandardID'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TIFF-EP Standard ID'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TIFFFXExtensions.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TIFFFXExtensions.php deleted file mode 100644 index e653d0c30..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TIFFFXExtensions.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TIFFFXExtensions extends AbstractTag -{ - - protected $Id = 34687; - - protected $Name = 'TIFF_FXExtensions'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TIFF FX Extensions'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Resolution/Image Width', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'N Layer Profile M', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shared Data', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'B&W JBIG2', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'JBIG2 Profile M', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TargetPrinter.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TargetPrinter.php deleted file mode 100644 index 3ac57d1e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TargetPrinter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetPrinter extends AbstractTag -{ - - protected $Id = 337; - - protected $Name = 'TargetPrinter'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Printer'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TileByteCounts.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TileByteCounts.php deleted file mode 100644 index 38964ffd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TileByteCounts.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TileByteCounts extends AbstractTag -{ - - protected $Id = 325; - - protected $Name = 'TileByteCounts'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tile Byte Counts'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TileDepth.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TileDepth.php deleted file mode 100644 index af54620fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TileDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TileDepth extends AbstractTag -{ - - protected $Id = 32998; - - protected $Name = 'TileDepth'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tile Depth'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TileOffsets.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TileOffsets.php deleted file mode 100644 index 7f8d2df77..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TileOffsets.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TileOffsets extends AbstractTag -{ - - protected $Id = 324; - - protected $Name = 'TileOffsets'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tile Offsets'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TimeZoneOffset.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TimeZoneOffset.php deleted file mode 100644 index fb56f3d1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TimeZoneOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeZoneOffset extends AbstractTag -{ - - protected $Id = 34858; - - protected $Name = 'TimeZoneOffset'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Time Zone Offset'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TransferRange.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TransferRange.php deleted file mode 100644 index b9654da39..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TransferRange.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransferRange extends AbstractTag -{ - - protected $Id = 342; - - protected $Name = 'TransferRange'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transfer Range'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Transformation.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Transformation.php deleted file mode 100644 index c1c7157d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Transformation.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Transformation extends AbstractTag -{ - - protected $Id = 48130; - - protected $Name = 'Transformation'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transformation'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Mirror vertical', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mirror horizontal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Rotate 90 CW', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Mirror horizontal and rotate 90 CW', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Mirror horizontal and rotate 270 CW', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TransparencyIndicator.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TransparencyIndicator.php deleted file mode 100644 index 2b8f29ca5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TransparencyIndicator.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransparencyIndicator extends AbstractTag -{ - - protected $Id = 34028; - - protected $Name = 'TransparencyIndicator'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transparency Indicator'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/TrapIndicator.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/TrapIndicator.php deleted file mode 100644 index 56bda8e2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/TrapIndicator.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrapIndicator extends AbstractTag -{ - - protected $Id = 34031; - - protected $Name = 'TrapIndicator'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trap Indicator'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC1Tag.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC1Tag.php deleted file mode 100644 index b8e8f96ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC1Tag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UIC1Tag extends AbstractTag -{ - - protected $Id = 33628; - - protected $Name = 'UIC1Tag'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UIC1 Tag'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC2Tag.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC2Tag.php deleted file mode 100644 index de5079d5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC2Tag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UIC2Tag extends AbstractTag -{ - - protected $Id = 33629; - - protected $Name = 'UIC2Tag'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UIC2 Tag'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC3Tag.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC3Tag.php deleted file mode 100644 index 97f43207e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC3Tag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UIC3Tag extends AbstractTag -{ - - protected $Id = 33630; - - protected $Name = 'UIC3Tag'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UIC3 Tag'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC4Tag.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC4Tag.php deleted file mode 100644 index 65379dce1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/UIC4Tag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UIC4Tag extends AbstractTag -{ - - protected $Id = 33631; - - protected $Name = 'UIC4Tag'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UIC4 Tag'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/USPTOMiscellaneous.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/USPTOMiscellaneous.php deleted file mode 100644 index 7c8b4f901..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/USPTOMiscellaneous.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class USPTOMiscellaneous extends AbstractTag -{ - - protected $Id = 999; - - protected $Name = 'USPTOMiscellaneous'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'USPTO Miscellaneous'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/USPTOOriginalContentType.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/USPTOOriginalContentType.php deleted file mode 100644 index 4b4d9b264..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/USPTOOriginalContentType.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class USPTOOriginalContentType extends AbstractTag -{ - - protected $Id = 50560; - - protected $Name = 'USPTOOriginalContentType'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'USPTO Original Content Type'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Text or Drawing', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Grayscale', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Color', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/Uncompressed.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/Uncompressed.php deleted file mode 100644 index 77d5bd635..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/Uncompressed.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Uncompressed extends AbstractTag -{ - - protected $Id = 48131; - - protected $Name = 'Uncompressed'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Uncompressed'; - - protected $local_g1 = 'ExifIFD'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/UserComment.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/UserComment.php deleted file mode 100644 index 3227c73b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/UserComment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserComment extends AbstractTag -{ - - protected $Id = 37510; - - protected $Name = 'UserComment'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'User Comment'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/VersionYear.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/VersionYear.php deleted file mode 100644 index 69d5c9059..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/VersionYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionYear extends AbstractTag -{ - - protected $Id = 404; - - protected $Name = 'VersionYear'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version Year'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/WBGRGBLevels.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/WBGRGBLevels.php deleted file mode 100644 index 6b2928c0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/WBGRGBLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevels extends AbstractTag -{ - - protected $Id = 34306; - - protected $Name = 'WB_GRGBLevels'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangAnnotation.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/WangAnnotation.php deleted file mode 100644 index 2256eb2f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WangAnnotation extends AbstractTag -{ - - protected $Id = 32932; - - protected $Name = 'WangAnnotation'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wang Annotation'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag1.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag1.php deleted file mode 100644 index 48df77cb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WangTag1 extends AbstractTag -{ - - protected $Id = 32931; - - protected $Name = 'WangTag1'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wang Tag 1'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag3.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag3.php deleted file mode 100644 index 61d1c876a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WangTag3 extends AbstractTag -{ - - protected $Id = 32933; - - protected $Name = 'WangTag3'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wang Tag 3'; - - protected $local_g1 = 'ExifIFD'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag4.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag4.php deleted file mode 100644 index c49d30568..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/WangTag4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WangTag4 extends AbstractTag -{ - - protected $Id = 32934; - - protected $Name = 'WangTag4'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wang Tag 4'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/WhiteBalance.php deleted file mode 100644 index b787cacf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/WhiteBalance.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $local_g1 = 'ExifIFD'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - - protected $flag_Avoid = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/WidthResolution.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/WidthResolution.php deleted file mode 100644 index 75050ab61..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/WidthResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WidthResolution extends AbstractTag -{ - - protected $Id = 48258; - - protected $Name = 'WidthResolution'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Width Resolution'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/XClipPathUnits.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/XClipPathUnits.php deleted file mode 100644 index c807c14b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/XClipPathUnits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XClipPathUnits extends AbstractTag -{ - - protected $Id = 344; - - protected $Name = 'XClipPathUnits'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Clip Path Units'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/XPDIPXML.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/XPDIPXML.php deleted file mode 100644 index 1195efffa..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/XPDIPXML.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XPDIPXML extends AbstractTag -{ - - protected $Id = 18247; - - protected $Name = 'XP_DIP_XML'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'XP DIP XML'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/YClipPathUnits.php b/lib/PHPExiftool/Driver/Tag/ExifIFD/YClipPathUnits.php deleted file mode 100644 index fb33f1f0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/YClipPathUnits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YClipPathUnits extends AbstractTag -{ - - protected $Id = 345; - - protected $Name = 'YClipPathUnits'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'ExifIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Y Clip Path Units'; - - protected $local_g1 = 'ExifIFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifTool/Error.php b/lib/PHPExiftool/Driver/Tag/ExifTool/Error.php deleted file mode 100644 index 4a09a6c20..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifTool/Error.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifTool; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Error extends AbstractTag -{ - - protected $Id = 'Error'; - - protected $Name = 'Error'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ExifTool'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Error'; - - protected $local_g0 = 'ExifTool'; - - protected $local_g1 = 'ExifTool'; - - protected $local_g2 = 'ExifTool'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifTool/ExifToolVersion.php b/lib/PHPExiftool/Driver/Tag/ExifTool/ExifToolVersion.php deleted file mode 100644 index c10df3a86..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifTool/ExifToolVersion.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifTool; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifToolVersion extends AbstractTag -{ - - protected $Id = 'ExifToolVersion'; - - protected $Name = 'ExifToolVersion'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ExifTool'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ExifTool Version Number'; - - protected $local_g0 = 'ExifTool'; - - protected $local_g1 = 'ExifTool'; - - protected $local_g2 = 'ExifTool'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifTool/FileSequence.php b/lib/PHPExiftool/Driver/Tag/ExifTool/FileSequence.php deleted file mode 100644 index 01555a738..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifTool/FileSequence.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifTool; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSequence extends AbstractTag -{ - - protected $Id = 'FileSequence'; - - protected $Name = 'FileSequence'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ExifTool'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Sequence'; - - protected $local_g0 = 'ExifTool'; - - protected $local_g1 = 'ExifTool'; - - protected $local_g2 = 'Other'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifTool/NewGUID.php b/lib/PHPExiftool/Driver/Tag/ExifTool/NewGUID.php deleted file mode 100644 index f6833a90d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifTool/NewGUID.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifTool; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NewGUID extends AbstractTag -{ - - protected $Id = 'NewGUID'; - - protected $Name = 'NewGUID'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ExifTool'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'New GUID'; - - protected $local_g0 = 'ExifTool'; - - protected $local_g1 = 'ExifTool'; - - protected $local_g2 = 'Other'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifTool/Now.php b/lib/PHPExiftool/Driver/Tag/ExifTool/Now.php deleted file mode 100644 index 744a3d536..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifTool/Now.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifTool; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Now extends AbstractTag -{ - - protected $Id = 'Now'; - - protected $Name = 'Now'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ExifTool'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Now'; - - protected $local_g0 = 'ExifTool'; - - protected $local_g1 = 'ExifTool'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifTool/ProcessingTime.php b/lib/PHPExiftool/Driver/Tag/ExifTool/ProcessingTime.php deleted file mode 100644 index e7fbc02cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifTool/ProcessingTime.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifTool; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcessingTime extends AbstractTag -{ - - protected $Id = 'ProcessingTime'; - - protected $Name = 'ProcessingTime'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ExifTool'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Processing Time'; - - protected $local_g0 = 'ExifTool'; - - protected $local_g1 = 'ExifTool'; - - protected $local_g2 = 'Other'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifTool/Warning.php b/lib/PHPExiftool/Driver/Tag/ExifTool/Warning.php deleted file mode 100644 index d963dbfa5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ExifTool/Warning.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ExifTool; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Warning extends AbstractTag -{ - - protected $Id = 'Warning'; - - protected $Name = 'Warning'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ExifTool'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Warning'; - - protected $local_g0 = 'ExifTool'; - - protected $local_g1 = 'ExifTool'; - - protected $local_g2 = 'ExifTool'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/Application.php b/lib/PHPExiftool/Driver/Tag/FLAC/Application.php deleted file mode 100644 index 3ae1e3840..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/Application.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Application extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Application'; - - protected $FullName = 'FLAC::Main'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/FLAC/BitsPerSample.php deleted file mode 100644 index d92812e63..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 'Bit103-107'; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/BlockSizeMax.php b/lib/PHPExiftool/Driver/Tag/FLAC/BlockSizeMax.php deleted file mode 100644 index 0d891cc99..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/BlockSizeMax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockSizeMax extends AbstractTag -{ - - protected $Id = 'Bit016-031'; - - protected $Name = 'BlockSizeMax'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Size Max'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/BlockSizeMin.php b/lib/PHPExiftool/Driver/Tag/FLAC/BlockSizeMin.php deleted file mode 100644 index 6a5cb3b41..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/BlockSizeMin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockSizeMin extends AbstractTag -{ - - protected $Id = 'Bit000-015'; - - protected $Name = 'BlockSizeMin'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Size Min'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/Channels.php b/lib/PHPExiftool/Driver/Tag/FLAC/Channels.php deleted file mode 100644 index 829d47492..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 'Bit100-102'; - - protected $Name = 'Channels'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/CueSheet.php b/lib/PHPExiftool/Driver/Tag/FLAC/CueSheet.php deleted file mode 100644 index 3bc5e797e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/CueSheet.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueSheet extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'CueSheet'; - - protected $FullName = 'FLAC::Main'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cue Sheet'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/FrameSizeMax.php b/lib/PHPExiftool/Driver/Tag/FLAC/FrameSizeMax.php deleted file mode 100644 index cf2da46ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/FrameSizeMax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSizeMax extends AbstractTag -{ - - protected $Id = 'Bit056-079'; - - protected $Name = 'FrameSizeMax'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Size Max'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/FrameSizeMin.php b/lib/PHPExiftool/Driver/Tag/FLAC/FrameSizeMin.php deleted file mode 100644 index 184544e4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/FrameSizeMin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSizeMin extends AbstractTag -{ - - protected $Id = 'Bit032-055'; - - protected $Name = 'FrameSizeMin'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Size Min'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/Padding.php b/lib/PHPExiftool/Driver/Tag/FLAC/Padding.php deleted file mode 100644 index 43a55e354..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/Padding.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Padding extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Padding'; - - protected $FullName = 'FLAC::Main'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Padding'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/Picture.php b/lib/PHPExiftool/Driver/Tag/FLAC/Picture.php deleted file mode 100644 index d55f14ea2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/Picture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Picture extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Picture'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Picture'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureBitsPerPixel.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureBitsPerPixel.php deleted file mode 100644 index fc4f46c32..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureBitsPerPixel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureBitsPerPixel extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PictureBitsPerPixel'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Picture Bits Per Pixel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureDescription.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureDescription.php deleted file mode 100644 index a0fb8856d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureDescription extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PictureDescription'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'var_pstr32'; - - protected $Writable = false; - - protected $Description = 'Picture Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureHeight.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureHeight.php deleted file mode 100644 index b6165c6b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureHeight extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PictureHeight'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Picture Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureIndexedColors.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureIndexedColors.php deleted file mode 100644 index c18931d54..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureIndexedColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureIndexedColors extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PictureIndexedColors'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Picture Indexed Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureLength.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureLength.php deleted file mode 100644 index 4d16c711f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureLength extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'PictureLength'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Picture Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureMIMEType.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureMIMEType.php deleted file mode 100644 index 7c259332f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureMIMEType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMIMEType extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PictureMIMEType'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'var_pstr32'; - - protected $Writable = false; - - protected $Description = 'Picture MIME Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureType.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureType.php deleted file mode 100644 index 8b31d7681..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureType.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PictureType'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Picture Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Other', - ), - 1 => array( - 'Id' => 1, - 'Label' => '32x32 PNG Icon', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Other Icon', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Front Cover', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Back Cover', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Leaflet', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Media', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lead Artist', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Artist', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Conductor', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Band', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Composer', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Lyricist', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Recording Studio or Location', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Recording Session', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Performance', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Capture from Movie or Video', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Bright(ly) Colored Fish', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Illustration', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Band Logo', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Publisher Logo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/PictureWidth.php b/lib/PHPExiftool/Driver/Tag/FLAC/PictureWidth.php deleted file mode 100644 index 910bf7a9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/PictureWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureWidth extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PictureWidth'; - - protected $FullName = 'FLAC::Picture'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Picture Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/SampleRate.php b/lib/PHPExiftool/Driver/Tag/FLAC/SampleRate.php deleted file mode 100644 index b1d99ae45..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 'Bit080-099'; - - protected $Name = 'SampleRate'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/SeekTable.php b/lib/PHPExiftool/Driver/Tag/FLAC/SeekTable.php deleted file mode 100644 index 394f0439a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/SeekTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeekTable extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'SeekTable'; - - protected $FullName = 'FLAC::Main'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Seek Table'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLAC/TotalSamples.php b/lib/PHPExiftool/Driver/Tag/FLAC/TotalSamples.php deleted file mode 100644 index 45ba89571..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLAC/TotalSamples.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalSamples extends AbstractTag -{ - - protected $Id = 'Bit108-143'; - - protected $Name = 'TotalSamples'; - - protected $FullName = 'FLAC::StreamInfo'; - - protected $GroupName = 'FLAC'; - - protected $g0 = 'FLAC'; - - protected $g1 = 'FLAC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Samples'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/AboveColor.php b/lib/PHPExiftool/Driver/Tag/FLIR/AboveColor.php deleted file mode 100644 index 462504aa4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/AboveColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AboveColor extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AboveColor'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Above Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ActualScaleMax.php b/lib/PHPExiftool/Driver/Tag/FLIR/ActualScaleMax.php deleted file mode 100644 index 9b064cc64..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ActualScaleMax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualScaleMax extends AbstractTag -{ - - protected $Id = 696; - - protected $Name = 'ActualScaleMax'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Actual Scale Max'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ActualScaleMin.php b/lib/PHPExiftool/Driver/Tag/FLIR/ActualScaleMin.php deleted file mode 100644 index c978ce1cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ActualScaleMin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualScaleMin extends AbstractTag -{ - - protected $Id = 692; - - protected $Name = 'ActualScaleMin'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Actual Scale Min'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTemperature.php b/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTemperature.php deleted file mode 100644 index 436276391..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AtmosphericTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AtmosphericTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Atmospheric Temperature'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransAlpha1.php b/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransAlpha1.php deleted file mode 100644 index c9d1db612..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransAlpha1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AtmosphericTransAlpha1 extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'AtmosphericTransAlpha1'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Atmospheric Trans Alpha 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransAlpha2.php b/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransAlpha2.php deleted file mode 100644 index 10cd52860..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransAlpha2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AtmosphericTransAlpha2 extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'AtmosphericTransAlpha2'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Atmospheric Trans Alpha 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransBeta1.php b/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransBeta1.php deleted file mode 100644 index ae004f4b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransBeta1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AtmosphericTransBeta1 extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'AtmosphericTransBeta1'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Atmospheric Trans Beta 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransBeta2.php b/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransBeta2.php deleted file mode 100644 index ee39029ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransBeta2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AtmosphericTransBeta2 extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'AtmosphericTransBeta2'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Atmospheric Trans Beta 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransX.php b/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransX.php deleted file mode 100644 index bbfcb00a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/AtmosphericTransX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AtmosphericTransX extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'AtmosphericTransX'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Atmospheric Trans X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/BAHPVer.php b/lib/PHPExiftool/Driver/Tag/FLIR/BAHPVer.php deleted file mode 100644 index 03af15df3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/BAHPVer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BAHPVer extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'BAHPVer'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'BAHP Ver'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/BALPVer.php b/lib/PHPExiftool/Driver/Tag/FLIR/BALPVer.php deleted file mode 100644 index 12e79a822..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/BALPVer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BALPVer extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'BALPVer'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'BALP Ver'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/BAVPVer.php b/lib/PHPExiftool/Driver/Tag/FLIR/BAVPVer.php deleted file mode 100644 index e7b75223a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/BAVPVer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BAVPVer extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'BAVPVer'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'BAVP Ver'; - - protected $flag_Permanent = true; - - protected $Index = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Battery.php b/lib/PHPExiftool/Driver/Tag/FLIR/Battery.php deleted file mode 100644 index 9b1cdf598..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Battery.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Battery extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Battery'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Battery'; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/BelowColor.php b/lib/PHPExiftool/Driver/Tag/FLIR/BelowColor.php deleted file mode 100644 index 46f60b83b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/BelowColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BelowColor extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'BelowColor'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Below Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CalculatedScaleMax.php b/lib/PHPExiftool/Driver/Tag/FLIR/CalculatedScaleMax.php deleted file mode 100644 index 6479bfef8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CalculatedScaleMax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedScaleMax extends AbstractTag -{ - - protected $Id = 688; - - protected $Name = 'CalculatedScaleMax'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Calculated Scale Max'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CalculatedScaleMin.php b/lib/PHPExiftool/Driver/Tag/FLIR/CalculatedScaleMin.php deleted file mode 100644 index 2be4a3990..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CalculatedScaleMin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalculatedScaleMin extends AbstractTag -{ - - protected $Id = 684; - - protected $Name = 'CalculatedScaleMin'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Calculated Scale Min'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CamCore.php b/lib/PHPExiftool/Driver/Tag/FLIR/CamCore.php deleted file mode 100644 index 9636cadd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CamCore.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CamCore extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CamCore'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Cam Core'; - - protected $flag_Permanent = true; - - protected $Index = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraInfoByteOrder.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraInfoByteOrder.php deleted file mode 100644 index 28da79a7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraInfoByteOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraInfoByteOrder extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CameraInfoByteOrder'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Camera Info Byte Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraModel.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraModel.php deleted file mode 100644 index cb95d961b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraModel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraModel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraModel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Model'; - - protected $MaxLength = 32; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraPartNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraPartNumber.php deleted file mode 100644 index 973a16afc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraPartNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraPartNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraPartNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Part Number'; - - protected $MaxLength = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraScaleMax.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraScaleMax.php deleted file mode 100644 index 5a66f59b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraScaleMax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraScaleMax extends AbstractTag -{ - - protected $Id = 680; - - protected $Name = 'CameraScaleMax'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Camera Scale Max'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraScaleMin.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraScaleMin.php deleted file mode 100644 index f164dd732..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraScaleMin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraScaleMin extends AbstractTag -{ - - protected $Id = 676; - - protected $Name = 'CameraScaleMin'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Camera Scale Min'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraSerialNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraSerialNumber.php deleted file mode 100644 index 381fa770c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraSerialNumber.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraSerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraSerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Serial Number'; - - protected $MaxLength = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraSoftware.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraSoftware.php deleted file mode 100644 index abcc1a68b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraSoftware.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraSoftware extends AbstractTag -{ - - protected $Id = 276; - - protected $Name = 'CameraSoftware'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Software'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraTemperatureRangeMax.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraTemperatureRangeMax.php deleted file mode 100644 index 1278ddb68..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraTemperatureRangeMax.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperatureRangeMax extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraTemperatureRangeMax'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Camera Temperature Range Max'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CameraTemperatureRangeMin.php b/lib/PHPExiftool/Driver/Tag/FLIR/CameraTemperatureRangeMin.php deleted file mode 100644 index 4f606be34..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CameraTemperatureRangeMin.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperatureRangeMin extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraTemperatureRangeMin'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Camera Temperature Range Min'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapByteOrder.php b/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapByteOrder.php deleted file mode 100644 index 2ebeb31cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapByteOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoarseMapByteOrder extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CoarseMapByteOrder'; - - protected $FullName = 'FLIR::CoarseData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Coarse Map Byte Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImage.php b/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImage.php deleted file mode 100644 index 5f21c8e10..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoarseMapImage extends AbstractTag -{ - - protected $Id = '16.1'; - - protected $Name = 'CoarseMapImage'; - - protected $FullName = 'FLIR::CoarseData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Coarse Map Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageHeight.php b/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageHeight.php deleted file mode 100644 index 5d9dee8d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoarseMapImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CoarseMapImageHeight'; - - protected $FullName = 'FLIR::CoarseData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Coarse Map Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageType.php b/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageType.php deleted file mode 100644 index 91fee4179..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoarseMapImageType extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'CoarseMapImageType'; - - protected $FullName = 'FLIR::CoarseData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Coarse Map Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageWidth.php b/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageWidth.php deleted file mode 100644 index b62446cd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CoarseMapImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoarseMapImageWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CoarseMapImageWidth'; - - protected $FullName = 'FLIR::CoarseData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Coarse Map Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ComputedAtmosphericTrans.php b/lib/PHPExiftool/Driver/Tag/FLIR/ComputedAtmosphericTrans.php deleted file mode 100644 index 85e0dae31..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ComputedAtmosphericTrans.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputedAtmosphericTrans extends AbstractTag -{ - - protected $Id = 500; - - protected $Name = 'ComputedAtmosphericTrans'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Computed Atmospheric Trans'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/CreatorSoftware.php b/lib/PHPExiftool/Driver/Tag/FLIR/CreatorSoftware.php deleted file mode 100644 index 6ee5d41b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/CreatorSoftware.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorSoftware extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CreatorSoftware'; - - protected $FullName = 'FLIR::Header'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Creator Software'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/DateTimeGenerated.php b/lib/PHPExiftool/Driver/Tag/FLIR/DateTimeGenerated.php deleted file mode 100644 index 3a6f98d4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/DateTimeGenerated.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeGenerated extends AbstractTag -{ - - protected $Id = 'Generated'; - - protected $Name = 'DateTimeGenerated'; - - protected $FullName = 'FLIR::ParamInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Generated'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/FLIR/DateTimeOriginal.php deleted file mode 100644 index ba10d0b2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/DateTimeOriginal.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Detector.php b/lib/PHPExiftool/Driver/Tag/FLIR/Detector.php deleted file mode 100644 index 7b1e0bb3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Detector.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Detector extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Detector'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Detector'; - - protected $flag_Permanent = true; - - protected $Index = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/DetectorBoard.php b/lib/PHPExiftool/Driver/Tag/FLIR/DetectorBoard.php deleted file mode 100644 index ce34601db..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/DetectorBoard.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DetectorBoard extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'DetectorBoard'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Detector Board'; - - protected $flag_Permanent = true; - - protected $Index = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedAudioFile.php b/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedAudioFile.php deleted file mode 100644 index 9f0881d44..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedAudioFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedAudioFile extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'EmbeddedAudioFile'; - - protected $FullName = 'FLIR::FFF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded Audio File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImage.php b/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImage.php deleted file mode 100644 index 4eec336df..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImage extends AbstractTag -{ - - protected $Id = '16.1'; - - protected $Name = 'EmbeddedImage'; - - protected $FullName = 'FLIR::EmbeddedImage'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Embedded Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageByteOrder.php b/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageByteOrder.php deleted file mode 100644 index 7b9004e44..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageByteOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageByteOrder extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'EmbeddedImageByteOrder'; - - protected $FullName = 'FLIR::EmbeddedImage'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Byte Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageHeight.php b/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageHeight.php deleted file mode 100644 index 0d842777d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'EmbeddedImageHeight'; - - protected $FullName = 'FLIR::EmbeddedImage'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageType.php b/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageType.php deleted file mode 100644 index a7a2a3eda..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageType extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'EmbeddedImageType'; - - protected $FullName = 'FLIR::EmbeddedImage'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Type'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageWidth.php b/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageWidth.php deleted file mode 100644 index 86de52e1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/EmbeddedImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'EmbeddedImageWidth'; - - protected $FullName = 'FLIR::EmbeddedImage'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Emissivity.php b/lib/PHPExiftool/Driver/Tag/FLIR/Emissivity.php deleted file mode 100644 index 345d18ab6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Emissivity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Emissivity extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Emissivity'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Emissivity'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/EstimatedAtmosphericTrans.php b/lib/PHPExiftool/Driver/Tag/FLIR/EstimatedAtmosphericTrans.php deleted file mode 100644 index d1f9ce93a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/EstimatedAtmosphericTrans.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EstimatedAtmosphericTrans extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EstimatedAtmosphericTrans'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Estimated Atmospheric Trans'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ExternalTriggerCount.php b/lib/PHPExiftool/Driver/Tag/FLIR/ExternalTriggerCount.php deleted file mode 100644 index a4d768c98..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ExternalTriggerCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalTriggerCount extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'ExternalTriggerCount'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'External Trigger Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FLIRUnknown.php b/lib/PHPExiftool/Driver/Tag/FLIR/FLIRUnknown.php deleted file mode 100644 index 5dee95454..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FLIRUnknown.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FLIRUnknown extends AbstractTag -{ - - protected $Id = 'uuid'; - - protected $Name = 'FLIR_Unknown'; - - protected $FullName = 'FLIR::UserData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'FLIR Unknown'; - - protected $Index = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FPFVersion.php b/lib/PHPExiftool/Driver/Tag/FLIR/FPFVersion.php deleted file mode 100644 index e1f5cbb11..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FPFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FPFVersion extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'FPFVersion'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'FPF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FieldOfView.php b/lib/PHPExiftool/Driver/Tag/FLIR/FieldOfView.php deleted file mode 100644 index b87de3743..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FieldOfView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfView extends AbstractTag -{ - - protected $Id = 436; - - protected $Name = 'FieldOfView'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Field Of View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FilterModel.php b/lib/PHPExiftool/Driver/Tag/FLIR/FilterModel.php deleted file mode 100644 index 86d576bca..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FilterModel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterModel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilterModel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Filter Model'; - - protected $MaxLength = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FilterPartNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/FilterPartNumber.php deleted file mode 100644 index 6f1ecbfb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FilterPartNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterPartNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilterPartNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Filter Part Number'; - - protected $MaxLength = 32; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FilterSerialNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/FilterSerialNumber.php deleted file mode 100644 index 366ce482f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FilterSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterSerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilterSerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Filter Serial Number'; - - protected $MaxLength = 32; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FocusDistance.php b/lib/PHPExiftool/Driver/Tag/FLIR/FocusDistance.php deleted file mode 100644 index 37e41b974..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FocusDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistance extends AbstractTag -{ - - protected $Id = 1116; - - protected $Name = 'FocusDistance'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Focus Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/FocusStepCount.php b/lib/PHPExiftool/Driver/Tag/FLIR/FocusStepCount.php deleted file mode 100644 index e8d419283..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/FocusStepCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusStepCount extends AbstractTag -{ - - protected $Id = 912; - - protected $Name = 'FocusStepCount'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Focus Step Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GIDCVer.php b/lib/PHPExiftool/Driver/Tag/FLIR/GIDCVer.php deleted file mode 100644 index 8e2c4ca49..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GIDCVer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIDCVer extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GIDCVer'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'GIDC Ver'; - - protected $flag_Permanent = true; - - protected $Index = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GIDPVer.php b/lib/PHPExiftool/Driver/Tag/FLIR/GIDPVer.php deleted file mode 100644 index b54cd1218..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GIDPVer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIDPVer extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GIDPVer'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'GIDP Ver'; - - protected $flag_Permanent = true; - - protected $Index = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GIPCCPLD.php b/lib/PHPExiftool/Driver/Tag/FLIR/GIPCCPLD.php deleted file mode 100644 index e6ef511ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GIPCCPLD.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIPCCPLD extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GIPC_CPLD'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'GIPC CPLD'; - - protected $flag_Permanent = true; - - protected $Index = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GIPCVer.php b/lib/PHPExiftool/Driver/Tag/FLIR/GIPCVer.php deleted file mode 100644 index 3ec296603..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GIPCVer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIPCVer extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GIPCVer'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'GIPC Ver'; - - protected $flag_Permanent = true; - - protected $Index = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GIXIVer.php b/lib/PHPExiftool/Driver/Tag/FLIR/GIXIVer.php deleted file mode 100644 index 233ddb396..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GIXIVer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIXIVer extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GIXIVer'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'GIXI Ver'; - - protected $flag_Permanent = true; - - protected $Index = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GPSAltitude.php b/lib/PHPExiftool/Driver/Tag/FLIR/GPSAltitude.php deleted file mode 100644 index 42e56a37b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GPSAltitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitude extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'GPSAltitude'; - - protected $FullName = 'FLIR::GPS_UUID'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Location'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/FLIR/GPSLatitude.php deleted file mode 100644 index a15ecc53f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GPSLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'FLIR::GPS_UUID'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Location'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/FLIR/GPSLongitude.php deleted file mode 100644 index c21234c5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GPSLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'FLIR::GPS_UUID'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Location'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GPSMapDatum.php b/lib/PHPExiftool/Driver/Tag/FLIR/GPSMapDatum.php deleted file mode 100644 index abe34d5ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GPSMapDatum.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMapDatum extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'GPSMapDatum'; - - protected $FullName = 'FLIR::GPSInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Map Datum'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapByteOrder.php b/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapByteOrder.php deleted file mode 100644 index 8dd1ac2d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapByteOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainDeadMapByteOrder extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'GainDeadMapByteOrder'; - - protected $FullName = 'FLIR::GainDeadData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Gain Dead Map Byte Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImage.php b/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImage.php deleted file mode 100644 index c1712d054..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainDeadMapImage extends AbstractTag -{ - - protected $Id = '16.1'; - - protected $Name = 'GainDeadMapImage'; - - protected $FullName = 'FLIR::GainDeadData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Gain Dead Map Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageHeight.php b/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageHeight.php deleted file mode 100644 index a6892477f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainDeadMapImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'GainDeadMapImageHeight'; - - protected $FullName = 'FLIR::GainDeadData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Gain Dead Map Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageType.php b/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageType.php deleted file mode 100644 index cedb7a0f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainDeadMapImageType extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'GainDeadMapImageType'; - - protected $FullName = 'FLIR::GainDeadData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Gain Dead Map Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageWidth.php b/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageWidth.php deleted file mode 100644 index ce37e11b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/GainDeadMapImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainDeadMapImageWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'GainDeadMapImageWidth'; - - protected $FullName = 'FLIR::GainDeadData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Gain Dead Map Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/IRWindowTemperature.php b/lib/PHPExiftool/Driver/Tag/FLIR/IRWindowTemperature.php deleted file mode 100644 index ee8ebff9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/IRWindowTemperature.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IRWindowTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IRWindowTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'IR Window Temperature'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/IRWindowTransmission.php b/lib/PHPExiftool/Driver/Tag/FLIR/IRWindowTransmission.php deleted file mode 100644 index c717ada18..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/IRWindowTransmission.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IRWindowTransmission extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IRWindowTransmission'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'IR Window Transmission'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ImageDataOffset.php b/lib/PHPExiftool/Driver/Tag/FLIR/ImageDataOffset.php deleted file mode 100644 index 693f233a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ImageDataOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDataOffset extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'ImageDataOffset'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Data Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/FLIR/ImageHeight.php deleted file mode 100644 index 8d2a85fd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ImagePixelFormat.php b/lib/PHPExiftool/Driver/Tag/FLIR/ImagePixelFormat.php deleted file mode 100644 index 4f09db163..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ImagePixelFormat.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePixelFormat extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'ImagePixelFormat'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Pixel Format'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '2-byte short integer', - ), - 1 => array( - 'Id' => 1, - 'Label' => '4-byte long integer', - ), - 2 => array( - 'Id' => 2, - 'Label' => '4-byte float', - ), - 3 => array( - 'Id' => 3, - 'Label' => '8-byte double', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ImageTemperatureMax.php b/lib/PHPExiftool/Driver/Tag/FLIR/ImageTemperatureMax.php deleted file mode 100644 index 5176252fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ImageTemperatureMax.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageTemperatureMax extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ImageTemperatureMax'; - - protected $FullName = 'FLIR::Main'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Image Temperature Max'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ImageTemperatureMin.php b/lib/PHPExiftool/Driver/Tag/FLIR/ImageTemperatureMin.php deleted file mode 100644 index f43c9c60d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ImageTemperatureMin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageTemperatureMin extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ImageTemperatureMin'; - - protected $FullName = 'FLIR::Main'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Image Temperature Min'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ImageType.php b/lib/PHPExiftool/Driver/Tag/FLIR/ImageType.php deleted file mode 100644 index 4451040c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ImageType.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageType extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'ImageType'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Temperature', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Temperature Difference', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Object Signal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Object Signal Difference', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/FLIR/ImageWidth.php deleted file mode 100644 index 94d8cdfa4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Isotherm1Color.php b/lib/PHPExiftool/Driver/Tag/FLIR/Isotherm1Color.php deleted file mode 100644 index 300756c62..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Isotherm1Color.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Isotherm1Color extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'Isotherm1Color'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Isotherm 1 Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Isotherm2Color.php b/lib/PHPExiftool/Driver/Tag/FLIR/Isotherm2Color.php deleted file mode 100644 index b235ab020..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Isotherm2Color.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Isotherm2Color extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'Isotherm2Color'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Isotherm 2 Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Label0.php b/lib/PHPExiftool/Driver/Tag/FLIR/Label0.php deleted file mode 100644 index becdc663f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Label0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label0 extends AbstractTag -{ - - protected $Id = 'Label0'; - - protected $Name = 'Label0'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Label1.php b/lib/PHPExiftool/Driver/Tag/FLIR/Label1.php deleted file mode 100644 index c24469dac..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Label1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label1 extends AbstractTag -{ - - protected $Id = 'Label1'; - - protected $Name = 'Label1'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Label2.php b/lib/PHPExiftool/Driver/Tag/FLIR/Label2.php deleted file mode 100644 index 32fa8ef88..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Label2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label2 extends AbstractTag -{ - - protected $Id = 'Label2'; - - protected $Name = 'Label2'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Label3.php b/lib/PHPExiftool/Driver/Tag/FLIR/Label3.php deleted file mode 100644 index fea6e4e2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Label3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label3 extends AbstractTag -{ - - protected $Id = 'Label3'; - - protected $Name = 'Label3'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/LensModel.php b/lib/PHPExiftool/Driver/Tag/FLIR/LensModel.php deleted file mode 100644 index 8c7a6a03c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/LensModel.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensModel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Lens Model'; - - protected $MaxLength = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/LensPartNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/LensPartNumber.php deleted file mode 100644 index 12f663b56..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/LensPartNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensPartNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensPartNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Lens Part Number'; - - protected $MaxLength = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/LensSerialNumber.php deleted file mode 100644 index 19146d829..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/LensSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Lens Serial Number'; - - protected $MaxLength = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/MainBoard.php b/lib/PHPExiftool/Driver/Tag/FLIR/MainBoard.php deleted file mode 100644 index 535e94e39..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/MainBoard.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MainBoard extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'MainBoard'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Main Board'; - - protected $flag_Permanent = true; - - protected $Index = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Label.php b/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Label.php deleted file mode 100644 index fe3eb8423..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Label.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Meas1Label extends AbstractTag -{ - - protected $Id = 'Meas1Label'; - - protected $Name = 'Meas1Label'; - - protected $FullName = 'FLIR::MeasInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Meas 1 Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Params.php b/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Params.php deleted file mode 100644 index f38347eba..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Params.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Meas1Params extends AbstractTag -{ - - protected $Id = 'Meas1Params'; - - protected $Name = 'Meas1Params'; - - protected $FullName = 'FLIR::MeasInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Meas 1 Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Type.php b/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Type.php deleted file mode 100644 index 9c25d0862..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Meas1Type.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Meas1Type extends AbstractTag -{ - - protected $Id = 'Meas1Type'; - - protected $Name = 'Meas1Type'; - - protected $FullName = 'FLIR::MeasInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Meas 1 Type'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Spot', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Area', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Ellipse', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Line', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Endpoint', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Alarm', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Unused', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Difference', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ObjectDistance.php b/lib/PHPExiftool/Driver/Tag/FLIR/ObjectDistance.php deleted file mode 100644 index 88d771e57..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ObjectDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectDistance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ObjectDistance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Object Distance'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/OffsetX.php b/lib/PHPExiftool/Driver/Tag/FLIR/OffsetX.php deleted file mode 100644 index 13e4c9e4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/OffsetX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetX extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'OffsetX'; - - protected $FullName = 'FLIR::PiP'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Offset X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/OffsetY.php b/lib/PHPExiftool/Driver/Tag/FLIR/OffsetY.php deleted file mode 100644 index 8556207a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/OffsetY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetY extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'OffsetY'; - - protected $FullName = 'FLIR::PiP'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Offset Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Optics.php b/lib/PHPExiftool/Driver/Tag/FLIR/Optics.php deleted file mode 100644 index d20744140..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Optics.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Optics extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Optics'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Optics'; - - protected $flag_Permanent = true; - - protected $Index = 13; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/OverflowColor.php b/lib/PHPExiftool/Driver/Tag/FLIR/OverflowColor.php deleted file mode 100644 index e20f33ccc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/OverflowColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OverflowColor extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'OverflowColor'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Overflow Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaintByteOrder.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaintByteOrder.php deleted file mode 100644 index 1880638ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaintByteOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintByteOrder extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PaintByteOrder'; - - protected $FullName = 'FLIR::PaintData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Paint Byte Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImage.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaintImage.php deleted file mode 100644 index db89b2cd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintImage extends AbstractTag -{ - - protected $Id = '20.1'; - - protected $Name = 'PaintImage'; - - protected $FullName = 'FLIR::PaintData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Paint Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageHeight.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageHeight.php deleted file mode 100644 index 0b6771151..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintImageHeight extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PaintImageHeight'; - - protected $FullName = 'FLIR::PaintData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Paint Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageType.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageType.php deleted file mode 100644 index 86f47da77..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintImageType extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'PaintImageType'; - - protected $FullName = 'FLIR::PaintData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Paint Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageWidth.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageWidth.php deleted file mode 100644 index 988c833b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaintImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintImageWidth extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PaintImageWidth'; - - protected $FullName = 'FLIR::PaintData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Paint Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Palette.php b/lib/PHPExiftool/Driver/Tag/FLIR/Palette.php deleted file mode 100644 index 13da56835..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Palette.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Palette extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'Palette'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Palette'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteColors.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaletteColors.php deleted file mode 100644 index 78df661c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteColors extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PaletteColors'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Palette Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteFileName.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaletteFileName.php deleted file mode 100644 index 990879f6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteFileName extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'PaletteFileName'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Palette File Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteMethod.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaletteMethod.php deleted file mode 100644 index ee013d66c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteMethod extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'PaletteMethod'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Palette Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteName.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaletteName.php deleted file mode 100644 index 9f477cf78..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteName extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'PaletteName'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Palette Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteStretch.php b/lib/PHPExiftool/Driver/Tag/FLIR/PaletteStretch.php deleted file mode 100644 index c4cdde0d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PaletteStretch.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteStretch extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'PaletteStretch'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Palette Stretch'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Param0.php b/lib/PHPExiftool/Driver/Tag/FLIR/Param0.php deleted file mode 100644 index 6be01bbcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Param0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Param0 extends AbstractTag -{ - - protected $Id = 'Param0'; - - protected $Name = 'Param0'; - - protected $FullName = 'FLIR::ParamInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Param 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Param1.php b/lib/PHPExiftool/Driver/Tag/FLIR/Param1.php deleted file mode 100644 index dfbfaabb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Param1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Param1 extends AbstractTag -{ - - protected $Id = 'Param1'; - - protected $Name = 'Param1'; - - protected $FullName = 'FLIR::ParamInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Param 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Param2.php b/lib/PHPExiftool/Driver/Tag/FLIR/Param2.php deleted file mode 100644 index 799c86744..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Param2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Param2 extends AbstractTag -{ - - protected $Id = 'Param2'; - - protected $Name = 'Param2'; - - protected $FullName = 'FLIR::ParamInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Param 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Param3.php b/lib/PHPExiftool/Driver/Tag/FLIR/Param3.php deleted file mode 100644 index a12991c86..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Param3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Param3 extends AbstractTag -{ - - protected $Id = 'Param3'; - - protected $Name = 'Param3'; - - protected $FullName = 'FLIR::ParamInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Param 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PartNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/PartNumber.php deleted file mode 100644 index 8b4af8c8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PartNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartNumber extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PartNumber'; - - protected $FullName = 'FLIR::Parts'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Part Number'; - - protected $flag_Permanent = true; - - protected $Index = 14; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PeakSpectralSensitivity.php b/lib/PHPExiftool/Driver/Tag/FLIR/PeakSpectralSensitivity.php deleted file mode 100644 index 7b9802eb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PeakSpectralSensitivity.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakSpectralSensitivity extends AbstractTag -{ - - protected $Id = 'PeakSpectralSensitivity'; - - protected $Name = 'PeakSpectralSensitivity'; - - protected $FullName = 'Composite'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'Composite'; - - protected $g1 = 'Composite'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Spectral Sensitivity'; - - protected $local_g1 = 'FLIR'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PiPX1.php b/lib/PHPExiftool/Driver/Tag/FLIR/PiPX1.php deleted file mode 100644 index 34f6ea715..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PiPX1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PiPX1 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PiPX1'; - - protected $FullName = 'FLIR::PiP'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'PiP X1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PiPX2.php b/lib/PHPExiftool/Driver/Tag/FLIR/PiPX2.php deleted file mode 100644 index c4e39149b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PiPX2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PiPX2 extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PiPX2'; - - protected $FullName = 'FLIR::PiP'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'PiP X2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PiPY1.php b/lib/PHPExiftool/Driver/Tag/FLIR/PiPY1.php deleted file mode 100644 index 73b851ea2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PiPY1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PiPY1 extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PiPY1'; - - protected $FullName = 'FLIR::PiP'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'PiP Y1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PiPY2.php b/lib/PHPExiftool/Driver/Tag/FLIR/PiPY2.php deleted file mode 100644 index 57a5e166a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PiPY2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PiPY2 extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'PiPY2'; - - protected $FullName = 'FLIR::PiP'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'PiP Y2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckB.php b/lib/PHPExiftool/Driver/Tag/FLIR/PlanckB.php deleted file mode 100644 index 95f1209d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckB.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanckB extends AbstractTag -{ - - protected $Id = 92; - - protected $Name = 'PlanckB'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Planck B'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckF.php b/lib/PHPExiftool/Driver/Tag/FLIR/PlanckF.php deleted file mode 100644 index 758886750..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckF.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanckF extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'PlanckF'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Planck F'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckO.php b/lib/PHPExiftool/Driver/Tag/FLIR/PlanckO.php deleted file mode 100644 index af5c125b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckO.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanckO extends AbstractTag -{ - - protected $Id = 776; - - protected $Name = 'PlanckO'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Planck O'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckR1.php b/lib/PHPExiftool/Driver/Tag/FLIR/PlanckR1.php deleted file mode 100644 index 54d2eb2fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckR1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanckR1 extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'PlanckR1'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Planck R1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckR2.php b/lib/PHPExiftool/Driver/Tag/FLIR/PlanckR2.php deleted file mode 100644 index c83e11923..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/PlanckR2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanckR2 extends AbstractTag -{ - - protected $Id = 780; - - protected $Name = 'PlanckR2'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Planck R2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RawDataByteOrder.php b/lib/PHPExiftool/Driver/Tag/FLIR/RawDataByteOrder.php deleted file mode 100644 index 6d8e68397..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RawDataByteOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataByteOrder extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDataByteOrder'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Data Byte Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImage.php b/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImage.php deleted file mode 100644 index 44be99855..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawThermalImage extends AbstractTag -{ - - protected $Id = '16.1'; - - protected $Name = 'RawThermalImage'; - - protected $FullName = 'FLIR::RawData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Thermal Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageHeight.php b/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageHeight.php deleted file mode 100644 index e5dc1488e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawThermalImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'RawThermalImageHeight'; - - protected $FullName = 'FLIR::RawData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Thermal Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageType.php b/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageType.php deleted file mode 100644 index 1bfb1b072..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawThermalImageType extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'RawThermalImageType'; - - protected $FullName = 'FLIR::RawData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Raw Thermal Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageWidth.php b/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageWidth.php deleted file mode 100644 index 84845365e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RawThermalImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawThermalImageWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'RawThermalImageWidth'; - - protected $FullName = 'FLIR::RawData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Thermal Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RawValueMedian.php b/lib/PHPExiftool/Driver/Tag/FLIR/RawValueMedian.php deleted file mode 100644 index df89c29d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RawValueMedian.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawValueMedian extends AbstractTag -{ - - protected $Id = 824; - - protected $Name = 'RawValueMedian'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Value Median'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RawValueRange.php b/lib/PHPExiftool/Driver/Tag/FLIR/RawValueRange.php deleted file mode 100644 index e3c3417e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RawValueRange.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawValueRange extends AbstractTag -{ - - protected $Id = 828; - - protected $Name = 'RawValueRange'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Value Range'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Description.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Description.php deleted file mode 100644 index 4d2829415..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Description.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading1Description extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'Reading1Description'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 1 Description'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Humidity', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Moisture', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Dew Point', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Air Temperature', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'IR Temperature', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Difference Temperature', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Device.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Device.php deleted file mode 100644 index d6968f399..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Device.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading1Device extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'Reading1Device'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Reading 1 Device'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Units.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Units.php deleted file mode 100644 index 2d9ab4859..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Units.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading1Units extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'Reading1Units'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 1 Units'; - - protected $Values = array( - 13 => array( - 'Id' => 13, - 'Label' => 'C', - ), - 27 => array( - 'Id' => 27, - 'Label' => '%', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Relative', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'g/kg', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Value.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Value.php deleted file mode 100644 index 5f4d39003..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading1Value.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading1Value extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'Reading1Value'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = false; - - protected $Description = 'Reading 1 Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Description.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Description.php deleted file mode 100644 index be1715e50..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Description.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading2Description extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'Reading2Description'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 2 Description'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Humidity', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Moisture', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Dew Point', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Air Temperature', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'IR Temperature', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Difference Temperature', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Device.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Device.php deleted file mode 100644 index e7f27d4fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Device.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading2Device extends AbstractTag -{ - - protected $Id = 132; - - protected $Name = 'Reading2Device'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Reading 2 Device'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Units.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Units.php deleted file mode 100644 index 087a4f90c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Units.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading2Units extends AbstractTag -{ - - protected $Id = 126; - - protected $Name = 'Reading2Units'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 2 Units'; - - protected $Values = array( - 13 => array( - 'Id' => 13, - 'Label' => 'C', - ), - 27 => array( - 'Id' => 27, - 'Label' => '%', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'rel', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'g/kg', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Value.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Value.php deleted file mode 100644 index b83f2c5e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading2Value.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading2Value extends AbstractTag -{ - - protected $Id = 196; - - protected $Name = 'Reading2Value'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = false; - - protected $Description = 'Reading 2 Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Description.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Description.php deleted file mode 100644 index 3cbf163c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Description.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading3Description extends AbstractTag -{ - - protected $Id = 228; - - protected $Name = 'Reading3Description'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 3 Description'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Humidity', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Moisture', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Dew Point', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Air Temperature', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'IR Temperature', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Difference Temperature', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Device.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Device.php deleted file mode 100644 index 9611a2668..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Device.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading3Device extends AbstractTag -{ - - protected $Id = 232; - - protected $Name = 'Reading3Device'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Reading 3 Device'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Units.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Units.php deleted file mode 100644 index a2b71cfaa..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Units.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading3Units extends AbstractTag -{ - - protected $Id = 226; - - protected $Name = 'Reading3Units'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 3 Units'; - - protected $Values = array( - 13 => array( - 'Id' => 13, - 'Label' => 'C', - ), - 27 => array( - 'Id' => 27, - 'Label' => '%', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'rel', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'g/kg', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Value.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Value.php deleted file mode 100644 index 475c44bda..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading3Value.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading3Value extends AbstractTag -{ - - protected $Id = 296; - - protected $Name = 'Reading3Value'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = false; - - protected $Description = 'Reading 3 Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Description.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Description.php deleted file mode 100644 index 7bd57e7f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Description.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading4Description extends AbstractTag -{ - - protected $Id = 328; - - protected $Name = 'Reading4Description'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 4 Description'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Humidity', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Moisture', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Dew Point', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Air Temperature', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'IR Temperature', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Difference Temperature', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Device.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Device.php deleted file mode 100644 index 0356cf923..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Device.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading4Device extends AbstractTag -{ - - protected $Id = 332; - - protected $Name = 'Reading4Device'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Reading 4 Device'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Units.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Units.php deleted file mode 100644 index 9e59a5db6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Units.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading4Units extends AbstractTag -{ - - protected $Id = 326; - - protected $Name = 'Reading4Units'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Reading 4 Units'; - - protected $Values = array( - 13 => array( - 'Id' => 13, - 'Label' => 'C', - ), - 27 => array( - 'Id' => 27, - 'Label' => '%', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'rel', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'g/kg', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Value.php b/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Value.php deleted file mode 100644 index 83d5fcbf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Reading4Value.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reading4Value extends AbstractTag -{ - - protected $Id = 396; - - protected $Name = 'Reading4Value'; - - protected $FullName = 'FLIR::MeterLink'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = false; - - protected $Description = 'Reading 4 Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Real2IR.php b/lib/PHPExiftool/Driver/Tag/FLIR/Real2IR.php deleted file mode 100644 index 82d0f0f15..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Real2IR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Real2IR extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Real2IR'; - - protected $FullName = 'FLIR::PiP'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Real 2 IR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ReferenceTemperature.php b/lib/PHPExiftool/Driver/Tag/FLIR/ReferenceTemperature.php deleted file mode 100644 index 17600bd92..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ReferenceTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceTemperature extends AbstractTag -{ - - protected $Id = 508; - - protected $Name = 'ReferenceTemperature'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Reference Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ReflectedApparentTemperature.php b/lib/PHPExiftool/Driver/Tag/FLIR/ReflectedApparentTemperature.php deleted file mode 100644 index f0bde7719..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ReflectedApparentTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReflectedApparentTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReflectedApparentTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Reflected Apparent Temperature'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/RelativeHumidity.php b/lib/PHPExiftool/Driver/Tag/FLIR/RelativeHumidity.php deleted file mode 100644 index f8c9dfd1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/RelativeHumidity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeHumidity extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RelativeHumidity'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'mixed'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Relative Humidity'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/SensorHeight.php b/lib/PHPExiftool/Driver/Tag/FLIR/SensorHeight.php deleted file mode 100644 index 404d1e7fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/SensorHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensorHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sensor Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/SensorWidth.php b/lib/PHPExiftool/Driver/Tag/FLIR/SensorWidth.php deleted file mode 100644 index 458c9216d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/SensorWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensorWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sensor Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/SequenceFrameNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/SequenceFrameNumber.php deleted file mode 100644 index c8288ce5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/SequenceFrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceFrameNumber extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'SequenceFrameNumber'; - - protected $FullName = 'FLIR::FPF'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sequence Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/SoftwareComponents.php b/lib/PHPExiftool/Driver/Tag/FLIR/SoftwareComponents.php deleted file mode 100644 index 6768a8871..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/SoftwareComponents.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftwareComponents extends AbstractTag -{ - - protected $Id = 'uuid'; - - protected $Name = 'SoftwareComponents'; - - protected $FullName = 'FLIR::UserData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software Components'; - - protected $Index = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/FLIR/ThumbnailImage.php deleted file mode 100644 index 4e91aa3ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/ThumbnailImage.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'uuid'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'FLIR::UserData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = true; - - protected $Index = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnderflowColor.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnderflowColor.php deleted file mode 100644 index 308bbf2d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnderflowColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnderflowColor extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'UnderflowColor'; - - protected $FullName = 'FLIR::PaletteInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Underflow Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Units.php b/lib/PHPExiftool/Driver/Tag/FLIR/Units.php deleted file mode 100644 index fec7044ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Units.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Units extends AbstractTag -{ - - protected $Id = 'uuid'; - - protected $Name = 'Units'; - - protected $FullName = 'FLIR::UserData'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'FLIR'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Units'; - - protected $flag_List = true; - - protected $Index = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownNumber.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownNumber.php deleted file mode 100644 index def9b6cf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownNumber extends AbstractTag -{ - - protected $Id = 123; - - protected $Name = 'UnknownNumber'; - - protected $FullName = 'FLIR::SerialNums'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Unknown Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial1.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial1.php deleted file mode 100644 index 380052bb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownSerial1 extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'UnknownSerial1'; - - protected $FullName = 'FLIR::SerialNums'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Unknown Serial 1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial2.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial2.php deleted file mode 100644 index 2f82b280e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownSerial2 extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'UnknownSerial2'; - - protected $FullName = 'FLIR::SerialNums'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Unknown Serial 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial3.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial3.php deleted file mode 100644 index 6bcbe1015..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownSerial3 extends AbstractTag -{ - - protected $Id = 78; - - protected $Name = 'UnknownSerial3'; - - protected $FullName = 'FLIR::SerialNums'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Unknown Serial 3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial4.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial4.php deleted file mode 100644 index 50690dd81..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownSerial4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownSerial4 extends AbstractTag -{ - - protected $Id = 111; - - protected $Name = 'UnknownSerial4'; - - protected $FullName = 'FLIR::SerialNums'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Unknown Serial 4'; - - protected $flag_Permanent = true; - - protected $MaxLength = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature.php deleted file mode 100644 index c7a7ba5c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTemperature extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'UnknownTemperature'; - - protected $FullName = 'FLIR::Main'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Unknown Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature1.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature1.php deleted file mode 100644 index 20e33fb74..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTemperature1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UnknownTemperature1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Unknown Temperature 1'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature2.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature2.php deleted file mode 100644 index b5551a95e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTemperature2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UnknownTemperature2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'mixed'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Unknown Temperature 2'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature3.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature3.php deleted file mode 100644 index 4289a49ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTemperature3 extends AbstractTag -{ - - protected $Id = 160; - - protected $Name = 'UnknownTemperature3'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Unknown Temperature 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature4.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature4.php deleted file mode 100644 index eed851e2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature4.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTemperature4 extends AbstractTag -{ - - protected $Id = 164; - - protected $Name = 'UnknownTemperature4'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Unknown Temperature 4'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature5.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature5.php deleted file mode 100644 index 289673bd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature5.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTemperature5 extends AbstractTag -{ - - protected $Id = 168; - - protected $Name = 'UnknownTemperature5'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Unknown Temperature 5'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature6.php b/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature6.php deleted file mode 100644 index 43282ac4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/UnknownTemperature6.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTemperature6 extends AbstractTag -{ - - protected $Id = 172; - - protected $Name = 'UnknownTemperature6'; - - protected $FullName = 'FLIR::CameraInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Unknown Temperature 6'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Value0.php b/lib/PHPExiftool/Driver/Tag/FLIR/Value0.php deleted file mode 100644 index d5426c436..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Value0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Value0 extends AbstractTag -{ - - protected $Id = 'Value0'; - - protected $Name = 'Value0'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Value 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Value1.php b/lib/PHPExiftool/Driver/Tag/FLIR/Value1.php deleted file mode 100644 index bd39800dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Value1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Value1 extends AbstractTag -{ - - protected $Id = 'Value1'; - - protected $Name = 'Value1'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Value 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Value2.php b/lib/PHPExiftool/Driver/Tag/FLIR/Value2.php deleted file mode 100644 index 175f9e1ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Value2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Value2 extends AbstractTag -{ - - protected $Id = 'Value2'; - - protected $Name = 'Value2'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Value 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FLIR/Value3.php b/lib/PHPExiftool/Driver/Tag/FLIR/Value3.php deleted file mode 100644 index e0c0056e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FLIR/Value3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FLIR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Value3 extends AbstractTag -{ - - protected $Id = 'Value3'; - - protected $Name = 'Value3'; - - protected $FullName = 'FLIR::TextInfo'; - - protected $GroupName = 'FLIR'; - - protected $g0 = 'APP1'; - - protected $g1 = 'FLIR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Value 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/File/BackgroundColor.php deleted file mode 100644 index f5fe1e525..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/BackgroundColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'PGF::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/BitDepth.php b/lib/PHPExiftool/Driver/Tag/File/BitDepth.php deleted file mode 100644 index 13c3970fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BitDepth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/BitsPerPixel.php b/lib/PHPExiftool/Driver/Tag/File/BitsPerPixel.php deleted file mode 100644 index bd0d32278..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/BitsPerPixel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerPixel extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'BitsPerPixel'; - - protected $FullName = 'PGF::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Pixel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/File/BitsPerSample.php deleted file mode 100644 index 821e3a35c..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 'BitsPerSample'; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'JPEG::SOF'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ByteOrder.php b/lib/PHPExiftool/Driver/Tag/File/ByteOrder.php deleted file mode 100644 index e95654091..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ByteOrder.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ByteOrder extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ByteOrder'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Byte Order'; - - protected $MaxLength = 4; - - protected $Values = array( - 'SDPX' => array( - 'Id' => 'SDPX', - 'Label' => 'Big-endian', - ), - 'XPDS' => array( - 'Id' => 'XPDS', - 'Label' => 'Little-endian', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ColorComponents.php b/lib/PHPExiftool/Driver/Tag/File/ColorComponents.php deleted file mode 100644 index 211baf60f..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ColorComponents.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorComponents extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorComponents'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Color Components'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ColorMode.php b/lib/PHPExiftool/Driver/Tag/File/ColorMode.php deleted file mode 100644 index 28dcccfc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ColorMode.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ColorMode'; - - protected $FullName = 'PGF::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bitmap', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Grayscale', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Indexed', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'RGB', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'CMYK', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Multichannel', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Duotone', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Lab', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Comment.php b/lib/PHPExiftool/Driver/Tag/File/Comment.php deleted file mode 100644 index 0a7df7fa4..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'Comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Compression.php b/lib/PHPExiftool/Driver/Tag/File/Compression.php deleted file mode 100644 index 59a31c905..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Compression.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Compression'; - - protected $FullName = 'BMP::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => '8-Bit RLE', - ), - 2 => array( - 'Id' => 2, - 'Label' => '4-Bit RLE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Bitfields', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'JPEG', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'PNG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Copyright.php b/lib/PHPExiftool/Driver/Tag/File/Copyright.php deleted file mode 100644 index d112264b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 460; - - protected $Name = 'Copyright'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 200; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/CreateDate.php b/lib/PHPExiftool/Driver/Tag/File/CreateDate.php deleted file mode 100644 index a28f1af42..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/CreateDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 136; - - protected $Name = 'CreateDate'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Creator.php b/lib/PHPExiftool/Driver/Tag/File/Creator.php deleted file mode 100644 index 72e885a0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Creator.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 160; - - protected $Name = 'Creator'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Creator'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 100; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/CurrentIPTCDigest.php b/lib/PHPExiftool/Driver/Tag/File/CurrentIPTCDigest.php deleted file mode 100644 index df301bb15..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/CurrentIPTCDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentIPTCDigest extends AbstractTag -{ - - protected $Id = 'CurrentIPTCDigest'; - - protected $Name = 'CurrentIPTCDigest'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current IPTC Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/DPXFileSize.php b/lib/PHPExiftool/Driver/Tag/File/DPXFileSize.php deleted file mode 100644 index 36c592f39..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/DPXFileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DPXFileSize extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'DPXFileSize'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'DPX File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/DataSign.php b/lib/PHPExiftool/Driver/Tag/File/DataSign.php deleted file mode 100644 index 6616bbed2..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/DataSign.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataSign extends AbstractTag -{ - - protected $Id = 780; - - protected $Name = 'DataSign'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Data Sign'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unsigned', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Signed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/DittoKey.php b/lib/PHPExiftool/Driver/Tag/File/DittoKey.php deleted file mode 100644 index 6241a744d..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/DittoKey.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DittoKey extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'DittoKey'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Ditto Key'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Same', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'New', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/EncodingProcess.php b/lib/PHPExiftool/Driver/Tag/File/EncodingProcess.php deleted file mode 100644 index 2326f3ad8..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/EncodingProcess.php +++ /dev/null @@ -1,98 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodingProcess extends AbstractTag -{ - - protected $Id = 'EncodingProcess'; - - protected $Name = 'EncodingProcess'; - - protected $FullName = 'JPEG::SOF'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoding Process'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Baseline DCT, Huffman coding', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Extended sequential DCT, Huffman coding', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Progressive DCT, Huffman coding', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Lossless, Huffman coding', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Sequential DCT, differential Huffman coding', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Progressive DCT, differential Huffman coding', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lossless, Differential Huffman coding', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Extended sequential DCT, arithmetic coding', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Progressive DCT, arithmetic coding', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Lossless, arithmetic coding', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Sequential DCT, differential arithmetic coding', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Progressive DCT, differential arithmetic coding', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Lossless, differential arithmetic coding', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/EncryptionKey.php b/lib/PHPExiftool/Driver/Tag/File/EncryptionKey.php deleted file mode 100644 index 0235bd140..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/EncryptionKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptionKey extends AbstractTag -{ - - protected $Id = 660; - - protected $Name = 'EncryptionKey'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Encryption Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ExifByteOrder.php b/lib/PHPExiftool/Driver/Tag/File/ExifByteOrder.php deleted file mode 100644 index e4bad24b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ExifByteOrder.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifByteOrder extends AbstractTag -{ - - protected $Id = 'ExifByteOrder'; - - protected $Name = 'ExifByteOrder'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Exif Byte Order'; - - protected $Values = array( - 'II' => array( - 'Id' => 'II', - 'Label' => 'Little-endian (Intel, II)', - ), - 'MM' => array( - 'Id' => 'MM', - 'Label' => 'Big-endian (Motorola, MM)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ExifUnicodeByteOrder.php b/lib/PHPExiftool/Driver/Tag/File/ExifUnicodeByteOrder.php deleted file mode 100644 index 2c2b038b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ExifUnicodeByteOrder.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifUnicodeByteOrder extends AbstractTag -{ - - protected $Id = 'ExifUnicodeByteOrder'; - - protected $Name = 'ExifUnicodeByteOrder'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Exif Unicode Byte Order'; - - protected $Values = array( - 'II' => array( - 'Id' => 'II', - 'Label' => 'Little-endian (Intel, II)', - ), - 'MM' => array( - 'Id' => 'MM', - 'Label' => 'Big-endian (Motorola, MM)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/FileType.php b/lib/PHPExiftool/Driver/Tag/File/FileType.php deleted file mode 100644 index d5b271211..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/FileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileType extends AbstractTag -{ - - protected $Id = 'FileType'; - - protected $Name = 'FileType'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/FrameID.php b/lib/PHPExiftool/Driver/Tag/File/FrameID.php deleted file mode 100644 index 96e4f935f..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/FrameID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameID extends AbstractTag -{ - - protected $Id = 1732; - - protected $Name = 'FrameID'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Frame ID'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Geosync.php b/lib/PHPExiftool/Driver/Tag/File/Geosync.php deleted file mode 100644 index e969fac98..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Geosync.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Geosync extends AbstractTag -{ - - protected $Id = 'Geosync'; - - protected $Name = 'Geosync'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Geosync'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Geotag.php b/lib/PHPExiftool/Driver/Tag/File/Geotag.php deleted file mode 100644 index 6e80e976e..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Geotag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Geotag extends AbstractTag -{ - - protected $Id = 'Geotag'; - - protected $Name = 'Geotag'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Geotag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Geotime.php b/lib/PHPExiftool/Driver/Tag/File/Geotime.php deleted file mode 100644 index 993f84979..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Geotime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Geotime extends AbstractTag -{ - - protected $Id = 'Geotime'; - - protected $Name = 'Geotime'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Geotime'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/HardLink.php b/lib/PHPExiftool/Driver/Tag/File/HardLink.php deleted file mode 100644 index c3eaba137..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/HardLink.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HardLink extends AbstractTag -{ - - protected $Id = 'HardLink'; - - protected $Name = 'HardLink'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Hard Link'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/HeaderVersion.php b/lib/PHPExiftool/Driver/Tag/File/HeaderVersion.php deleted file mode 100644 index 902dbb186..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/HeaderVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeaderVersion extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'HeaderVersion'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Header Version'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ID3Size.php b/lib/PHPExiftool/Driver/Tag/File/ID3Size.php deleted file mode 100644 index d23c91285..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ID3Size.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ID3Size extends AbstractTag -{ - - protected $Id = 'ID3Size'; - - protected $Name = 'ID3Size'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ID3 Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Image2Description.php b/lib/PHPExiftool/Driver/Tag/File/Image2Description.php deleted file mode 100644 index b9b6dbcfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Image2Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Image2Description extends AbstractTag -{ - - protected $Id = 892; - - protected $Name = 'Image2Description'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image 2 Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Image3Description.php b/lib/PHPExiftool/Driver/Tag/File/Image3Description.php deleted file mode 100644 index 32806902a..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Image3Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Image3Description extends AbstractTag -{ - - protected $Id = 964; - - protected $Name = 'Image3Description'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image 3 Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Image4Description.php b/lib/PHPExiftool/Driver/Tag/File/Image4Description.php deleted file mode 100644 index 1e581c9a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Image4Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Image4Description extends AbstractTag -{ - - protected $Id = 1036; - - protected $Name = 'Image4Description'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image 4 Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Image5Description.php b/lib/PHPExiftool/Driver/Tag/File/Image5Description.php deleted file mode 100644 index 65ebaa57f..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Image5Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Image5Description extends AbstractTag -{ - - protected $Id = 1108; - - protected $Name = 'Image5Description'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image 5 Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Image6Description.php b/lib/PHPExiftool/Driver/Tag/File/Image6Description.php deleted file mode 100644 index 03d73dae6..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Image6Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Image6Description extends AbstractTag -{ - - protected $Id = 1180; - - protected $Name = 'Image6Description'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image 6 Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Image7Description.php b/lib/PHPExiftool/Driver/Tag/File/Image7Description.php deleted file mode 100644 index 862fa48f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Image7Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Image7Description extends AbstractTag -{ - - protected $Id = 1252; - - protected $Name = 'Image7Description'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image 7 Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Image8Description.php b/lib/PHPExiftool/Driver/Tag/File/Image8Description.php deleted file mode 100644 index 30450842a..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Image8Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Image8Description extends AbstractTag -{ - - protected $Id = 1324; - - protected $Name = 'Image8Description'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image 8 Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ImageDescription.php b/lib/PHPExiftool/Driver/Tag/File/ImageDescription.php deleted file mode 100644 index 54e77843d..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ImageDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDescription extends AbstractTag -{ - - protected $Id = 820; - - protected $Name = 'ImageDescription'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image Description'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ImageElements.php b/lib/PHPExiftool/Driver/Tag/File/ImageElements.php deleted file mode 100644 index 6717c10c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ImageElements.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageElements extends AbstractTag -{ - - protected $Id = 770; - - protected $Name = 'ImageElements'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Elements'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ImageFileName.php b/lib/PHPExiftool/Driver/Tag/File/ImageFileName.php deleted file mode 100644 index 17daefd88..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ImageFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFileName extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'ImageFileName'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image File Name'; - - protected $MaxLength = 100; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/File/ImageHeight.php deleted file mode 100644 index 27d3757c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ImageLength.php b/lib/PHPExiftool/Driver/Tag/File/ImageLength.php deleted file mode 100644 index 0ba863770..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ImageLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageLength extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ImageLength'; - - protected $FullName = 'BMP::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/File/ImageWidth.php deleted file mode 100644 index 21ff0df23..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/InputDeviceName.php b/lib/PHPExiftool/Driver/Tag/File/InputDeviceName.php deleted file mode 100644 index dcefa128e..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/InputDeviceName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputDeviceName extends AbstractTag -{ - - protected $Id = 1556; - - protected $Name = 'InputDeviceName'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Input Device Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/InputDeviceSerialNumber.php b/lib/PHPExiftool/Driver/Tag/File/InputDeviceSerialNumber.php deleted file mode 100644 index bfdff2aad..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/InputDeviceSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputDeviceSerialNumber extends AbstractTag -{ - - protected $Id = 1588; - - protected $Name = 'InputDeviceSerialNumber'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Input Device Serial Number'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/JPEGDigest.php b/lib/PHPExiftool/Driver/Tag/File/JPEGDigest.php deleted file mode 100644 index c7896a930..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/JPEGDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGDigest extends AbstractTag -{ - - protected $Id = 'JPEGDigest'; - - protected $Name = 'JPEGDigest'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/MIMEType.php b/lib/PHPExiftool/Driver/Tag/File/MIMEType.php deleted file mode 100644 index e219de960..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/MIMEType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MIMEType extends AbstractTag -{ - - protected $Id = 'MIMEType'; - - protected $Name = 'MIMEType'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MIME Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/MaxVal.php b/lib/PHPExiftool/Driver/Tag/File/MaxVal.php deleted file mode 100644 index 3a831542c..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/MaxVal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxVal extends AbstractTag -{ - - protected $Id = 'MaxVal'; - - protected $Name = 'MaxVal'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Val'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/NumColors.php b/lib/PHPExiftool/Driver/Tag/File/NumColors.php deleted file mode 100644 index 3be821ddc..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/NumColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumColors extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'NumColors'; - - protected $FullName = 'BMP::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Num Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/NumImportantColors.php b/lib/PHPExiftool/Driver/Tag/File/NumImportantColors.php deleted file mode 100644 index 80c918ef9..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/NumImportantColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumImportantColors extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'NumImportantColors'; - - protected $FullName = 'BMP::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Num Important Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Orientation.php b/lib/PHPExiftool/Driver/Tag/File/Orientation.php deleted file mode 100644 index a963b26c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Orientation.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'Orientation'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Mirror vertical', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mirror horizontal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Mirror horizontal and rotate 270 CW', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Rotate 90 CW', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Rotate 270 CW', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Mirror horizontal and rotate 90 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/PGFVersion.php b/lib/PHPExiftool/Driver/Tag/File/PGFVersion.php deleted file mode 100644 index ba3c5978f..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/PGFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PGFVersion extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PGFVersion'; - - protected $FullName = 'PGF::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'PGF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/PixelsPerMeterX.php b/lib/PHPExiftool/Driver/Tag/File/PixelsPerMeterX.php deleted file mode 100644 index 1e341af5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/PixelsPerMeterX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelsPerMeterX extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'PixelsPerMeterX'; - - protected $FullName = 'BMP::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Pixels Per Meter X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/PixelsPerMeterY.php b/lib/PHPExiftool/Driver/Tag/File/PixelsPerMeterY.php deleted file mode 100644 index dd825659f..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/PixelsPerMeterY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelsPerMeterY extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'PixelsPerMeterY'; - - protected $FullName = 'BMP::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Pixels Per Meter Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Planes.php b/lib/PHPExiftool/Driver/Tag/File/Planes.php deleted file mode 100644 index 93315c10f..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Planes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Planes extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Planes'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Planes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/File/PreviewImage.php deleted file mode 100644 index e63da3597..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/PreviewImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'PreviewImage'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/PreviewPNG.php b/lib/PHPExiftool/Driver/Tag/File/PreviewPNG.php deleted file mode 100644 index 099572c01..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/PreviewPNG.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewPNG extends AbstractTag -{ - - protected $Id = 'PreviewPNG'; - - protected $Name = 'PreviewPNG'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview PNG'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/PreviewWMF.php b/lib/PHPExiftool/Driver/Tag/File/PreviewWMF.php deleted file mode 100644 index c8da528aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/PreviewWMF.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewWMF extends AbstractTag -{ - - protected $Id = 'PreviewWMF'; - - protected $Name = 'PreviewWMF'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview WMF'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Project.php b/lib/PHPExiftool/Driver/Tag/File/Project.php deleted file mode 100644 index ffb0ebcee..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Project.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Project extends AbstractTag -{ - - protected $Id = 260; - - protected $Name = 'Project'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Project'; - - protected $MaxLength = 200; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/PyramidLevels.php b/lib/PHPExiftool/Driver/Tag/File/PyramidLevels.php deleted file mode 100644 index c149b9eca..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/PyramidLevels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PyramidLevels extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'PyramidLevels'; - - protected $FullName = 'PGF::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Pyramid Levels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/Quality.php b/lib/PHPExiftool/Driver/Tag/File/Quality.php deleted file mode 100644 index 4fda98bef..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/Quality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'Quality'; - - protected $FullName = 'PGF::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/RAFVersion.php b/lib/PHPExiftool/Driver/Tag/File/RAFVersion.php deleted file mode 100644 index f45c032eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/RAFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RAFVersion extends AbstractTag -{ - - protected $Id = 'RAFVersion'; - - protected $Name = 'RAFVersion'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RAF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/SlateInformation.php b/lib/PHPExiftool/Driver/Tag/File/SlateInformation.php deleted file mode 100644 index c2f40d7b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/SlateInformation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlateInformation extends AbstractTag -{ - - protected $Id = 1764; - - protected $Name = 'SlateInformation'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Slate Information'; - - protected $MaxLength = 100; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/SourceCreateDate.php b/lib/PHPExiftool/Driver/Tag/File/SourceCreateDate.php deleted file mode 100644 index 8aea79940..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/SourceCreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceCreateDate extends AbstractTag -{ - - protected $Id = 1532; - - protected $Name = 'SourceCreateDate'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Source Create Date'; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/SourceFileName.php b/lib/PHPExiftool/Driver/Tag/File/SourceFileName.php deleted file mode 100644 index 7e37b8e41..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/SourceFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceFileName extends AbstractTag -{ - - protected $Id = 1432; - - protected $Name = 'SourceFileName'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Source File Name'; - - protected $MaxLength = 100; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/TestName.php b/lib/PHPExiftool/Driver/Tag/File/TestName.php deleted file mode 100644 index 61cee3233..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/TestName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TestName extends AbstractTag -{ - - protected $Id = 'TestName'; - - protected $Name = 'TestName'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Test Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/UserID.php b/lib/PHPExiftool/Driver/Tag/File/UserID.php deleted file mode 100644 index 49e13781d..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/UserID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserID extends AbstractTag -{ - - protected $Id = 2048; - - protected $Name = 'UserID'; - - protected $FullName = 'DPX::Main'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'User ID'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/XResolution.php b/lib/PHPExiftool/Driver/Tag/File/XResolution.php deleted file mode 100644 index a65c8fa4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 'XResolution'; - - protected $Name = 'XResolution'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/YCbCrSubSampling.php b/lib/PHPExiftool/Driver/Tag/File/YCbCrSubSampling.php deleted file mode 100644 index 6412cce3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/YCbCrSubSampling.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YCbCrSubSampling extends AbstractTag -{ - - protected $Id = 'YCbCrSubSampling'; - - protected $Name = 'YCbCrSubSampling'; - - protected $FullName = 'JPEG::SOF'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Y Cb Cr Sub Sampling'; - - protected $Values = array( - '1 1' => array( - 'Id' => '1 1', - 'Label' => 'YCbCr4:4:4 (1 1)', - ), - '1 2' => array( - 'Id' => '1 2', - 'Label' => 'YCbCr4:4:0 (1 2)', - ), - '1 4' => array( - 'Id' => '1 4', - 'Label' => 'YCbCr4:4:1 (1 4)', - ), - '2 1' => array( - 'Id' => '2 1', - 'Label' => 'YCbCr4:2:2 (2 1)', - ), - '2 2' => array( - 'Id' => '2 2', - 'Label' => 'YCbCr4:2:0 (2 2)', - ), - '2 4' => array( - 'Id' => '2 4', - 'Label' => 'YCbCr4:2:1 (2 4)', - ), - '4 1' => array( - 'Id' => '4 1', - 'Label' => 'YCbCr4:1:1 (4 1)', - ), - '4 2' => array( - 'Id' => '4 2', - 'Label' => 'YCbCr4:1:0 (4 2)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/File/YResolution.php b/lib/PHPExiftool/Driver/Tag/File/YResolution.php deleted file mode 100644 index 93290e50c..000000000 --- a/lib/PHPExiftool/Driver/Tag/File/YResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\File; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 'YResolution'; - - protected $Name = 'YResolution'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'File'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioBitrate.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioBitrate.php deleted file mode 100644 index 95bc48f14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioBitrate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitrate extends AbstractTag -{ - - protected $Id = 'audiodatarate'; - - protected $Name = 'AudioBitrate'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bitrate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioBitsPerSample.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioBitsPerSample.php deleted file mode 100644 index 4c5ff5818..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioBitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitsPerSample extends AbstractTag -{ - - protected $Id = 'Bit6'; - - protected $Name = 'AudioBitsPerSample'; - - protected $FullName = 'Flash::Audio'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioChannels.php deleted file mode 100644 index bfddad63a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioChannels.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 'Bit7'; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'Flash::Audio'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => '1 (mono)', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 (stereo)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioCodecID.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioCodecID.php deleted file mode 100644 index a1580f8af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioCodecID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecID extends AbstractTag -{ - - protected $Id = 'audiocodecid'; - - protected $Name = 'AudioCodecID'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Codec ID'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioDelay.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioDelay.php deleted file mode 100644 index a718da080..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioDelay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioDelay extends AbstractTag -{ - - protected $Id = 'audiodelay'; - - protected $Name = 'AudioDelay'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Delay'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioEncoding.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioEncoding.php deleted file mode 100644 index a34ff34fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioEncoding.php +++ /dev/null @@ -1,98 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioEncoding extends AbstractTag -{ - - protected $Id = 'Bit0-3'; - - protected $Name = 'AudioEncoding'; - - protected $FullName = 'Flash::Audio'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Encoding'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'PCM-BE (uncompressed)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'ADPCM', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'MP3', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'PCM-LE (uncompressed)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Nellymoser 16kHz Mono', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Nellymoser 8kHz Mono', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Nellymoser', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'G.711 A-law logarithmic PCM', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'G.711 mu-law logarithmic PCM', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'AAC', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Speex', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'MP3 8-Khz', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Device-specific sound', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioSampleRate.php deleted file mode 100644 index 18142ba86..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioSampleRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioSampleSize.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioSampleSize.php deleted file mode 100644 index 4a4f9d6a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioSampleSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleSize extends AbstractTag -{ - - protected $Id = 'audiosamplesize'; - - protected $Name = 'AudioSampleSize'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Size'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/AudioSize.php b/lib/PHPExiftool/Driver/Tag/Flash/AudioSize.php deleted file mode 100644 index 4a1dc12f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/AudioSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSize extends AbstractTag -{ - - protected $Id = 'audiosize'; - - protected $Name = 'AudioSize'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Size'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/ByteLength.php b/lib/PHPExiftool/Driver/Tag/Flash/ByteLength.php deleted file mode 100644 index 65d58ac25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/ByteLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ByteLength extends AbstractTag -{ - - protected $Id = 'bytelength'; - - protected $Name = 'ByteLength'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Byte Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/CanSeekOnTime.php b/lib/PHPExiftool/Driver/Tag/Flash/CanSeekOnTime.php deleted file mode 100644 index 245fff04a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/CanSeekOnTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanSeekOnTime extends AbstractTag -{ - - protected $Id = 'canseekontime'; - - protected $Name = 'CanSeekOnTime'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Can Seek On Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/CanSeekToEnd.php b/lib/PHPExiftool/Driver/Tag/Flash/CanSeekToEnd.php deleted file mode 100644 index d3065b506..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/CanSeekToEnd.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CanSeekToEnd extends AbstractTag -{ - - protected $Id = 'canSeekToEnd'; - - protected $Name = 'CanSeekToEnd'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Can Seek To End'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/Compressed.php b/lib/PHPExiftool/Driver/Tag/Flash/Compressed.php deleted file mode 100644 index 35868efd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/Compressed.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compressed extends AbstractTag -{ - - protected $Id = 'Compressed'; - - protected $Name = 'Compressed'; - - protected $FullName = 'Flash::Main'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compressed'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => False, - ), - 1 => array( - 'Id' => 1, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/CreateDate.php b/lib/PHPExiftool/Driver/Tag/Flash/CreateDate.php deleted file mode 100644 index b67b5c0c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'creationdate'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/CreatedBy.php b/lib/PHPExiftool/Driver/Tag/Flash/CreatedBy.php deleted file mode 100644 index a556d551c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/CreatedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatedBy extends AbstractTag -{ - - protected $Id = 'createdby'; - - protected $Name = 'CreatedBy'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Created By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/DataSize.php b/lib/PHPExiftool/Driver/Tag/Flash/DataSize.php deleted file mode 100644 index 11af6825d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/DataSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataSize extends AbstractTag -{ - - protected $Id = 'datasize'; - - protected $Name = 'DataSize'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/Duration.php b/lib/PHPExiftool/Driver/Tag/Flash/Duration.php deleted file mode 100644 index ae60d9148..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Duration'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/FileAttributes.php b/lib/PHPExiftool/Driver/Tag/Flash/FileAttributes.php deleted file mode 100644 index f6cf993a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/FileAttributes.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileAttributes extends AbstractTag -{ - - protected $Id = 69; - - protected $Name = 'FileAttributes'; - - protected $FullName = 'Flash::Main'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Attributes'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'UseNetwork', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'ActionScript3', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'HasMetadata', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/FileSizeBytes.php b/lib/PHPExiftool/Driver/Tag/Flash/FileSizeBytes.php deleted file mode 100644 index 1a29bbddb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/FileSizeBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSizeBytes extends AbstractTag -{ - - protected $Id = 'filesize'; - - protected $Name = 'FileSizeBytes'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Size Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/FlashVersion.php b/lib/PHPExiftool/Driver/Tag/Flash/FlashVersion.php deleted file mode 100644 index d44e94b14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/FlashVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashVersion extends AbstractTag -{ - - protected $Id = 'FlashVersion'; - - protected $Name = 'FlashVersion'; - - protected $FullName = 'Flash::Main'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/FrameCount.php b/lib/PHPExiftool/Driver/Tag/Flash/FrameCount.php deleted file mode 100644 index 83e9e6b5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/FrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCount extends AbstractTag -{ - - protected $Id = 'FrameCount'; - - protected $Name = 'FrameCount'; - - protected $FullName = 'Flash::Main'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/FrameRate.php b/lib/PHPExiftool/Driver/Tag/Flash/FrameRate.php deleted file mode 100644 index 5c8955f00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameRate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/HTTPHostHeader.php b/lib/PHPExiftool/Driver/Tag/Flash/HTTPHostHeader.php deleted file mode 100644 index 5de40722d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/HTTPHostHeader.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HTTPHostHeader extends AbstractTag -{ - - protected $Id = 'httphostheader'; - - protected $Name = 'HTTPHostHeader'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HTTP Host Header'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/HasAudio.php b/lib/PHPExiftool/Driver/Tag/Flash/HasAudio.php deleted file mode 100644 index b32123678..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/HasAudio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasAudio extends AbstractTag -{ - - protected $Id = 'hasAudio'; - - protected $Name = 'HasAudio'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Audio'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/HasCuePoints.php b/lib/PHPExiftool/Driver/Tag/Flash/HasCuePoints.php deleted file mode 100644 index 37de809e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/HasCuePoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasCuePoints extends AbstractTag -{ - - protected $Id = 'hasCuePoints'; - - protected $Name = 'HasCuePoints'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Cue Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/HasKeyFrames.php b/lib/PHPExiftool/Driver/Tag/Flash/HasKeyFrames.php deleted file mode 100644 index 20ea9cf38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/HasKeyFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasKeyFrames extends AbstractTag -{ - - protected $Id = 'hasKeyframes'; - - protected $Name = 'HasKeyFrames'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Key Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/HasMetadata.php b/lib/PHPExiftool/Driver/Tag/Flash/HasMetadata.php deleted file mode 100644 index a56777f8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/HasMetadata.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasMetadata extends AbstractTag -{ - - protected $Id = 'hasMetadata'; - - protected $Name = 'HasMetadata'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Metadata'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/HasVideo.php b/lib/PHPExiftool/Driver/Tag/Flash/HasVideo.php deleted file mode 100644 index 13b8336ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/HasVideo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasVideo extends AbstractTag -{ - - protected $Id = 'hasVideo'; - - protected $Name = 'HasVideo'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/Flash/ImageHeight.php deleted file mode 100644 index 0958ec422..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/Flash/ImageWidth.php deleted file mode 100644 index 18e219eb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/KeyFramePositions.php b/lib/PHPExiftool/Driver/Tag/Flash/KeyFramePositions.php deleted file mode 100644 index 04e52a245..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/KeyFramePositions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyFramePositions extends AbstractTag -{ - - protected $Id = 'keyframesFilepositions'; - - protected $Name = 'KeyFramePositions'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Key Frame Positions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/KeyFramesTimes.php b/lib/PHPExiftool/Driver/Tag/Flash/KeyFramesTimes.php deleted file mode 100644 index 55496fd2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/KeyFramesTimes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyFramesTimes extends AbstractTag -{ - - protected $Id = 'keyframesTimes'; - - protected $Name = 'KeyFramesTimes'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Key Frames Times'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/LastKeyFrameTime.php b/lib/PHPExiftool/Driver/Tag/Flash/LastKeyFrameTime.php deleted file mode 100644 index b434a1a3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/LastKeyFrameTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastKeyFrameTime extends AbstractTag -{ - - protected $Id = 'lastkeyframetimestamp'; - - protected $Name = 'LastKeyFrameTime'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Key Frame Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/LastTimeStamp.php b/lib/PHPExiftool/Driver/Tag/Flash/LastTimeStamp.php deleted file mode 100644 index 5cfc92430..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/LastTimeStamp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastTimeStamp extends AbstractTag -{ - - protected $Id = 'lasttimestamp'; - - protected $Name = 'LastTimeStamp'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Time Stamp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/Message.php b/lib/PHPExiftool/Driver/Tag/Flash/Message.php deleted file mode 100644 index 86418e901..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/Message.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Message extends AbstractTag -{ - - protected $Id = 'pmsg'; - - protected $Name = 'Message'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Message'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/MetadataCreator.php b/lib/PHPExiftool/Driver/Tag/Flash/MetadataCreator.php deleted file mode 100644 index 6d9cbddd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/MetadataCreator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataCreator extends AbstractTag -{ - - protected $Id = 'metadatacreator'; - - protected $Name = 'MetadataCreator'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metadata Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/MetadataDate.php b/lib/PHPExiftool/Driver/Tag/Flash/MetadataDate.php deleted file mode 100644 index fc0476afd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/MetadataDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataDate extends AbstractTag -{ - - protected $Id = 'metadatadate'; - - protected $Name = 'MetadataDate'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metadata Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/Name.php b/lib/PHPExiftool/Driver/Tag/Flash/Name.php deleted file mode 100644 index c39ad16b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/Name.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Name extends AbstractTag -{ - - protected $Id = 'name'; - - protected $Name = 'Name'; - - protected $FullName = 'Flash::CuePoint'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/SourceData.php b/lib/PHPExiftool/Driver/Tag/Flash/SourceData.php deleted file mode 100644 index 91a01de52..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/SourceData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceData extends AbstractTag -{ - - protected $Id = 'sourcedata'; - - protected $Name = 'SourceData'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/StartTime.php b/lib/PHPExiftool/Driver/Tag/Flash/StartTime.php deleted file mode 100644 index ac13fdf78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/StartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTime extends AbstractTag -{ - - protected $Id = 'starttime'; - - protected $Name = 'StartTime'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/Stereo.php b/lib/PHPExiftool/Driver/Tag/Flash/Stereo.php deleted file mode 100644 index 4b00359bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/Stereo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Stereo extends AbstractTag -{ - - protected $Id = 'stereo'; - - protected $Name = 'Stereo'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stereo'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/Time.php b/lib/PHPExiftool/Driver/Tag/Flash/Time.php deleted file mode 100644 index c1eabc28b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/Time.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Time extends AbstractTag -{ - - protected $Id = 'time'; - - protected $Name = 'Time'; - - protected $FullName = 'Flash::CuePoint'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/TotalDataRate.php b/lib/PHPExiftool/Driver/Tag/Flash/TotalDataRate.php deleted file mode 100644 index 481c9b22b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/TotalDataRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalDataRate extends AbstractTag -{ - - protected $Id = 'totaldatarate'; - - protected $Name = 'TotalDataRate'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Data Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/TotalDuration.php b/lib/PHPExiftool/Driver/Tag/Flash/TotalDuration.php deleted file mode 100644 index 6cadf612f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/TotalDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalDuration extends AbstractTag -{ - - protected $Id = 'totalduration'; - - protected $Name = 'TotalDuration'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/Type.php b/lib/PHPExiftool/Driver/Tag/Flash/Type.php deleted file mode 100644 index 1c6dd45fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/Type.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Type extends AbstractTag -{ - - protected $Id = 'type'; - - protected $Name = 'Type'; - - protected $FullName = 'Flash::CuePoint'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/URL.php b/lib/PHPExiftool/Driver/Tag/Flash/URL.php deleted file mode 100644 index 388203753..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'purl'; - - protected $Name = 'URL'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/VideoBitrate.php b/lib/PHPExiftool/Driver/Tag/Flash/VideoBitrate.php deleted file mode 100644 index 7a58c949d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/VideoBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoBitrate extends AbstractTag -{ - - protected $Id = 'videodatarate'; - - protected $Name = 'VideoBitrate'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/VideoCodecID.php b/lib/PHPExiftool/Driver/Tag/Flash/VideoCodecID.php deleted file mode 100644 index a15f2e321..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/VideoCodecID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodecID extends AbstractTag -{ - - protected $Id = 'videocodecid'; - - protected $Name = 'VideoCodecID'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Codec ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/VideoEncoding.php b/lib/PHPExiftool/Driver/Tag/Flash/VideoEncoding.php deleted file mode 100644 index 7bb53299b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/VideoEncoding.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoEncoding extends AbstractTag -{ - - protected $Id = 'Bit4-7'; - - protected $Name = 'VideoEncoding'; - - protected $FullName = 'Flash::Video'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Encoding'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'JPEG', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Sorensen H.263', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Screen Video', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'On2 VP6', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'On2 VP6 Alpha', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Screen Video 2', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'H.264', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Flash/VideoSize.php b/lib/PHPExiftool/Driver/Tag/Flash/VideoSize.php deleted file mode 100644 index ef741640a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Flash/VideoSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Flash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoSize extends AbstractTag -{ - - protected $Id = 'videosize'; - - protected $Name = 'VideoSize'; - - protected $FullName = 'Flash::Meta'; - - protected $GroupName = 'Flash'; - - protected $g0 = 'Flash'; - - protected $g1 = 'Flash'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/AppVersion.php b/lib/PHPExiftool/Driver/Tag/FlashPix/AppVersion.php deleted file mode 100644 index 070f74c53..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/AppVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AppVersion extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'AppVersion'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'App Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/AudioStream.php b/lib/PHPExiftool/Driver/Tag/FlashPix/AudioStream.php deleted file mode 100644 index 713120b70..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/AudioStream.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioStream extends AbstractTag -{ - - protected $Id = 'Audio Stream'; - - protected $Name = 'AudioStream'; - - protected $FullName = 'FlashPix::Main'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Stream'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Author.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Author.php deleted file mode 100644 index 02335b230..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Author'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Authorship.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Authorship.php deleted file mode 100644 index 7420907cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Authorship.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Authorship extends AbstractTag -{ - - protected $Id = 570425347; - - protected $Name = 'Authorship'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Authorship'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/BackLight.php b/lib/PHPExiftool/Driver/Tag/FlashPix/BackLight.php deleted file mode 100644 index 6c968688a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/BackLight.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackLight extends AbstractTag -{ - - protected $Id = 620757006; - - protected $Name = 'BackLight'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Back Light'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Front Lit', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Back Lit 1', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Back Lit 2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/FlashPix/BrightnessValue.php deleted file mode 100644 index ed9058010..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/BrightnessValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 620756996; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brightness Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Bytes.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Bytes.php deleted file mode 100644 index ef447e75d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Bytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Bytes extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Bytes'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CFAPattern.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CFAPattern.php deleted file mode 100644 index a78374a29..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CFAPattern.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPattern extends AbstractTag -{ - - protected $Id = 637534213; - - protected $Name = 'CFAPattern'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CFA Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CachedImageHeight.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CachedImageHeight.php deleted file mode 100644 index 4531a73eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CachedImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CachedImageHeight extends AbstractTag -{ - - protected $Id = 268435456; - - protected $Name = 'CachedImageHeight'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cached Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CachedImageWidth.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CachedImageWidth.php deleted file mode 100644 index ea7241780..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CachedImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CachedImageWidth extends AbstractTag -{ - - protected $Id = 268435457; - - protected $Name = 'CachedImageWidth'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cached Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CaptionText.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CaptionText.php deleted file mode 100644 index 5cb1f1fd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CaptionText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionText extends AbstractTag -{ - - protected $Id = 587202563; - - protected $Name = 'CaptionText'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Caption Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Category.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Category.php deleted file mode 100644 index e2d4d97dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Category'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CharCountWithSpaces.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CharCountWithSpaces.php deleted file mode 100644 index f97c99331..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CharCountWithSpaces.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharCountWithSpaces extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'CharCountWithSpaces'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Char Count With Spaces'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Characters.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Characters.php deleted file mode 100644 index e68dc19ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Characters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Characters extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Characters'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CodePage.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CodePage.php deleted file mode 100644 index 13b04cafe..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CodePage.php +++ /dev/null @@ -1,656 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodePage extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CodePage'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Code Page'; - - protected $local_g2 = 'Other'; - - protected $Values = array( - 31 => array( - 'Id' => 31, - 'Label' => 'IBM EBCDIC US-Canada', - ), - 437 => array( - 'Id' => 437, - 'Label' => 'DOS United States', - ), - 500 => array( - 'Id' => 500, - 'Label' => 'IBM EBCDIC International', - ), - 708 => array( - 'Id' => 708, - 'Label' => 'Arabic (ASMO 708)', - ), - 709 => array( - 'Id' => 709, - 'Label' => 'Arabic (ASMO-449+, BCON V4)', - ), - 710 => array( - 'Id' => 710, - 'Label' => 'Arabic - Transparent Arabic', - ), - 720 => array( - 'Id' => 720, - 'Label' => 'DOS Arabic (Transparent ASMO)', - ), - 737 => array( - 'Id' => 737, - 'Label' => 'DOS Greek (formerly 437G)', - ), - 775 => array( - 'Id' => 775, - 'Label' => 'DOS Baltic', - ), - 850 => array( - 'Id' => 850, - 'Label' => 'DOS Latin 1 (Western European)', - ), - 852 => array( - 'Id' => 852, - 'Label' => 'DOS Latin 2 (Central European)', - ), - 855 => array( - 'Id' => 855, - 'Label' => 'DOS Cyrillic (primarily Russian)', - ), - 857 => array( - 'Id' => 857, - 'Label' => 'DOS Turkish', - ), - 858 => array( - 'Id' => 858, - 'Label' => 'DOS Multilingual Latin 1 with Euro', - ), - 860 => array( - 'Id' => 860, - 'Label' => 'DOS Portuguese', - ), - 861 => array( - 'Id' => 861, - 'Label' => 'DOS Icelandic', - ), - 862 => array( - 'Id' => 862, - 'Label' => 'DOS Hebrew', - ), - 863 => array( - 'Id' => 863, - 'Label' => 'DOS French Canadian', - ), - 864 => array( - 'Id' => 864, - 'Label' => 'DOS Arabic', - ), - 865 => array( - 'Id' => 865, - 'Label' => 'DOS Nordic', - ), - 866 => array( - 'Id' => 866, - 'Label' => 'DOS Russian (Cyrillic)', - ), - 869 => array( - 'Id' => 869, - 'Label' => 'DOS Modern Greek', - ), - 870 => array( - 'Id' => 870, - 'Label' => 'IBM EBCDIC Multilingual/ROECE (Latin 2)', - ), - 874 => array( - 'Id' => 874, - 'Label' => 'Windows Thai (same as 28605, ISO 8859-15)', - ), - 875 => array( - 'Id' => 875, - 'Label' => 'IBM EBCDIC Greek Modern', - ), - 932 => array( - 'Id' => 932, - 'Label' => 'Windows Japanese (Shift-JIS)', - ), - 936 => array( - 'Id' => 936, - 'Label' => 'Windows Simplified Chinese (PRC, Singapore)', - ), - 949 => array( - 'Id' => 949, - 'Label' => 'Windows Korean (Unified Hangul Code)', - ), - 950 => array( - 'Id' => 950, - 'Label' => 'Windows Traditional Chinese (Taiwan)', - ), - 1026 => array( - 'Id' => 1026, - 'Label' => 'IBM EBCDIC Turkish (Latin 5)', - ), - 1047 => array( - 'Id' => 1047, - 'Label' => 'IBM EBCDIC Latin 1/Open System', - ), - 1140 => array( - 'Id' => 1140, - 'Label' => 'IBM EBCDIC US-Canada with Euro', - ), - 1141 => array( - 'Id' => 1141, - 'Label' => 'IBM EBCDIC Germany with Euro', - ), - 1142 => array( - 'Id' => 1142, - 'Label' => 'IBM EBCDIC Denmark-Norway with Euro', - ), - 1143 => array( - 'Id' => 1143, - 'Label' => 'IBM EBCDIC Finland-Sweden with Euro', - ), - 1144 => array( - 'Id' => 1144, - 'Label' => 'IBM EBCDIC Italy with Euro', - ), - 1145 => array( - 'Id' => 1145, - 'Label' => 'IBM EBCDIC Latin America-Spain with Euro', - ), - 1146 => array( - 'Id' => 1146, - 'Label' => 'IBM EBCDIC United Kingdom with Euro', - ), - 1147 => array( - 'Id' => 1147, - 'Label' => 'IBM EBCDIC France with Euro', - ), - 1148 => array( - 'Id' => 1148, - 'Label' => 'IBM EBCDIC International with Euro', - ), - 1149 => array( - 'Id' => 1149, - 'Label' => 'IBM EBCDIC Icelandic with Euro', - ), - 1200 => array( - 'Id' => 1200, - 'Label' => 'Unicode UTF-16, little endian', - ), - 1201 => array( - 'Id' => 1201, - 'Label' => 'Unicode UTF-16, big endian', - ), - 1250 => array( - 'Id' => 1250, - 'Label' => 'Windows Latin 2 (Central European)', - ), - 1251 => array( - 'Id' => 1251, - 'Label' => 'Windows Cyrillic', - ), - 1252 => array( - 'Id' => 1252, - 'Label' => 'Windows Latin 1 (Western European)', - ), - 1253 => array( - 'Id' => 1253, - 'Label' => 'Windows Greek', - ), - 1254 => array( - 'Id' => 1254, - 'Label' => 'Windows Turkish', - ), - 1255 => array( - 'Id' => 1255, - 'Label' => 'Windows Hebrew', - ), - 1256 => array( - 'Id' => 1256, - 'Label' => 'Windows Arabic', - ), - 1257 => array( - 'Id' => 1257, - 'Label' => 'Windows Baltic', - ), - 1258 => array( - 'Id' => 1258, - 'Label' => 'Windows Vietnamese', - ), - 1361 => array( - 'Id' => 1361, - 'Label' => 'Korean (Johab)', - ), - 10000 => array( - 'Id' => 10000, - 'Label' => 'Mac Roman (Western European)', - ), - 10001 => array( - 'Id' => 10001, - 'Label' => 'Mac Japanese', - ), - 10002 => array( - 'Id' => 10002, - 'Label' => 'Mac Traditional Chinese', - ), - 10003 => array( - 'Id' => 10003, - 'Label' => 'Mac Korean', - ), - 10004 => array( - 'Id' => 10004, - 'Label' => 'Mac Arabic', - ), - 10005 => array( - 'Id' => 10005, - 'Label' => 'Mac Hebrew', - ), - 10006 => array( - 'Id' => 10006, - 'Label' => 'Mac Greek', - ), - 10007 => array( - 'Id' => 10007, - 'Label' => 'Mac Cyrillic', - ), - 10008 => array( - 'Id' => 10008, - 'Label' => 'Mac Simplified Chinese', - ), - 10010 => array( - 'Id' => 10010, - 'Label' => 'Mac Romanian', - ), - 10017 => array( - 'Id' => 10017, - 'Label' => 'Mac Ukrainian', - ), - 10021 => array( - 'Id' => 10021, - 'Label' => 'Mac Thai', - ), - 10029 => array( - 'Id' => 10029, - 'Label' => 'Mac Latin 2 (Central European)', - ), - 10079 => array( - 'Id' => 10079, - 'Label' => 'Mac Icelandic', - ), - 10081 => array( - 'Id' => 10081, - 'Label' => 'Mac Turkish', - ), - 10082 => array( - 'Id' => 10082, - 'Label' => 'Mac Croatian', - ), - 12000 => array( - 'Id' => 12000, - 'Label' => 'Unicode UTF-32, little endian', - ), - 12001 => array( - 'Id' => 12001, - 'Label' => 'Unicode UTF-32, big endian', - ), - 20000 => array( - 'Id' => 20000, - 'Label' => 'CNS Taiwan', - ), - 20001 => array( - 'Id' => 20001, - 'Label' => 'TCA Taiwan', - ), - 20002 => array( - 'Id' => 20002, - 'Label' => 'Eten Taiwan', - ), - 20003 => array( - 'Id' => 20003, - 'Label' => 'IBM5550 Taiwan', - ), - 20004 => array( - 'Id' => 20004, - 'Label' => 'TeleText Taiwan', - ), - 20005 => array( - 'Id' => 20005, - 'Label' => 'Wang Taiwan', - ), - 20105 => array( - 'Id' => 20105, - 'Label' => 'IA5 (IRV International Alphabet No. 5, 7-bit)', - ), - 20106 => array( - 'Id' => 20106, - 'Label' => 'IA5 German (7-bit)', - ), - 20107 => array( - 'Id' => 20107, - 'Label' => 'IA5 Swedish (7-bit)', - ), - 20108 => array( - 'Id' => 20108, - 'Label' => 'IA5 Norwegian (7-bit)', - ), - 20127 => array( - 'Id' => 20127, - 'Label' => 'US-ASCII (7-bit)', - ), - 20261 => array( - 'Id' => 20261, - 'Label' => 'T.61', - ), - 20269 => array( - 'Id' => 20269, - 'Label' => 'ISO 6937 Non-Spacing Accent', - ), - 20273 => array( - 'Id' => 20273, - 'Label' => 'IBM EBCDIC Germany', - ), - 20277 => array( - 'Id' => 20277, - 'Label' => 'IBM EBCDIC Denmark-Norway', - ), - 20278 => array( - 'Id' => 20278, - 'Label' => 'IBM EBCDIC Finland-Sweden', - ), - 20280 => array( - 'Id' => 20280, - 'Label' => 'IBM EBCDIC Italy', - ), - 20284 => array( - 'Id' => 20284, - 'Label' => 'IBM EBCDIC Latin America-Spain', - ), - 20285 => array( - 'Id' => 20285, - 'Label' => 'IBM EBCDIC United Kingdom', - ), - 20290 => array( - 'Id' => 20290, - 'Label' => 'IBM EBCDIC Japanese Katakana Extended', - ), - 20297 => array( - 'Id' => 20297, - 'Label' => 'IBM EBCDIC France', - ), - 20420 => array( - 'Id' => 20420, - 'Label' => 'IBM EBCDIC Arabic', - ), - 20423 => array( - 'Id' => 20423, - 'Label' => 'IBM EBCDIC Greek', - ), - 20424 => array( - 'Id' => 20424, - 'Label' => 'IBM EBCDIC Hebrew', - ), - 20833 => array( - 'Id' => 20833, - 'Label' => 'IBM EBCDIC Korean Extended', - ), - 20838 => array( - 'Id' => 20838, - 'Label' => 'IBM EBCDIC Thai', - ), - 20866 => array( - 'Id' => 20866, - 'Label' => 'Russian/Cyrillic (KOI8-R)', - ), - 20871 => array( - 'Id' => 20871, - 'Label' => 'IBM EBCDIC Icelandic', - ), - 20880 => array( - 'Id' => 20880, - 'Label' => 'IBM EBCDIC Cyrillic Russian', - ), - 20905 => array( - 'Id' => 20905, - 'Label' => 'IBM EBCDIC Turkish', - ), - 20924 => array( - 'Id' => 20924, - 'Label' => 'IBM EBCDIC Latin 1/Open System with Euro', - ), - 20932 => array( - 'Id' => 20932, - 'Label' => 'Japanese (JIS 0208-1990 and 0121-1990)', - ), - 20936 => array( - 'Id' => 20936, - 'Label' => 'Simplified Chinese (GB2312)', - ), - 20949 => array( - 'Id' => 20949, - 'Label' => 'Korean Wansung', - ), - 21025 => array( - 'Id' => 21025, - 'Label' => 'IBM EBCDIC Cyrillic Serbian-Bulgarian', - ), - 21027 => array( - 'Id' => 21027, - 'Label' => 'Extended Alpha Lowercase (deprecated)', - ), - 21866 => array( - 'Id' => 21866, - 'Label' => 'Ukrainian/Cyrillic (KOI8-U)', - ), - 28591 => array( - 'Id' => 28591, - 'Label' => 'ISO 8859-1 Latin 1 (Western European)', - ), - 28592 => array( - 'Id' => 28592, - 'Label' => 'ISO 8859-2 (Central European)', - ), - 28593 => array( - 'Id' => 28593, - 'Label' => 'ISO 8859-3 Latin 3', - ), - 28594 => array( - 'Id' => 28594, - 'Label' => 'ISO 8859-4 Baltic', - ), - 28595 => array( - 'Id' => 28595, - 'Label' => 'ISO 8859-5 Cyrillic', - ), - 28596 => array( - 'Id' => 28596, - 'Label' => 'ISO 8859-6 Arabic', - ), - 28597 => array( - 'Id' => 28597, - 'Label' => 'ISO 8859-7 Greek', - ), - 28598 => array( - 'Id' => 28598, - 'Label' => 'ISO 8859-8 Hebrew (Visual)', - ), - 28599 => array( - 'Id' => 28599, - 'Label' => 'ISO 8859-9 Turkish', - ), - 28603 => array( - 'Id' => 28603, - 'Label' => 'ISO 8859-13 Estonian', - ), - 28605 => array( - 'Id' => 28605, - 'Label' => 'ISO 8859-15 Latin 9', - ), - 29001 => array( - 'Id' => 29001, - 'Label' => 'Europa 3', - ), - 38598 => array( - 'Id' => 38598, - 'Label' => 'ISO 8859-8 Hebrew (Logical)', - ), - 50220 => array( - 'Id' => 50220, - 'Label' => 'ISO 2022 Japanese with no halfwidth Katakana (JIS)', - ), - 50221 => array( - 'Id' => 50221, - 'Label' => 'ISO 2022 Japanese with halfwidth Katakana (JIS-Allow 1 byte Kana)', - ), - 50222 => array( - 'Id' => 50222, - 'Label' => 'ISO 2022 Japanese JIS X 0201-1989 (JIS-Allow 1 byte Kana - SO/SI)', - ), - 50225 => array( - 'Id' => 50225, - 'Label' => 'ISO 2022 Korean', - ), - 50227 => array( - 'Id' => 50227, - 'Label' => 'ISO 2022 Simplified Chinese', - ), - 50229 => array( - 'Id' => 50229, - 'Label' => 'ISO 2022 Traditional Chinese', - ), - 50930 => array( - 'Id' => 50930, - 'Label' => 'EBCDIC Japanese (Katakana) Extended', - ), - 50931 => array( - 'Id' => 50931, - 'Label' => 'EBCDIC US-Canada and Japanese', - ), - 50933 => array( - 'Id' => 50933, - 'Label' => 'EBCDIC Korean Extended and Korean', - ), - 50935 => array( - 'Id' => 50935, - 'Label' => 'EBCDIC Simplified Chinese Extended and Simplified Chinese', - ), - 50936 => array( - 'Id' => 50936, - 'Label' => 'EBCDIC Simplified Chinese', - ), - 50937 => array( - 'Id' => 50937, - 'Label' => 'EBCDIC US-Canada and Traditional Chinese', - ), - 50939 => array( - 'Id' => 50939, - 'Label' => 'EBCDIC Japanese (Latin) Extended and Japanese', - ), - 51932 => array( - 'Id' => 51932, - 'Label' => 'EUC Japanese', - ), - 51936 => array( - 'Id' => 51936, - 'Label' => 'EUC Simplified Chinese', - ), - 51949 => array( - 'Id' => 51949, - 'Label' => 'EUC Korean', - ), - 51950 => array( - 'Id' => 51950, - 'Label' => 'EUC Traditional Chinese', - ), - 52936 => array( - 'Id' => 52936, - 'Label' => 'HZ-GB2312 Simplified Chinese', - ), - 54936 => array( - 'Id' => 54936, - 'Label' => 'Windows XP and later: GB18030 Simplified Chinese (4 byte)', - ), - 57002 => array( - 'Id' => 57002, - 'Label' => 'ISCII Devanagari', - ), - 57003 => array( - 'Id' => 57003, - 'Label' => 'ISCII Bengali', - ), - 57004 => array( - 'Id' => 57004, - 'Label' => 'ISCII Tamil', - ), - 57005 => array( - 'Id' => 57005, - 'Label' => 'ISCII Telugu', - ), - 57006 => array( - 'Id' => 57006, - 'Label' => 'ISCII Assamese', - ), - 57007 => array( - 'Id' => 57007, - 'Label' => 'ISCII Oriya', - ), - 57008 => array( - 'Id' => 57008, - 'Label' => 'ISCII Kannada', - ), - 57009 => array( - 'Id' => 57009, - 'Label' => 'ISCII Malayalam', - ), - 57010 => array( - 'Id' => 57010, - 'Label' => 'ISCII Gujarati', - ), - 57011 => array( - 'Id' => 57011, - 'Label' => 'ISCII Punjabi', - ), - 65000 => array( - 'Id' => 65000, - 'Label' => 'Unicode (UTF-7)', - ), - 65001 => array( - 'Id' => 65001, - 'Label' => 'Unicode (UTF-8)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ColorTwistMatrix.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ColorTwistMatrix.php deleted file mode 100644 index 7c01b7ed3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ColorTwistMatrix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTwistMatrix extends AbstractTag -{ - - protected $Id = 268435460; - - protected $Name = 'ColorTwistMatrix'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Twist Matrix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Comments.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Comments.php deleted file mode 100644 index cb6d27c49..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Comments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comments extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Comments'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CompObjUserType.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CompObjUserType.php deleted file mode 100644 index e49d89fab..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CompObjUserType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompObjUserType extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CompObjUserType'; - - protected $FullName = 'FlashPix::CompObj'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Comp Obj User Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CompObjUserTypeLen.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CompObjUserTypeLen.php deleted file mode 100644 index cf6573447..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CompObjUserTypeLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompObjUserTypeLen extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CompObjUserTypeLen'; - - protected $FullName = 'FlashPix::CompObj'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Comp Obj User Type Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Company.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Company.php deleted file mode 100644 index f3aeca95c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Company.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Company extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'Company'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Company'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ContentDescriptionNotes.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ContentDescriptionNotes.php deleted file mode 100644 index 8d3138452..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ContentDescriptionNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDescriptionNotes extends AbstractTag -{ - - protected $Id = 587202575; - - protected $Name = 'ContentDescriptionNotes'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Description Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ContrastAdjustment.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ContrastAdjustment.php deleted file mode 100644 index f7fac8f0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ContrastAdjustment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastAdjustment extends AbstractTag -{ - - protected $Id = 268435461; - - protected $Name = 'ContrastAdjustment'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast Adjustment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Copyright.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Copyright.php deleted file mode 100644 index 438add98f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 570425344; - - protected $Name = 'Copyright'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CreateDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CreateDate.php deleted file mode 100644 index e9e4b72f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CreatingApplication.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CreatingApplication.php deleted file mode 100644 index 362145bfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CreatingApplication.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatingApplication extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CreatingApplication'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creating Application'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CreatingTransform.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CreatingTransform.php deleted file mode 100644 index 56caac31e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CreatingTransform.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatingTransform extends AbstractTag -{ - - protected $Id = 65793; - - protected $Name = 'CreatingTransform'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creating Transform'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CreationPathVector.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CreationPathVector.php deleted file mode 100644 index b082e18a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CreationPathVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationPathVector extends AbstractTag -{ - - protected $Id = 553648130; - - protected $Name = 'CreationPathVector'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creation Path Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/CurrentUser.php b/lib/PHPExiftool/Driver/Tag/FlashPix/CurrentUser.php deleted file mode 100644 index 9452e7255..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/CurrentUser.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentUser extends AbstractTag -{ - - protected $Id = 'Current User'; - - protected $Name = 'CurrentUser'; - - protected $FullName = 'FlashPix::Main'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current User'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DataCreateDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DataCreateDate.php deleted file mode 100644 index 10c1882f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DataCreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataCreateDate extends AbstractTag -{ - - protected $Id = 65542; - - protected $Name = 'DataCreateDate'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DataModifyDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DataModifyDate.php deleted file mode 100644 index 592a4cf64..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DataModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataModifyDate extends AbstractTag -{ - - protected $Id = 65543; - - protected $Name = 'DataModifyDate'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectID.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectID.php deleted file mode 100644 index 5aee7b768..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataObjectID extends AbstractTag -{ - - protected $Id = 65536; - - protected $Name = 'DataObjectID'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Object ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectStatus.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectStatus.php deleted file mode 100644 index d3c2bdf5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataObjectStatus extends AbstractTag -{ - - protected $Id = 65792; - - protected $Name = 'DataObjectStatus'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Object Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectTitle.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectTitle.php deleted file mode 100644 index c1dba241c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DataObjectTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataObjectTitle extends AbstractTag -{ - - protected $Id = 65539; - - protected $Name = 'DataObjectTitle'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Object Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DateTimeOriginal.php deleted file mode 100644 index 18b8757fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 587202570; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DecimationMethod.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DecimationMethod.php deleted file mode 100644 index 662057c36..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DecimationMethod.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecimationMethod extends AbstractTag -{ - - protected $Id = 33554436; - - protected $Name = 'DecimationMethod'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decimation Method'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None (Full-sized Image)', - ), - 8 => array( - 'Id' => 8, - 'Label' => '8-point Prefilter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DecimationPrefilterWidth.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DecimationPrefilterWidth.php deleted file mode 100644 index 097783256..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DecimationPrefilterWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecimationPrefilterWidth extends AbstractTag -{ - - protected $Id = 33554437; - - protected $Name = 'DecimationPrefilterWidth'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Decimation Prefilter Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DefaultDisplayHeight.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DefaultDisplayHeight.php deleted file mode 100644 index 1e3a6d8b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DefaultDisplayHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultDisplayHeight extends AbstractTag -{ - - protected $Id = 16777220; - - protected $Name = 'DefaultDisplayHeight'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Display Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DefaultDisplayWidth.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DefaultDisplayWidth.php deleted file mode 100644 index 3824c666d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DefaultDisplayWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultDisplayWidth extends AbstractTag -{ - - protected $Id = 16777221; - - protected $Name = 'DefaultDisplayWidth'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Display Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Dictionary.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Dictionary.php deleted file mode 100644 index 91a5ef200..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Dictionary.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Dictionary extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Dictionary'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dictionary'; - - protected $local_g2 = 'Other'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DigitalImageBroker.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DigitalImageBroker.php deleted file mode 100644 index 5427853a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DigitalImageBroker.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalImageBroker extends AbstractTag -{ - - protected $Id = 570425346; - - protected $Name = 'DigitalImageBroker'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Image Broker'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/DisplayUnits.php b/lib/PHPExiftool/Driver/Tag/FlashPix/DisplayUnits.php deleted file mode 100644 index 1220dbf06..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/DisplayUnits.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayUnits extends AbstractTag -{ - - protected $Id = 16777222; - - protected $Name = 'DisplayUnits'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Units'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'inches', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'meters', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'mm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Events.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Events.php deleted file mode 100644 index e2caab716..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Events.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Events extends AbstractTag -{ - - protected $Id = 587202571; - - protected $Name = 'Events'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Events'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureCompensation.php deleted file mode 100644 index 8c966f887..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureCompensation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 620756997; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureIndex.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureIndex.php deleted file mode 100644 index 938177ef5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureIndex extends AbstractTag -{ - - protected $Id = 620757008; - - protected $Name = 'ExposureIndex'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureProgram.php deleted file mode 100644 index 13edc0c3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureProgram.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 620756995; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Program'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Defined', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Creative (Slow speed)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Action (High speed)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Portrait', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Landscape', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Bulb', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureTime.php deleted file mode 100644 index 6551d5bb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 620756993; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionClassID.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionClassID.php deleted file mode 100644 index 358eefbec..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionClassID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtensionClassID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ExtensionClassID'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extension Class ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionCreateDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionCreateDate.php deleted file mode 100644 index aa53b5b09..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionCreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtensionCreateDate extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ExtensionCreateDate'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extension Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionDescription.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionDescription.php deleted file mode 100644 index 8815206c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtensionDescription extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ExtensionDescription'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extension Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionModifyDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionModifyDate.php deleted file mode 100644 index 9d34d052e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtensionModifyDate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ExtensionModifyDate'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extension Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionName.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionName.php deleted file mode 100644 index cbd066dd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtensionName extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ExtensionName'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extension Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionPersistence.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionPersistence.php deleted file mode 100644 index 470f40beb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ExtensionPersistence.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtensionPersistence extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ExtensionPersistence'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extension Persistence'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Always Valid', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Invalidated By Modification', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Potentially Invalidated By Modification', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FNumber.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FNumber.php deleted file mode 100644 index 15adbf360..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 620756994; - - protected $Name = 'FNumber'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'F Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FileSource.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FileSource.php deleted file mode 100644 index 5c4cbc351..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FileSource.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSource extends AbstractTag -{ - - protected $Id = 553648128; - - protected $Name = 'FileSource'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Source'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Film Scanner', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Reflection Print Scanner', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Digital Camera', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Video Capture', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Computer Graphics', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmBrand.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FilmBrand.php deleted file mode 100644 index 63e811515..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmBrand.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmBrand extends AbstractTag -{ - - protected $Id = 654311424; - - protected $Name = 'FilmBrand'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Brand'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmCategory.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FilmCategory.php deleted file mode 100644 index 0a119a991..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmCategory extends AbstractTag -{ - - protected $Id = 654311425; - - protected $Name = 'FilmCategory'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmFrameNumber.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FilmFrameNumber.php deleted file mode 100644 index c2974e52a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmFrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmFrameNumber extends AbstractTag -{ - - protected $Id = 654311428; - - protected $Name = 'FilmFrameNumber'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmRollNumber.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FilmRollNumber.php deleted file mode 100644 index 26f1a1abd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmRollNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmRollNumber extends AbstractTag -{ - - protected $Id = 654311427; - - protected $Name = 'FilmRollNumber'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Roll Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmSize.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FilmSize.php deleted file mode 100644 index fb1350615..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FilmSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmSize extends AbstractTag -{ - - protected $Id = 654311426; - - protected $Name = 'FilmSize'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Filtering.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Filtering.php deleted file mode 100644 index e32d4b26e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Filtering.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Filtering extends AbstractTag -{ - - protected $Id = 268435458; - - protected $Name = 'Filtering'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Filtering'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Flash.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Flash.php deleted file mode 100644 index 50d74f8f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Flash.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 620757003; - - protected $Name = 'Flash'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'No Flash', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Flash Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashEnergy.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FlashEnergy.php deleted file mode 100644 index 8e71216de..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashEnergy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashEnergy extends AbstractTag -{ - - protected $Id = 620757004; - - protected $Name = 'FlashEnergy'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Energy'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashPixStreamFieldOffset.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FlashPixStreamFieldOffset.php deleted file mode 100644 index 22a7ac65c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashPixStreamFieldOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashPixStreamFieldOffset extends AbstractTag -{ - - protected $Id = 8193; - - protected $Name = 'FlashPixStreamFieldOffset'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Pix Stream Field Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashPixStreamPathname.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FlashPixStreamPathname.php deleted file mode 100644 index 102649327..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashPixStreamPathname.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashPixStreamPathname extends AbstractTag -{ - - protected $Id = 8192; - - protected $Name = 'FlashPixStreamPathname'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Pix Stream Pathname'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashReturn.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FlashReturn.php deleted file mode 100644 index 99a93fec6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FlashReturn.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashReturn extends AbstractTag -{ - - protected $Id = 620757005; - - protected $Name = 'FlashReturn'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Return'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Subject Outside Flash Range', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Subject Inside Flash Range', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalLength.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FocalLength.php deleted file mode 100644 index a426f9d60..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 620757001; - - protected $Name = 'FocalLength'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneResolutionUnit.php deleted file mode 100644 index 6e01e384c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneResolutionUnit.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneResolutionUnit extends AbstractTag -{ - - protected $Id = 637534211; - - protected $Name = 'FocalPlaneResolutionUnit'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Plane Resolution Unit'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'inches', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'cm', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'mm', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'um', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneXResolution.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneXResolution.php deleted file mode 100644 index d7ba727d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneXResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneXResolution extends AbstractTag -{ - - protected $Id = 637534209; - - protected $Name = 'FocalPlaneXResolution'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Plane X Resolution'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneYResolution.php b/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneYResolution.php deleted file mode 100644 index 5b51c9764..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/FocalPlaneYResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneYResolution extends AbstractTag -{ - - protected $Id = 637534210; - - protected $Name = 'FocalPlaneYResolution'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Plane Y Resolution'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/GroupCaption.php b/lib/PHPExiftool/Driver/Tag/FlashPix/GroupCaption.php deleted file mode 100644 index 007cb24b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/GroupCaption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GroupCaption extends AbstractTag -{ - - protected $Id = 587202562; - - protected $Name = 'GroupCaption'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Group Caption'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/HeadingPairs.php b/lib/PHPExiftool/Driver/Tag/FlashPix/HeadingPairs.php deleted file mode 100644 index 295a3255e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/HeadingPairs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeadingPairs extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'HeadingPairs'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Heading Pairs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/HiddenSlides.php b/lib/PHPExiftool/Driver/Tag/FlashPix/HiddenSlides.php deleted file mode 100644 index dc6f02a73..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/HiddenSlides.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HiddenSlides extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'HiddenSlides'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hidden Slides'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/HyperlinkBase.php b/lib/PHPExiftool/Driver/Tag/FlashPix/HyperlinkBase.php deleted file mode 100644 index 62bec8d4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/HyperlinkBase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HyperlinkBase extends AbstractTag -{ - - protected $Id = '_PID_LINKBASE'; - - protected $Name = 'HyperlinkBase'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hyperlink Base'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Hyperlinks.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Hyperlinks.php deleted file mode 100644 index 3ae81a9e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Hyperlinks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Hyperlinks extends AbstractTag -{ - - protected $Id = '_PID_HLINKS'; - - protected $Name = 'Hyperlinks'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hyperlinks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/HyperlinksChanged.php b/lib/PHPExiftool/Driver/Tag/FlashPix/HyperlinksChanged.php deleted file mode 100644 index d017f13f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/HyperlinksChanged.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HyperlinksChanged extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'HyperlinksChanged'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hyperlinks Changed'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ISO.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ISO.php deleted file mode 100644 index 78362bcbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ISO.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 637534215; - - protected $Name = 'ISO'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ImageHeight.php deleted file mode 100644 index 68a7f8585..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 16777219; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ImageWidth.php deleted file mode 100644 index f52b25b0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 16777218; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/InputDataObjectList.php b/lib/PHPExiftool/Driver/Tag/FlashPix/InputDataObjectList.php deleted file mode 100644 index 1ed259bc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/InputDataObjectList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputDataObjectList extends AbstractTag -{ - - protected $Id = 65792; - - protected $Name = 'InputDataObjectList'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Input Data Object List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/IntellectualPropertyNotes.php b/lib/PHPExiftool/Driver/Tag/FlashPix/IntellectualPropertyNotes.php deleted file mode 100644 index df83da385..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/IntellectualPropertyNotes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntellectualPropertyNotes extends AbstractTag -{ - - protected $Id = 570425348; - - protected $Name = 'IntellectualPropertyNotes'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intellectual Property Notes'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/JPEGTables.php b/lib/PHPExiftool/Driver/Tag/FlashPix/JPEGTables.php deleted file mode 100644 index 11009ce6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/JPEGTables.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGTables extends AbstractTag -{ - - protected $Id = 50331649; - - protected $Name = 'JPEGTables'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Tables'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Keywords.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Keywords.php deleted file mode 100644 index 4110b14cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Keywords'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/LastModifiedBy.php b/lib/PHPExiftool/Driver/Tag/FlashPix/LastModifiedBy.php deleted file mode 100644 index 3e20009b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/LastModifiedBy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastModifiedBy extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'LastModifiedBy'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Modified By'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/LastModifier.php b/lib/PHPExiftool/Driver/Tag/FlashPix/LastModifier.php deleted file mode 100644 index b3cb77f5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/LastModifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastModifier extends AbstractTag -{ - - protected $Id = 65540; - - protected $Name = 'LastModifier'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Modifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/LastPrinted.php b/lib/PHPExiftool/Driver/Tag/FlashPix/LastPrinted.php deleted file mode 100644 index 5dd98505a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/LastPrinted.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPrinted extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'LastPrinted'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Printed'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/LightSource.php b/lib/PHPExiftool/Driver/Tag/FlashPix/LightSource.php deleted file mode 100644 index e9fde7149..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/LightSource.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSource extends AbstractTag -{ - - protected $Id = 620757000; - - protected $Name = 'LightSource'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Light Source'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fluorescent', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten (Incandescent)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Flash', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fine Weather', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cloudy', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Shade', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Daylight Fluorescent', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Day White Fluorescent', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Cool White Fluorescent', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'White Fluorescent', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Warm White Fluorescent', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Standard Light A', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Standard Light B', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Standard Light C', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'D55', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'D65', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'D75', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'D50', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'ISO Studio Tungsten', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Lines.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Lines.php deleted file mode 100644 index 485285a9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Lines.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lines extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Lines'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lines'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/LinksUpToDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/LinksUpToDate.php deleted file mode 100644 index 72f39c696..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/LinksUpToDate.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinksUpToDate extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'LinksUpToDate'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Links Up To Date'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/LocaleIndicator.php b/lib/PHPExiftool/Driver/Tag/FlashPix/LocaleIndicator.php deleted file mode 100644 index bb801c27d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/LocaleIndicator.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocaleIndicator extends AbstractTag -{ - - protected $Id = 2147483648; - - protected $Name = 'LocaleIndicator'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Locale Indicator'; - - protected $local_g2 = 'Other'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/LockedPropertyList.php b/lib/PHPExiftool/Driver/Tag/FlashPix/LockedPropertyList.php deleted file mode 100644 index eb92f5a34..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/LockedPropertyList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LockedPropertyList extends AbstractTag -{ - - protected $Id = 65538; - - protected $Name = 'LockedPropertyList'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Locked Property List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/MMClips.php b/lib/PHPExiftool/Driver/Tag/FlashPix/MMClips.php deleted file mode 100644 index ae2ee514f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/MMClips.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MMClips extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'MMClips'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MM Clips'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Make.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Make.php deleted file mode 100644 index 43d31b2c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Make.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 603979776; - - protected $Name = 'Make'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Manager.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Manager.php deleted file mode 100644 index c44fa9d74..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Manager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manager extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Manager'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/MaxApertureValue.php b/lib/PHPExiftool/Driver/Tag/FlashPix/MaxApertureValue.php deleted file mode 100644 index dce7c729d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/MaxApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureValue extends AbstractTag -{ - - protected $Id = 620757002; - - protected $Name = 'MaxApertureValue'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Aperture Value'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/MaxJPEGTableIndex.php b/lib/PHPExiftool/Driver/Tag/FlashPix/MaxJPEGTableIndex.php deleted file mode 100644 index 9bcf66b23..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/MaxJPEGTableIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxJPEGTableIndex extends AbstractTag -{ - - protected $Id = 50331650; - - protected $Name = 'MaxJPEGTableIndex'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max JPEG Table Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumImageIndex.php b/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumImageIndex.php deleted file mode 100644 index d21dd67b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumImageIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumImageIndex extends AbstractTag -{ - - protected $Id = 65793; - - protected $Name = 'MaximumImageIndex'; - - protected $FullName = 'FlashPix::GlobalInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Image Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumOperationIndex.php b/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumOperationIndex.php deleted file mode 100644 index 155c8d524..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumOperationIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumOperationIndex extends AbstractTag -{ - - protected $Id = 65795; - - protected $Name = 'MaximumOperationIndex'; - - protected $FullName = 'FlashPix::GlobalInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Operation Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumTransformIndex.php b/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumTransformIndex.php deleted file mode 100644 index 2875122f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/MaximumTransformIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumTransformIndex extends AbstractTag -{ - - protected $Id = 65794; - - protected $Name = 'MaximumTransformIndex'; - - protected $FullName = 'FlashPix::GlobalInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Transform Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/FlashPix/MeteringMode.php deleted file mode 100644 index d09bb15bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/MeteringMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 620756999; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metering Mode'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Multi-spot', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Multi-segment', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Partial', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Model.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Model.php deleted file mode 100644 index 225f64d6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Model.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 603979777; - - protected $Name = 'Model'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ModifyDate.php deleted file mode 100644 index 2dda0a462..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Notes.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Notes.php deleted file mode 100644 index 2f6ac2f18..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Notes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Notes extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Notes'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/NumChannels.php b/lib/PHPExiftool/Driver/Tag/FlashPix/NumChannels.php deleted file mode 100644 index 1a2126703..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/NumChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumChannels extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'NumChannels'; - - protected $FullName = 'FlashPix::SubimageHdr'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Num Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/NumberOfResolutions.php b/lib/PHPExiftool/Driver/Tag/FlashPix/NumberOfResolutions.php deleted file mode 100644 index 2acaa758e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/NumberOfResolutions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfResolutions extends AbstractTag -{ - - protected $Id = 16777216; - - protected $Name = 'NumberOfResolutions'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Resolutions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OperationClassID.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OperationClassID.php deleted file mode 100644 index 400b5152f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OperationClassID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationClassID extends AbstractTag -{ - - protected $Id = 65537; - - protected $Name = 'OperationClassID'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation Class ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OperationID.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OperationID.php deleted file mode 100644 index 771390f83..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OperationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationID extends AbstractTag -{ - - protected $Id = 65536; - - protected $Name = 'OperationID'; - - protected $FullName = 'FlashPix::Operation'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OperationNumber.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OperationNumber.php deleted file mode 100644 index 5cc70fc9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OperationNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationNumber extends AbstractTag -{ - - protected $Id = 65794; - - protected $Name = 'OperationNumber'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OptoElectricConvFactor.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OptoElectricConvFactor.php deleted file mode 100644 index b902c642f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OptoElectricConvFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptoElectricConvFactor extends AbstractTag -{ - - protected $Id = 637534216; - - protected $Name = 'Opto-ElectricConvFactor'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Opto-Electric Conv Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalDocumentSize.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalDocumentSize.php deleted file mode 100644 index 8636d6080..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalDocumentSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalDocumentSize extends AbstractTag -{ - - protected $Id = 687865857; - - protected $Name = 'OriginalDocumentSize'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Document Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalImageBroker.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalImageBroker.php deleted file mode 100644 index 66a847f3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalImageBroker.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageBroker extends AbstractTag -{ - - protected $Id = 570425345; - - protected $Name = 'OriginalImageBroker'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Image Broker'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalMedium.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalMedium.php deleted file mode 100644 index f65d0eb53..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalMedium.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalMedium extends AbstractTag -{ - - protected $Id = 687865858; - - protected $Name = 'OriginalMedium'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Medium'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous Tone Image', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Halftone Image', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Line Art', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalScannedImageSize.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalScannedImageSize.php deleted file mode 100644 index 9d70492af..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OriginalScannedImageSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalScannedImageSize extends AbstractTag -{ - - protected $Id = 687865856; - - protected $Name = 'OriginalScannedImageSize'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Scanned Image Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/OutputDataObjectList.php b/lib/PHPExiftool/Driver/Tag/FlashPix/OutputDataObjectList.php deleted file mode 100644 index 13a33f01f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/OutputDataObjectList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputDataObjectList extends AbstractTag -{ - - protected $Id = 65793; - - protected $Name = 'OutputDataObjectList'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Output Data Object List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Pages.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Pages.php deleted file mode 100644 index c39dd4eec..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Pages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pages extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Pages'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Paragraphs.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Paragraphs.php deleted file mode 100644 index 42b4d056f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Paragraphs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Paragraphs extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Paragraphs'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Paragraphs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/People.php b/lib/PHPExiftool/Driver/Tag/FlashPix/People.php deleted file mode 100644 index 51b09223c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/People.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class People extends AbstractTag -{ - - protected $Id = 587202564; - - protected $Name = 'People'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'People'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PerPictureNotes.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PerPictureNotes.php deleted file mode 100644 index baf7acd25..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PerPictureNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerPictureNotes extends AbstractTag -{ - - protected $Id = 620757010; - - protected $Name = 'PerPictureNotes'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Per Picture Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Places.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Places.php deleted file mode 100644 index ccb813fe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Places.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Places extends AbstractTag -{ - - protected $Id = 587202572; - - protected $Name = 'Places'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Places'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PresentationTarget.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PresentationTarget.php deleted file mode 100644 index 176249d47..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PresentationTarget.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationTarget extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PresentationTarget'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Target'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImage.php deleted file mode 100644 index 3abcf5e4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'Preview'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'FlashPix::Main'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImageHeight.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImageHeight.php deleted file mode 100644 index b382f2d04..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageHeight extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'PreviewImageHeight'; - - protected $FullName = 'FlashPix::PreviewInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImageWidth.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImageWidth.php deleted file mode 100644 index 7dbbaf096..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PreviewImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageWidth extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'PreviewImageWidth'; - - protected $FullName = 'FlashPix::PreviewInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PropertySetIDCodes.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PropertySetIDCodes.php deleted file mode 100644 index 5641822fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PropertySetIDCodes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PropertySetIDCodes extends AbstractTag -{ - - protected $Id = 12289; - - protected $Name = 'PropertySetIDCodes'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Property Set ID Codes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PropertySetPathname.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PropertySetPathname.php deleted file mode 100644 index 67e5de5c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PropertySetPathname.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PropertySetPathname extends AbstractTag -{ - - protected $Id = 12288; - - protected $Name = 'PropertySetPathname'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Property Set Pathname'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/PropertyVectorElements.php b/lib/PHPExiftool/Driver/Tag/FlashPix/PropertyVectorElements.php deleted file mode 100644 index 41dd370f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/PropertyVectorElements.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PropertyVectorElements extends AbstractTag -{ - - protected $Id = 12290; - - protected $Name = 'PropertyVectorElements'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Property Vector Elements'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/RectangleOfInterest.php b/lib/PHPExiftool/Driver/Tag/FlashPix/RectangleOfInterest.php deleted file mode 100644 index 6ea0f86ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/RectangleOfInterest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RectangleOfInterest extends AbstractTag -{ - - protected $Id = 268435457; - - protected $Name = 'RectangleOfInterest'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rectangle Of Interest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ResultAspectRatio.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ResultAspectRatio.php deleted file mode 100644 index 5532cc30c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ResultAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResultAspectRatio extends AbstractTag -{ - - protected $Id = 268435456; - - protected $Name = 'ResultAspectRatio'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Result Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/RevisionNumber.php b/lib/PHPExiftool/Driver/Tag/FlashPix/RevisionNumber.php deleted file mode 100644 index 594a5881d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/RevisionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RevisionNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RevisionNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revision Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScaleCrop.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScaleCrop.php deleted file mode 100644 index dbc9df0be..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScaleCrop.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScaleCrop extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'ScaleCrop'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scale Crop'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScanDate.php deleted file mode 100644 index b0decb6fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanDate extends AbstractTag -{ - - protected $Id = 671088648; - - protected $Name = 'ScanDate'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanOperatorID.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScanOperatorID.php deleted file mode 100644 index bb52caaef..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanOperatorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanOperatorID extends AbstractTag -{ - - protected $Id = 671088646; - - protected $Name = 'ScanOperatorID'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Operator ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanSoftware.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScanSoftware.php deleted file mode 100644 index 5105f856b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanSoftware.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanSoftware extends AbstractTag -{ - - protected $Id = 671088643; - - protected $Name = 'ScanSoftware'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanSoftwareRevisionDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScanSoftwareRevisionDate.php deleted file mode 100644 index a9b7f9409..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScanSoftwareRevisionDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanSoftwareRevisionDate extends AbstractTag -{ - - protected $Id = 671088644; - - protected $Name = 'ScanSoftwareRevisionDate'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scan Software Revision Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerMake.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerMake.php deleted file mode 100644 index 92fd5be88..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerMake.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerMake extends AbstractTag -{ - - protected $Id = 671088640; - - protected $Name = 'ScannerMake'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanner Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerModel.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerModel.php deleted file mode 100644 index 54f0f1839..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerModel extends AbstractTag -{ - - protected $Id = 671088641; - - protected $Name = 'ScannerModel'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanner Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerPixelSize.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerPixelSize.php deleted file mode 100644 index 1e54fcabb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerPixelSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerPixelSize extends AbstractTag -{ - - protected $Id = 671088650; - - protected $Name = 'ScannerPixelSize'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanner Pixel Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerSerialNumber.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerSerialNumber.php deleted file mode 100644 index c53edc1f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScannerSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerSerialNumber extends AbstractTag -{ - - protected $Id = 671088642; - - protected $Name = 'ScannerSerialNumber'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scanner Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SceneType.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SceneType.php deleted file mode 100644 index 39089e752..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SceneType.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneType extends AbstractTag -{ - - protected $Id = 553648129; - - protected $Name = 'SceneType'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scene Type'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Original Scene', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Second Generation Scene', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Digital Scene Generation', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ScreenNail.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ScreenNail.php deleted file mode 100644 index 3ce8d1aa4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ScreenNail.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenNail extends AbstractTag -{ - - protected $Id = '\\x05Screen Nail'; - - protected $Name = 'ScreenNail'; - - protected $FullName = 'FlashPix::Main'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screen Nail'; - - protected $local_g2 = 'Other'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Security.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Security.php deleted file mode 100644 index f89e40c62..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Security.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Security extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'Security'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Security'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Password protected', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Read-only recommended', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Read-only enforced', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Locked for annotations', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SensingMethod.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SensingMethod.php deleted file mode 100644 index d5ef72104..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SensingMethod.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensingMethod extends AbstractTag -{ - - protected $Id = 637534208; - - protected $Name = 'SensingMethod'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensing Method'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Monochrome area', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'One-chip color area', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Two-chip color area', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Three-chip color area', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Color sequential area', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome linear', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Trilinear', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Color sequential linear', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SerialNumber.php deleted file mode 100644 index 2653dbe49..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 603979778; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ServiceOrganizationName.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ServiceOrganizationName.php deleted file mode 100644 index f2942a4cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ServiceOrganizationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ServiceOrganizationName extends AbstractTag -{ - - protected $Id = 671088645; - - protected $Name = 'ServiceOrganizationName'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Service Organization Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SharedDoc.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SharedDoc.php deleted file mode 100644 index a79031e2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SharedDoc.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharedDoc extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'SharedDoc'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shared Doc'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SharpnessApproximation.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SharpnessApproximation.php deleted file mode 100644 index 0daa3c342..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SharpnessApproximation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessApproximation extends AbstractTag -{ - - protected $Id = 553648133; - - protected $Name = 'SharpnessApproximation'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharpness Approximation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Slides.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Slides.php deleted file mode 100644 index e9dd52807..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Slides.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Slides extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Slides'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slides'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Software.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Software.php deleted file mode 100644 index 9365ca312..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'Software'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SoftwareRelease.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SoftwareRelease.php deleted file mode 100644 index 356ed9f31..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SoftwareRelease.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftwareRelease extends AbstractTag -{ - - protected $Id = 553648131; - - protected $Name = 'SoftwareRelease'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software Release'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SpatialFrequencyResponse.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SpatialFrequencyResponse.php deleted file mode 100644 index b4bcb44bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SpatialFrequencyResponse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialFrequencyResponse extends AbstractTag -{ - - protected $Id = 637534212; - - protected $Name = 'SpatialFrequencyResponse'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spatial Frequency Response'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SpatialOrientation.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SpatialOrientation.php deleted file mode 100644 index 937d3db40..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SpatialOrientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialOrientation extends AbstractTag -{ - - protected $Id = 268435459; - - protected $Name = 'SpatialOrientation'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spatial Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SpecialEffectsOpticalFilter.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SpecialEffectsOpticalFilter.php deleted file mode 100644 index 1227793f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SpecialEffectsOpticalFilter.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialEffectsOpticalFilter extends AbstractTag -{ - - protected $Id = 620757009; - - protected $Name = 'SpecialEffectsOpticalFilter'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Special Effects Optical Filter'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Colored', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Diffusion', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Multi-image', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Polarizing', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Split-field', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Star', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/StorageStreamPathname.php b/lib/PHPExiftool/Driver/Tag/FlashPix/StorageStreamPathname.php deleted file mode 100644 index 20bc64a6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/StorageStreamPathname.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageStreamPathname extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'Storage-StreamPathname'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Storage-Stream Pathname'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageColor.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageColor.php deleted file mode 100644 index 93a3a18ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageColor.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageColor extends AbstractTag -{ - - protected $Id = 33554434; - - protected $Name = 'SubimageColor'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subimage Color'; - - protected $Values = array( - '01 0000' => array( - 'Id' => '01 0000', - 'Label' => 'Opacity Only', - ), - '01 0001' => array( - 'Id' => '01 0001', - 'Label' => 'Monochrome', - ), - '01 8000' => array( - 'Id' => '01 8000', - 'Label' => 'Opacity Only (uncalibrated)', - ), - '01 8001' => array( - 'Id' => '01 8001', - 'Label' => 'Monochrome (uncalibrated)', - ), - '03 0002' => array( - 'Id' => '03 0002', - 'Label' => 'YCbCr', - ), - '03 0003' => array( - 'Id' => '03 0003', - 'Label' => 'RGB', - ), - '03 8002' => array( - 'Id' => '03 8002', - 'Label' => 'YCbCr (uncalibrated)', - ), - '03 8003' => array( - 'Id' => '03 8003', - 'Label' => 'RGB (uncalibrated)', - ), - '04 0002' => array( - 'Id' => '04 0002', - 'Label' => 'YCbCr with Opacity', - ), - '04 0003' => array( - 'Id' => '04 0003', - 'Label' => 'RGB with Opacity', - ), - '04 8002' => array( - 'Id' => '04 8002', - 'Label' => 'YCbCr with Opacity (uncalibrated)', - ), - '04 8003' => array( - 'Id' => '04 8003', - 'Label' => 'RGB with Opacity (uncalibrated)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageHeight.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageHeight.php deleted file mode 100644 index 69e9a478f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SubimageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Subimage Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageICCProfile.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageICCProfile.php deleted file mode 100644 index ebb3cdbf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageICCProfile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageICCProfile extends AbstractTag -{ - - protected $Id = 33554439; - - protected $Name = 'SubimageICC_Profile'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subimage ICC Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageNumericalFormat.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageNumericalFormat.php deleted file mode 100644 index 51856e417..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageNumericalFormat.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageNumericalFormat extends AbstractTag -{ - - protected $Id = 33554435; - - protected $Name = 'SubimageNumericalFormat'; - - protected $FullName = 'FlashPix::Image'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subimage Numerical Format'; - - protected $Values = array( - 17 => array( - 'Id' => 17, - 'Label' => '8-bit, Unsigned', - ), - 18 => array( - 'Id' => 18, - 'Label' => '16-bit, Unsigned', - ), - 19 => array( - 'Id' => 19, - 'Label' => '32-bit, Unsigned', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageResolutions.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageResolutions.php deleted file mode 100644 index 9bd259485..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageResolutions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageResolutions extends AbstractTag -{ - - protected $Id = 16384; - - protected $Name = 'SubimageResolutions'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subimage Resolutions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileCount.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileCount.php deleted file mode 100644 index 0a47b36fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageTileCount extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'SubimageTileCount'; - - protected $FullName = 'FlashPix::SubimageHdr'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Subimage Tile Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileHeight.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileHeight.php deleted file mode 100644 index 928cc6124..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageTileHeight extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'SubimageTileHeight'; - - protected $FullName = 'FlashPix::SubimageHdr'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Subimage Tile Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileWidth.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileWidth.php deleted file mode 100644 index 3cef841a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageTileWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageTileWidth extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'SubimageTileWidth'; - - protected $FullName = 'FlashPix::SubimageHdr'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Subimage Tile Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageWidth.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageWidth.php deleted file mode 100644 index 9e74c0ef2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubimageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubimageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SubimageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Subimage Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Subject.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Subject.php deleted file mode 100644 index 011104817..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Subject'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubjectDistance.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubjectDistance.php deleted file mode 100644 index 1c4197979..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubjectDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistance extends AbstractTag -{ - - protected $Id = 620756998; - - protected $Name = 'SubjectDistance'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject Distance'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/SubjectLocation.php b/lib/PHPExiftool/Driver/Tag/FlashPix/SubjectLocation.php deleted file mode 100644 index a78d8cafc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/SubjectLocation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectLocation extends AbstractTag -{ - - protected $Id = 620757007; - - protected $Name = 'SubjectLocation'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject Location'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Template.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Template.php deleted file mode 100644 index 7583427b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Template.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Template extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Template'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TestTarget.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TestTarget.php deleted file mode 100644 index 23e14ca67..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TestTarget.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TestTarget extends AbstractTag -{ - - protected $Id = 587202560; - - protected $Name = 'TestTarget'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Test Target'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Color Chart', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Gray Card', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Grayscale', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Resolution Chart', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Inch Scale', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Centimeter Scale', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Millimeter Scale', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Micrometer Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Things.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Things.php deleted file mode 100644 index c7a51b46f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Things.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Things extends AbstractTag -{ - - protected $Id = 587202567; - - protected $Name = 'Things'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Things'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/ThumbnailClip.php b/lib/PHPExiftool/Driver/Tag/FlashPix/ThumbnailClip.php deleted file mode 100644 index 4d940d949..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/ThumbnailClip.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailClip extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'ThumbnailClip'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Clip'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Title.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Title.php deleted file mode 100644 index 4ab44c584..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Title'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TitleOfParts.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TitleOfParts.php deleted file mode 100644 index 02bf0c747..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TitleOfParts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleOfParts extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'TitleOfParts'; - - protected $FullName = 'FlashPix::DocumentInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title Of Parts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TotalEditTime.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TotalEditTime.php deleted file mode 100644 index 607f9a16d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TotalEditTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalEditTime extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'TotalEditTime'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Edit Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformCreateDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TransformCreateDate.php deleted file mode 100644 index 1538e15df..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformCreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransformCreateDate extends AbstractTag -{ - - protected $Id = 65542; - - protected $Name = 'TransformCreateDate'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transform Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformModifyDate.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TransformModifyDate.php deleted file mode 100644 index c14910733..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransformModifyDate extends AbstractTag -{ - - protected $Id = 65543; - - protected $Name = 'TransformModifyDate'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transform Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformNodeID.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TransformNodeID.php deleted file mode 100644 index 83cf9b508..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformNodeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransformNodeID extends AbstractTag -{ - - protected $Id = 65536; - - protected $Name = 'TransformNodeID'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transform Node ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformTitle.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TransformTitle.php deleted file mode 100644 index 29883dccb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransformTitle extends AbstractTag -{ - - protected $Id = 65539; - - protected $Name = 'TransformTitle'; - - protected $FullName = 'FlashPix::Transform'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transform Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformedImageTitle.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TransformedImageTitle.php deleted file mode 100644 index 4c3e65cf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TransformedImageTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransformedImageTitle extends AbstractTag -{ - - protected $Id = 65539; - - protected $Name = 'TransformedImageTitle'; - - protected $FullName = 'FlashPix::GlobalInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transformed Image Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/TypeOfOriginal.php b/lib/PHPExiftool/Driver/Tag/FlashPix/TypeOfOriginal.php deleted file mode 100644 index 5282911bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/TypeOfOriginal.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeOfOriginal extends AbstractTag -{ - - protected $Id = 687865859; - - protected $Name = 'TypeOfOriginal'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Of Original'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'B&W Print', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Color Print', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'B&W Document', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Document', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/UsedExtensionNumbers.php b/lib/PHPExiftool/Driver/Tag/FlashPix/UsedExtensionNumbers.php deleted file mode 100644 index d4cb1b181..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/UsedExtensionNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsedExtensionNumbers extends AbstractTag -{ - - protected $Id = 268435456; - - protected $Name = 'UsedExtensionNumbers'; - - protected $FullName = 'FlashPix::Extensions'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Used Extension Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/UserDefinedID.php b/lib/PHPExiftool/Driver/Tag/FlashPix/UserDefinedID.php deleted file mode 100644 index 2fd98e72f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/UserDefinedID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedID extends AbstractTag -{ - - protected $Id = 553648132; - - protected $Name = 'UserDefinedID'; - - protected $FullName = 'FlashPix::ImageInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/UsingTransforms.php b/lib/PHPExiftool/Driver/Tag/FlashPix/UsingTransforms.php deleted file mode 100644 index f6fdb1185..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/UsingTransforms.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsingTransforms extends AbstractTag -{ - - protected $Id = 65794; - - protected $Name = 'UsingTransforms'; - - protected $FullName = 'FlashPix::DataObject'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Using Transforms'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/VisibleOutputs.php b/lib/PHPExiftool/Driver/Tag/FlashPix/VisibleOutputs.php deleted file mode 100644 index f4b2897aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/VisibleOutputs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VisibleOutputs extends AbstractTag -{ - - protected $Id = 65792; - - protected $Name = 'VisibleOutputs'; - - protected $FullName = 'FlashPix::GlobalInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Visible Outputs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FlashPix/Words.php b/lib/PHPExiftool/Driver/Tag/FlashPix/Words.php deleted file mode 100644 index cd81d372d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FlashPix/Words.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FlashPix; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Words extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'Words'; - - protected $FullName = 'FlashPix::SummaryInfo'; - - protected $GroupName = 'FlashPix'; - - protected $g0 = 'FlashPix'; - - protected $g1 = 'FlashPix'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Words'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Ascender.php b/lib/PHPExiftool/Driver/Tag/Font/Ascender.php deleted file mode 100644 index 3ae571a12..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Ascender.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ascender extends AbstractTag -{ - - protected $Id = 'Ascender'; - - protected $Name = 'Ascender'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ascender'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Ascent.php b/lib/PHPExiftool/Driver/Tag/Font/Ascent.php deleted file mode 100644 index ce7568e02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Ascent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ascent extends AbstractTag -{ - - protected $Id = 74; - - protected $Name = 'Ascent'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Ascent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/AvgWidth.php b/lib/PHPExiftool/Driver/Tag/Font/AvgWidth.php deleted file mode 100644 index 1f4084239..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/AvgWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgWidth extends AbstractTag -{ - - protected $Id = 91; - - protected $Name = 'AvgWidth'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Avg Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/BreakChar.php b/lib/PHPExiftool/Driver/Tag/Font/BreakChar.php deleted file mode 100644 index 8b1470853..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/BreakChar.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BreakChar extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'BreakChar'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Break Char'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/CapHeight.php b/lib/PHPExiftool/Driver/Tag/Font/CapHeight.php deleted file mode 100644 index 271465b60..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/CapHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CapHeight extends AbstractTag -{ - - protected $Id = 'CapHeight'; - - protected $Name = 'CapHeight'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cap Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/CharacterSet.php b/lib/PHPExiftool/Driver/Tag/Font/CharacterSet.php deleted file mode 100644 index 1ea79da6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/CharacterSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharacterSet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CharacterSet'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Character Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Characters.php b/lib/PHPExiftool/Driver/Tag/Font/Characters.php deleted file mode 100644 index f57900c92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Characters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Characters extends AbstractTag -{ - - protected $Id = 'Characters'; - - protected $Name = 'Characters'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/CompatibleFontName.php b/lib/PHPExiftool/Driver/Tag/Font/CompatibleFontName.php deleted file mode 100644 index adfa8a426..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/CompatibleFontName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompatibleFontName extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'CompatibleFontName'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compatible Font Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Copyright.php b/lib/PHPExiftool/Driver/Tag/Font/Copyright.php deleted file mode 100644 index a7f7d1373..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Copyright'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/CreateDate.php b/lib/PHPExiftool/Driver/Tag/Font/CreateDate.php deleted file mode 100644 index f4d7af2b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'Creation Date'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/DefaultChar.php b/lib/PHPExiftool/Driver/Tag/Font/DefaultChar.php deleted file mode 100644 index 618df9577..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/DefaultChar.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultChar extends AbstractTag -{ - - protected $Id = 97; - - protected $Name = 'DefaultChar'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Default Char'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Descender.php b/lib/PHPExiftool/Driver/Tag/Font/Descender.php deleted file mode 100644 index 107da5733..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Descender.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Descender extends AbstractTag -{ - - protected $Id = 'Descender'; - - protected $Name = 'Descender'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descender'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Description.php b/lib/PHPExiftool/Driver/Tag/Font/Description.php deleted file mode 100644 index e9cd2bfd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Description'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Designer.php b/lib/PHPExiftool/Driver/Tag/Font/Designer.php deleted file mode 100644 index af30d5e6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Designer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Designer extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'Designer'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Designer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/DesignerURL.php b/lib/PHPExiftool/Driver/Tag/Font/DesignerURL.php deleted file mode 100644 index 5966c3b8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/DesignerURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DesignerURL extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'DesignerURL'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Designer URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/EncodingScheme.php b/lib/PHPExiftool/Driver/Tag/Font/EncodingScheme.php deleted file mode 100644 index bdd7a8902..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/EncodingScheme.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodingScheme extends AbstractTag -{ - - protected $Id = 'EncodingScheme'; - - protected $Name = 'EncodingScheme'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoding Scheme'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/EscChar.php b/lib/PHPExiftool/Driver/Tag/Font/EscChar.php deleted file mode 100644 index a4ac7d492..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/EscChar.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EscChar extends AbstractTag -{ - - protected $Id = 'EscChar'; - - protected $Name = 'EscChar'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Esc Char'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/ExternalLeading.php b/lib/PHPExiftool/Driver/Tag/Font/ExternalLeading.php deleted file mode 100644 index f991cd0a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/ExternalLeading.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalLeading extends AbstractTag -{ - - protected $Id = 78; - - protected $Name = 'ExternalLeading'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'External Leading'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FSType.php b/lib/PHPExiftool/Driver/Tag/Font/FSType.php deleted file mode 100644 index c7d9f670f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FSType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FSType extends AbstractTag -{ - - protected $Id = 'FSType'; - - protected $Name = 'FSType'; - - protected $FullName = 'Font::PSInfo'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'FS Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FirstChar.php b/lib/PHPExiftool/Driver/Tag/Font/FirstChar.php deleted file mode 100644 index 4ecd95cc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FirstChar.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstChar extends AbstractTag -{ - - protected $Id = 95; - - protected $Name = 'FirstChar'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'First Char'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FontFamily.php b/lib/PHPExiftool/Driver/Tag/Font/FontFamily.php deleted file mode 100644 index c51aaf678..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FontFamily.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontFamily extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FontFamily'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Font Family'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FontName.php b/lib/PHPExiftool/Driver/Tag/Font/FontName.php deleted file mode 100644 index 5726a0f2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FontName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FontName'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Font Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FontSubfamily.php b/lib/PHPExiftool/Driver/Tag/Font/FontSubfamily.php deleted file mode 100644 index 6578810a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FontSubfamily.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontSubfamily extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FontSubfamily'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Font Subfamily'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FontSubfamilyID.php b/lib/PHPExiftool/Driver/Tag/Font/FontSubfamilyID.php deleted file mode 100644 index b8459ff4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FontSubfamilyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontSubfamilyID extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'FontSubfamilyID'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Font Subfamily ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FontType.php b/lib/PHPExiftool/Driver/Tag/Font/FontType.php deleted file mode 100644 index 00b74025a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FontType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FontType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Font Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/FullName.php b/lib/PHPExiftool/Driver/Tag/Font/FullName.php deleted file mode 100644 index 9645a451c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/FullName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullName extends AbstractTag -{ - - protected $Id = 'FullName'; - - protected $Name = 'FullName'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Full Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/InternalLeading.php b/lib/PHPExiftool/Driver/Tag/Font/InternalLeading.php deleted file mode 100644 index 842a8de22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/InternalLeading.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalLeading extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'InternalLeading'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Internal Leading'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/IsBaseFont.php b/lib/PHPExiftool/Driver/Tag/Font/IsBaseFont.php deleted file mode 100644 index 3fb9d4552..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/IsBaseFont.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsBaseFont extends AbstractTag -{ - - protected $Id = 'IsBaseFont'; - - protected $Name = 'IsBaseFont'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Base Font'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/IsFixedPitch.php b/lib/PHPExiftool/Driver/Tag/Font/IsFixedPitch.php deleted file mode 100644 index f0467e0b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/IsFixedPitch.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsFixedPitch extends AbstractTag -{ - - protected $Id = 'isFixedPitch'; - - protected $Name = 'IsFixedPitch'; - - protected $FullName = 'Font::PSInfo'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Fixed Pitch'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/IsFixedV.php b/lib/PHPExiftool/Driver/Tag/Font/IsFixedV.php deleted file mode 100644 index 98953f167..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/IsFixedV.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsFixedV extends AbstractTag -{ - - protected $Id = 'IsFixedV'; - - protected $Name = 'IsFixedV'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Fixed V'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Italic.php b/lib/PHPExiftool/Driver/Tag/Font/Italic.php deleted file mode 100644 index d8cab5c30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Italic.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Italic extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'Italic'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Italic'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/ItalicAngle.php b/lib/PHPExiftool/Driver/Tag/Font/ItalicAngle.php deleted file mode 100644 index 028276d03..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/ItalicAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItalicAngle extends AbstractTag -{ - - protected $Id = 'ItalicAngle'; - - protected $Name = 'ItalicAngle'; - - protected $FullName = 'Font::PSInfo'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Italic Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/LastChar.php b/lib/PHPExiftool/Driver/Tag/Font/LastChar.php deleted file mode 100644 index 8ec95e57b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/LastChar.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastChar extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'LastChar'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Last Char'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/License.php b/lib/PHPExiftool/Driver/Tag/Font/License.php deleted file mode 100644 index 666255d64..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/License.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class License extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'License'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'License'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/LicenseInfoURL.php b/lib/PHPExiftool/Driver/Tag/Font/LicenseInfoURL.php deleted file mode 100644 index d39b14ca6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/LicenseInfoURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseInfoURL extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'LicenseInfoURL'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'License Info URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Manufacturer.php b/lib/PHPExiftool/Driver/Tag/Font/Manufacturer.php deleted file mode 100644 index 7e3916b1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Manufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manufacturer extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Manufacturer'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/MappingScheme.php b/lib/PHPExiftool/Driver/Tag/Font/MappingScheme.php deleted file mode 100644 index 4ad5f4d22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/MappingScheme.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MappingScheme extends AbstractTag -{ - - protected $Id = 'MappingScheme'; - - protected $Name = 'MappingScheme'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mapping Scheme'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/MaxWidth.php b/lib/PHPExiftool/Driver/Tag/Font/MaxWidth.php deleted file mode 100644 index 69327497f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/MaxWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxWidth extends AbstractTag -{ - - protected $Id = 93; - - protected $Name = 'MaxWidth'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Max Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/NameTableVersion.php b/lib/PHPExiftool/Driver/Tag/Font/NameTableVersion.php deleted file mode 100644 index 59b03e847..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/NameTableVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NameTableVersion extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'NameTableVersion'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name Table Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Notice.php b/lib/PHPExiftool/Driver/Tag/Font/Notice.php deleted file mode 100644 index 18567e129..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Notice.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Notice extends AbstractTag -{ - - protected $Id = 'Notice'; - - protected $Name = 'Notice'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Notice'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/NumFonts.php b/lib/PHPExiftool/Driver/Tag/Font/NumFonts.php deleted file mode 100644 index 56976431b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/NumFonts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumFonts extends AbstractTag -{ - - protected $Id = 'numfonts'; - - protected $Name = 'NumFonts'; - - protected $FullName = 'Font::Main'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Num Fonts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PFMVersion.php b/lib/PHPExiftool/Driver/Tag/Font/PFMVersion.php deleted file mode 100644 index 2426f2d27..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PFMVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PFMVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PFMVersion'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'PFM Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PitchAndFamily.php b/lib/PHPExiftool/Driver/Tag/Font/PitchAndFamily.php deleted file mode 100644 index 1aa5b54eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PitchAndFamily.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PitchAndFamily extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'PitchAndFamily'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Pitch And Family'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PixHeight.php b/lib/PHPExiftool/Driver/Tag/Font/PixHeight.php deleted file mode 100644 index 872891cba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PixHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixHeight extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'PixHeight'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Pix Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PixWidth.php b/lib/PHPExiftool/Driver/Tag/Font/PixWidth.php deleted file mode 100644 index a7cb0a500..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PixWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixWidth extends AbstractTag -{ - - protected $Id = 86; - - protected $Name = 'PixWidth'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Pix Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PointSize.php b/lib/PHPExiftool/Driver/Tag/Font/PointSize.php deleted file mode 100644 index 05ea2a074..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PointSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PointSize extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'PointSize'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Point Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PostScriptFontName.php b/lib/PHPExiftool/Driver/Tag/Font/PostScriptFontName.php deleted file mode 100644 index 27211bf0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PostScriptFontName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostScriptFontName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PostScriptFontName'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PostScript Font Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PreferredFamily.php b/lib/PHPExiftool/Driver/Tag/Font/PreferredFamily.php deleted file mode 100644 index a6a879e8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PreferredFamily.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreferredFamily extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'PreferredFamily'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preferred Family'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/PreferredSubfamily.php b/lib/PHPExiftool/Driver/Tag/Font/PreferredSubfamily.php deleted file mode 100644 index 6a402ac2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/PreferredSubfamily.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreferredSubfamily extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'PreferredSubfamily'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preferred Subfamily'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/SampleText.php b/lib/PHPExiftool/Driver/Tag/Font/SampleText.php deleted file mode 100644 index ced55950b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/SampleText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleText extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'SampleText'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Strikeout.php b/lib/PHPExiftool/Driver/Tag/Font/Strikeout.php deleted file mode 100644 index aac0400ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Strikeout.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Strikeout extends AbstractTag -{ - - protected $Id = 82; - - protected $Name = 'Strikeout'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Strikeout'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Trademark.php b/lib/PHPExiftool/Driver/Tag/Font/Trademark.php deleted file mode 100644 index 4a4d689dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Trademark.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Trademark extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Trademark'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trademark'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Underline.php b/lib/PHPExiftool/Driver/Tag/Font/Underline.php deleted file mode 100644 index d9d1dfbf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Underline.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Underline extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'Underline'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Underline'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/UnderlinePosition.php b/lib/PHPExiftool/Driver/Tag/Font/UnderlinePosition.php deleted file mode 100644 index b7e029f41..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/UnderlinePosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnderlinePosition extends AbstractTag -{ - - protected $Id = 'UnderlinePosition'; - - protected $Name = 'UnderlinePosition'; - - protected $FullName = 'Font::PSInfo'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Underline Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/UnderlineThickness.php b/lib/PHPExiftool/Driver/Tag/Font/UnderlineThickness.php deleted file mode 100644 index 333ab29ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/UnderlineThickness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnderlineThickness extends AbstractTag -{ - - protected $Id = 'UnderlineThickness'; - - protected $Name = 'UnderlineThickness'; - - protected $FullName = 'Font::PSInfo'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Underline Thickness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/VendorURL.php b/lib/PHPExiftool/Driver/Tag/Font/VendorURL.php deleted file mode 100644 index 682d74fef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/VendorURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VendorURL extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'VendorURL'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vendor URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Version.php b/lib/PHPExiftool/Driver/Tag/Font/Version.php deleted file mode 100644 index e1f9f0b60..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Version.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Version'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/WWSFamilyName.php b/lib/PHPExiftool/Driver/Tag/Font/WWSFamilyName.php deleted file mode 100644 index d64689195..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/WWSFamilyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WWSFamilyName extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'WWSFamilyName'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WWS Family Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/WWSSubfamilyName.php b/lib/PHPExiftool/Driver/Tag/Font/WWSSubfamilyName.php deleted file mode 100644 index 4316c4118..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/WWSSubfamilyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WWSSubfamilyName extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'WWSSubfamilyName'; - - protected $FullName = 'Font::Name'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WWS Subfamily Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/Weight.php b/lib/PHPExiftool/Driver/Tag/Font/Weight.php deleted file mode 100644 index 91e097e09..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/Weight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Weight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Weight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/WidthBytes.php b/lib/PHPExiftool/Driver/Tag/Font/WidthBytes.php deleted file mode 100644 index a0910dec2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/WidthBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WidthBytes extends AbstractTag -{ - - protected $Id = 99; - - protected $Name = 'WidthBytes'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Width Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/XHeight.php b/lib/PHPExiftool/Driver/Tag/Font/XHeight.php deleted file mode 100644 index 9481da3bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/XHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XHeight extends AbstractTag -{ - - protected $Id = 'XHeight'; - - protected $Name = 'XHeight'; - - protected $FullName = 'Font::AFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/XResolution.php b/lib/PHPExiftool/Driver/Tag/Font/XResolution.php deleted file mode 100644 index ec79b112d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'XResolution'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Font/YResolution.php b/lib/PHPExiftool/Driver/Tag/Font/YResolution.php deleted file mode 100644 index d823f6788..000000000 --- a/lib/PHPExiftool/Driver/Tag/Font/YResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Font; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'YResolution'; - - protected $FullName = 'Font::PFM'; - - protected $GroupName = 'Font'; - - protected $g0 = 'Font'; - - protected $g1 = 'Font'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/ColorPlanes.php b/lib/PHPExiftool/Driver/Tag/FotoStation/ColorPlanes.php deleted file mode 100644 index 62ae8c6a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/ColorPlanes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorPlanes extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ColorPlanes'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Planes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/CropBottom.php b/lib/PHPExiftool/Driver/Tag/FotoStation/CropBottom.php deleted file mode 100644 index eeb5a698a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/CropBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropBottom extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'CropBottom'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/CropLeft.php b/lib/PHPExiftool/Driver/Tag/FotoStation/CropLeft.php deleted file mode 100644 index 134a72b68..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/CropLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeft extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CropLeft'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/CropRight.php b/lib/PHPExiftool/Driver/Tag/FotoStation/CropRight.php deleted file mode 100644 index 890aa04b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/CropRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropRight extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'CropRight'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/CropRotation.php b/lib/PHPExiftool/Driver/Tag/FotoStation/CropRotation.php deleted file mode 100644 index 7259985d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/CropRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropRotation extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'CropRotation'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/CropTop.php b/lib/PHPExiftool/Driver/Tag/FotoStation/CropTop.php deleted file mode 100644 index 35c35adc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/CropTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTop extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'CropTop'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/OriginalImageHeight.php b/lib/PHPExiftool/Driver/Tag/FotoStation/OriginalImageHeight.php deleted file mode 100644 index 20eebb9cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/OriginalImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageHeight extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'OriginalImageHeight'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Original Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/OriginalImageWidth.php b/lib/PHPExiftool/Driver/Tag/FotoStation/OriginalImageWidth.php deleted file mode 100644 index a4641351d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/OriginalImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'OriginalImageWidth'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Original Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/FotoStation/PreviewImage.php deleted file mode 100644 index e8cee1352..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/PreviewImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'FotoStation::Main'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/Rotation.php b/lib/PHPExiftool/Driver/Tag/FotoStation/Rotation.php deleted file mode 100644 index b4331f0b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/Rotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Rotation'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/FotoStation/ThumbnailImage.php deleted file mode 100644 index b87fe82a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/ThumbnailImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'FotoStation::Main'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FotoStation/XYResolution.php b/lib/PHPExiftool/Driver/Tag/FotoStation/XYResolution.php deleted file mode 100644 index 232796fa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/FotoStation/XYResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FotoStation; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XYResolution extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'XYResolution'; - - protected $FullName = 'FotoStation::SoftEdit'; - - protected $GroupName = 'FotoStation'; - - protected $g0 = 'FotoStation'; - - protected $g1 = 'FotoStation'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'XY Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/AFPointSet.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/AFPointSet.php deleted file mode 100644 index e49725cf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/AFPointSet.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSet extends AbstractTag -{ - - protected $Id = 4130; - - protected $Name = 'AFPointSet'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Point Set'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/AutoBracketing.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/AutoBracketing.php deleted file mode 100644 index f934b389e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/AutoBracketing.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketing extends AbstractTag -{ - - protected $Id = 4352; - - protected $Name = 'AutoBracketing'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracketing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'No flash & flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/AutoDynamicRange.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/AutoDynamicRange.php deleted file mode 100644 index b34a302f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/AutoDynamicRange.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoDynamicRange extends AbstractTag -{ - - protected $Id = 5131; - - protected $Name = 'AutoDynamicRange'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto Dynamic Range'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/BlurWarning.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/BlurWarning.php deleted file mode 100644 index 2aabb42b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/BlurWarning.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlurWarning extends AbstractTag -{ - - protected $Id = 4864; - - protected $Name = 'BlurWarning'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Blur Warning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Blur Warning', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ColorMode.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ColorMode.php deleted file mode 100644 index 54358d63d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ColorMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 4624; - - protected $Name = 'ColorMode'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Chrome', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'B & W', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ColorTemperature.php deleted file mode 100644 index 0f4c3ab9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 4101; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Contrast.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Contrast.php deleted file mode 100644 index 6f3edcbb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Contrast.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Contrast'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 128, - 'Label' => 'Medium High', - ), - 2 => array( - 'Id' => 256, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 384, - 'Label' => 'Medium Low', - ), - 4 => array( - 'Id' => 512, - 'Label' => 'Low', - ), - 5 => array( - 'Id' => 32768, - 'Label' => 'Film Simulation', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 7 => array( - 'Id' => 256, - 'Label' => 'High', - ), - 8 => array( - 'Id' => 768, - 'Label' => 'Low', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/DevelopmentDynamicRange.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/DevelopmentDynamicRange.php deleted file mode 100644 index 0d2012609..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/DevelopmentDynamicRange.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DevelopmentDynamicRange extends AbstractTag -{ - - protected $Id = 5123; - - protected $Name = 'DevelopmentDynamicRange'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Development Dynamic Range'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/DynamicRange.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/DynamicRange.php deleted file mode 100644 index f9d0227e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/DynamicRange.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRange extends AbstractTag -{ - - protected $Id = 5120; - - protected $Name = 'DynamicRange'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Wide', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/DynamicRangeSetting.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/DynamicRangeSetting.php deleted file mode 100644 index 150e58ebb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/DynamicRangeSetting.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeSetting extends AbstractTag -{ - - protected $Id = 5122; - - protected $Name = 'DynamicRangeSetting'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto (100-400%)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Standard (100%)', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Wide1 (230%)', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'Wide2 (400%)', - ), - 32768 => array( - 'Id' => 32768, - 'Label' => 'Film Simulation', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/EXRAuto.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/EXRAuto.php deleted file mode 100644 index 55d592d50..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/EXRAuto.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EXRAuto extends AbstractTag -{ - - protected $Id = 4147; - - protected $Name = 'EXRAuto'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'EXR Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/EXRMode.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/EXRMode.php deleted file mode 100644 index b07be37b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/EXRMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EXRMode extends AbstractTag -{ - - protected $Id = 4148; - - protected $Name = 'EXRMode'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'EXR Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 256 => array( - 'Id' => 256, - 'Label' => 'HR (High Resolution)', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'SN (Signal to Noise priority)', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'DR (Dynamic Range priority)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureCompensation.php deleted file mode 100644 index aa1f4e607..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'FujiFilm::MOV'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureCount.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureCount.php deleted file mode 100644 index eaf139be3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCount extends AbstractTag -{ - - protected $Id = 4146; - - protected $Name = 'ExposureCount'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureTime.php deleted file mode 100644 index 3e4e0c43d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'FujiFilm::MOV'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureWarning.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureWarning.php deleted file mode 100644 index c3b2f8f0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ExposureWarning.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureWarning extends AbstractTag -{ - - protected $Id = 4866; - - protected $Name = 'ExposureWarning'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Warning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Good', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Bad exposure', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FNumber.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FNumber.php deleted file mode 100644 index 8de5bd20b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'FNumber'; - - protected $FullName = 'FujiFilm::MOV'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Birthday.php deleted file mode 100644 index 45ef858b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Birthday extends AbstractTag -{ - - protected $Id = 'Face1Birthday'; - - protected $Name = 'Face1Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 1 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Category.php deleted file mode 100644 index f629b56ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Category extends AbstractTag -{ - - protected $Id = 'Face1Category'; - - protected $Name = 'Face1Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 1 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Name.php deleted file mode 100644 index a3ddc3c7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face1Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Name extends AbstractTag -{ - - protected $Id = 'Face1Name'; - - protected $Name = 'Face1Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 1 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Birthday.php deleted file mode 100644 index 22b4ccea6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Birthday extends AbstractTag -{ - - protected $Id = 'Face2Birthday'; - - protected $Name = 'Face2Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 2 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Category.php deleted file mode 100644 index 76b0a2f9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Category extends AbstractTag -{ - - protected $Id = 'Face2Category'; - - protected $Name = 'Face2Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 2 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Name.php deleted file mode 100644 index 26f96f69b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face2Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Name extends AbstractTag -{ - - protected $Id = 'Face2Name'; - - protected $Name = 'Face2Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 2 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Birthday.php deleted file mode 100644 index cb4ce9c8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Birthday extends AbstractTag -{ - - protected $Id = 'Face3Birthday'; - - protected $Name = 'Face3Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 3 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Category.php deleted file mode 100644 index 9d577fff4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Category extends AbstractTag -{ - - protected $Id = 'Face3Category'; - - protected $Name = 'Face3Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 3 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Name.php deleted file mode 100644 index 313b678d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face3Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Name extends AbstractTag -{ - - protected $Id = 'Face3Name'; - - protected $Name = 'Face3Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 3 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Birthday.php deleted file mode 100644 index b5b44b04b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Birthday extends AbstractTag -{ - - protected $Id = 'Face4Birthday'; - - protected $Name = 'Face4Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 4 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Category.php deleted file mode 100644 index ba91a06c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Category extends AbstractTag -{ - - protected $Id = 'Face4Category'; - - protected $Name = 'Face4Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 4 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Name.php deleted file mode 100644 index 896bca3aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face4Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Name extends AbstractTag -{ - - protected $Id = 'Face4Name'; - - protected $Name = 'Face4Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 4 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Birthday.php deleted file mode 100644 index 93ce383af..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Birthday extends AbstractTag -{ - - protected $Id = 'Face5Birthday'; - - protected $Name = 'Face5Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 5 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Category.php deleted file mode 100644 index 924ad423d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Category extends AbstractTag -{ - - protected $Id = 'Face5Category'; - - protected $Name = 'Face5Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 5 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Name.php deleted file mode 100644 index 791949403..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face5Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Name extends AbstractTag -{ - - protected $Id = 'Face5Name'; - - protected $Name = 'Face5Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 5 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Birthday.php deleted file mode 100644 index 5f48942f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Birthday extends AbstractTag -{ - - protected $Id = 'Face6Birthday'; - - protected $Name = 'Face6Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 6 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Category.php deleted file mode 100644 index 49a36a05e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Category extends AbstractTag -{ - - protected $Id = 'Face6Category'; - - protected $Name = 'Face6Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 6 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Name.php deleted file mode 100644 index c6adc155c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face6Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Name extends AbstractTag -{ - - protected $Id = 'Face6Name'; - - protected $Name = 'Face6Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 6 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Birthday.php deleted file mode 100644 index 2fb1c2d38..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Birthday extends AbstractTag -{ - - protected $Id = 'Face7Birthday'; - - protected $Name = 'Face7Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 7 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Category.php deleted file mode 100644 index 2e8712261..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Category extends AbstractTag -{ - - protected $Id = 'Face7Category'; - - protected $Name = 'Face7Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 7 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Name.php deleted file mode 100644 index cc54a00f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face7Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Name extends AbstractTag -{ - - protected $Id = 'Face7Name'; - - protected $Name = 'Face7Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 7 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Birthday.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Birthday.php deleted file mode 100644 index b6e5b1fba..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Birthday.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Birthday extends AbstractTag -{ - - protected $Id = 'Face8Birthday'; - - protected $Name = 'Face8Birthday'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 8 Birthday'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Category.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Category.php deleted file mode 100644 index 5359c045c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Category.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Category extends AbstractTag -{ - - protected $Id = 'Face8Category'; - - protected $Name = 'Face8Category'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Face 8 Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Partner', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Family', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Friend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Name.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Name.php deleted file mode 100644 index f888795ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Face8Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Name extends AbstractTag -{ - - protected $Id = 'Face8Name'; - - protected $Name = 'Face8Name'; - - protected $FullName = 'FujiFilm::FaceRecInfo'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Face 8 Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FacePositions.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FacePositions.php deleted file mode 100644 index 518b1312c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FacePositions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacePositions extends AbstractTag -{ - - protected $Id = 16643; - - protected $Name = 'FacePositions'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Positions'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FacesDetected.php deleted file mode 100644 index deb8d4e7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 16640; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FileSource.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FileSource.php deleted file mode 100644 index 18db38366..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FileSource.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSource extends AbstractTag -{ - - protected $Id = 32768; - - protected $Name = 'FileSource'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'File Source'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FilmMode.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FilmMode.php deleted file mode 100644 index 1e6cbbb70..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FilmMode.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmMode extends AbstractTag -{ - - protected $Id = 5121; - - protected $Name = 'FilmMode'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Film Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'F0/Standard (Provia)', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'F1/Studio Portrait', - ), - 272 => array( - 'Id' => 272, - 'Label' => 'F1a/Studio Portrait Enhanced Saturation', - ), - 288 => array( - 'Id' => 288, - 'Label' => 'F1b/Studio Portrait Smooth Skin Tone (Astia)', - ), - 304 => array( - 'Id' => 304, - 'Label' => 'F1c/Studio Portrait Increased Sharpness', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'F2/Fujichrome (Velvia)', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'F3/Studio Portrait Ex', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'F4/Velvia', - ), - 1280 => array( - 'Id' => 1280, - 'Label' => 'Pro Neg. Std', - ), - 1281 => array( - 'Id' => 1281, - 'Label' => 'Pro Neg. Hi', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FlashExposureComp.php deleted file mode 100644 index 1f029fbd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 4113; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusMode.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusMode.php deleted file mode 100644 index 87bd4a589..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 4129; - - protected $Name = 'FocusMode'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusPixel.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusPixel.php deleted file mode 100644 index 86e0dfb69..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusPixel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusPixel extends AbstractTag -{ - - protected $Id = 4131; - - protected $Name = 'FocusPixel'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Pixel'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusWarning.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusWarning.php deleted file mode 100644 index f5f9f905b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FocusWarning.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusWarning extends AbstractTag -{ - - protected $Id = 4865; - - protected $Name = 'FocusWarning'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Warning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Good', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Out of focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameHeight.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameHeight.php deleted file mode 100644 index f9306fbce..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameHeight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameHeight extends AbstractTag -{ - - protected $Id = 14370; - - protected $Name = 'FrameHeight'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Frame Height'; - - protected $local_g2 = 'Video'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameNumber.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameNumber.php deleted file mode 100644 index 3b4263fe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameNumber extends AbstractTag -{ - - protected $Id = 32771; - - protected $Name = 'FrameNumber'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Frame Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameRate.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameRate.php deleted file mode 100644 index d1e2ae615..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameRate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 14368; - - protected $Name = 'FrameRate'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Frame Rate'; - - protected $local_g2 = 'Video'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameWidth.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameWidth.php deleted file mode 100644 index 463c736b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FrameWidth.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameWidth extends AbstractTag -{ - - protected $Id = 14369; - - protected $Name = 'FrameWidth'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Frame Width'; - - protected $local_g2 = 'Video'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/FujiFlashMode.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/FujiFlashMode.php deleted file mode 100644 index ee91f371e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/FujiFlashMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FujiFlashMode extends AbstractTag -{ - - protected $Id = 4112; - - protected $Name = 'FujiFlashMode'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Fuji Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red-eye reduction', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'External', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/GEImageSize.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/GEImageSize.php deleted file mode 100644 index 576cdc239..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/GEImageSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GEImageSize extends AbstractTag -{ - - protected $Id = 4868; - - protected $Name = 'GEImageSize'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GE Image Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/HighISONoiseReduction.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/HighISONoiseReduction.php deleted file mode 100644 index bfe311228..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/HighISONoiseReduction.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighISONoiseReduction extends AbstractTag -{ - - protected $Id = 4110; - - protected $Name = 'HighISONoiseReduction'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'High ISO Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Strong', - ), - 384 => array( - 'Id' => 384, - 'Label' => 'Medium Strong', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Weak', - ), - 640 => array( - 'Id' => 640, - 'Label' => 'Medium Weak', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/HighlightTone.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/HighlightTone.php deleted file mode 100644 index 73f3e05e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/HighlightTone.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighlightTone extends AbstractTag -{ - - protected $Id = 4161; - - protected $Name = 'HighlightTone'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Highlight Tone'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32' => array( - 'Id' => '-32', - 'Label' => 'Hard', - ), - '-16' => array( - 'Id' => '-16', - 'Label' => 'Medium-hard', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Medium-soft', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Soft', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ImageGeneration.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ImageGeneration.php deleted file mode 100644 index cbfb3a1d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ImageGeneration.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageGeneration extends AbstractTag -{ - - protected $Id = 5174; - - protected $Name = 'ImageGeneration'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Generation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Original Image', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Re-developed from RAW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ImageStabilization.php deleted file mode 100644 index df11e4803..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ImageStabilization.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 5154; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Optical', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Sensor-shift', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Digital', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/InternalSerialNumber.php deleted file mode 100644 index d27d53a2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/InternalSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Macro.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Macro.php deleted file mode 100644 index 87a53d84c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Macro.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Macro extends AbstractTag -{ - - protected $Id = 4128; - - protected $Name = 'Macro'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Make.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Make.php deleted file mode 100644 index 6cfa562c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'FujiFilm::MOV'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxApertureAtMaxFocal.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxApertureAtMaxFocal.php deleted file mode 100644 index 66bd0ae59..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxApertureAtMaxFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMaxFocal extends AbstractTag -{ - - protected $Id = 5127; - - protected $Name = 'MaxApertureAtMaxFocal'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Max Aperture At Max Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxApertureAtMinFocal.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxApertureAtMinFocal.php deleted file mode 100644 index f9aeced05..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxApertureAtMinFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMinFocal extends AbstractTag -{ - - protected $Id = 5126; - - protected $Name = 'MaxApertureAtMinFocal'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Max Aperture At Min Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxFocalLength.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxFocalLength.php deleted file mode 100644 index 157e93ca3..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/MaxFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxFocalLength extends AbstractTag -{ - - protected $Id = 5125; - - protected $Name = 'MaxFocalLength'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Max Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/MinFocalLength.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/MinFocalLength.php deleted file mode 100644 index 4f3c9fac1..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/MinFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinFocalLength extends AbstractTag -{ - - protected $Id = 5124; - - protected $Name = 'MinFocalLength'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Min Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Model.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Model.php deleted file mode 100644 index 9891cd209..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Model.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Model'; - - protected $FullName = 'FujiFilm::MOV'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/MovieStreamName.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/MovieStreamName.php deleted file mode 100644 index 2baed6fc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/MovieStreamName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MovieStreamName extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MovieStreamName'; - - protected $FullName = 'FujiFilm::FFMV'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Movie Stream Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 34; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/NoiseReduction.php deleted file mode 100644 index 07b9fe7b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/NoiseReduction.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 4107; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 64 => array( - 'Id' => 64, - 'Label' => 'Low', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Normal', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/OrderNumber.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/OrderNumber.php deleted file mode 100644 index 79887574a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/OrderNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrderNumber extends AbstractTag -{ - - protected $Id = 32770; - - protected $Name = 'OrderNumber'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Order Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Parallax.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Parallax.php deleted file mode 100644 index f9ddb9c39..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Parallax.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Parallax extends AbstractTag -{ - - protected $Id = 45585; - - protected $Name = 'Parallax'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Parallax'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/PictureMode.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/PictureMode.php deleted file mode 100644 index 6de237bad..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/PictureMode.php +++ /dev/null @@ -1,176 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMode extends AbstractTag -{ - - protected $Id = 4145; - - protected $Name = 'PictureMode'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Landscape', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Macro', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sports', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Night Scene', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Program AE', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Natural Light', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Anti-blur', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Beach & Snow', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Sunset', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Museum', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Party', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Flower', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Text', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Natural Light & Flash', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Beach', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Snow', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Fireworks', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Underwater', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Portrait with Skin Correction', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Panorama', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Night (tripod)', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Pro Low-light', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Pro Focus', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Portrait 2', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Dog Face Detection', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Cat Face Detection', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Advanced Filter', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Aperture-priority AE', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Shutter speed priority AE', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Quality.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Quality.php deleted file mode 100644 index 3cc593c4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Quality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'Quality'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/RawImageHeight.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/RawImageHeight.php deleted file mode 100644 index 0ace6081c..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/RawImageHeight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawImageHeight'; - - protected $FullName = 'FujiFilm::RAFData'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Raw Image Height'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/RawImageWidth.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/RawImageWidth.php deleted file mode 100644 index 925f7876a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/RawImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawImageWidth'; - - protected $FullName = 'FujiFilm::RAFData'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Raw Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Saturation.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Saturation.php deleted file mode 100644 index 80474825b..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Saturation.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 4099; - - protected $Name = 'Saturation'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Medium High', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'High', - ), - 384 => array( - 'Id' => 384, - 'Label' => 'Medium Low', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Low', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'None (B&W)', - ), - 769 => array( - 'Id' => 769, - 'Label' => 'B&W Red Filter', - ), - 770 => array( - 'Id' => 770, - 'Label' => 'B&W Yellow Filter', - ), - 771 => array( - 'Id' => 771, - 'Label' => 'B&W Green Filter', - ), - 784 => array( - 'Id' => 784, - 'Label' => 'B&W Sepia', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Low 2', - ), - 32768 => array( - 'Id' => 32768, - 'Label' => 'Film Simulation', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/SequenceNumber.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/SequenceNumber.php deleted file mode 100644 index 7c64736dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/SequenceNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumber extends AbstractTag -{ - - protected $Id = 4353; - - protected $Name = 'SequenceNumber'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sequence Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/ShadowTone.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/ShadowTone.php deleted file mode 100644 index fd4565d5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/ShadowTone.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadowTone extends AbstractTag -{ - - protected $Id = 4160; - - protected $Name = 'ShadowTone'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Shadow Tone'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32' => array( - 'Id' => '-32', - 'Label' => 'Hard', - ), - '-16' => array( - 'Id' => '-16', - 'Label' => 'Medium-hard', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Medium-soft', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Soft', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Sharpness.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Sharpness.php deleted file mode 100644 index 572f1ccdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Sharpness.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'Sharpness'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Soft', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft2', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Normal', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Hard', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Hard2', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Medium Soft', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Medium Hard', - ), - 32768 => array( - 'Id' => 32768, - 'Label' => 'Film Simulation', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/SlowSync.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/SlowSync.php deleted file mode 100644 index 3183a8c9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/SlowSync.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlowSync extends AbstractTag -{ - - protected $Id = 4144; - - protected $Name = 'SlowSync'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Slow Sync'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/Version.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/Version.php deleted file mode 100644 index cf8d6ce87..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/Version.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Version'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/WhiteBalance.php deleted file mode 100644 index 9068efea2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/WhiteBalance.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 4098; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Daylight', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Cloudy', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'Daylight Fluorescent', - ), - 769 => array( - 'Id' => 769, - 'Label' => 'Day White Fluorescent', - ), - 770 => array( - 'Id' => 770, - 'Label' => 'White Fluorescent', - ), - 771 => array( - 'Id' => 771, - 'Label' => 'Warm White Fluorescent', - ), - 772 => array( - 'Id' => 772, - 'Label' => 'Living Room Warm White Fluorescent', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Incandescent', - ), - 1280 => array( - 'Id' => 1280, - 'Label' => 'Flash', - ), - 3840 => array( - 'Id' => 3840, - 'Label' => 'Custom', - ), - 3841 => array( - 'Id' => 3841, - 'Label' => 'Custom2', - ), - 3842 => array( - 'Id' => 3842, - 'Label' => 'Custom3', - ), - 3843 => array( - 'Id' => 3843, - 'Label' => 'Custom4', - ), - 3844 => array( - 'Id' => 3844, - 'Label' => 'Custom5', - ), - 4080 => array( - 'Id' => 4080, - 'Label' => 'Kelvin', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiFilm/WhiteBalanceFineTune.php b/lib/PHPExiftool/Driver/Tag/FujiFilm/WhiteBalanceFineTune.php deleted file mode 100644 index f57264ad2..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiFilm/WhiteBalanceFineTune.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiFilm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceFineTune extends AbstractTag -{ - - protected $Id = 4106; - - protected $Name = 'WhiteBalanceFineTune'; - - protected $FullName = 'FujiFilm::Main'; - - protected $GroupName = 'FujiFilm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'FujiFilm'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'White Balance Fine Tune'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/BitsPerSample.php deleted file mode 100644 index ca7583f47..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 61443; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/BlackLevel.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/BlackLevel.php deleted file mode 100644 index bdcfc9a2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/BlackLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel extends AbstractTag -{ - - protected $Id = 61450; - - protected $Name = 'BlackLevel'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Black Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/RawImageFullHeight.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/RawImageFullHeight.php deleted file mode 100644 index e7b6f84b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/RawImageFullHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageFullHeight extends AbstractTag -{ - - protected $Id = 61442; - - protected $Name = 'RawImageFullHeight'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Image Full Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/RawImageFullWidth.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/RawImageFullWidth.php deleted file mode 100644 index b5d79019e..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/RawImageFullWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageFullWidth extends AbstractTag -{ - - protected $Id = 61441; - - protected $Name = 'RawImageFullWidth'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Image Full Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/StripByteCounts.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/StripByteCounts.php deleted file mode 100644 index eb86b4411..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/StripByteCounts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StripByteCounts extends AbstractTag -{ - - protected $Id = 61448; - - protected $Name = 'StripByteCounts'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Strip Byte Counts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/StripOffsets.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/StripOffsets.php deleted file mode 100644 index 8f66f7f74..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/StripOffsets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StripOffsets extends AbstractTag -{ - - protected $Id = 61447; - - protected $Name = 'StripOffsets'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Strip Offsets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevels.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevels.php deleted file mode 100644 index db0d340cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRBLevels extends AbstractTag -{ - - protected $Id = 61454; - - protected $Name = 'WB_GRBLevels'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB GRB Levels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevelsDaylight.php deleted file mode 100644 index 1c88678b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevelsDaylight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRBLevelsDaylight extends AbstractTag -{ - - protected $Id = 61453; - - protected $Name = 'WB_GRBLevelsDaylight'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB GRB Levels Daylight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevelsStandard.php b/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevelsStandard.php deleted file mode 100644 index 0c064d908..000000000 --- a/lib/PHPExiftool/Driver/Tag/FujiIFD/WBGRBLevelsStandard.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\FujiIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRBLevelsStandard extends AbstractTag -{ - - protected $Id = 61452; - - protected $Name = 'WB_GRBLevelsStandard'; - - protected $FullName = 'FujiFilm::IFD'; - - protected $GroupName = 'FujiIFD'; - - protected $g0 = 'RAF'; - - protected $g1 = 'FujiIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB GRB Levels Standard'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GE/GEMake.php b/lib/PHPExiftool/Driver/Tag/GE/GEMake.php deleted file mode 100644 index 1f5ad91ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/GE/GEMake.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GEMake extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'GEMake'; - - protected $FullName = 'GE::Main'; - - protected $GroupName = 'GE'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'GE'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GE Make'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GE/GEModel.php b/lib/PHPExiftool/Driver/Tag/GE/GEModel.php deleted file mode 100644 index b92b55291..000000000 --- a/lib/PHPExiftool/Driver/Tag/GE/GEModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GEModel extends AbstractTag -{ - - protected $Id = 519; - - protected $Name = 'GEModel'; - - protected $FullName = 'GE::Main'; - - protected $GroupName = 'GE'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'GE'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GE Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GE/Macro.php b/lib/PHPExiftool/Driver/Tag/GE/Macro.php deleted file mode 100644 index 28eff4515..000000000 --- a/lib/PHPExiftool/Driver/Tag/GE/Macro.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GE; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Macro extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'Macro'; - - protected $FullName = 'GE::Main'; - - protected $GroupName = 'GE'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'GE'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/AnimationIterations.php b/lib/PHPExiftool/Driver/Tag/GIF/AnimationIterations.php deleted file mode 100644 index 6b84f6977..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/AnimationIterations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnimationIterations extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AnimationIterations'; - - protected $FullName = 'GIF::Animate'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Animation Iterations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/GIF/BackgroundColor.php deleted file mode 100644 index e47dbd5c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/BackgroundColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'GIF::Screen'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/BitsPerPixel.php b/lib/PHPExiftool/Driver/Tag/GIF/BitsPerPixel.php deleted file mode 100644 index d5222577d..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/BitsPerPixel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerPixel extends AbstractTag -{ - - protected $Id = '4.3'; - - protected $Name = 'BitsPerPixel'; - - protected $FullName = 'GIF::Screen'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Pixel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/ColorResolutionDepth.php b/lib/PHPExiftool/Driver/Tag/GIF/ColorResolutionDepth.php deleted file mode 100644 index 1d3fa818c..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/ColorResolutionDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorResolutionDepth extends AbstractTag -{ - - protected $Id = '4.2'; - - protected $Name = 'ColorResolutionDepth'; - - protected $FullName = 'GIF::Screen'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Resolution Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/Comment.php b/lib/PHPExiftool/Driver/Tag/GIF/Comment.php deleted file mode 100644 index d1741a085..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'Comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'GIF::Main'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/Duration.php b/lib/PHPExiftool/Driver/Tag/GIF/Duration.php deleted file mode 100644 index b5672823c..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'Duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'GIF::Main'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/FrameCount.php b/lib/PHPExiftool/Driver/Tag/GIF/FrameCount.php deleted file mode 100644 index 169d3626d..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/FrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCount extends AbstractTag -{ - - protected $Id = 'FrameCount'; - - protected $Name = 'FrameCount'; - - protected $FullName = 'GIF::Main'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/GIFVersion.php b/lib/PHPExiftool/Driver/Tag/GIF/GIFVersion.php deleted file mode 100644 index 19ce84e15..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/GIFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIFVersion extends AbstractTag -{ - - protected $Id = 'GIFVersion'; - - protected $Name = 'GIFVersion'; - - protected $FullName = 'GIF::Main'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GIF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/HasColorMap.php b/lib/PHPExiftool/Driver/Tag/GIF/HasColorMap.php deleted file mode 100644 index d09992151..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/HasColorMap.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasColorMap extends AbstractTag -{ - - protected $Id = '4.1'; - - protected $Name = 'HasColorMap'; - - protected $FullName = 'GIF::Screen'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Has Color Map'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/GIF/ImageHeight.php deleted file mode 100644 index 41a4255d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'GIF::Screen'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/GIF/ImageWidth.php deleted file mode 100644 index 1723ba0c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'GIF::Screen'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIF/Text.php b/lib/PHPExiftool/Driver/Tag/GIF/Text.php deleted file mode 100644 index dfbdeb317..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIF/Text.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Text extends AbstractTag -{ - - protected $Id = 'Text'; - - protected $Name = 'Text'; - - protected $FullName = 'GIF::Main'; - - protected $GroupName = 'GIF'; - - protected $g0 = 'GIF'; - - protected $g1 = 'GIF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/ColorMode.php b/lib/PHPExiftool/Driver/Tag/GIMP/ColorMode.php deleted file mode 100644 index 55b5068df..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/ColorMode.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'ColorMode'; - - protected $FullName = 'GIMP::Header'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Color Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RGB Color', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Grayscale', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Indexed Color', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/Comment.php b/lib/PHPExiftool/Driver/Tag/GIMP/Comment.php deleted file mode 100644 index 03cfe9688..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'gimp-comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'GIMP::Parasite'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/Compression.php b/lib/PHPExiftool/Driver/Tag/GIMP/Compression.php deleted file mode 100644 index 1daf503d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/Compression.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'Compression'; - - protected $FullName = 'GIMP::Main'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'RLE Encoding', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Zlib', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fractal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/ICCProfileName.php b/lib/PHPExiftool/Driver/Tag/GIMP/ICCProfileName.php deleted file mode 100644 index 1d60efee9..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/ICCProfileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ICCProfileName extends AbstractTag -{ - - protected $Id = 'icc-profile-name'; - - protected $Name = 'ICCProfileName'; - - protected $FullName = 'GIMP::Parasite'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'ICC Profile Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/GIMP/ImageHeight.php deleted file mode 100644 index b120f9c95..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'GIMP::Header'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/GIMP/ImageWidth.php deleted file mode 100644 index 97b805e62..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'GIMP::Header'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/XCFVersion.php b/lib/PHPExiftool/Driver/Tag/GIMP/XCFVersion.php deleted file mode 100644 index 237a04f69..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/XCFVersion.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XCFVersion extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'XCFVersion'; - - protected $FullName = 'GIMP::Header'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'XCF Version'; - - protected $MaxLength = 5; - - protected $Values = array( - 'file' => array( - 'Id' => 'file', - 'Label' => 0, - ), - 'v001' => array( - 'Id' => 'v001', - 'Label' => 1, - ), - 'v002' => array( - 'Id' => 'v002', - 'Label' => 2, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/XResolution.php b/lib/PHPExiftool/Driver/Tag/GIMP/XResolution.php deleted file mode 100644 index 1d81b78c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'XResolution'; - - protected $FullName = 'GIMP::Resolution'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GIMP/YResolution.php b/lib/PHPExiftool/Driver/Tag/GIMP/YResolution.php deleted file mode 100644 index a7e972871..000000000 --- a/lib/PHPExiftool/Driver/Tag/GIMP/YResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GIMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'YResolution'; - - protected $FullName = 'GIMP::Resolution'; - - protected $GroupName = 'GIMP'; - - protected $g0 = 'GIMP'; - - protected $g1 = 'GIMP'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSAltitude.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSAltitude.php deleted file mode 100644 index 7a3fc3fab..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSAltitude.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSAltitude'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSAltitudeRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSAltitudeRef.php deleted file mode 100644 index 83b9b9ff5..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSAltitudeRef.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitudeRef extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSAltitudeRef'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude Ref'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Above Sea Level', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Below Sea Level', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSAreaInformation.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSAreaInformation.php deleted file mode 100644 index 7254ded21..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSAreaInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAreaInformation extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'GPSAreaInformation'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'GPS Area Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDOP.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDOP.php deleted file mode 100644 index d7fadb394..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDOP.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDOP extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSDOP'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Dilution Of Precision'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDateStamp.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDateStamp.php deleted file mode 100644 index 5bd0676a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDateStamp.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDateStamp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSDateStamp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Date Stamp'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 11; - - protected $local_g1 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestBearing.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestBearing.php deleted file mode 100644 index 6d471f805..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestBearing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestBearing extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'GPSDestBearing'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Bearing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestBearingRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestBearingRef.php deleted file mode 100644 index 2a298518e..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestBearingRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestBearingRef extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'GPSDestBearingRef'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Bearing Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'M' => array( - 'Id' => 'M', - 'Label' => 'Magnetic North', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'True North', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestDistance.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestDistance.php deleted file mode 100644 index 8ab829ff0..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestDistance extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'GPSDestDistance'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestDistanceRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestDistanceRef.php deleted file mode 100644 index e0c8efcf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestDistanceRef.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestDistanceRef extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'GPSDestDistanceRef'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Distance Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'K' => array( - 'Id' => 'K', - 'Label' => 'Kilometers', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'Miles', - ), - 'N' => array( - 'Id' => 'N', - 'Label' => 'Nautical Miles', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLatitude.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLatitude.php deleted file mode 100644 index 2428d5728..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestLatitude extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'GPSDestLatitude'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Latitude'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLatitudeRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLatitudeRef.php deleted file mode 100644 index c18426035..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLatitudeRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestLatitudeRef extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'GPSDestLatitudeRef'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Latitude Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'N' => array( - 'Id' => 'N', - 'Label' => 'North', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'South', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLongitude.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLongitude.php deleted file mode 100644 index 1fcc1c0b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestLongitude extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'GPSDestLongitude'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Longitude'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLongitudeRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLongitudeRef.php deleted file mode 100644 index 9ea91e267..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDestLongitudeRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestLongitudeRef extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'GPSDestLongitudeRef'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Longitude Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'E' => array( - 'Id' => 'E', - 'Label' => 'East', - ), - 'W' => array( - 'Id' => 'W', - 'Label' => 'West', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSDifferential.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSDifferential.php deleted file mode 100644 index 609c7a5ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSDifferential.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDifferential extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'GPSDifferential'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'GPS Differential'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Correction', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Differential Corrected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSHPositioningError.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSHPositioningError.php deleted file mode 100644 index d4b0ff9dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSHPositioningError.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSHPositioningError extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'GPSHPositioningError'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'GPS Horizontal Positioning Error'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSImgDirection.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSImgDirection.php deleted file mode 100644 index b7918cdb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSImgDirection.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSImgDirection extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSImgDirection'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Img Direction'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSImgDirectionRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSImgDirectionRef.php deleted file mode 100644 index 1b6519724..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSImgDirectionRef.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSImgDirectionRef extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSImgDirectionRef'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Img Direction Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'M' => array( - 'Id' => 'M', - 'Label' => 'Magnetic North', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'True North', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSLatitude.php deleted file mode 100644 index 9a6ad07c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSLatitude.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude'; - - protected $MaxLength = 3; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSLatitudeRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSLatitudeRef.php deleted file mode 100644 index 4f5009809..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSLatitudeRef.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitudeRef extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSLatitudeRef'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'N' => array( - 'Id' => 'N', - 'Label' => 'North', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'South', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSLongitude.php deleted file mode 100644 index 9d8943ceb..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSLongitude.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude'; - - protected $MaxLength = 3; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSLongitudeRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSLongitudeRef.php deleted file mode 100644 index 5b28615fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSLongitudeRef.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitudeRef extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSLongitudeRef'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'E' => array( - 'Id' => 'E', - 'Label' => 'East', - ), - 'W' => array( - 'Id' => 'W', - 'Label' => 'West', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSMapDatum.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSMapDatum.php deleted file mode 100644 index cb9fa35e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSMapDatum.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMapDatum extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSMapDatum'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Map Datum'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSMeasureMode.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSMeasureMode.php deleted file mode 100644 index f6e18a4a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSMeasureMode.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMeasureMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSMeasureMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Measure Mode'; - - protected $MaxLength = 2; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => '2-Dimensional Measurement', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3-Dimensional Measurement', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSProcessingMethod.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSProcessingMethod.php deleted file mode 100644 index ac35e7f3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSProcessingMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSProcessingMethod extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'GPSProcessingMethod'; - - protected $FullName = 'GPS::Main'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'GPS Processing Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSSatellites.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSSatellites.php deleted file mode 100644 index 2110d4176..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSSatellites.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSatellites extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSSatellites'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Satellites'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSSpeed.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSSpeed.php deleted file mode 100644 index e20923ca1..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSSpeed.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSpeed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSSpeed'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Speed'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSSpeedRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSSpeedRef.php deleted file mode 100644 index deb8f6872..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSSpeedRef.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSpeedRef extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSSpeedRef'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Speed Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'K' => array( - 'Id' => 'K', - 'Label' => 'km/h', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'mph', - ), - 'N' => array( - 'Id' => 'N', - 'Label' => 'knots', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSStatus.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSStatus.php deleted file mode 100644 index 06d4d4470..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSStatus.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSStatus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSStatus'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Status'; - - protected $MaxLength = 2; - - protected $Values = array( - 'A' => array( - 'Id' => 'A', - 'Label' => 'Measurement Active', - ), - 'V' => array( - 'Id' => 'V', - 'Label' => 'Measurement Void', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSTimeStamp.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSTimeStamp.php deleted file mode 100644 index 6454d5464..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSTimeStamp.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSTimeStamp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSTimeStamp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Time Stamp'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 3; - - protected $local_g1 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSTrack.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSTrack.php deleted file mode 100644 index f6a48f7fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSTrack.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSTrack extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSTrack'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Track'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSTrackRef.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSTrackRef.php deleted file mode 100644 index 7147f204d..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSTrackRef.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSTrackRef extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSTrackRef'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'GPS Track Ref'; - - protected $MaxLength = 2; - - protected $Values = array( - 'M' => array( - 'Id' => 'M', - 'Label' => 'Magnetic North', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'True North', - ), - ); - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GPS/GPSVersionID.php b/lib/PHPExiftool/Driver/Tag/GPS/GPSVersionID.php deleted file mode 100644 index 9332c1fc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/GPS/GPSVersionID.php +++ /dev/null @@ -1,53 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSVersionID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSVersionID'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'GPS'; - - protected $g0 = 'mixed'; - - protected $g1 = 'mixed'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'GPS Version ID'; - - protected $flag_Mandatory = true; - - protected $MaxLength = 'mixed'; - - protected $local_g1 = 'mixed'; - - protected $local_g2 = 'mixed'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/GraphConv/Quality.php b/lib/PHPExiftool/Driver/Tag/GraphConv/Quality.php deleted file mode 100644 index e243646aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/GraphConv/Quality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\GraphConv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'Q'; - - protected $Name = 'Quality'; - - protected $FullName = 'JPEG::GraphConv'; - - protected $GroupName = 'GraphConv'; - - protected $g0 = 'APP15'; - - protected $g1 = 'GraphConv'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/ApertureSetting.php b/lib/PHPExiftool/Driver/Tag/H264/ApertureSetting.php deleted file mode 100644 index 1b82131b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/ApertureSetting.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureSetting extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ApertureSetting'; - - protected $FullName = 'H264::Camera1'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Aperture Setting'; - - protected $Values = array( - 254 => array( - 'Id' => 254, - 'Label' => 'Closed', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/H264/BrightnessValue.php deleted file mode 100644 index eb454147a..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/BrightnessValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 163; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational32s'; - - protected $Writable = false; - - protected $Description = 'Brightness Value'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/CaptureFrameRate.php b/lib/PHPExiftool/Driver/Tag/H264/CaptureFrameRate.php deleted file mode 100644 index 9320ab034..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/CaptureFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureFrameRate extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CaptureFrameRate'; - - protected $FullName = 'H264::FrameInfo'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Capture Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/CustomRendered.php b/lib/PHPExiftool/Driver/Tag/H264/CustomRendered.php deleted file mode 100644 index 3d88bfaae..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/CustomRendered.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomRendered extends AbstractTag -{ - - protected $Id = 167; - - protected $Name = 'CustomRendered'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Custom Rendered'; - - protected $local_g2 = 'Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/H264/DateTimeOriginal.php deleted file mode 100644 index 109fe9f70..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/H264/ExposureCompensation.php deleted file mode 100644 index 944a52afa..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 164; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational32s'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/H264/ExposureProgram.php deleted file mode 100644 index 4521bb47c..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/ExposureProgram.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Program'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'Gain', - ), - 2 => array( - 'Id' => 32, - 'Label' => 'Shutter speed priority AE', - ), - 3 => array( - 'Id' => 48, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Not Defined', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Creative (Slow speed)', - ), - 11 => array( - 'Id' => 6, - 'Label' => 'Action (High speed)', - ), - 12 => array( - 'Id' => 7, - 'Label' => 'Portrait', - ), - 13 => array( - 'Id' => 8, - 'Label' => 'Landscape', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/H264/ExposureTime.php deleted file mode 100644 index 09a48e107..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/FNumber.php b/lib/PHPExiftool/Driver/Tag/H264/FNumber.php deleted file mode 100644 index c153ae657..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 161; - - protected $Name = 'FNumber'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/Flash.php b/lib/PHPExiftool/Driver/Tag/H264/Flash.php deleted file mode 100644 index b31559c60..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/Flash.php +++ /dev/null @@ -1,154 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 166; - - protected $Name = 'Flash'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Flash'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Fired, Return not detected', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Fired, Return detected', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'On, Did not fire', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'On, Fired', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'On, Return not detected', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'On, Return detected', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Off, Did not fire', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Off, Did not fire, Return not detected', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Auto, Did not fire', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Auto, Fired', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Auto, Fired, Return not detected', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Auto, Fired, Return detected', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'No flash function', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Off, No flash function', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Fired, Red-eye reduction', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Fired, Red-eye reduction, Return not detected', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Fired, Red-eye reduction, Return detected', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'On, Red-eye reduction', - ), - 77 => array( - 'Id' => 77, - 'Label' => 'On, Red-eye reduction, Return not detected', - ), - 79 => array( - 'Id' => 79, - 'Label' => 'On, Red-eye reduction, Return detected', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Off, Red-eye reduction', - ), - 88 => array( - 'Id' => 88, - 'Label' => 'Auto, Did not fire, Red-eye reduction', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Auto, Fired, Red-eye reduction', - ), - 93 => array( - 'Id' => 93, - 'Label' => 'Auto, Fired, Red-eye reduction, Return not detected', - ), - 95 => array( - 'Id' => 95, - 'Label' => 'Auto, Fired, Red-eye reduction, Return detected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/FocalLengthIn35mmFormat.php b/lib/PHPExiftool/Driver/Tag/H264/FocalLengthIn35mmFormat.php deleted file mode 100644 index 1a40efb2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/FocalLengthIn35mmFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLengthIn35mmFormat extends AbstractTag -{ - - protected $Id = 169; - - protected $Name = 'FocalLengthIn35mmFormat'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'Focal Length In 35mm Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/Focus.php b/lib/PHPExiftool/Driver/Tag/H264/Focus.php deleted file mode 100644 index cabd4fe8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/Focus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Focus extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Focus'; - - protected $FullName = 'H264::Camera1'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Focus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/Gain.php b/lib/PHPExiftool/Driver/Tag/H264/Gain.php deleted file mode 100644 index 2b8a1fa7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/Gain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gain extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Gain'; - - protected $FullName = 'H264::Camera1'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/H264/ImageHeight.php deleted file mode 100644 index 75ff00558..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'ImageHeight'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'H264::Main'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/H264/ImageStabilization.php deleted file mode 100644 index 583f93ed8..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/ImageStabilization.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'H264::Camera2'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Stabilization'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'On (0x3f)', - ), - 191 => array( - 'Id' => 191, - 'Label' => 'Off (0xbf)', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/H264/ImageWidth.php deleted file mode 100644 index 140ff8e1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'ImageWidth'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'H264::Main'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/Make.php b/lib/PHPExiftool/Driver/Tag/H264/Make.php deleted file mode 100644 index b34e0b3ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/Make.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'H264::MakeModel'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $Values = array( - 259 => array( - 'Id' => 259, - 'Label' => 'Panasonic', - ), - 264 => array( - 'Id' => 264, - 'Label' => 'Sony', - ), - 4113 => array( - 'Id' => 4113, - 'Label' => 'Canon', - ), - 4356 => array( - 'Id' => 4356, - 'Label' => 'JVC', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/MaxApertureValue.php b/lib/PHPExiftool/Driver/Tag/H264/MaxApertureValue.php deleted file mode 100644 index f50274350..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/MaxApertureValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureValue extends AbstractTag -{ - - protected $Id = 165; - - protected $Name = 'MaxApertureValue'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'Max Aperture Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/Model.php b/lib/PHPExiftool/Driver/Tag/H264/Model.php deleted file mode 100644 index f5b71561c..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/Model.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 228; - - protected $Name = 'Model'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/RecordingMode.php b/lib/PHPExiftool/Driver/Tag/H264/RecordingMode.php deleted file mode 100644 index 5add7ff46..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/RecordingMode.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingMode extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'RecordingMode'; - - protected $FullName = 'H264::RecInfo'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Recording Mode'; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'XP+', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'SP', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'LP', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'FXP', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'MXP', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/SceneCaptureType.php b/lib/PHPExiftool/Driver/Tag/H264/SceneCaptureType.php deleted file mode 100644 index 8f1d63463..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/SceneCaptureType.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneCaptureType extends AbstractTag -{ - - protected $Id = 170; - - protected $Name = 'SceneCaptureType'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Scene Capture Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Landscape', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/TimeCode.php b/lib/PHPExiftool/Driver/Tag/H264/TimeCode.php deleted file mode 100644 index 0a253ecbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/TimeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeCode extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'TimeCode'; - - protected $FullName = 'H264::MDPM'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/VideoFrameRate.php b/lib/PHPExiftool/Driver/Tag/H264/VideoFrameRate.php deleted file mode 100644 index fec233109..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/VideoFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameRate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'VideoFrameRate'; - - protected $FullName = 'H264::FrameInfo'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Video Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/H264/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/H264/WhiteBalance.php deleted file mode 100644 index c12abbe7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/H264/WhiteBalance.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\H264; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'H264'; - - protected $g0 = 'H264'; - - protected $g1 = 'H264'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 32, - 'Label' => 'Hold', - ), - 2 => array( - 'Id' => 64, - 'Label' => '1-Push', - ), - 3 => array( - 'Id' => 96, - 'Label' => 'Daylight', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/CameraDateTime.php b/lib/PHPExiftool/Driver/Tag/HP/CameraDateTime.php deleted file mode 100644 index ef764de5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/CameraDateTime.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraDateTime extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'CameraDateTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Date Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/HP/ExposureTime.php deleted file mode 100644 index 8a70ae89e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/FNumber.php b/lib/PHPExiftool/Driver/Tag/HP/FNumber.php deleted file mode 100644 index c032fd209..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'FNumber'; - - protected $FullName = 'HP::Type6'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/HP/FirmwareVersion.php deleted file mode 100644 index f539ccb03..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/FirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'FWRV'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'HP::TDHD'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/ISO.php b/lib/PHPExiftool/Driver/Tag/HP/ISO.php deleted file mode 100644 index b542fdde7..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/LensShading.php b/lib/PHPExiftool/Driver/Tag/HP/LensShading.php deleted file mode 100644 index 3462cd1e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/LensShading.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensShading extends AbstractTag -{ - - protected $Id = 'Lens Shading'; - - protected $Name = 'LensShading'; - - protected $FullName = 'HP::Type2'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Shading'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/HP/MaxAperture.php deleted file mode 100644 index eea469d3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'HP::Type4'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/HP/PreviewImage.php deleted file mode 100644 index f85cd08de..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'PreviewImage'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'HP::Type2'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HP/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/HP/SerialNumber.php deleted file mode 100644 index 77e9c80ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/HP/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'HP'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'HP'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Abstract0.php b/lib/PHPExiftool/Driver/Tag/HTML/Abstract0.php deleted file mode 100644 index f21a3b1ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Abstract0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Abstract0 extends AbstractTag -{ - - protected $Id = 'abstract'; - - protected $Name = 'Abstract'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Abstract'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Author.php b/lib/PHPExiftool/Driver/Tag/HTML/Author.php deleted file mode 100644 index 6c3393fc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Author.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'author'; - - protected $Name = 'Author'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Classification.php b/lib/PHPExiftool/Driver/Tag/HTML/Classification.php deleted file mode 100644 index 89034234e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Classification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Classification extends AbstractTag -{ - - protected $Id = 'classification'; - - protected $Name = 'Classification'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Classification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/ContentLanguage.php b/lib/PHPExiftool/Driver/Tag/HTML/ContentLanguage.php deleted file mode 100644 index 29edf6cff..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/ContentLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentLanguage extends AbstractTag -{ - - protected $Id = 'content-language'; - - protected $Name = 'ContentLanguage'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Copyright.php b/lib/PHPExiftool/Driver/Tag/HTML/Copyright.php deleted file mode 100644 index 43137f6c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Copyright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Description.php b/lib/PHPExiftool/Driver/Tag/HTML/Description.php deleted file mode 100644 index 348dbe384..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'description'; - - protected $Name = 'Description'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Distribution.php b/lib/PHPExiftool/Driver/Tag/HTML/Distribution.php deleted file mode 100644 index 7b3fb81f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Distribution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Distribution extends AbstractTag -{ - - protected $Id = 'distribution'; - - protected $Name = 'Distribution'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distribution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/DocClass.php b/lib/PHPExiftool/Driver/Tag/HTML/DocClass.php deleted file mode 100644 index d2a2d8145..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/DocClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocClass extends AbstractTag -{ - - protected $Id = 'doc-class'; - - protected $Name = 'DocClass'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doc Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/DocRights.php b/lib/PHPExiftool/Driver/Tag/HTML/DocRights.php deleted file mode 100644 index 498542e57..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/DocRights.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocRights extends AbstractTag -{ - - protected $Id = 'doc-rights'; - - protected $Name = 'DocRights'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doc Rights'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/DocType.php b/lib/PHPExiftool/Driver/Tag/HTML/DocType.php deleted file mode 100644 index 8bd2e87b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/DocType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocType extends AbstractTag -{ - - protected $Id = 'doc-type'; - - protected $Name = 'DocType'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doc Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Formatter.php b/lib/PHPExiftool/Driver/Tag/HTML/Formatter.php deleted file mode 100644 index 1f714c8e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Formatter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Formatter extends AbstractTag -{ - - protected $Id = 'formatter'; - - protected $Name = 'Formatter'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Formatter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Generator.php b/lib/PHPExiftool/Driver/Tag/HTML/Generator.php deleted file mode 100644 index 46b53814a..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Generator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Generator extends AbstractTag -{ - - protected $Id = 'generator'; - - protected $Name = 'Generator'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Generator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/GeneratorVersion.php b/lib/PHPExiftool/Driver/Tag/HTML/GeneratorVersion.php deleted file mode 100644 index 2841c8f05..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/GeneratorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeneratorVersion extends AbstractTag -{ - - protected $Id = 'generatorversion'; - - protected $Name = 'GeneratorVersion'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Generator Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/GoogleBot.php b/lib/PHPExiftool/Driver/Tag/HTML/GoogleBot.php deleted file mode 100644 index bcf5a5dc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/GoogleBot.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GoogleBot extends AbstractTag -{ - - protected $Id = 'googlebot'; - - protected $Name = 'GoogleBot'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Google Bot'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Keywords.php b/lib/PHPExiftool/Driver/Tag/HTML/Keywords.php deleted file mode 100644 index 2739fa167..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Keywords.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/NoMSSmartTags.php b/lib/PHPExiftool/Driver/Tag/HTML/NoMSSmartTags.php deleted file mode 100644 index 155e0e8fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/NoMSSmartTags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoMSSmartTags extends AbstractTag -{ - - protected $Id = 'mssmarttagspreventparsing'; - - protected $Name = 'NoMSSmartTags'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'No MS Smart Tags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Originator.php b/lib/PHPExiftool/Driver/Tag/HTML/Originator.php deleted file mode 100644 index dd8c393b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Originator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Originator extends AbstractTag -{ - - protected $Id = 'originator'; - - protected $Name = 'Originator'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Originator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Owner.php b/lib/PHPExiftool/Driver/Tag/HTML/Owner.php deleted file mode 100644 index e88d2689b..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Owner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Owner extends AbstractTag -{ - - protected $Id = 'owner'; - - protected $Name = 'Owner'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/ProgID.php b/lib/PHPExiftool/Driver/Tag/HTML/ProgID.php deleted file mode 100644 index af8a855a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/ProgID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgID extends AbstractTag -{ - - protected $Id = 'progid'; - - protected $Name = 'ProgID'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prog ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Rating.php b/lib/PHPExiftool/Driver/Tag/HTML/Rating.php deleted file mode 100644 index 7de33afb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Rating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 'rating'; - - protected $Name = 'Rating'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Refresh.php b/lib/PHPExiftool/Driver/Tag/HTML/Refresh.php deleted file mode 100644 index 70547c010..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Refresh.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Refresh extends AbstractTag -{ - - protected $Id = 'refresh'; - - protected $Name = 'Refresh'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Refresh'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/ResourceType.php b/lib/PHPExiftool/Driver/Tag/HTML/ResourceType.php deleted file mode 100644 index eb9e21df3..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/ResourceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResourceType extends AbstractTag -{ - - protected $Id = 'resource-type'; - - protected $Name = 'ResourceType'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resource Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/RevisitAfter.php b/lib/PHPExiftool/Driver/Tag/HTML/RevisitAfter.php deleted file mode 100644 index 0c9387554..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/RevisitAfter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RevisitAfter extends AbstractTag -{ - - protected $Id = 'revisit-after'; - - protected $Name = 'RevisitAfter'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revisit After'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Robots.php b/lib/PHPExiftool/Driver/Tag/HTML/Robots.php deleted file mode 100644 index cade14607..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Robots.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Robots extends AbstractTag -{ - - protected $Id = 'robots'; - - protected $Name = 'Robots'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Robots'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTML/Title.php b/lib/PHPExiftool/Driver/Tag/HTML/Title.php deleted file mode 100644 index ad0c7185b..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTML/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'title'; - - protected $Name = 'Title'; - - protected $FullName = 'HTML::Main'; - - protected $GroupName = 'HTML'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Contributor.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Contributor.php deleted file mode 100644 index 6bd9e2ffa..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Contributor.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contributor extends AbstractTag -{ - - protected $Id = 'contributor'; - - protected $Name = 'Contributor'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contributor'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Coverage.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Coverage.php deleted file mode 100644 index 488a4ba0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Coverage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Coverage extends AbstractTag -{ - - protected $Id = 'coverage'; - - protected $Name = 'Coverage'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coverage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Creator.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Creator.php deleted file mode 100644 index 569efec63..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Creator.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 'creator'; - - protected $Name = 'Creator'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creator'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Date.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Date.php deleted file mode 100644 index 30bc0a338..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Date.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'date'; - - protected $Name = 'Date'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Description.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Description.php deleted file mode 100644 index d20374ca2..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'description'; - - protected $Name = 'Description'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Format.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Format.php deleted file mode 100644 index c9a4abe0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Format.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Format extends AbstractTag -{ - - protected $Id = 'format'; - - protected $Name = 'Format'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Identifier.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Identifier.php deleted file mode 100644 index 13ea5234b..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Identifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Identifier extends AbstractTag -{ - - protected $Id = 'identifier'; - - protected $Name = 'Identifier'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Language.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Language.php deleted file mode 100644 index a63a4ae9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Language.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'language'; - - protected $Name = 'Language'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Publisher.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Publisher.php deleted file mode 100644 index d24d80c47..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Publisher.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'publisher'; - - protected $Name = 'Publisher'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Relation.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Relation.php deleted file mode 100644 index 1c5446f0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Relation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Relation extends AbstractTag -{ - - protected $Id = 'relation'; - - protected $Name = 'Relation'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relation'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Rights.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Rights.php deleted file mode 100644 index fd4a78071..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Rights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rights extends AbstractTag -{ - - protected $Id = 'rights'; - - protected $Name = 'Rights'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rights'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Source.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Source.php deleted file mode 100644 index 25b28975e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Source.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 'source'; - - protected $Name = 'Source'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Subject.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Subject.php deleted file mode 100644 index 2f0aecd46..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Subject.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Title.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Title.php deleted file mode 100644 index 0b528572b..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'title'; - - protected $Name = 'Title'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLDc/Type.php b/lib/PHPExiftool/Driver/Tag/HTMLDc/Type.php deleted file mode 100644 index 2bc4078c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLDc/Type.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Type extends AbstractTag -{ - - protected $Id = 'type'; - - protected $Name = 'Type'; - - protected $FullName = 'HTML::dc'; - - protected $GroupName = 'HTML-dc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-dc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/CharacterSet.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/CharacterSet.php deleted file mode 100644 index 0d523b061..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/CharacterSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharacterSet extends AbstractTag -{ - - protected $Id = 'charset'; - - protected $Name = 'CharacterSet'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Character Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Depth.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Depth.php deleted file mode 100644 index 288cb639f..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Depth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Depth extends AbstractTag -{ - - protected $Id = 'depth'; - - protected $Name = 'Depth'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Duration.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Duration.php deleted file mode 100644 index 3d71f347e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'totaltime'; - - protected $Name = 'Duration'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Files.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Files.php deleted file mode 100644 index 1eba40e34..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Files.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Files extends AbstractTag -{ - - protected $Id = 'files'; - - protected $Name = 'Files'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Files'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Footnotes.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Footnotes.php deleted file mode 100644 index 0b0419b26..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Footnotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Footnotes extends AbstractTag -{ - - protected $Id = 'footnotes'; - - protected $Name = 'Footnotes'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Footnotes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Generator.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Generator.php deleted file mode 100644 index 3173e2fc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Generator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Generator extends AbstractTag -{ - - protected $Id = 'generator'; - - protected $Name = 'Generator'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Generator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/KByteSize.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/KByteSize.php deleted file mode 100644 index 2e28fef00..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/KByteSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KByteSize extends AbstractTag -{ - - protected $Id = 'kbytesize'; - - protected $Name = 'KByteSize'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'K Byte Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/MaxPageNormal.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/MaxPageNormal.php deleted file mode 100644 index 9f1f7767e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/MaxPageNormal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPageNormal extends AbstractTag -{ - - protected $Id = 'maxpagenormal'; - - protected $Name = 'MaxPageNormal'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Page Normal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/MultimediaType.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/MultimediaType.php deleted file mode 100644 index 60c96bbd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/MultimediaType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultimediaType extends AbstractTag -{ - - protected $Id = 'multimediatype'; - - protected $Name = 'MultimediaType'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multimedia Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Narrator.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Narrator.php deleted file mode 100644 index d49dbb052..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Narrator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Narrator extends AbstractTag -{ - - protected $Id = 'narrator'; - - protected $Name = 'Narrator'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Narrator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageFront.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageFront.php deleted file mode 100644 index cc66fc340..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageFront.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageFront extends AbstractTag -{ - - protected $Id = 'pagefront'; - - protected $Name = 'PageFront'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Front'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageNormal.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageNormal.php deleted file mode 100644 index 53bc7ac3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageNormal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageNormal extends AbstractTag -{ - - protected $Id = 'pagenormal'; - - protected $Name = 'PageNormal'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Normal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageSpecial.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageSpecial.php deleted file mode 100644 index 23ea75a43..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/PageSpecial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageSpecial extends AbstractTag -{ - - protected $Id = 'pagespecial'; - - protected $Name = 'PageSpecial'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Special'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/ProdNotes.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/ProdNotes.php deleted file mode 100644 index 77aa32f4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/ProdNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProdNotes extends AbstractTag -{ - - protected $Id = 'prodnotes'; - - protected $Name = 'ProdNotes'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prod Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/ProducedDate.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/ProducedDate.php deleted file mode 100644 index fed0b4e46..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/ProducedDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProducedDate extends AbstractTag -{ - - protected $Id = 'produceddate'; - - protected $Name = 'ProducedDate'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Produced Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Producer.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Producer.php deleted file mode 100644 index 48d010318..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Producer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = 'producer'; - - protected $Name = 'Producer'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Revision.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Revision.php deleted file mode 100644 index f5d898630..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Revision.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Revision extends AbstractTag -{ - - protected $Id = 'revision'; - - protected $Name = 'Revision'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revision'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/RevisionDate.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/RevisionDate.php deleted file mode 100644 index 6314476db..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/RevisionDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RevisionDate extends AbstractTag -{ - - protected $Id = 'revisiondate'; - - protected $Name = 'RevisionDate'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revision Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SetInfo.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/SetInfo.php deleted file mode 100644 index 8ad5e8fea..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SetInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetInfo extends AbstractTag -{ - - protected $Id = 'setinfo'; - - protected $Name = 'SetInfo'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Set Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Sidebars.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/Sidebars.php deleted file mode 100644 index 848449832..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/Sidebars.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sidebars extends AbstractTag -{ - - protected $Id = 'sidebars'; - - protected $Name = 'Sidebars'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sidebars'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceDate.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceDate.php deleted file mode 100644 index 91bc3092e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceDate extends AbstractTag -{ - - protected $Id = 'sourcedate'; - - protected $Name = 'SourceDate'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceEdition.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceEdition.php deleted file mode 100644 index 975362e19..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceEdition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceEdition extends AbstractTag -{ - - protected $Id = 'sourceedition'; - - protected $Name = 'SourceEdition'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Edition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourcePublisher.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourcePublisher.php deleted file mode 100644 index 8c888f06a..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourcePublisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourcePublisher extends AbstractTag -{ - - protected $Id = 'sourcepublisher'; - - protected $Name = 'SourcePublisher'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceRights.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceRights.php deleted file mode 100644 index 165e07718..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceRights.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceRights extends AbstractTag -{ - - protected $Id = 'sourcerights'; - - protected $Name = 'SourceRights'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Rights'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceTitle.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceTitle.php deleted file mode 100644 index 161c11ba3..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/SourceTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceTitle extends AbstractTag -{ - - protected $Id = 'sourcetitle'; - - protected $Name = 'SourceTitle'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLNcc/TOCItems.php b/lib/PHPExiftool/Driver/Tag/HTMLNcc/TOCItems.php deleted file mode 100644 index 5ae2e610d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLNcc/TOCItems.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLNcc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TOCItems extends AbstractTag -{ - - protected $Id = 'tocitems'; - - protected $Name = 'TOCItems'; - - protected $FullName = 'HTML::ncc'; - - protected $GroupName = 'HTML-ncc'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-ncc'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TOC Items'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Author.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Author.php deleted file mode 100644 index 70bbd87db..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'Author'; - - protected $Name = 'Author'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Category.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Category.php deleted file mode 100644 index f463bbf94..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 'Category'; - - protected $Name = 'Category'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Characters.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Characters.php deleted file mode 100644 index 06864bdd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Characters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Characters extends AbstractTag -{ - - protected $Id = 'Characters'; - - protected $Name = 'Characters'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/CharactersWithSpaces.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/CharactersWithSpaces.php deleted file mode 100644 index 6b89b2390..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/CharactersWithSpaces.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharactersWithSpaces extends AbstractTag -{ - - protected $Id = 'CharactersWithSpaces'; - - protected $Name = 'CharactersWithSpaces'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters With Spaces'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Company.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Company.php deleted file mode 100644 index 0556beec5..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Company.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Company extends AbstractTag -{ - - protected $Id = 'Company'; - - protected $Name = 'Company'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Company'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/CreateDate.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/CreateDate.php deleted file mode 100644 index 0c840e36e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'Created'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Description.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Description.php deleted file mode 100644 index ba2dd83a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'Description'; - - protected $Name = 'Description'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Keywords.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Keywords.php deleted file mode 100644 index f107fd37f..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/LastAuthor.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/LastAuthor.php deleted file mode 100644 index 601c19aff..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/LastAuthor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastAuthor extends AbstractTag -{ - - protected $Id = 'LastAuthor'; - - protected $Name = 'LastAuthor'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/LastPrinted.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/LastPrinted.php deleted file mode 100644 index c32e180a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/LastPrinted.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPrinted extends AbstractTag -{ - - protected $Id = 'LastPrinted'; - - protected $Name = 'LastPrinted'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Printed'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Lines.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Lines.php deleted file mode 100644 index fabc527dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Lines.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lines extends AbstractTag -{ - - protected $Id = 'Lines'; - - protected $Name = 'Lines'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lines'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Manager.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Manager.php deleted file mode 100644 index ff153ae35..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Manager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manager extends AbstractTag -{ - - protected $Id = 'Manager'; - - protected $Name = 'Manager'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/ModifyDate.php deleted file mode 100644 index 0a9f908c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'LastSaved'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Pages.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Pages.php deleted file mode 100644 index a25ab8e25..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Pages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pages extends AbstractTag -{ - - protected $Id = 'Pages'; - - protected $Name = 'Pages'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Paragraphs.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Paragraphs.php deleted file mode 100644 index e9f29bf54..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Paragraphs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Paragraphs extends AbstractTag -{ - - protected $Id = 'Paragraphs'; - - protected $Name = 'Paragraphs'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Paragraphs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/RevisionNumber.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/RevisionNumber.php deleted file mode 100644 index f1eb865f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/RevisionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RevisionNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RevisionNumber'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revision Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Subject.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Subject.php deleted file mode 100644 index 10364cce5..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'Subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Template.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Template.php deleted file mode 100644 index d423b815b..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Template.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Template extends AbstractTag -{ - - protected $Id = 'Template'; - - protected $Name = 'Template'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/TotalEditTime.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/TotalEditTime.php deleted file mode 100644 index ac3b2da7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/TotalEditTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalEditTime extends AbstractTag -{ - - protected $Id = 'TotalTime'; - - protected $Name = 'TotalEditTime'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Edit Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Words.php b/lib/PHPExiftool/Driver/Tag/HTMLOffice/Words.php deleted file mode 100644 index 9822d8820..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLOffice/Words.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLOffice; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Words extends AbstractTag -{ - - protected $Id = 'Words'; - - protected $Name = 'Words'; - - protected $FullName = 'HTML::Office'; - - protected $GroupName = 'HTML-office'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-office'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Words'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLProd/RecEngineer.php b/lib/PHPExiftool/Driver/Tag/HTMLProd/RecEngineer.php deleted file mode 100644 index 7348465c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLProd/RecEngineer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLProd; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecEngineer extends AbstractTag -{ - - protected $Id = 'recengineer'; - - protected $Name = 'RecEngineer'; - - protected $FullName = 'HTML::prod'; - - protected $GroupName = 'HTML-prod'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-prod'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rec Engineer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLProd/RecLocation.php b/lib/PHPExiftool/Driver/Tag/HTMLProd/RecLocation.php deleted file mode 100644 index 503b80d42..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLProd/RecLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLProd; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecLocation extends AbstractTag -{ - - protected $Id = 'reclocation'; - - protected $Name = 'RecLocation'; - - protected $FullName = 'HTML::prod'; - - protected $GroupName = 'HTML-prod'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-prod'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rec Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTMLVw96/ObjectType.php b/lib/PHPExiftool/Driver/Tag/HTMLVw96/ObjectType.php deleted file mode 100644 index e96e4a25d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTMLVw96/ObjectType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTMLVw96; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectType extends AbstractTag -{ - - protected $Id = 'objecttype'; - - protected $Name = 'ObjectType'; - - protected $FullName = 'HTML::vw96'; - - protected $GroupName = 'HTML-vw96'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTML-vw96'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Object Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/CacheControl.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/CacheControl.php deleted file mode 100644 index b24d11006..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/CacheControl.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CacheControl extends AbstractTag -{ - - protected $Id = 'cache-control'; - - protected $Name = 'CacheControl'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cache Control'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentDisposition.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentDisposition.php deleted file mode 100644 index 2942c53e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentDisposition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDisposition extends AbstractTag -{ - - protected $Id = 'content-disposition'; - - protected $Name = 'ContentDisposition'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Disposition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentLanguage.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentLanguage.php deleted file mode 100644 index 853ba3047..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentLanguage extends AbstractTag -{ - - protected $Id = 'content-language'; - - protected $Name = 'ContentLanguage'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentScriptType.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentScriptType.php deleted file mode 100644 index f2676c1e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentScriptType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentScriptType extends AbstractTag -{ - - protected $Id = 'content-script-type'; - - protected $Name = 'ContentScriptType'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Script Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentStyleType.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentStyleType.php deleted file mode 100644 index d27c99db0..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentStyleType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentStyleType extends AbstractTag -{ - - protected $Id = 'content-style-type'; - - protected $Name = 'ContentStyleType'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Style Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentType.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentType.php deleted file mode 100644 index c33e6fc52..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ContentType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentType extends AbstractTag -{ - - protected $Id = 'content-type'; - - protected $Name = 'ContentType'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/DefaultStyle.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/DefaultStyle.php deleted file mode 100644 index 73fe2a7ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/DefaultStyle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultStyle extends AbstractTag -{ - - protected $Id = 'default-style'; - - protected $Name = 'DefaultStyle'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Style'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Expires.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Expires.php deleted file mode 100644 index 4d33d6023..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Expires.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Expires extends AbstractTag -{ - - protected $Id = 'expires'; - - protected $Name = 'Expires'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Expires'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ExtCache.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ExtCache.php deleted file mode 100644 index 4121c879d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ExtCache.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtCache extends AbstractTag -{ - - protected $Id = 'ext-cache'; - - protected $Name = 'ExtCache'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ext Cache'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ImageToolbar.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ImageToolbar.php deleted file mode 100644 index 34de4c0ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ImageToolbar.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageToolbar extends AbstractTag -{ - - protected $Id = 'imagetoolbar'; - - protected $Name = 'ImageToolbar'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Toolbar'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Lotus.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Lotus.php deleted file mode 100644 index 8622c25f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Lotus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lotus extends AbstractTag -{ - - protected $Id = 'lotus'; - - protected $Name = 'Lotus'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lotus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PageEnter.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PageEnter.php deleted file mode 100644 index 3e82ff4b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PageEnter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageEnter extends AbstractTag -{ - - protected $Id = 'page-enter'; - - protected $Name = 'PageEnter'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Enter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PageExit.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PageExit.php deleted file mode 100644 index 6169e6008..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PageExit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageExit extends AbstractTag -{ - - protected $Id = 'page-exit'; - - protected $Name = 'PageExit'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Exit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PicsLabel.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PicsLabel.php deleted file mode 100644 index 420783a3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/PicsLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PicsLabel extends AbstractTag -{ - - protected $Id = 'pics-label'; - - protected $Name = 'PicsLabel'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pics Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Pragma.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Pragma.php deleted file mode 100644 index a18b0a509..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Pragma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pragma extends AbstractTag -{ - - protected $Id = 'pragma'; - - protected $Name = 'Pragma'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pragma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Refresh.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Refresh.php deleted file mode 100644 index 1c351c3a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Refresh.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Refresh extends AbstractTag -{ - - protected $Id = 'refresh'; - - protected $Name = 'Refresh'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Refresh'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ReplyTo.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ReplyTo.php deleted file mode 100644 index d327c3c6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/ReplyTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplyTo extends AbstractTag -{ - - protected $Id = 'reply-to'; - - protected $Name = 'ReplyTo'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reply To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SetCookie.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SetCookie.php deleted file mode 100644 index 8daa2b13e..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SetCookie.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetCookie extends AbstractTag -{ - - protected $Id = 'set-cookie'; - - protected $Name = 'SetCookie'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Set Cookie'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SiteEnter.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SiteEnter.php deleted file mode 100644 index 99688c94d..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SiteEnter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SiteEnter extends AbstractTag -{ - - protected $Id = 'site-enter'; - - protected $Name = 'SiteEnter'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Site Enter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SiteExit.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SiteExit.php deleted file mode 100644 index 132298e56..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/SiteExit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SiteExit extends AbstractTag -{ - - protected $Id = 'site-exit'; - - protected $Name = 'SiteExit'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Site Exit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Vary.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Vary.php deleted file mode 100644 index 251c8566b..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/Vary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Vary extends AbstractTag -{ - - protected $Id = 'vary'; - - protected $Name = 'Vary'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/WindowTarget.php b/lib/PHPExiftool/Driver/Tag/HTTPEquiv/WindowTarget.php deleted file mode 100644 index 5c6e15ff5..000000000 --- a/lib/PHPExiftool/Driver/Tag/HTTPEquiv/WindowTarget.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\HTTPEquiv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowTarget extends AbstractTag -{ - - protected $Id = 'window-target'; - - protected $Name = 'WindowTarget'; - - protected $FullName = 'HTML::equiv'; - - protected $GroupName = 'HTTP-equiv'; - - protected $g0 = 'HTML'; - - protected $g1 = 'HTTP-equiv'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Window Target'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel1.php b/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel1.php deleted file mode 100644 index a43f713ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCChrm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticityChannel1 extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ChromaticityChannel1'; - - protected $FullName = 'ICC_Profile::Chromaticity'; - - protected $GroupName = 'ICC-chrm'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-chrm'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Chromaticity Channel 1'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel2.php b/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel2.php deleted file mode 100644 index 3a59afddf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCChrm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticityChannel2 extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ChromaticityChannel2'; - - protected $FullName = 'ICC_Profile::Chromaticity'; - - protected $GroupName = 'ICC-chrm'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-chrm'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Chromaticity Channel 2'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel3.php b/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel3.php deleted file mode 100644 index 3acb16209..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCChrm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticityChannel3 extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'ChromaticityChannel3'; - - protected $FullName = 'ICC_Profile::Chromaticity'; - - protected $GroupName = 'ICC-chrm'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-chrm'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Chromaticity Channel 3'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel4.php b/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel4.php deleted file mode 100644 index d5a7111e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannel4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCChrm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticityChannel4 extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'ChromaticityChannel4'; - - protected $FullName = 'ICC_Profile::Chromaticity'; - - protected $GroupName = 'ICC-chrm'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-chrm'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Chromaticity Channel 4'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannels.php b/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannels.php deleted file mode 100644 index 5bf0e52b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCChrm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticityChannels extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ChromaticityChannels'; - - protected $FullName = 'ICC_Profile::Chromaticity'; - - protected $GroupName = 'ICC-chrm'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-chrm'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Chromaticity Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityColorant.php b/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityColorant.php deleted file mode 100644 index 35ed3a808..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCChrm/ChromaticityColorant.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCChrm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticityColorant extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ChromaticityColorant'; - - protected $FullName = 'ICC_Profile::Chromaticity'; - - protected $GroupName = 'ICC-chrm'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-chrm'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Chromaticity Colorant'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'ITU-R BT.709', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'SMPTE RP145-1994', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'EBU Tech.3213-E', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'P22', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant1Coordinates.php b/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant1Coordinates.php deleted file mode 100644 index aa69b9289..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant1Coordinates.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCClrt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorant1Coordinates extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'Colorant1Coordinates'; - - protected $FullName = 'ICC_Profile::ColorantTable'; - - protected $GroupName = 'ICC-clrt'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-clrt'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Colorant 1 Coordinates'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant1Name.php b/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant1Name.php deleted file mode 100644 index 320039be7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant1Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCClrt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorant1Name extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Colorant1Name'; - - protected $FullName = 'ICC_Profile::ColorantTable'; - - protected $GroupName = 'ICC-clrt'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-clrt'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Colorant 1 Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant2Coordinates.php b/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant2Coordinates.php deleted file mode 100644 index 9b690449b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant2Coordinates.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCClrt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorant2Coordinates extends AbstractTag -{ - - protected $Id = 82; - - protected $Name = 'Colorant2Coordinates'; - - protected $FullName = 'ICC_Profile::ColorantTable'; - - protected $GroupName = 'ICC-clrt'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-clrt'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Colorant 2 Coordinates'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant2Name.php b/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant2Name.php deleted file mode 100644 index ea8a2e3ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant2Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCClrt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorant2Name extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'Colorant2Name'; - - protected $FullName = 'ICC_Profile::ColorantTable'; - - protected $GroupName = 'ICC-clrt'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-clrt'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Colorant 2 Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant3Coordinates.php b/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant3Coordinates.php deleted file mode 100644 index 3274f9226..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant3Coordinates.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCClrt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorant3Coordinates extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'Colorant3Coordinates'; - - protected $FullName = 'ICC_Profile::ColorantTable'; - - protected $GroupName = 'ICC-clrt'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-clrt'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Colorant 3 Coordinates'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant3Name.php b/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant3Name.php deleted file mode 100644 index 947715e87..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCClrt/Colorant3Name.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCClrt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorant3Name extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'Colorant3Name'; - - protected $FullName = 'ICC_Profile::ColorantTable'; - - protected $GroupName = 'ICC-clrt'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-clrt'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Colorant 3 Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCClrt/ColorantCount.php b/lib/PHPExiftool/Driver/Tag/ICCClrt/ColorantCount.php deleted file mode 100644 index de029fafa..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCClrt/ColorantCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCClrt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantCount extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ColorantCount'; - - protected $FullName = 'ICC_Profile::ColorantTable'; - - protected $GroupName = 'ICC-clrt'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-clrt'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Colorant Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/CMMFlags.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/CMMFlags.php deleted file mode 100644 index b5b3a2291..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/CMMFlags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMMFlags extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'CMMFlags'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'CMM Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ColorSpaceData.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ColorSpaceData.php deleted file mode 100644 index 2db95c179..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ColorSpaceData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpaceData extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'ColorSpaceData'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Color Space Data'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ConnectionSpaceIlluminant.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ConnectionSpaceIlluminant.php deleted file mode 100644 index c94718566..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ConnectionSpaceIlluminant.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConnectionSpaceIlluminant extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'ConnectionSpaceIlluminant'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32s'; - - protected $Writable = false; - - protected $Description = 'Connection Space Illuminant'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceAttributes.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceAttributes.php deleted file mode 100644 index 1bfaa4d9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceAttributes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceAttributes extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'DeviceAttributes'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Device Attributes'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceManufacturer.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceManufacturer.php deleted file mode 100644 index b45cf43e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceManufacturer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceManufacturer extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'DeviceManufacturer'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device Manufacturer'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceModel.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceModel.php deleted file mode 100644 index 7d8dbc4d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/DeviceModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceModel extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'DeviceModel'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device Model'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/PrimaryPlatform.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/PrimaryPlatform.php deleted file mode 100644 index 3fef2567b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/PrimaryPlatform.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryPlatform extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'PrimaryPlatform'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Primary Platform'; - - protected $MaxLength = 4; - - protected $Values = array( - 'APPL' => array( - 'Id' => 'APPL', - 'Label' => 'Apple Computer Inc.', - ), - 'MSFT' => array( - 'Id' => 'MSFT', - 'Label' => 'Microsoft Corporation', - ), - 'SGI ' => array( - 'Id' => 'SGI ', - 'Label' => 'Silicon Graphics Inc.', - ), - 'SUNW' => array( - 'Id' => 'SUNW', - 'Label' => 'Sun Microsystems Inc.', - ), - 'TGNT' => array( - 'Id' => 'TGNT', - 'Label' => 'Taligent Inc.', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileCMMType.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileCMMType.php deleted file mode 100644 index 111942826..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileCMMType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileCMMType extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ProfileCMMType'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Profile CMM Type'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileClass.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileClass.php deleted file mode 100644 index d58a300d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileClass.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileClass extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ProfileClass'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Profile Class'; - - protected $MaxLength = 4; - - protected $Values = array( - 'abst' => array( - 'Id' => 'abst', - 'Label' => 'Abstract Profile', - ), - 'link' => array( - 'Id' => 'link', - 'Label' => 'DeviceLink Profile', - ), - 'mntr' => array( - 'Id' => 'mntr', - 'Label' => 'Display Device Profile', - ), - 'nkpf' => array( - 'Id' => 'nkpf', - 'Label' => 'Nikon Input Device Profile (NON-STANDARD!)', - ), - 'nmcl' => array( - 'Id' => 'nmcl', - 'Label' => 'NamedColor Profile', - ), - 'prtr' => array( - 'Id' => 'prtr', - 'Label' => 'Output Device Profile', - ), - 'scnr' => array( - 'Id' => 'scnr', - 'Label' => 'Input Device Profile', - ), - 'spac' => array( - 'Id' => 'spac', - 'Label' => 'ColorSpace Conversion Profile', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileConnectionSpace.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileConnectionSpace.php deleted file mode 100644 index ee805ed0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileConnectionSpace.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileConnectionSpace extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ProfileConnectionSpace'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Profile Connection Space'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileCreator.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileCreator.php deleted file mode 100644 index 0a0426dd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileCreator.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileCreator extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'ProfileCreator'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Profile Creator'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileDateTime.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileDateTime.php deleted file mode 100644 index eae4e2f91..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileDateTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileDateTime extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'ProfileDateTime'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Profile Date Time'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileFileSignature.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileFileSignature.php deleted file mode 100644 index 76dcce9b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileFileSignature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileFileSignature extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'ProfileFileSignature'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Profile File Signature'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileID.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileID.php deleted file mode 100644 index 736b716dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileID extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'ProfileID'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Profile ID'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileVersion.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileVersion.php deleted file mode 100644 index b57d904f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/ProfileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileVersion extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ProfileVersion'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Profile Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCHeader/RenderingIntent.php b/lib/PHPExiftool/Driver/Tag/ICCHeader/RenderingIntent.php deleted file mode 100644 index cc4642a72..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCHeader/RenderingIntent.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCHeader; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenderingIntent extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'RenderingIntent'; - - protected $FullName = 'ICC_Profile::Header'; - - protected $GroupName = 'ICC-header'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-header'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Rendering Intent'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Perceptual', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Media-Relative Colorimetric', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Saturation', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ICC-Absolute Colorimetric', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementBacking.php b/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementBacking.php deleted file mode 100644 index 74132ccaf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementBacking.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementBacking extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'MeasurementBacking'; - - protected $FullName = 'ICC_Profile::Measurement'; - - protected $GroupName = 'ICC-meas'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meas'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32s'; - - protected $Writable = false; - - protected $Description = 'Measurement Backing'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementFlare.php b/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementFlare.php deleted file mode 100644 index adf95b463..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementFlare.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementFlare extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'MeasurementFlare'; - - protected $FullName = 'ICC_Profile::Measurement'; - - protected $GroupName = 'ICC-meas'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meas'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Measurement Flare'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementGeometry.php b/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementGeometry.php deleted file mode 100644 index 5f76a652c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementGeometry.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementGeometry extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'MeasurementGeometry'; - - protected $FullName = 'ICC_Profile::Measurement'; - - protected $GroupName = 'ICC-meas'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meas'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Measurement Geometry'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => '0/45 or 45/0', - ), - 2 => array( - 'Id' => 2, - 'Label' => '0/d or d/0', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementIlluminant.php b/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementIlluminant.php deleted file mode 100644 index 9546ca2a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementIlluminant.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementIlluminant extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'MeasurementIlluminant'; - - protected $FullName = 'ICC_Profile::Measurement'; - - protected $GroupName = 'ICC-meas'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meas'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Measurement Illuminant'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'D50', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'D65', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'D93', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'F2', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'D55', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'A', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Equi-Power (E)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'F8', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementObserver.php b/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementObserver.php deleted file mode 100644 index 7e9b69d8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeas/MeasurementObserver.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementObserver extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'MeasurementObserver'; - - protected $FullName = 'ICC_Profile::Measurement'; - - protected $GroupName = 'ICC-meas'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meas'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Measurement Observer'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'CIE 1931', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'CIE 1964', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeta/ManufacturerName.php b/lib/PHPExiftool/Driver/Tag/ICCMeta/ManufacturerName.php deleted file mode 100644 index 994ce7a2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeta/ManufacturerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufacturerName extends AbstractTag -{ - - protected $Id = 'ManufacturerName'; - - protected $Name = 'ManufacturerName'; - - protected $FullName = 'ICC_Profile::Metadata'; - - protected $GroupName = 'ICC-meta'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manufacturer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeta/MediaColor.php b/lib/PHPExiftool/Driver/Tag/ICCMeta/MediaColor.php deleted file mode 100644 index 134af94fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeta/MediaColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaColor extends AbstractTag -{ - - protected $Id = 'MediaColor'; - - protected $Name = 'MediaColor'; - - protected $FullName = 'ICC_Profile::Metadata'; - - protected $GroupName = 'ICC-meta'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCMeta/MediaWeight.php b/lib/PHPExiftool/Driver/Tag/ICCMeta/MediaWeight.php deleted file mode 100644 index f5a06d1b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCMeta/MediaWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCMeta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaWeight extends AbstractTag -{ - - protected $Id = 'MediaWeight'; - - protected $Name = 'MediaWeight'; - - protected $FullName = 'ICC_Profile::Metadata'; - - protected $GroupName = 'ICC-meta'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-meta'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB0.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB0.php deleted file mode 100644 index 15c32c3d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AToB0 extends AbstractTag -{ - - protected $Id = 'A2B0'; - - protected $Name = 'AToB0'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'A To B0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB1.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB1.php deleted file mode 100644 index fd4c9e962..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AToB1 extends AbstractTag -{ - - protected $Id = 'A2B1'; - - protected $Name = 'AToB1'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'A To B1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB2.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB2.php deleted file mode 100644 index d640e7efd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/AToB2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AToB2 extends AbstractTag -{ - - protected $Id = 'A2B2'; - - protected $Name = 'AToB2'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'A To B2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA0.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA0.php deleted file mode 100644 index 41845191e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BToA0 extends AbstractTag -{ - - protected $Id = 'B2A0'; - - protected $Name = 'BToA0'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'B To A0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA1.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA1.php deleted file mode 100644 index dc9d0c056..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BToA1 extends AbstractTag -{ - - protected $Id = 'B2A1'; - - protected $Name = 'BToA1'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'B To A1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA2.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA2.php deleted file mode 100644 index 92c5b5de6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToA2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BToA2 extends AbstractTag -{ - - protected $Id = 'B2A2'; - - protected $Name = 'BToA2'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'B To A2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD0.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD0.php deleted file mode 100644 index 700b9d26f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BToD0 extends AbstractTag -{ - - protected $Id = 'B2D0'; - - protected $Name = 'BToD0'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'B To D0'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD1.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD1.php deleted file mode 100644 index c976a78ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BToD1 extends AbstractTag -{ - - protected $Id = 'B2D1'; - - protected $Name = 'BToD1'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'B To D1'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD2.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD2.php deleted file mode 100644 index cbcada425..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BToD2 extends AbstractTag -{ - - protected $Id = 'B2D2'; - - protected $Name = 'BToD2'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'B To D2'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD3.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD3.php deleted file mode 100644 index a44c0e848..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BToD3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BToD3 extends AbstractTag -{ - - protected $Id = 'B2D3'; - - protected $Name = 'BToD3'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'B To D3'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BlueMatrixColumn.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BlueMatrixColumn.php deleted file mode 100644 index c5cbfd4cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BlueMatrixColumn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueMatrixColumn extends AbstractTag -{ - - protected $Id = 'bXYZ'; - - protected $Name = 'BlueMatrixColumn'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blue Matrix Column'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/BlueTRC.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/BlueTRC.php deleted file mode 100644 index 9a617918f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/BlueTRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueTRC extends AbstractTag -{ - - protected $Id = 'bTRC'; - - protected $Name = 'BlueTRC'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blue Tone Reproduction Curve'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/CRDInfo.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/CRDInfo.php deleted file mode 100644 index 36099e912..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/CRDInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CRDInfo extends AbstractTag -{ - - protected $Id = 'crdi'; - - protected $Name = 'CRDInfo'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CRD Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/CalibrationDateTime.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/CalibrationDateTime.php deleted file mode 100644 index 745108f5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/CalibrationDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CalibrationDateTime extends AbstractTag -{ - - protected $Id = 'calt'; - - protected $Name = 'CalibrationDateTime'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Calibration Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/CharTarget.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/CharTarget.php deleted file mode 100644 index 1cea7072e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/CharTarget.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharTarget extends AbstractTag -{ - - protected $Id = 'targ'; - - protected $Name = 'CharTarget'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Char Target'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ChromaticAdaptation.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ChromaticAdaptation.php deleted file mode 100644 index 853f3ad36..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ChromaticAdaptation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAdaptation extends AbstractTag -{ - - protected $Id = 'chad'; - - protected $Name = 'ChromaticAdaptation'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chromatic Adaptation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorantOrder.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorantOrder.php deleted file mode 100644 index e42d63f91..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorantOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantOrder extends AbstractTag -{ - - protected $Id = 'clro'; - - protected $Name = 'ColorantOrder'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Colorant Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorantTableOut.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorantTableOut.php deleted file mode 100644 index c0d390c86..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorantTableOut.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantTableOut extends AbstractTag -{ - - protected $Id = 'clot'; - - protected $Name = 'ColorantTableOut'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Colorant Table Out'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorimetricIntentImageState.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorimetricIntentImageState.php deleted file mode 100644 index 3f7a4c643..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ColorimetricIntentImageState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorimetricIntentImageState extends AbstractTag -{ - - protected $Id = 'ciis'; - - protected $Name = 'ColorimetricIntentImageState'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Colorimetric Intent Image State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB0.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB0.php deleted file mode 100644 index 799688347..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DToB0 extends AbstractTag -{ - - protected $Id = 'D2B0'; - - protected $Name = 'DToB0'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'D To B0'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB1.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB1.php deleted file mode 100644 index d20232439..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DToB1 extends AbstractTag -{ - - protected $Id = 'D2B1'; - - protected $Name = 'DToB1'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'D To B1'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB2.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB2.php deleted file mode 100644 index 19b068f8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DToB2 extends AbstractTag -{ - - protected $Id = 'D2B2'; - - protected $Name = 'DToB2'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'D To B2'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB3.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB3.php deleted file mode 100644 index 1f9f674fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/DToB3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DToB3 extends AbstractTag -{ - - protected $Id = 'D2B3'; - - protected $Name = 'DToB3'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'D To B3'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceMfgDesc.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceMfgDesc.php deleted file mode 100644 index e472974bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceMfgDesc.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceMfgDesc extends AbstractTag -{ - - protected $Id = 'dmnd'; - - protected $Name = 'DeviceMfgDesc'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Mfg Desc'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceModelDesc.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceModelDesc.php deleted file mode 100644 index 040a78de9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceModelDesc.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceModelDesc extends AbstractTag -{ - - protected $Id = 'dmdd'; - - protected $Name = 'DeviceModelDesc'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Model Desc'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceSettings.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceSettings.php deleted file mode 100644 index ac8c4e624..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/DeviceSettings.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSettings extends AbstractTag -{ - - protected $Id = 'devs'; - - protected $Name = 'DeviceSettings'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Settings'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/FocalPlaneColorimetryEstimates.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/FocalPlaneColorimetryEstimates.php deleted file mode 100644 index c9733808f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/FocalPlaneColorimetryEstimates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneColorimetryEstimates extends AbstractTag -{ - - protected $Id = 'fpce'; - - protected $Name = 'FocalPlaneColorimetryEstimates'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Plane Colorimetry Estimates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/Gamut.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/Gamut.php deleted file mode 100644 index 9a9c0047d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/Gamut.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamut extends AbstractTag -{ - - protected $Id = 'gamt'; - - protected $Name = 'Gamut'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gamut'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/GrayTRC.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/GrayTRC.php deleted file mode 100644 index 4077402e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/GrayTRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayTRC extends AbstractTag -{ - - protected $Id = 'kTRC'; - - protected $Name = 'GrayTRC'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gray Tone Reproduction Curve'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/GreenMatrixColumn.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/GreenMatrixColumn.php deleted file mode 100644 index b86820b53..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/GreenMatrixColumn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenMatrixColumn extends AbstractTag -{ - - protected $Id = 'gXYZ'; - - protected $Name = 'GreenMatrixColumn'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Green Matrix Column'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/GreenTRC.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/GreenTRC.php deleted file mode 100644 index 94b45667f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/GreenTRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenTRC extends AbstractTag -{ - - protected $Id = 'gTRC'; - - protected $Name = 'GreenTRC'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Green Tone Reproduction Curve'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ICCProfile.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ICCProfile.php deleted file mode 100644 index ca6578b02..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ICCProfile.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ICCProfile extends AbstractTag -{ - - protected $Id = 'ICC_Profile'; - - protected $Name = 'ICC_Profile'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'ICC Profile'; - - protected $local_g0 = 'ICC_Profile'; - - protected $local_g1 = 'ICC_Profile'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/Luminance.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/Luminance.php deleted file mode 100644 index 608991627..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/Luminance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Luminance extends AbstractTag -{ - - protected $Id = 'lumi'; - - protected $Name = 'Luminance'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Luminance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/MakeAndModel.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/MakeAndModel.php deleted file mode 100644 index 4e2d1516a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/MakeAndModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakeAndModel extends AbstractTag -{ - - protected $Id = 'mmod'; - - protected $Name = 'MakeAndModel'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Make And Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/MediaBlackPoint.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/MediaBlackPoint.php deleted file mode 100644 index 03d1ea30f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/MediaBlackPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaBlackPoint extends AbstractTag -{ - - protected $Id = 'bkpt'; - - protected $Name = 'MediaBlackPoint'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Black Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/MediaWhitePoint.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/MediaWhitePoint.php deleted file mode 100644 index 604aa6c02..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/MediaWhitePoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaWhitePoint extends AbstractTag -{ - - protected $Id = 'wtpt'; - - protected $Name = 'MediaWhitePoint'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media White Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/NamedColor.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/NamedColor.php deleted file mode 100644 index 7dbbafe8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/NamedColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NamedColor extends AbstractTag -{ - - protected $Id = 'ncol'; - - protected $Name = 'NamedColor'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Named Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/NamedColor2.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/NamedColor2.php deleted file mode 100644 index 16c6f0c70..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/NamedColor2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NamedColor2 extends AbstractTag -{ - - protected $Id = 'ncl2'; - - protected $Name = 'NamedColor2'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Named Color 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/NativeDisplayInfo.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/NativeDisplayInfo.php deleted file mode 100644 index b2d1f43a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/NativeDisplayInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NativeDisplayInfo extends AbstractTag -{ - - protected $Id = 'ndin'; - - protected $Name = 'NativeDisplayInfo'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Native Display Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/OutputResponse.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/OutputResponse.php deleted file mode 100644 index cb63a116b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/OutputResponse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputResponse extends AbstractTag -{ - - protected $Id = 'resp'; - - protected $Name = 'OutputResponse'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Output Response'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/PS2CRDVMSize.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/PS2CRDVMSize.php deleted file mode 100644 index a03368b5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/PS2CRDVMSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PS2CRDVMSize extends AbstractTag -{ - - protected $Id = 'psvm'; - - protected $Name = 'PS2CRDVMSize'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PS2 CRDVM Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/PS2RenderingIntent.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/PS2RenderingIntent.php deleted file mode 100644 index 7f1d31310..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/PS2RenderingIntent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PS2RenderingIntent extends AbstractTag -{ - - protected $Id = 'ps2i'; - - protected $Name = 'PS2RenderingIntent'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PS2 Rendering Intent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/PerceptualRenderingIntentGamut.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/PerceptualRenderingIntentGamut.php deleted file mode 100644 index 3e8df7afd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/PerceptualRenderingIntentGamut.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerceptualRenderingIntentGamut extends AbstractTag -{ - - protected $Id = 'rig0'; - - protected $Name = 'PerceptualRenderingIntentGamut'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Perceptual Rendering Intent Gamut'; - - protected $Values = array( - 'prmg' => array( - 'Id' => 'prmg', - 'Label' => 'Perceptual Reference Medium Gamut', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD0.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD0.php deleted file mode 100644 index 9416b8a22..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostScript2CRD0 extends AbstractTag -{ - - protected $Id = 'psd0'; - - protected $Name = 'PostScript2CRD0'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Post Script 2 CRD0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD1.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD1.php deleted file mode 100644 index 52f8abef4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostScript2CRD1 extends AbstractTag -{ - - protected $Id = 'psd1'; - - protected $Name = 'PostScript2CRD1'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Post Script 2 CRD1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD2.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD2.php deleted file mode 100644 index 56921c5b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CRD2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostScript2CRD2 extends AbstractTag -{ - - protected $Id = 'psd2'; - - protected $Name = 'PostScript2CRD2'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Post Script 2 CRD2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CSA.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CSA.php deleted file mode 100644 index dc991414b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/PostScript2CSA.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostScript2CSA extends AbstractTag -{ - - protected $Id = 'ps2s'; - - protected $Name = 'PostScript2CSA'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Post Script 2 CSA'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview0.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview0.php deleted file mode 100644 index d8bbadc61..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Preview0 extends AbstractTag -{ - - protected $Id = 'pre0'; - - protected $Name = 'Preview0'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview1.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview1.php deleted file mode 100644 index 2436515ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Preview1 extends AbstractTag -{ - - protected $Id = 'pre1'; - - protected $Name = 'Preview1'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview2.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview2.php deleted file mode 100644 index 55e147b93..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/Preview2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Preview2 extends AbstractTag -{ - - protected $Id = 'pre2'; - - protected $Name = 'Preview2'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileCopyright.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileCopyright.php deleted file mode 100644 index bccbab946..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileCopyright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileCopyright extends AbstractTag -{ - - protected $Id = 'cprt'; - - protected $Name = 'ProfileCopyright'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile Copyright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileDescription.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileDescription.php deleted file mode 100644 index a91a44bed..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileDescription extends AbstractTag -{ - - protected $Id = 'desc'; - - protected $Name = 'ProfileDescription'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileDescriptionML.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileDescriptionML.php deleted file mode 100644 index 54547cb18..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileDescriptionML.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileDescriptionML extends AbstractTag -{ - - protected $Id = 'dscm'; - - protected $Name = 'ProfileDescriptionML'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile Description ML'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileSequenceDesc.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileSequenceDesc.php deleted file mode 100644 index 941dd952d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileSequenceDesc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileSequenceDesc extends AbstractTag -{ - - protected $Id = 'pseq'; - - protected $Name = 'ProfileSequenceDesc'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile Sequence Desc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileSequenceIdentifier.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileSequenceIdentifier.php deleted file mode 100644 index 30bcab886..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ProfileSequenceIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileSequenceIdentifier extends AbstractTag -{ - - protected $Id = 'psid'; - - protected $Name = 'ProfileSequenceIdentifier'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile Sequence Identifier'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/RedMatrixColumn.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/RedMatrixColumn.php deleted file mode 100644 index 65532103b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/RedMatrixColumn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedMatrixColumn extends AbstractTag -{ - - protected $Id = 'rXYZ'; - - protected $Name = 'RedMatrixColumn'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Matrix Column'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/RedTRC.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/RedTRC.php deleted file mode 100644 index 6c5c59002..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/RedTRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedTRC extends AbstractTag -{ - - protected $Id = 'rTRC'; - - protected $Name = 'RedTRC'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Tone Reproduction Curve'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ReflectionHardcopyOrigColorimetry.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ReflectionHardcopyOrigColorimetry.php deleted file mode 100644 index bcc11c225..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ReflectionHardcopyOrigColorimetry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReflectionHardcopyOrigColorimetry extends AbstractTag -{ - - protected $Id = 'rhoc'; - - protected $Name = 'ReflectionHardcopyOrigColorimetry'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reflection Hardcopy Orig Colorimetry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ReflectionPrintOutputColorimetry.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ReflectionPrintOutputColorimetry.php deleted file mode 100644 index 011380b29..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ReflectionPrintOutputColorimetry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReflectionPrintOutputColorimetry extends AbstractTag -{ - - protected $Id = 'rpoc'; - - protected $Name = 'ReflectionPrintOutputColorimetry'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reflection Print Output Colorimetry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/SaturationRenderingIntentGamut.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/SaturationRenderingIntentGamut.php deleted file mode 100644 index c33e068d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/SaturationRenderingIntentGamut.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationRenderingIntentGamut extends AbstractTag -{ - - protected $Id = 'rig2'; - - protected $Name = 'SaturationRenderingIntentGamut'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Saturation Rendering Intent Gamut'; - - protected $Values = array( - 'prmg' => array( - 'Id' => 'prmg', - 'Label' => 'Perceptual Reference Medium Gamut', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/SceneAppearanceEstimates.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/SceneAppearanceEstimates.php deleted file mode 100644 index ab8b9ff4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/SceneAppearanceEstimates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneAppearanceEstimates extends AbstractTag -{ - - protected $Id = 'sape'; - - protected $Name = 'SceneAppearanceEstimates'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scene Appearance Estimates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/SceneColorimetryEstimates.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/SceneColorimetryEstimates.php deleted file mode 100644 index 91ce5c477..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/SceneColorimetryEstimates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneColorimetryEstimates extends AbstractTag -{ - - protected $Id = 'scoe'; - - protected $Name = 'SceneColorimetryEstimates'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scene Colorimetry Estimates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/Screening.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/Screening.php deleted file mode 100644 index 887ad30c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/Screening.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Screening extends AbstractTag -{ - - protected $Id = 'scrn'; - - protected $Name = 'Screening'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screening'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ScreeningDesc.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ScreeningDesc.php deleted file mode 100644 index 864616446..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ScreeningDesc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreeningDesc extends AbstractTag -{ - - protected $Id = 'scrd'; - - protected $Name = 'ScreeningDesc'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screening Desc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/Technology.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/Technology.php deleted file mode 100644 index 0faf09f09..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/Technology.php +++ /dev/null @@ -1,150 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Technology extends AbstractTag -{ - - protected $Id = 'tech'; - - protected $Name = 'Technology'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Technology'; - - protected $Values = array( - 'AMD ' => array( - 'Id' => 'AMD ', - 'Label' => 'Active Matrix Display', - ), - 'CRT ' => array( - 'Id' => 'CRT ', - 'Label' => 'Cathode Ray Tube Display', - ), - 'KPCD' => array( - 'Id' => 'KPCD', - 'Label' => 'Photo CD', - ), - 'PMD ' => array( - 'Id' => 'PMD ', - 'Label' => 'Passive Matrix Display', - ), - 'dcam' => array( - 'Id' => 'dcam', - 'Label' => 'Digital Camera', - ), - 'dcpj' => array( - 'Id' => 'dcpj', - 'Label' => 'Digital Cinema Projector', - ), - 'dmpc' => array( - 'Id' => 'dmpc', - 'Label' => 'Digital Motion Picture Camera', - ), - 'dsub' => array( - 'Id' => 'dsub', - 'Label' => 'Dye Sublimation Printer', - ), - 'epho' => array( - 'Id' => 'epho', - 'Label' => 'Electrophotographic Printer', - ), - 'esta' => array( - 'Id' => 'esta', - 'Label' => 'Electrostatic Printer', - ), - 'flex' => array( - 'Id' => 'flex', - 'Label' => 'Flexography', - ), - 'fprn' => array( - 'Id' => 'fprn', - 'Label' => 'Film Writer', - ), - 'fscn' => array( - 'Id' => 'fscn', - 'Label' => 'Film Scanner', - ), - 'grav' => array( - 'Id' => 'grav', - 'Label' => 'Gravure', - ), - 'ijet' => array( - 'Id' => 'ijet', - 'Label' => 'Ink Jet Printer', - ), - 'imgs' => array( - 'Id' => 'imgs', - 'Label' => 'Photo Image Setter', - ), - 'mpfr' => array( - 'Id' => 'mpfr', - 'Label' => 'Motion Picture Film Recorder', - ), - 'mpfs' => array( - 'Id' => 'mpfs', - 'Label' => 'Motion Picture Film Scanner', - ), - 'offs' => array( - 'Id' => 'offs', - 'Label' => 'Offset Lithography', - ), - 'pjtv' => array( - 'Id' => 'pjtv', - 'Label' => 'Projection Television', - ), - 'rpho' => array( - 'Id' => 'rpho', - 'Label' => 'Photographic Paper Printer', - ), - 'rscn' => array( - 'Id' => 'rscn', - 'Label' => 'Reflective Scanner', - ), - 'silk' => array( - 'Id' => 'silk', - 'Label' => 'Silkscreen', - ), - 'twax' => array( - 'Id' => 'twax', - 'Label' => 'Thermal Wax Printer', - ), - 'vidc' => array( - 'Id' => 'vidc', - 'Label' => 'Video Camera', - ), - 'vidm' => array( - 'Id' => 'vidm', - 'Label' => 'Video Monitor', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/UCRBG.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/UCRBG.php deleted file mode 100644 index 47fe5e90f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/UCRBG.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UCRBG extends AbstractTag -{ - - protected $Id = 'bfd '; - - protected $Name = 'UCRBG'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Under Color Removal and Black Gen.'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/VideoCardGamma.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/VideoCardGamma.php deleted file mode 100644 index d32ccba22..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/VideoCardGamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCardGamma extends AbstractTag -{ - - protected $Id = 'vcgt'; - - protected $Name = 'VideoCardGamma'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Card Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/ViewingCondDesc.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/ViewingCondDesc.php deleted file mode 100644 index aa5e94a5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/ViewingCondDesc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingCondDesc extends AbstractTag -{ - - protected $Id = 'vued'; - - protected $Name = 'ViewingCondDesc'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Viewing Cond Desc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCProfile/WCSProfiles.php b/lib/PHPExiftool/Driver/Tag/ICCProfile/WCSProfiles.php deleted file mode 100644 index e5848f2f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCProfile/WCSProfiles.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCProfile; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WCSProfiles extends AbstractTag -{ - - protected $Id = 'MS00'; - - protected $Name = 'WCSProfiles'; - - protected $FullName = 'ICC_Profile::Main'; - - protected $GroupName = 'ICC_Profile'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC_Profile'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WCS Profiles'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondIlluminant.php b/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondIlluminant.php deleted file mode 100644 index 4165fcb2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondIlluminant.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCView; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingCondIlluminant extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ViewingCondIlluminant'; - - protected $FullName = 'ICC_Profile::ViewingConditions'; - - protected $GroupName = 'ICC-view'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-view'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32s'; - - protected $Writable = false; - - protected $Description = 'Viewing Cond Illuminant'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondIlluminantType.php b/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondIlluminantType.php deleted file mode 100644 index 81f9b42b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondIlluminantType.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCView; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingCondIlluminantType extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'ViewingCondIlluminantType'; - - protected $FullName = 'ICC_Profile::ViewingConditions'; - - protected $GroupName = 'ICC-view'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-view'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Viewing Cond Illuminant Type'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'D50', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'D65', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'D93', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'F2', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'D55', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'A', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Equi-Power (E)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'F8', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondSurround.php b/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondSurround.php deleted file mode 100644 index 17f921960..000000000 --- a/lib/PHPExiftool/Driver/Tag/ICCView/ViewingCondSurround.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ICCView; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingCondSurround extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ViewingCondSurround'; - - protected $FullName = 'ICC_Profile::ViewingConditions'; - - protected $GroupName = 'ICC-view'; - - protected $g0 = 'ICC_Profile'; - - protected $g1 = 'ICC-view'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32s'; - - protected $Writable = false; - - protected $Description = 'Viewing Cond Surround'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/AverageLevel.php b/lib/PHPExiftool/Driver/Tag/ID3/AverageLevel.php deleted file mode 100644 index 0ae6d9193..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/AverageLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AverageLevel extends AbstractTag -{ - - protected $Id = 'AverageLevel'; - - protected $Name = 'AverageLevel'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Average Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/PeakValue.php b/lib/PHPExiftool/Driver/Tag/ID3/PeakValue.php deleted file mode 100644 index b96bf8b03..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/PeakValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakValue extends AbstractTag -{ - - protected $Id = 'PeakValue'; - - protected $Name = 'PeakValue'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsDescription.php b/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsDescription.php deleted file mode 100644 index 37ec18310..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizedLyricsDescription extends AbstractTag -{ - - protected $Id = 'desc'; - - protected $Name = 'SynchronizedLyricsDescription'; - - protected $FullName = 'ID3::SynLyrics'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronized Lyrics Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsText.php b/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsText.php deleted file mode 100644 index 334fc7965..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsText.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizedLyricsText extends AbstractTag -{ - - protected $Id = 'text'; - - protected $Name = 'SynchronizedLyricsText'; - - protected $FullName = 'ID3::SynLyrics'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronized Lyrics Text'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsType.php b/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsType.php deleted file mode 100644 index 599f5dd6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/SynchronizedLyricsType.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SynchronizedLyricsType extends AbstractTag -{ - - protected $Id = 'type'; - - protected $Name = 'SynchronizedLyricsType'; - - protected $FullName = 'ID3::SynLyrics'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Synchronized Lyrics Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Other', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Lyrics', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Text Transcription', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Movement/part Name', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Events', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Chord', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Trivia/"pop-up" Information', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Web Page URL', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Image URL', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/WMCollectionGroupID.php b/lib/PHPExiftool/Driver/Tag/ID3/WMCollectionGroupID.php deleted file mode 100644 index 63b2d2ce5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/WMCollectionGroupID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMCollectionGroupID extends AbstractTag -{ - - protected $Id = 'WM_WMCollectionGroupID'; - - protected $Name = 'WM_CollectionGroupID'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Collection Group ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/WMCollectionID.php b/lib/PHPExiftool/Driver/Tag/ID3/WMCollectionID.php deleted file mode 100644 index abf7ade1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/WMCollectionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMCollectionID extends AbstractTag -{ - - protected $Id = 'WM_WMCollectionID'; - - protected $Name = 'WM_CollectionID'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Collection ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/WMContentID.php b/lib/PHPExiftool/Driver/Tag/ID3/WMContentID.php deleted file mode 100644 index acc66d8ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/WMContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMContentID extends AbstractTag -{ - - protected $Id = 'WM_WMContentID'; - - protected $Name = 'WM_ContentID'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/WMMediaClassPrimaryID.php b/lib/PHPExiftool/Driver/Tag/ID3/WMMediaClassPrimaryID.php deleted file mode 100644 index bc8a79115..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/WMMediaClassPrimaryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMMediaClassPrimaryID extends AbstractTag -{ - - protected $Id = 'WM_MediaClassPrimaryID'; - - protected $Name = 'WM_MediaClassPrimaryID'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Media Class Primary ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/WMMediaClassSecondaryID.php b/lib/PHPExiftool/Driver/Tag/ID3/WMMediaClassSecondaryID.php deleted file mode 100644 index 4f6c8283e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/WMMediaClassSecondaryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMMediaClassSecondaryID extends AbstractTag -{ - - protected $Id = 'WM_MediaClassSecondaryID'; - - protected $Name = 'WM_MediaClassSecondaryID'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Media Class Secondary ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3/WMProvider.php b/lib/PHPExiftool/Driver/Tag/ID3/WMProvider.php deleted file mode 100644 index 45d1505de..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3/WMProvider.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMProvider extends AbstractTag -{ - - protected $Id = 'WM_Provider'; - - protected $Name = 'WM_Provider'; - - protected $FullName = 'ID3::Private'; - - protected $GroupName = 'ID3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Provider'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1/Album.php b/lib/PHPExiftool/Driver/Tag/ID3v1/Album.php deleted file mode 100644 index a0ffb2ec1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1/Album.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 63; - - protected $Name = 'Album'; - - protected $FullName = 'ID3::v1'; - - protected $GroupName = 'ID3v1'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Album'; - - protected $MaxLength = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1/Artist.php b/lib/PHPExiftool/Driver/Tag/ID3v1/Artist.php deleted file mode 100644 index 68e5695f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1/Artist.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'Artist'; - - protected $FullName = 'ID3::v1'; - - protected $GroupName = 'ID3v1'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1/Comment.php b/lib/PHPExiftool/Driver/Tag/ID3v1/Comment.php deleted file mode 100644 index 27d121d4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1/Comment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 97; - - protected $Name = 'Comment'; - - protected $FullName = 'ID3::v1'; - - protected $GroupName = 'ID3v1'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Comment'; - - protected $MaxLength = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1/Genre.php b/lib/PHPExiftool/Driver/Tag/ID3v1/Genre.php deleted file mode 100644 index 198f7bc6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1/Genre.php +++ /dev/null @@ -1,826 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 127; - - protected $Name = 'Genre'; - - protected $FullName = 'ID3::v1'; - - protected $GroupName = 'ID3v1'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Genre'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Blues', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Classic Rock', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Country', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Dance', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Disco', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Funk', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Grunge', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Hip-Hop', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Jazz', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Metal', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'New Age', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Oldies', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Other', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Pop', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'R&B', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Rap', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Reggae', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Rock', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Techno', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Industrial', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Alternative', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Ska', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Death Metal', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Pranks', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Soundtrack', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Euro-Techno', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Ambient', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Trip-Hop', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Vocal', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Jazz+Funk', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Fusion', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Trance', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Classical', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Instrumental', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Acid', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'House', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Game', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Sound Clip', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Gospel', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Noise', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Alt. Rock', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Bass', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Soul', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Punk', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Space', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Meditative', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Instrumental Pop', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Instrumental Rock', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Ethnic', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Gothic', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Darkwave', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Techno-Industrial', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Electronic', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Pop-Folk', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Eurodance', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Dream', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Southern Rock', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Comedy', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Cult', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Gangsta Rap', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Top 40', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Christian Rap', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Pop/Funk', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Jungle', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Native American', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Cabaret', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'New Wave', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Psychedelic', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Rave', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Showtunes', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Trailer', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Lo-Fi', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Tribal', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'Acid Punk', - ), - 74 => array( - 'Id' => 74, - 'Label' => 'Acid Jazz', - ), - 75 => array( - 'Id' => 75, - 'Label' => 'Polka', - ), - 76 => array( - 'Id' => 76, - 'Label' => 'Retro', - ), - 77 => array( - 'Id' => 77, - 'Label' => 'Musical', - ), - 78 => array( - 'Id' => 78, - 'Label' => 'Rock & Roll', - ), - 79 => array( - 'Id' => 79, - 'Label' => 'Hard Rock', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Folk', - ), - 81 => array( - 'Id' => 81, - 'Label' => 'Folk-Rock', - ), - 82 => array( - 'Id' => 82, - 'Label' => 'National Folk', - ), - 83 => array( - 'Id' => 83, - 'Label' => 'Swing', - ), - 84 => array( - 'Id' => 84, - 'Label' => 'Fast-Fusion', - ), - 85 => array( - 'Id' => 85, - 'Label' => 'Bebop', - ), - 86 => array( - 'Id' => 86, - 'Label' => 'Latin', - ), - 87 => array( - 'Id' => 87, - 'Label' => 'Revival', - ), - 88 => array( - 'Id' => 88, - 'Label' => 'Celtic', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Bluegrass', - ), - 90 => array( - 'Id' => 90, - 'Label' => 'Avantgarde', - ), - 91 => array( - 'Id' => 91, - 'Label' => 'Gothic Rock', - ), - 92 => array( - 'Id' => 92, - 'Label' => 'Progressive Rock', - ), - 93 => array( - 'Id' => 93, - 'Label' => 'Psychedelic Rock', - ), - 94 => array( - 'Id' => 94, - 'Label' => 'Symphonic Rock', - ), - 95 => array( - 'Id' => 95, - 'Label' => 'Slow Rock', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Big Band', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'Chorus', - ), - 98 => array( - 'Id' => 98, - 'Label' => 'Easy Listening', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'Acoustic', - ), - 100 => array( - 'Id' => 100, - 'Label' => 'Humour', - ), - 101 => array( - 'Id' => 101, - 'Label' => 'Speech', - ), - 102 => array( - 'Id' => 102, - 'Label' => 'Chanson', - ), - 103 => array( - 'Id' => 103, - 'Label' => 'Opera', - ), - 104 => array( - 'Id' => 104, - 'Label' => 'Chamber Music', - ), - 105 => array( - 'Id' => 105, - 'Label' => 'Sonata', - ), - 106 => array( - 'Id' => 106, - 'Label' => 'Symphony', - ), - 107 => array( - 'Id' => 107, - 'Label' => 'Booty Bass', - ), - 108 => array( - 'Id' => 108, - 'Label' => 'Primus', - ), - 109 => array( - 'Id' => 109, - 'Label' => 'Porn Groove', - ), - 110 => array( - 'Id' => 110, - 'Label' => 'Satire', - ), - 111 => array( - 'Id' => 111, - 'Label' => 'Slow Jam', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Club', - ), - 113 => array( - 'Id' => 113, - 'Label' => 'Tango', - ), - 114 => array( - 'Id' => 114, - 'Label' => 'Samba', - ), - 115 => array( - 'Id' => 115, - 'Label' => 'Folklore', - ), - 116 => array( - 'Id' => 116, - 'Label' => 'Ballad', - ), - 117 => array( - 'Id' => 117, - 'Label' => 'Power Ballad', - ), - 118 => array( - 'Id' => 118, - 'Label' => 'Rhythmic Soul', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Freestyle', - ), - 120 => array( - 'Id' => 120, - 'Label' => 'Duet', - ), - 121 => array( - 'Id' => 121, - 'Label' => 'Punk Rock', - ), - 122 => array( - 'Id' => 122, - 'Label' => 'Drum Solo', - ), - 123 => array( - 'Id' => 123, - 'Label' => 'A Cappella', - ), - 124 => array( - 'Id' => 124, - 'Label' => 'Euro-House', - ), - 125 => array( - 'Id' => 125, - 'Label' => 'Dance Hall', - ), - 126 => array( - 'Id' => 126, - 'Label' => 'Goa', - ), - 127 => array( - 'Id' => 127, - 'Label' => 'Drum & Bass', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Club-House', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Hardcore', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Terror', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Indie', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'BritPop', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'Afro-Punk', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Polsk Punk', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Beat', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Christian Gangsta Rap', - ), - 137 => array( - 'Id' => 137, - 'Label' => 'Heavy Metal', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'Black Metal', - ), - 139 => array( - 'Id' => 139, - 'Label' => 'Crossover', - ), - 140 => array( - 'Id' => 140, - 'Label' => 'Contemporary Christian', - ), - 141 => array( - 'Id' => 141, - 'Label' => 'Christian Rock', - ), - 142 => array( - 'Id' => 142, - 'Label' => 'Merengue', - ), - 143 => array( - 'Id' => 143, - 'Label' => 'Salsa', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'Thrash Metal', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'Anime', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'JPop', - ), - 147 => array( - 'Id' => 147, - 'Label' => 'Synthpop', - ), - 148 => array( - 'Id' => 148, - 'Label' => 'Abstract', - ), - 149 => array( - 'Id' => 149, - 'Label' => 'Art Rock', - ), - 150 => array( - 'Id' => 150, - 'Label' => 'Baroque', - ), - 151 => array( - 'Id' => 151, - 'Label' => 'Bhangra', - ), - 152 => array( - 'Id' => 152, - 'Label' => 'Big Beat', - ), - 153 => array( - 'Id' => 153, - 'Label' => 'Breakbeat', - ), - 154 => array( - 'Id' => 154, - 'Label' => 'Chillout', - ), - 155 => array( - 'Id' => 155, - 'Label' => 'Downtempo', - ), - 156 => array( - 'Id' => 156, - 'Label' => 'Dub', - ), - 157 => array( - 'Id' => 157, - 'Label' => 'EBM', - ), - 158 => array( - 'Id' => 158, - 'Label' => 'Eclectic', - ), - 159 => array( - 'Id' => 159, - 'Label' => 'Electro', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Electroclash', - ), - 161 => array( - 'Id' => 161, - 'Label' => 'Emo', - ), - 162 => array( - 'Id' => 162, - 'Label' => 'Experimental', - ), - 163 => array( - 'Id' => 163, - 'Label' => 'Garage', - ), - 164 => array( - 'Id' => 164, - 'Label' => 'Global', - ), - 165 => array( - 'Id' => 165, - 'Label' => 'IDM', - ), - 166 => array( - 'Id' => 166, - 'Label' => 'Illbient', - ), - 167 => array( - 'Id' => 167, - 'Label' => 'Industro-Goth', - ), - 168 => array( - 'Id' => 168, - 'Label' => 'Jam Band', - ), - 169 => array( - 'Id' => 169, - 'Label' => 'Krautrock', - ), - 170 => array( - 'Id' => 170, - 'Label' => 'Leftfield', - ), - 171 => array( - 'Id' => 171, - 'Label' => 'Lounge', - ), - 172 => array( - 'Id' => 172, - 'Label' => 'Math Rock', - ), - 173 => array( - 'Id' => 173, - 'Label' => 'New Romantic', - ), - 174 => array( - 'Id' => 174, - 'Label' => 'Nu-Breakz', - ), - 175 => array( - 'Id' => 175, - 'Label' => 'Post-Punk', - ), - 176 => array( - 'Id' => 176, - 'Label' => 'Post-Rock', - ), - 177 => array( - 'Id' => 177, - 'Label' => 'Psytrance', - ), - 178 => array( - 'Id' => 178, - 'Label' => 'Shoegaze', - ), - 179 => array( - 'Id' => 179, - 'Label' => 'Space Rock', - ), - 180 => array( - 'Id' => 180, - 'Label' => 'Trop Rock', - ), - 181 => array( - 'Id' => 181, - 'Label' => 'World Music', - ), - 182 => array( - 'Id' => 182, - 'Label' => 'Neoclassical', - ), - 183 => array( - 'Id' => 183, - 'Label' => 'Audiobook', - ), - 184 => array( - 'Id' => 184, - 'Label' => 'Audio Theatre', - ), - 185 => array( - 'Id' => 185, - 'Label' => 'Neue Deutsche Welle', - ), - 186 => array( - 'Id' => 186, - 'Label' => 'Podcast', - ), - 187 => array( - 'Id' => 187, - 'Label' => 'Indie Rock', - ), - 188 => array( - 'Id' => 188, - 'Label' => 'G-Funk', - ), - 189 => array( - 'Id' => 189, - 'Label' => 'Dubstep', - ), - 190 => array( - 'Id' => 190, - 'Label' => 'Garage Rock', - ), - 191 => array( - 'Id' => 191, - 'Label' => 'Psybient', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'None', - ), - 'CR' => array( - 'Id' => 'CR', - 'Label' => 'Cover', - ), - 'RX' => array( - 'Id' => 'RX', - 'Label' => 'Remix', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1/Title.php b/lib/PHPExiftool/Driver/Tag/ID3v1/Title.php deleted file mode 100644 index 2c6b4f80c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1/Title.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Title'; - - protected $FullName = 'ID3::v1'; - - protected $GroupName = 'ID3v1'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Title'; - - protected $MaxLength = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1/Track.php b/lib/PHPExiftool/Driver/Tag/ID3v1/Track.php deleted file mode 100644 index a65ed4291..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1/Track.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Track extends AbstractTag -{ - - protected $Id = 125; - - protected $Name = 'Track'; - - protected $FullName = 'ID3::v1'; - - protected $GroupName = 'ID3v1'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Track'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1/Year.php b/lib/PHPExiftool/Driver/Tag/ID3v1/Year.php deleted file mode 100644 index 2aa70938e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1/Year.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 93; - - protected $Name = 'Year'; - - protected $FullName = 'ID3::v1'; - - protected $GroupName = 'ID3v1'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Year'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Album2.php b/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Album2.php deleted file mode 100644 index 724e43004..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Album2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1Enh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album2 extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'Album2'; - - protected $FullName = 'ID3::v1_Enh'; - - protected $GroupName = 'ID3v1_Enh'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1_Enh'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Album 2'; - - protected $MaxLength = 60; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Artist2.php b/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Artist2.php deleted file mode 100644 index b39c7bded..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Artist2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1Enh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist2 extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'Artist2'; - - protected $FullName = 'ID3::v1_Enh'; - - protected $GroupName = 'ID3v1_Enh'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1_Enh'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Artist 2'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 60; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/EndTime.php b/lib/PHPExiftool/Driver/Tag/ID3v1Enh/EndTime.php deleted file mode 100644 index 253a9a947..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/EndTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1Enh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndTime extends AbstractTag -{ - - protected $Id = 221; - - protected $Name = 'EndTime'; - - protected $FullName = 'ID3::v1_Enh'; - - protected $GroupName = 'ID3v1_Enh'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1_Enh'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'End Time'; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Genre.php b/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Genre.php deleted file mode 100644 index 2cf759826..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Genre.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1Enh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 185; - - protected $Name = 'Genre'; - - protected $FullName = 'ID3::v1_Enh'; - - protected $GroupName = 'ID3v1_Enh'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1_Enh'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Genre'; - - protected $MaxLength = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Speed.php b/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Speed.php deleted file mode 100644 index eedb1adc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Speed.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1Enh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Speed extends AbstractTag -{ - - protected $Id = 184; - - protected $Name = 'Speed'; - - protected $FullName = 'ID3::v1_Enh'; - - protected $GroupName = 'ID3v1_Enh'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1_Enh'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Speed'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Slow', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Medium', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Hardcore', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/StartTime.php b/lib/PHPExiftool/Driver/Tag/ID3v1Enh/StartTime.php deleted file mode 100644 index d9ae28512..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/StartTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1Enh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTime extends AbstractTag -{ - - protected $Id = 215; - - protected $Name = 'StartTime'; - - protected $FullName = 'ID3::v1_Enh'; - - protected $GroupName = 'ID3v1_Enh'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1_Enh'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Start Time'; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Title2.php b/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Title2.php deleted file mode 100644 index cea1bb0a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v1Enh/Title2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v1Enh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title2 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Title2'; - - protected $FullName = 'ID3::v1_Enh'; - - protected $GroupName = 'ID3v1_Enh'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v1_Enh'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Title 2'; - - protected $MaxLength = 60; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Album.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Album.php deleted file mode 100644 index 03c5978db..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'TAL'; - - protected $Name = 'Album'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/AlbumArtistSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v22/AlbumArtistSortOrder.php deleted file mode 100644 index 21f70df88..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/AlbumArtistSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumArtistSortOrder extends AbstractTag -{ - - protected $Id = 'TS2'; - - protected $Name = 'AlbumArtistSortOrder'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Artist Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/AlbumSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v22/AlbumSortOrder.php deleted file mode 100644 index 90ce3b8a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/AlbumSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumSortOrder extends AbstractTag -{ - - protected $Id = 'TSA'; - - protected $Name = 'AlbumSortOrder'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Artist.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Artist.php deleted file mode 100644 index 7237950fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'TP1'; - - protected $Name = 'Artist'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/ArtistURL.php b/lib/PHPExiftool/Driver/Tag/ID3v22/ArtistURL.php deleted file mode 100644 index 7a44f1c7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/ArtistURL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtistURL extends AbstractTag -{ - - protected $Id = 'WAR'; - - protected $Name = 'ArtistURL'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist URL'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Band.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Band.php deleted file mode 100644 index f6038de28..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Band.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Band extends AbstractTag -{ - - protected $Id = 'TP2'; - - protected $Name = 'Band'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Band'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/BeatsPerMinute.php b/lib/PHPExiftool/Driver/Tag/ID3v22/BeatsPerMinute.php deleted file mode 100644 index d351a1a73..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/BeatsPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatsPerMinute extends AbstractTag -{ - - protected $Id = 'TBP'; - - protected $Name = 'BeatsPerMinute'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beats Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Comment.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Comment.php deleted file mode 100644 index e014620a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'COM'; - - protected $Name = 'Comment'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/CommercialURL.php b/lib/PHPExiftool/Driver/Tag/ID3v22/CommercialURL.php deleted file mode 100644 index 52d24231b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/CommercialURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommercialURL extends AbstractTag -{ - - protected $Id = 'WCM'; - - protected $Name = 'CommercialURL'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Commercial URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Compilation.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Compilation.php deleted file mode 100644 index 35776351e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Compilation.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compilation extends AbstractTag -{ - - protected $Id = 'TCP'; - - protected $Name = 'Compilation'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compilation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Composer.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Composer.php deleted file mode 100644 index fe1a2b5d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Composer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'TCM'; - - protected $Name = 'Composer'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/ComposerSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v22/ComposerSortOrder.php deleted file mode 100644 index 8b1f95af9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/ComposerSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComposerSortOrder extends AbstractTag -{ - - protected $Id = 'TSC'; - - protected $Name = 'ComposerSortOrder'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Conductor.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Conductor.php deleted file mode 100644 index 7feb74432..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Conductor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Conductor extends AbstractTag -{ - - protected $Id = 'TP3'; - - protected $Name = 'Conductor'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conductor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Copyright.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Copyright.php deleted file mode 100644 index f990ea160..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'TCR'; - - protected $Name = 'Copyright'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/CopyrightURL.php b/lib/PHPExiftool/Driver/Tag/ID3v22/CopyrightURL.php deleted file mode 100644 index 6718bbef7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/CopyrightURL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightURL extends AbstractTag -{ - - protected $Id = 'WCP'; - - protected $Name = 'CopyrightURL'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright URL'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Date.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Date.php deleted file mode 100644 index daa3af499..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Date.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'TDA'; - - protected $Name = 'Date'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/ID3v22/EncodedBy.php deleted file mode 100644 index 6df0b9ffd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = 'TEN'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/EncoderSettings.php b/lib/PHPExiftool/Driver/Tag/ID3v22/EncoderSettings.php deleted file mode 100644 index 17a370554..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/EncoderSettings.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncoderSettings extends AbstractTag -{ - - protected $Id = 'TSS'; - - protected $Name = 'EncoderSettings'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoder Settings'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/FileType.php b/lib/PHPExiftool/Driver/Tag/ID3v22/FileType.php deleted file mode 100644 index 0180865ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/FileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileType extends AbstractTag -{ - - protected $Id = 'TFT'; - - protected $Name = 'FileType'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/FileURL.php b/lib/PHPExiftool/Driver/Tag/ID3v22/FileURL.php deleted file mode 100644 index 1e76c3c83..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/FileURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileURL extends AbstractTag -{ - - protected $Id = 'WAF'; - - protected $Name = 'FileURL'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Genre.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Genre.php deleted file mode 100644 index 2f103734a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'TCO'; - - protected $Name = 'Genre'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Grouping.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Grouping.php deleted file mode 100644 index 01cd0d924..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Grouping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Grouping extends AbstractTag -{ - - protected $Id = 'TT1'; - - protected $Name = 'Grouping'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grouping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/ISRC.php b/lib/PHPExiftool/Driver/Tag/ID3v22/ISRC.php deleted file mode 100644 index 336d7e2d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/ISRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRC extends AbstractTag -{ - - protected $Id = 'TRC'; - - protected $Name = 'ISRC'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/ITunesU.php b/lib/PHPExiftool/Driver/Tag/ID3v22/ITunesU.php deleted file mode 100644 index 0c8acd40c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/ITunesU.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ITunesU extends AbstractTag -{ - - protected $Id = 'ITU'; - - protected $Name = 'iTunesU'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'iTunes U'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/InitialKey.php b/lib/PHPExiftool/Driver/Tag/ID3v22/InitialKey.php deleted file mode 100644 index 702742b00..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/InitialKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialKey extends AbstractTag -{ - - protected $Id = 'TKE'; - - protected $Name = 'InitialKey'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/InterpretedBy.php b/lib/PHPExiftool/Driver/Tag/ID3v22/InterpretedBy.php deleted file mode 100644 index aee88ead8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/InterpretedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretedBy extends AbstractTag -{ - - protected $Id = 'TP4'; - - protected $Name = 'InterpretedBy'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpreted By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/InvolvedPeople.php b/lib/PHPExiftool/Driver/Tag/ID3v22/InvolvedPeople.php deleted file mode 100644 index 2e1e426d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/InvolvedPeople.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvolvedPeople extends AbstractTag -{ - - protected $Id = 'IPL'; - - protected $Name = 'InvolvedPeople'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Involved People'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Language.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Language.php deleted file mode 100644 index c4ff871f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'TLA'; - - protected $Name = 'Language'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Length.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Length.php deleted file mode 100644 index c9a7e6b63..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Length.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Length extends AbstractTag -{ - - protected $Id = 'TLE'; - - protected $Name = 'Length'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Lyricist.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Lyricist.php deleted file mode 100644 index 39bd377f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Lyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyricist extends AbstractTag -{ - - protected $Id = 'TXT'; - - protected $Name = 'Lyricist'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Lyrics.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Lyrics.php deleted file mode 100644 index 32722e4d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Lyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyrics extends AbstractTag -{ - - protected $Id = 'ULT'; - - protected $Name = 'Lyrics'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Media.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Media.php deleted file mode 100644 index 3b2593362..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Media.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Media extends AbstractTag -{ - - protected $Id = 'TMT'; - - protected $Name = 'Media'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalAlbum.php b/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalAlbum.php deleted file mode 100644 index dee77629f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalAlbum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalAlbum extends AbstractTag -{ - - protected $Id = 'TOT'; - - protected $Name = 'OriginalAlbum'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalArtist.php b/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalArtist.php deleted file mode 100644 index a25831c7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalArtist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalArtist extends AbstractTag -{ - - protected $Id = 'TOA'; - - protected $Name = 'OriginalArtist'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalFilename.php b/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalFilename.php deleted file mode 100644 index 8afba9a95..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalFilename.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFilename extends AbstractTag -{ - - protected $Id = 'TOF'; - - protected $Name = 'OriginalFilename'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Filename'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalLyricist.php b/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalLyricist.php deleted file mode 100644 index a2047b8a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalLyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalLyricist extends AbstractTag -{ - - protected $Id = 'TOL'; - - protected $Name = 'OriginalLyricist'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalReleaseYear.php b/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalReleaseYear.php deleted file mode 100644 index 0718c17a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/OriginalReleaseYear.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalReleaseYear extends AbstractTag -{ - - protected $Id = 'TOR'; - - protected $Name = 'OriginalReleaseYear'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Release Year'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PartOfSet.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PartOfSet.php deleted file mode 100644 index e115f29c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PartOfSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartOfSet extends AbstractTag -{ - - protected $Id = 'TPA'; - - protected $Name = 'PartOfSet'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Part Of Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PerformerSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PerformerSortOrder.php deleted file mode 100644 index 2965a0042..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PerformerSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformerSortOrder extends AbstractTag -{ - - protected $Id = 'TSP'; - - protected $Name = 'PerformerSortOrder'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performer Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Picture.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Picture.php deleted file mode 100644 index 6ed9fb5ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Picture.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Picture extends AbstractTag -{ - - protected $Id = 'PIC'; - - protected $Name = 'Picture'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PictureDescription.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PictureDescription.php deleted file mode 100644 index ae93a5cf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PictureDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureDescription extends AbstractTag -{ - - protected $Id = 'PIC-3'; - - protected $Name = 'PictureDescription'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Description'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PictureFormat.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PictureFormat.php deleted file mode 100644 index a546be37a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PictureFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureFormat extends AbstractTag -{ - - protected $Id = 'PIC-1'; - - protected $Name = 'PictureFormat'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Format'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PictureType.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PictureType.php deleted file mode 100644 index 9fa49552d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PictureType.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureType extends AbstractTag -{ - - protected $Id = 'PIC-2'; - - protected $Name = 'PictureType'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Type'; - - protected $local_g2 = 'Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Other', - ), - 1 => array( - 'Id' => 1, - 'Label' => '32x32 PNG Icon', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Other Icon', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Front Cover', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Back Cover', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Leaflet', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Media', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lead Artist', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Artist', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Conductor', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Band', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Composer', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Lyricist', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Recording Studio or Location', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Recording Session', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Performance', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Capture from Movie or Video', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Bright(ly) Colored Fish', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Illustration', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Band Logo', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Publisher Logo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PlayCounter.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PlayCounter.php deleted file mode 100644 index f389ae473..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PlayCounter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayCounter extends AbstractTag -{ - - protected $Id = 'CNT'; - - protected $Name = 'PlayCounter'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Play Counter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PlaylistDelay.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PlaylistDelay.php deleted file mode 100644 index 0662f8544..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PlaylistDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaylistDelay extends AbstractTag -{ - - protected $Id = 'TDY'; - - protected $Name = 'PlaylistDelay'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Playlist Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Podcast.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Podcast.php deleted file mode 100644 index 1963f14d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Podcast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Podcast extends AbstractTag -{ - - protected $Id = 'PCS'; - - protected $Name = 'Podcast'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Podcast'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Popularimeter.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Popularimeter.php deleted file mode 100644 index eaf817ac4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Popularimeter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Popularimeter extends AbstractTag -{ - - protected $Id = 'POP'; - - protected $Name = 'Popularimeter'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Popularimeter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Publisher.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Publisher.php deleted file mode 100644 index 41631172a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'TPB'; - - protected $Name = 'Publisher'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/PublisherURL.php b/lib/PHPExiftool/Driver/Tag/ID3v22/PublisherURL.php deleted file mode 100644 index e852114c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/PublisherURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublisherURL extends AbstractTag -{ - - protected $Id = 'WPB'; - - protected $Name = 'PublisherURL'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/RecordingDates.php b/lib/PHPExiftool/Driver/Tag/ID3v22/RecordingDates.php deleted file mode 100644 index 57884b7e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/RecordingDates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingDates extends AbstractTag -{ - - protected $Id = 'TRD'; - - protected $Name = 'RecordingDates'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Dates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/RelativeVolumeAdjustment.php b/lib/PHPExiftool/Driver/Tag/ID3v22/RelativeVolumeAdjustment.php deleted file mode 100644 index 93688786f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/RelativeVolumeAdjustment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeVolumeAdjustment extends AbstractTag -{ - - protected $Id = 'RVA'; - - protected $Name = 'RelativeVolumeAdjustment'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relative Volume Adjustment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Size.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Size.php deleted file mode 100644 index 12cfbc61b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Size.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Size extends AbstractTag -{ - - protected $Id = 'TSI'; - - protected $Name = 'Size'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/SourceURL.php b/lib/PHPExiftool/Driver/Tag/ID3v22/SourceURL.php deleted file mode 100644 index 2768e7be1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/SourceURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceURL extends AbstractTag -{ - - protected $Id = 'WAS'; - - protected $Name = 'SourceURL'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Subtitle.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Subtitle.php deleted file mode 100644 index db72b8b2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Subtitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subtitle extends AbstractTag -{ - - protected $Id = 'TT3'; - - protected $Name = 'Subtitle'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtitle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Time.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Time.php deleted file mode 100644 index b243a04df..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Time.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Time extends AbstractTag -{ - - protected $Id = 'TIM'; - - protected $Name = 'Time'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Title.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Title.php deleted file mode 100644 index db903d92a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'TT2'; - - protected $Name = 'Title'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/TitleSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v22/TitleSortOrder.php deleted file mode 100644 index 11f52723c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/TitleSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleSortOrder extends AbstractTag -{ - - protected $Id = 'TST'; - - protected $Name = 'TitleSortOrder'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Track.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Track.php deleted file mode 100644 index 187d7ec27..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Track.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Track extends AbstractTag -{ - - protected $Id = 'TRK'; - - protected $Name = 'Track'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/UserDefinedText.php b/lib/PHPExiftool/Driver/Tag/ID3v22/UserDefinedText.php deleted file mode 100644 index bdc00992f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/UserDefinedText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedText extends AbstractTag -{ - - protected $Id = 'TXX'; - - protected $Name = 'UserDefinedText'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/UserDefinedURL.php b/lib/PHPExiftool/Driver/Tag/ID3v22/UserDefinedURL.php deleted file mode 100644 index f0aa5eee4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/UserDefinedURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedURL extends AbstractTag -{ - - protected $Id = 'WXX'; - - protected $Name = 'UserDefinedURL'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v22/Year.php b/lib/PHPExiftool/Driver/Tag/ID3v22/Year.php deleted file mode 100644 index d9ddf79ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v22/Year.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v22; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'TYE'; - - protected $Name = 'Year'; - - protected $FullName = 'ID3::v2_2'; - - protected $GroupName = 'ID3v2_2'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_2'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Album.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Album.php deleted file mode 100644 index 32cea8123..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'TALB'; - - protected $Name = 'Album'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Artist.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Artist.php deleted file mode 100644 index 04864be85..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'TPE1'; - - protected $Name = 'Artist'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/ArtistURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/ArtistURL.php deleted file mode 100644 index e10de167a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/ArtistURL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtistURL extends AbstractTag -{ - - protected $Id = 'WOAR'; - - protected $Name = 'ArtistURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist URL'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Band.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Band.php deleted file mode 100644 index 2df363c5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Band.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Band extends AbstractTag -{ - - protected $Id = 'TPE2'; - - protected $Name = 'Band'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Band'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/BeatsPerMinute.php b/lib/PHPExiftool/Driver/Tag/ID3v23/BeatsPerMinute.php deleted file mode 100644 index 17ce58c11..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/BeatsPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatsPerMinute extends AbstractTag -{ - - protected $Id = 'TBPM'; - - protected $Name = 'BeatsPerMinute'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beats Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Comment.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Comment.php deleted file mode 100644 index 4cedb8eda..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'COMM'; - - protected $Name = 'Comment'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/CommercialURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/CommercialURL.php deleted file mode 100644 index 83a5459c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/CommercialURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommercialURL extends AbstractTag -{ - - protected $Id = 'WCOM'; - - protected $Name = 'CommercialURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Commercial URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Compilation.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Compilation.php deleted file mode 100644 index e9621768c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Compilation.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compilation extends AbstractTag -{ - - protected $Id = 'TCMP'; - - protected $Name = 'Compilation'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compilation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Composer.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Composer.php deleted file mode 100644 index 0f88a60cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Composer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'TCOM'; - - protected $Name = 'Composer'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Conductor.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Conductor.php deleted file mode 100644 index 17c8881c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Conductor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Conductor extends AbstractTag -{ - - protected $Id = 'TPE3'; - - protected $Name = 'Conductor'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conductor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Copyright.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Copyright.php deleted file mode 100644 index 557a5d447..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'TCOP'; - - protected $Name = 'Copyright'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/CopyrightURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/CopyrightURL.php deleted file mode 100644 index 9447ccfbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/CopyrightURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightURL extends AbstractTag -{ - - protected $Id = 'WCOP'; - - protected $Name = 'CopyrightURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Date.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Date.php deleted file mode 100644 index 43287fcf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Date.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'TDAT'; - - protected $Name = 'Date'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/ID3v23/EncodedBy.php deleted file mode 100644 index 23b4e7988..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = 'TENC'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/EncoderSettings.php b/lib/PHPExiftool/Driver/Tag/ID3v23/EncoderSettings.php deleted file mode 100644 index 7ca3c5599..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/EncoderSettings.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncoderSettings extends AbstractTag -{ - - protected $Id = 'TSSE'; - - protected $Name = 'EncoderSettings'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoder Settings'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/FileOwner.php b/lib/PHPExiftool/Driver/Tag/ID3v23/FileOwner.php deleted file mode 100644 index 9be7afefd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/FileOwner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileOwner extends AbstractTag -{ - - protected $Id = 'TOWN'; - - protected $Name = 'FileOwner'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/FileType.php b/lib/PHPExiftool/Driver/Tag/ID3v23/FileType.php deleted file mode 100644 index 24dc8cee0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/FileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileType extends AbstractTag -{ - - protected $Id = 'TFLT'; - - protected $Name = 'FileType'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/FileURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/FileURL.php deleted file mode 100644 index c45c6435f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/FileURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileURL extends AbstractTag -{ - - protected $Id = 'WOAF'; - - protected $Name = 'FileURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Genre.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Genre.php deleted file mode 100644 index 4c95da906..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'TCON'; - - protected $Name = 'Genre'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Grouping.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Grouping.php deleted file mode 100644 index be33911c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Grouping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Grouping extends AbstractTag -{ - - protected $Id = 'TIT1'; - - protected $Name = 'Grouping'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grouping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/ISRC.php b/lib/PHPExiftool/Driver/Tag/ID3v23/ISRC.php deleted file mode 100644 index d982a4866..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/ISRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRC extends AbstractTag -{ - - protected $Id = 'TSRC'; - - protected $Name = 'ISRC'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/InitialKey.php b/lib/PHPExiftool/Driver/Tag/ID3v23/InitialKey.php deleted file mode 100644 index 885ba309a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/InitialKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialKey extends AbstractTag -{ - - protected $Id = 'TKEY'; - - protected $Name = 'InitialKey'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationName.php b/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationName.php deleted file mode 100644 index fd433bd6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternetRadioStationName extends AbstractTag -{ - - protected $Id = 'TRSN'; - - protected $Name = 'InternetRadioStationName'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internet Radio Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationOwner.php b/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationOwner.php deleted file mode 100644 index 460b38cef..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationOwner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternetRadioStationOwner extends AbstractTag -{ - - protected $Id = 'TRSO'; - - protected $Name = 'InternetRadioStationOwner'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internet Radio Station Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationURL.php deleted file mode 100644 index 33add5f09..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/InternetRadioStationURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternetRadioStationURL extends AbstractTag -{ - - protected $Id = 'WORS'; - - protected $Name = 'InternetRadioStationURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internet Radio Station URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/InterpretedBy.php b/lib/PHPExiftool/Driver/Tag/ID3v23/InterpretedBy.php deleted file mode 100644 index 75abf87f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/InterpretedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretedBy extends AbstractTag -{ - - protected $Id = 'TPE4'; - - protected $Name = 'InterpretedBy'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpreted By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/InvolvedPeople.php b/lib/PHPExiftool/Driver/Tag/ID3v23/InvolvedPeople.php deleted file mode 100644 index f7a80a434..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/InvolvedPeople.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvolvedPeople extends AbstractTag -{ - - protected $Id = 'IPLS'; - - protected $Name = 'InvolvedPeople'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Involved People'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Language.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Language.php deleted file mode 100644 index d1e26699b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'TLAN'; - - protected $Name = 'Language'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Length.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Length.php deleted file mode 100644 index 354693ebc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Length.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Length extends AbstractTag -{ - - protected $Id = 'TLEN'; - - protected $Name = 'Length'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Lyricist.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Lyricist.php deleted file mode 100644 index 2fa81b91c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Lyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyricist extends AbstractTag -{ - - protected $Id = 'TEXT'; - - protected $Name = 'Lyricist'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Lyrics.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Lyrics.php deleted file mode 100644 index 8589be617..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Lyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyrics extends AbstractTag -{ - - protected $Id = 'USLT'; - - protected $Name = 'Lyrics'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Media.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Media.php deleted file mode 100644 index 749d1eec5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Media.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Media extends AbstractTag -{ - - protected $Id = 'TMED'; - - protected $Name = 'Media'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/MusicCDIdentifier.php b/lib/PHPExiftool/Driver/Tag/ID3v23/MusicCDIdentifier.php deleted file mode 100644 index a15fb84a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/MusicCDIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MusicCDIdentifier extends AbstractTag -{ - - protected $Id = 'MCDI'; - - protected $Name = 'MusicCDIdentifier'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Music CD Identifier'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalAlbum.php b/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalAlbum.php deleted file mode 100644 index 015cc9cf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalAlbum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalAlbum extends AbstractTag -{ - - protected $Id = 'TOAL'; - - protected $Name = 'OriginalAlbum'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalArtist.php b/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalArtist.php deleted file mode 100644 index 99fa0d7d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalArtist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalArtist extends AbstractTag -{ - - protected $Id = 'TOPE'; - - protected $Name = 'OriginalArtist'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalFilename.php b/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalFilename.php deleted file mode 100644 index ac8e549c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalFilename.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFilename extends AbstractTag -{ - - protected $Id = 'TOFN'; - - protected $Name = 'OriginalFilename'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Filename'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalLyricist.php b/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalLyricist.php deleted file mode 100644 index 45adefa70..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalLyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalLyricist extends AbstractTag -{ - - protected $Id = 'TOLY'; - - protected $Name = 'OriginalLyricist'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalReleaseYear.php b/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalReleaseYear.php deleted file mode 100644 index 87b3196b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/OriginalReleaseYear.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalReleaseYear extends AbstractTag -{ - - protected $Id = 'TORY'; - - protected $Name = 'OriginalReleaseYear'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Release Year'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Ownership.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Ownership.php deleted file mode 100644 index b122e6fd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Ownership.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ownership extends AbstractTag -{ - - protected $Id = 'OWNE'; - - protected $Name = 'Ownership'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ownership'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PartOfSet.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PartOfSet.php deleted file mode 100644 index ce43a2adf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PartOfSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartOfSet extends AbstractTag -{ - - protected $Id = 'TPOS'; - - protected $Name = 'PartOfSet'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Part Of Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PaymentURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PaymentURL.php deleted file mode 100644 index ebf0ac4e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PaymentURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaymentURL extends AbstractTag -{ - - protected $Id = 'WPAY'; - - protected $Name = 'PaymentURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Payment URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Picture.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Picture.php deleted file mode 100644 index 1ba9082f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Picture.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Picture extends AbstractTag -{ - - protected $Id = 'APIC'; - - protected $Name = 'Picture'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PictureDescription.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PictureDescription.php deleted file mode 100644 index 8297b208c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PictureDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureDescription extends AbstractTag -{ - - protected $Id = 'APIC-3'; - - protected $Name = 'PictureDescription'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Description'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PictureMimeType.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PictureMimeType.php deleted file mode 100644 index adc592687..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PictureMimeType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMimeType extends AbstractTag -{ - - protected $Id = 'APIC-1'; - - protected $Name = 'PictureMimeType'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Mime Type'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PictureType.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PictureType.php deleted file mode 100644 index 147561643..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PictureType.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureType extends AbstractTag -{ - - protected $Id = 'APIC-2'; - - protected $Name = 'PictureType'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Type'; - - protected $local_g2 = 'Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Other', - ), - 1 => array( - 'Id' => 1, - 'Label' => '32x32 PNG Icon', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Other Icon', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Front Cover', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Back Cover', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Leaflet', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Media', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lead Artist', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Artist', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Conductor', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Band', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Composer', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Lyricist', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Recording Studio or Location', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Recording Session', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Performance', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Capture from Movie or Video', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Bright(ly) Colored Fish', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Illustration', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Band Logo', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Publisher Logo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PlayCounter.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PlayCounter.php deleted file mode 100644 index 0504f7938..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PlayCounter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayCounter extends AbstractTag -{ - - protected $Id = 'PCNT'; - - protected $Name = 'PlayCounter'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Play Counter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PlaylistDelay.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PlaylistDelay.php deleted file mode 100644 index f5632a7af..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PlaylistDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaylistDelay extends AbstractTag -{ - - protected $Id = 'TDLY'; - - protected $Name = 'PlaylistDelay'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Playlist Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Popularimeter.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Popularimeter.php deleted file mode 100644 index 4d6d4fa51..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Popularimeter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Popularimeter extends AbstractTag -{ - - protected $Id = 'POPM'; - - protected $Name = 'Popularimeter'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Popularimeter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Publisher.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Publisher.php deleted file mode 100644 index eff3e47ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'TPUB'; - - protected $Name = 'Publisher'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/PublisherURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/PublisherURL.php deleted file mode 100644 index bc35ab267..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/PublisherURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublisherURL extends AbstractTag -{ - - protected $Id = 'WPUB'; - - protected $Name = 'PublisherURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/RecordingDates.php b/lib/PHPExiftool/Driver/Tag/ID3v23/RecordingDates.php deleted file mode 100644 index 2f43b5e07..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/RecordingDates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingDates extends AbstractTag -{ - - protected $Id = 'TRDA'; - - protected $Name = 'RecordingDates'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Dates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Size.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Size.php deleted file mode 100644 index f55815707..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Size.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Size extends AbstractTag -{ - - protected $Id = 'TSIZ'; - - protected $Name = 'Size'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/SourceURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/SourceURL.php deleted file mode 100644 index f14733ded..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/SourceURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceURL extends AbstractTag -{ - - protected $Id = 'WOAS'; - - protected $Name = 'SourceURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Subtitle.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Subtitle.php deleted file mode 100644 index 54e5ad1f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Subtitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subtitle extends AbstractTag -{ - - protected $Id = 'TIT3'; - - protected $Name = 'Subtitle'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtitle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/TermsOfUse.php b/lib/PHPExiftool/Driver/Tag/ID3v23/TermsOfUse.php deleted file mode 100644 index 6a0f6ea18..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/TermsOfUse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TermsOfUse extends AbstractTag -{ - - protected $Id = 'USER'; - - protected $Name = 'TermsOfUse'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Terms Of Use'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Time.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Time.php deleted file mode 100644 index 0fe52d002..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Time.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Time extends AbstractTag -{ - - protected $Id = 'TIME'; - - protected $Name = 'Time'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Title.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Title.php deleted file mode 100644 index 3f266c829..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'TIT2'; - - protected $Name = 'Title'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Track.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Track.php deleted file mode 100644 index b4b3c2c3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Track.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Track extends AbstractTag -{ - - protected $Id = 'TRCK'; - - protected $Name = 'Track'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/UserDefinedText.php b/lib/PHPExiftool/Driver/Tag/ID3v23/UserDefinedText.php deleted file mode 100644 index 06a101b04..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/UserDefinedText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedText extends AbstractTag -{ - - protected $Id = 'TXXX'; - - protected $Name = 'UserDefinedText'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/UserDefinedURL.php b/lib/PHPExiftool/Driver/Tag/ID3v23/UserDefinedURL.php deleted file mode 100644 index 77c3afe96..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/UserDefinedURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedURL extends AbstractTag -{ - - protected $Id = 'WXXX'; - - protected $Name = 'UserDefinedURL'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v23/Year.php b/lib/PHPExiftool/Driver/Tag/ID3v23/Year.php deleted file mode 100644 index 09cc2a6fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v23/Year.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v23; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'TYER'; - - protected $Name = 'Year'; - - protected $FullName = 'ID3::v2_3'; - - protected $GroupName = 'ID3v2_3'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_3'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Album.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Album.php deleted file mode 100644 index 2085cdc29..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'TALB'; - - protected $Name = 'Album'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/AlbumArtistSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v24/AlbumArtistSortOrder.php deleted file mode 100644 index e4848adf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/AlbumArtistSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumArtistSortOrder extends AbstractTag -{ - - protected $Id = 'TSO2'; - - protected $Name = 'AlbumArtistSortOrder'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Artist Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/AlbumSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v24/AlbumSortOrder.php deleted file mode 100644 index 075ca1e94..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/AlbumSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumSortOrder extends AbstractTag -{ - - protected $Id = 'TSOA'; - - protected $Name = 'AlbumSortOrder'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Artist.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Artist.php deleted file mode 100644 index fd39c4638..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'TPE1'; - - protected $Name = 'Artist'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/ArtistURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/ArtistURL.php deleted file mode 100644 index 1dc61283e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/ArtistURL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtistURL extends AbstractTag -{ - - protected $Id = 'WOAR'; - - protected $Name = 'ArtistURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist URL'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Band.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Band.php deleted file mode 100644 index 8d28f4014..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Band.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Band extends AbstractTag -{ - - protected $Id = 'TPE2'; - - protected $Name = 'Band'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Band'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/BeatsPerMinute.php b/lib/PHPExiftool/Driver/Tag/ID3v24/BeatsPerMinute.php deleted file mode 100644 index c924fd2d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/BeatsPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatsPerMinute extends AbstractTag -{ - - protected $Id = 'TBPM'; - - protected $Name = 'BeatsPerMinute'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beats Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Comment.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Comment.php deleted file mode 100644 index bc81804ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'COMM'; - - protected $Name = 'Comment'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/CommercialURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/CommercialURL.php deleted file mode 100644 index f48c8b6cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/CommercialURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommercialURL extends AbstractTag -{ - - protected $Id = 'WCOM'; - - protected $Name = 'CommercialURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Commercial URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Compilation.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Compilation.php deleted file mode 100644 index f6744b27e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Compilation.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compilation extends AbstractTag -{ - - protected $Id = 'TCMP'; - - protected $Name = 'Compilation'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compilation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Composer.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Composer.php deleted file mode 100644 index cad6f883b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Composer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'TCOM'; - - protected $Name = 'Composer'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/ComposerSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v24/ComposerSortOrder.php deleted file mode 100644 index f861e595c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/ComposerSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComposerSortOrder extends AbstractTag -{ - - protected $Id = 'TSOC'; - - protected $Name = 'ComposerSortOrder'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Conductor.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Conductor.php deleted file mode 100644 index acef97a40..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Conductor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Conductor extends AbstractTag -{ - - protected $Id = 'TPE3'; - - protected $Name = 'Conductor'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conductor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Copyright.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Copyright.php deleted file mode 100644 index c74791e9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'TCOP'; - - protected $Name = 'Copyright'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/CopyrightURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/CopyrightURL.php deleted file mode 100644 index d9460aca4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/CopyrightURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightURL extends AbstractTag -{ - - protected $Id = 'WCOP'; - - protected $Name = 'CopyrightURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/ID3v24/EncodedBy.php deleted file mode 100644 index 91beba91b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = 'TENC'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/EncoderSettings.php b/lib/PHPExiftool/Driver/Tag/ID3v24/EncoderSettings.php deleted file mode 100644 index 232b81a22..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/EncoderSettings.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncoderSettings extends AbstractTag -{ - - protected $Id = 'TSSE'; - - protected $Name = 'EncoderSettings'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoder Settings'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/EncodingTime.php b/lib/PHPExiftool/Driver/Tag/ID3v24/EncodingTime.php deleted file mode 100644 index bd116cc28..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/EncodingTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodingTime extends AbstractTag -{ - - protected $Id = 'TDEN'; - - protected $Name = 'EncodingTime'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoding Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/FileOwner.php b/lib/PHPExiftool/Driver/Tag/ID3v24/FileOwner.php deleted file mode 100644 index 9fc58202d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/FileOwner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileOwner extends AbstractTag -{ - - protected $Id = 'TOWN'; - - protected $Name = 'FileOwner'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/FileType.php b/lib/PHPExiftool/Driver/Tag/ID3v24/FileType.php deleted file mode 100644 index bb91aa4eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/FileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileType extends AbstractTag -{ - - protected $Id = 'TFLT'; - - protected $Name = 'FileType'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/FileURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/FileURL.php deleted file mode 100644 index 2fbae0d29..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/FileURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileURL extends AbstractTag -{ - - protected $Id = 'WOAF'; - - protected $Name = 'FileURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Genre.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Genre.php deleted file mode 100644 index 94586b2da..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'TCON'; - - protected $Name = 'Genre'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Grouping.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Grouping.php deleted file mode 100644 index 05ba198d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Grouping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Grouping extends AbstractTag -{ - - protected $Id = 'TIT1'; - - protected $Name = 'Grouping'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grouping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/ISRC.php b/lib/PHPExiftool/Driver/Tag/ID3v24/ISRC.php deleted file mode 100644 index 91a9bb647..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/ISRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRC extends AbstractTag -{ - - protected $Id = 'TSRC'; - - protected $Name = 'ISRC'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/ITunesU.php b/lib/PHPExiftool/Driver/Tag/ID3v24/ITunesU.php deleted file mode 100644 index 50ca6f6b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/ITunesU.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ITunesU extends AbstractTag -{ - - protected $Id = 'ITNU'; - - protected $Name = 'iTunesU'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'iTunes U'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/InitialKey.php b/lib/PHPExiftool/Driver/Tag/ID3v24/InitialKey.php deleted file mode 100644 index 4b818d8da..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/InitialKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialKey extends AbstractTag -{ - - protected $Id = 'TKEY'; - - protected $Name = 'InitialKey'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationName.php b/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationName.php deleted file mode 100644 index 99e68d5f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternetRadioStationName extends AbstractTag -{ - - protected $Id = 'TRSN'; - - protected $Name = 'InternetRadioStationName'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internet Radio Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationOwner.php b/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationOwner.php deleted file mode 100644 index 90034c286..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationOwner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternetRadioStationOwner extends AbstractTag -{ - - protected $Id = 'TRSO'; - - protected $Name = 'InternetRadioStationOwner'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internet Radio Station Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationURL.php deleted file mode 100644 index 42a9628b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/InternetRadioStationURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternetRadioStationURL extends AbstractTag -{ - - protected $Id = 'WORS'; - - protected $Name = 'InternetRadioStationURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internet Radio Station URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/InterpretedBy.php b/lib/PHPExiftool/Driver/Tag/ID3v24/InterpretedBy.php deleted file mode 100644 index cd9a3ac15..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/InterpretedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpretedBy extends AbstractTag -{ - - protected $Id = 'TPE4'; - - protected $Name = 'InterpretedBy'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpreted By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/InvolvedPeople.php b/lib/PHPExiftool/Driver/Tag/ID3v24/InvolvedPeople.php deleted file mode 100644 index 44f49d09b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/InvolvedPeople.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvolvedPeople extends AbstractTag -{ - - protected $Id = 'TIPL'; - - protected $Name = 'InvolvedPeople'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Involved People'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Language.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Language.php deleted file mode 100644 index 7c9df1c40..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'TLAN'; - - protected $Name = 'Language'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Length.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Length.php deleted file mode 100644 index 08399e6fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Length.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Length extends AbstractTag -{ - - protected $Id = 'TLEN'; - - protected $Name = 'Length'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Lyricist.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Lyricist.php deleted file mode 100644 index cab61866a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Lyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyricist extends AbstractTag -{ - - protected $Id = 'TEXT'; - - protected $Name = 'Lyricist'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Lyrics.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Lyrics.php deleted file mode 100644 index 50e149a52..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Lyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyrics extends AbstractTag -{ - - protected $Id = 'USLT'; - - protected $Name = 'Lyrics'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Media.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Media.php deleted file mode 100644 index e4c069adb..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Media.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Media extends AbstractTag -{ - - protected $Id = 'TMED'; - - protected $Name = 'Media'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Mood.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Mood.php deleted file mode 100644 index 12f33fb98..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Mood.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Mood extends AbstractTag -{ - - protected $Id = 'TMOO'; - - protected $Name = 'Mood'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mood'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/MusicCDIdentifier.php b/lib/PHPExiftool/Driver/Tag/ID3v24/MusicCDIdentifier.php deleted file mode 100644 index 0938a2a9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/MusicCDIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MusicCDIdentifier extends AbstractTag -{ - - protected $Id = 'MCDI'; - - protected $Name = 'MusicCDIdentifier'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Music CD Identifier'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/MusicianCredits.php b/lib/PHPExiftool/Driver/Tag/ID3v24/MusicianCredits.php deleted file mode 100644 index 09a951f2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/MusicianCredits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MusicianCredits extends AbstractTag -{ - - protected $Id = 'TMCL'; - - protected $Name = 'MusicianCredits'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Musician Credits'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalAlbum.php b/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalAlbum.php deleted file mode 100644 index 08f8efacd..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalAlbum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalAlbum extends AbstractTag -{ - - protected $Id = 'TOAL'; - - protected $Name = 'OriginalAlbum'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalArtist.php b/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalArtist.php deleted file mode 100644 index ee96bebe1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalArtist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalArtist extends AbstractTag -{ - - protected $Id = 'TOPE'; - - protected $Name = 'OriginalArtist'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalFilename.php b/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalFilename.php deleted file mode 100644 index 59b88c72b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalFilename.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFilename extends AbstractTag -{ - - protected $Id = 'TOFN'; - - protected $Name = 'OriginalFilename'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Filename'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalLyricist.php b/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalLyricist.php deleted file mode 100644 index 03b0c3d96..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalLyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalLyricist extends AbstractTag -{ - - protected $Id = 'TOLY'; - - protected $Name = 'OriginalLyricist'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalReleaseTime.php b/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalReleaseTime.php deleted file mode 100644 index 1d07e348c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/OriginalReleaseTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalReleaseTime extends AbstractTag -{ - - protected $Id = 'TDOR'; - - protected $Name = 'OriginalReleaseTime'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Release Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Ownership.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Ownership.php deleted file mode 100644 index 93cde8073..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Ownership.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ownership extends AbstractTag -{ - - protected $Id = 'OWNE'; - - protected $Name = 'Ownership'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ownership'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PartOfSet.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PartOfSet.php deleted file mode 100644 index 58dd83af0..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PartOfSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartOfSet extends AbstractTag -{ - - protected $Id = 'TPOS'; - - protected $Name = 'PartOfSet'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Part Of Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PaymentURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PaymentURL.php deleted file mode 100644 index 714202db7..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PaymentURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaymentURL extends AbstractTag -{ - - protected $Id = 'WPAY'; - - protected $Name = 'PaymentURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Payment URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PerformerSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PerformerSortOrder.php deleted file mode 100644 index 8d490f9f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PerformerSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformerSortOrder extends AbstractTag -{ - - protected $Id = 'TSOP'; - - protected $Name = 'PerformerSortOrder'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performer Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Picture.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Picture.php deleted file mode 100644 index 7b0de5a48..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Picture.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Picture extends AbstractTag -{ - - protected $Id = 'APIC'; - - protected $Name = 'Picture'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PictureDescription.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PictureDescription.php deleted file mode 100644 index a05244df2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PictureDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureDescription extends AbstractTag -{ - - protected $Id = 'APIC-3'; - - protected $Name = 'PictureDescription'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Description'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PictureMimeType.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PictureMimeType.php deleted file mode 100644 index 9cdd55e75..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PictureMimeType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMimeType extends AbstractTag -{ - - protected $Id = 'APIC-1'; - - protected $Name = 'PictureMimeType'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Mime Type'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PictureType.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PictureType.php deleted file mode 100644 index 5400a7bc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PictureType.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureType extends AbstractTag -{ - - protected $Id = 'APIC-2'; - - protected $Name = 'PictureType'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Type'; - - protected $local_g2 = 'Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Other', - ), - 1 => array( - 'Id' => 1, - 'Label' => '32x32 PNG Icon', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Other Icon', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Front Cover', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Back Cover', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Leaflet', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Media', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lead Artist', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Artist', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Conductor', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Band', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Composer', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Lyricist', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Recording Studio or Location', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Recording Session', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Performance', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Capture from Movie or Video', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Bright(ly) Colored Fish', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Illustration', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Band Logo', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Publisher Logo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PlayCounter.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PlayCounter.php deleted file mode 100644 index 718538bb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PlayCounter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayCounter extends AbstractTag -{ - - protected $Id = 'PCNT'; - - protected $Name = 'PlayCounter'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Play Counter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PlaylistDelay.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PlaylistDelay.php deleted file mode 100644 index dc67182cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PlaylistDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaylistDelay extends AbstractTag -{ - - protected $Id = 'TDLY'; - - protected $Name = 'PlaylistDelay'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Playlist Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Podcast.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Podcast.php deleted file mode 100644 index 91b912e9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Podcast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Podcast extends AbstractTag -{ - - protected $Id = 'PCST'; - - protected $Name = 'Podcast'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Podcast'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Popularimeter.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Popularimeter.php deleted file mode 100644 index 4c535459f..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Popularimeter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Popularimeter extends AbstractTag -{ - - protected $Id = 'POPM'; - - protected $Name = 'Popularimeter'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Popularimeter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/ProducedNotice.php b/lib/PHPExiftool/Driver/Tag/ID3v24/ProducedNotice.php deleted file mode 100644 index 232174d8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/ProducedNotice.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProducedNotice extends AbstractTag -{ - - protected $Id = 'TPRO'; - - protected $Name = 'ProducedNotice'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Produced Notice'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Publisher.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Publisher.php deleted file mode 100644 index 1293a12e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'TPUB'; - - protected $Name = 'Publisher'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/PublisherURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/PublisherURL.php deleted file mode 100644 index dc97064b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/PublisherURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublisherURL extends AbstractTag -{ - - protected $Id = 'WPUB'; - - protected $Name = 'PublisherURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/RecordingTime.php b/lib/PHPExiftool/Driver/Tag/ID3v24/RecordingTime.php deleted file mode 100644 index f739fc2bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/RecordingTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTime extends AbstractTag -{ - - protected $Id = 'TDRC'; - - protected $Name = 'RecordingTime'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/RelativeVolumeAdjustment.php b/lib/PHPExiftool/Driver/Tag/ID3v24/RelativeVolumeAdjustment.php deleted file mode 100644 index c5ae8c40d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/RelativeVolumeAdjustment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeVolumeAdjustment extends AbstractTag -{ - - protected $Id = 'RVA2'; - - protected $Name = 'RelativeVolumeAdjustment'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Relative Volume Adjustment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/ReleaseTime.php b/lib/PHPExiftool/Driver/Tag/ID3v24/ReleaseTime.php deleted file mode 100644 index 5359e3211..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/ReleaseTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseTime extends AbstractTag -{ - - protected $Id = 'TDRL'; - - protected $Name = 'ReleaseTime'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Release Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/SetSubtitle.php b/lib/PHPExiftool/Driver/Tag/ID3v24/SetSubtitle.php deleted file mode 100644 index 37a75acb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/SetSubtitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetSubtitle extends AbstractTag -{ - - protected $Id = 'TSST'; - - protected $Name = 'SetSubtitle'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Set Subtitle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/SourceURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/SourceURL.php deleted file mode 100644 index f49bca3df..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/SourceURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceURL extends AbstractTag -{ - - protected $Id = 'WOAS'; - - protected $Name = 'SourceURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Subtitle.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Subtitle.php deleted file mode 100644 index 700d69ae8..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Subtitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subtitle extends AbstractTag -{ - - protected $Id = 'TIT3'; - - protected $Name = 'Subtitle'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtitle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/TaggingTime.php b/lib/PHPExiftool/Driver/Tag/ID3v24/TaggingTime.php deleted file mode 100644 index 50a902b40..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/TaggingTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaggingTime extends AbstractTag -{ - - protected $Id = 'TDTG'; - - protected $Name = 'TaggingTime'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tagging Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/TermsOfUse.php b/lib/PHPExiftool/Driver/Tag/ID3v24/TermsOfUse.php deleted file mode 100644 index 41ba4bc23..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/TermsOfUse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TermsOfUse extends AbstractTag -{ - - protected $Id = 'USER'; - - protected $Name = 'TermsOfUse'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Terms Of Use'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Title.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Title.php deleted file mode 100644 index c27bd4062..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'TIT2'; - - protected $Name = 'Title'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/TitleSortOrder.php b/lib/PHPExiftool/Driver/Tag/ID3v24/TitleSortOrder.php deleted file mode 100644 index a108befab..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/TitleSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleSortOrder extends AbstractTag -{ - - protected $Id = 'TSOT'; - - protected $Name = 'TitleSortOrder'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/Track.php b/lib/PHPExiftool/Driver/Tag/ID3v24/Track.php deleted file mode 100644 index c58d07478..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/Track.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Track extends AbstractTag -{ - - protected $Id = 'TRCK'; - - protected $Name = 'Track'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/UserDefinedText.php b/lib/PHPExiftool/Driver/Tag/ID3v24/UserDefinedText.php deleted file mode 100644 index 5bd8e6716..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/UserDefinedText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedText extends AbstractTag -{ - - protected $Id = 'TXXX'; - - protected $Name = 'UserDefinedText'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ID3v24/UserDefinedURL.php b/lib/PHPExiftool/Driver/Tag/ID3v24/UserDefinedURL.php deleted file mode 100644 index 553f370dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/ID3v24/UserDefinedURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ID3v24; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDefinedURL extends AbstractTag -{ - - protected $Id = 'WXXX'; - - protected $Name = 'UserDefinedURL'; - - protected $FullName = 'ID3::v2_4'; - - protected $GroupName = 'ID3v2_4'; - - protected $g0 = 'ID3'; - - protected $g1 = 'ID3v2_4'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Defined URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExtraSamples.php b/lib/PHPExiftool/Driver/Tag/IFD0/ExtraSamples.php similarity index 92% rename from lib/PHPExiftool/Driver/Tag/ExifIFD/ExtraSamples.php rename to lib/PHPExiftool/Driver/Tag/IFD0/ExtraSamples.php index d66c84500..ff963539b 100644 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/ExtraSamples.php +++ b/lib/PHPExiftool/Driver/Tag/IFD0/ExtraSamples.php @@ -1,4 +1,4 @@ -model tiepoint pairs'; } diff --git a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelScale.php b/lib/PHPExiftool/Driver/Tag/IFD0/PixelScale.php similarity index 57% rename from lib/PHPExiftool/Driver/Tag/ExifIFD/PixelScale.php rename to lib/PHPExiftool/Driver/Tag/IFD0/PixelScale.php index 202a9a0b4..bc506531f 100644 --- a/lib/PHPExiftool/Driver/Tag/ExifIFD/PixelScale.php +++ b/lib/PHPExiftool/Driver/Tag/IFD0/PixelScale.php @@ -9,14 +9,10 @@ * file that was distributed with this source code. */ -namespace PHPExiftool\Driver\Tag\ExifIFD; +namespace PHPExiftool\Driver\Tag\IFD0; -use JMS\Serializer\Annotation\ExclusionPolicy; use PHPExiftool\Driver\AbstractTag; -/** - * @ExclusionPolicy("all") - */ class PixelScale extends AbstractTag { @@ -24,9 +20,9 @@ class PixelScale extends AbstractTag protected $Name = 'PixelScale'; - protected $FullName = 'Exif::Main'; + protected $FullName = 'ModelPixelScaleTag'; - protected $GroupName = 'ExifIFD'; + protected $GroupName = 'IFD0'; protected $g0 = 'EXIF'; @@ -34,12 +30,10 @@ class PixelScale extends AbstractTag protected $g2 = 'Image'; - protected $Type = '?'; + protected $Type = 'Double'; protected $Writable = false; - protected $Description = 'Pixel Scale'; - - protected $local_g1 = 'ExifIFD'; + protected $Description = 'This tag may be used to specify the size of raster pixel spacing in the model space units, when the raster space can be embedded in the model space coordinate system without rotation'; } diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ARMIdentifier.php b/lib/PHPExiftool/Driver/Tag/IPTC/ARMIdentifier.php deleted file mode 100644 index 636284bf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ARMIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ARMIdentifier extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'ARMIdentifier'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ARM Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ARMVersion.php b/lib/PHPExiftool/Driver/Tag/IPTC/ARMVersion.php deleted file mode 100644 index efbac284c..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ARMVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ARMVersion extends AbstractTag -{ - - protected $Id = 122; - - protected $Name = 'ARMVersion'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ARM Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ActionAdvised.php b/lib/PHPExiftool/Driver/Tag/IPTC/ActionAdvised.php deleted file mode 100644 index 62e26d2cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ActionAdvised.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActionAdvised extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'ActionAdvised'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Action Advised'; - - protected $MaxLength = 2; - - protected $Values = array( - 01 => array( - 'Id' => 01, - 'Label' => 'Object Kill', - ), - 02 => array( - 'Id' => 02, - 'Label' => 'Object Replace', - ), - 03 => array( - 'Id' => 03, - 'Label' => 'Object Append', - ), - 04 => array( - 'Id' => 04, - 'Label' => 'Object Reference', - ), - '' => array( - 'Id' => '', - 'Label' => '', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ApplicationRecordVersion.php b/lib/PHPExiftool/Driver/Tag/IPTC/ApplicationRecordVersion.php deleted file mode 100644 index 1a1dcb727..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ApplicationRecordVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationRecordVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ApplicationRecordVersion'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Application Record Version'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/AudioDuration.php b/lib/PHPExiftool/Driver/Tag/IPTC/AudioDuration.php deleted file mode 100644 index 6dffe6a4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/AudioDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioDuration extends AbstractTag -{ - - protected $Id = 153; - - protected $Name = 'AudioDuration'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Audio Duration'; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/AudioOutcue.php b/lib/PHPExiftool/Driver/Tag/IPTC/AudioOutcue.php deleted file mode 100644 index 87d636b19..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/AudioOutcue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioOutcue extends AbstractTag -{ - - protected $Id = 154; - - protected $Name = 'AudioOutcue'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Audio Outcue'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/AudioSamplingRate.php b/lib/PHPExiftool/Driver/Tag/IPTC/AudioSamplingRate.php deleted file mode 100644 index d9c6d03a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/AudioSamplingRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSamplingRate extends AbstractTag -{ - - protected $Id = 151; - - protected $Name = 'AudioSamplingRate'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Audio Sampling Rate'; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/AudioSamplingResolution.php b/lib/PHPExiftool/Driver/Tag/IPTC/AudioSamplingResolution.php deleted file mode 100644 index 2402558d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/AudioSamplingResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSamplingResolution extends AbstractTag -{ - - protected $Id = 152; - - protected $Name = 'AudioSamplingResolution'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Audio Sampling Resolution'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/AudioType.php b/lib/PHPExiftool/Driver/Tag/IPTC/AudioType.php deleted file mode 100644 index 29ce2c461..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/AudioType.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioType extends AbstractTag -{ - - protected $Id = 150; - - protected $Name = 'AudioType'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Audio Type'; - - protected $MaxLength = 2; - - protected $Values = array( - '0T' => array( - 'Id' => '0T', - 'Label' => 'Text Only', - ), - '1A' => array( - 'Id' => '1A', - 'Label' => 'Mono Actuality', - ), - '1C' => array( - 'Id' => '1C', - 'Label' => 'Mono Question and Answer Session', - ), - '1M' => array( - 'Id' => '1M', - 'Label' => 'Mono Music', - ), - '1Q' => array( - 'Id' => '1Q', - 'Label' => 'Mono Response to a Question', - ), - '1R' => array( - 'Id' => '1R', - 'Label' => 'Mono Raw Sound', - ), - '1S' => array( - 'Id' => '1S', - 'Label' => 'Mono Scener', - ), - '1V' => array( - 'Id' => '1V', - 'Label' => 'Mono Voicer', - ), - '1W' => array( - 'Id' => '1W', - 'Label' => 'Mono Wrap', - ), - '2A' => array( - 'Id' => '2A', - 'Label' => 'Stereo Actuality', - ), - '2C' => array( - 'Id' => '2C', - 'Label' => 'Stereo Question and Answer Session', - ), - '2M' => array( - 'Id' => '2M', - 'Label' => 'Stereo Music', - ), - '2Q' => array( - 'Id' => '2Q', - 'Label' => 'Stereo Response to a Question', - ), - '2R' => array( - 'Id' => '2R', - 'Label' => 'Stereo Raw Sound', - ), - '2S' => array( - 'Id' => '2S', - 'Label' => 'Stereo Scener', - ), - '2V' => array( - 'Id' => '2V', - 'Label' => 'Stereo Voicer', - ), - '2W' => array( - 'Id' => '2W', - 'Label' => 'Stereo Wrap', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/BitsPerComponent.php b/lib/PHPExiftool/Driver/Tag/IPTC/BitsPerComponent.php deleted file mode 100644 index 88b0b5110..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/BitsPerComponent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerComponent extends AbstractTag -{ - - protected $Id = 135; - - protected $Name = 'BitsPerComponent'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Bits Per Component'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ByLine.php b/lib/PHPExiftool/Driver/Tag/IPTC/ByLine.php deleted file mode 100644 index aaa418e5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ByLine.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ByLine extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'By-line'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'By-line'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ByLineTitle.php b/lib/PHPExiftool/Driver/Tag/IPTC/ByLineTitle.php deleted file mode 100644 index 0ecf6ddcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ByLineTitle.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ByLineTitle extends AbstractTag -{ - - protected $Id = 85; - - protected $Name = 'By-lineTitle'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'By-line Title'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/CaptionAbstract.php b/lib/PHPExiftool/Driver/Tag/IPTC/CaptionAbstract.php deleted file mode 100644 index 4a0a310a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/CaptionAbstract.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionAbstract extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'Caption-Abstract'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Caption-Abstract'; - - protected $MaxLength = 2000; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/CatalogSets.php b/lib/PHPExiftool/Driver/Tag/IPTC/CatalogSets.php deleted file mode 100644 index 6ce93b9fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/CatalogSets.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CatalogSets extends AbstractTag -{ - - protected $Id = 255; - - protected $Name = 'CatalogSets'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Catalog Sets'; - - protected $flag_List = true; - - protected $MaxLength = 256; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Category.php b/lib/PHPExiftool/Driver/Tag/IPTC/Category.php deleted file mode 100644 index d73f7f92d..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Category.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'Category'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Category'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/City.php b/lib/PHPExiftool/Driver/Tag/IPTC/City.php deleted file mode 100644 index 75da221aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/City.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class City extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'City'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'City'; - - protected $local_g2 = 'Location'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ClassifyState.php b/lib/PHPExiftool/Driver/Tag/IPTC/ClassifyState.php deleted file mode 100644 index b8127e5bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ClassifyState.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassifyState extends AbstractTag -{ - - protected $Id = 225; - - protected $Name = 'ClassifyState'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Classify State'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/CodedCharacterSet.php b/lib/PHPExiftool/Driver/Tag/IPTC/CodedCharacterSet.php deleted file mode 100644 index 43ee00e88..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/CodedCharacterSet.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodedCharacterSet extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'CodedCharacterSet'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Coded Character Set'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ColorCalibrationMatrix.php b/lib/PHPExiftool/Driver/Tag/IPTC/ColorCalibrationMatrix.php deleted file mode 100644 index 176f501cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ColorCalibrationMatrix.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCalibrationMatrix extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'ColorCalibrationMatrix'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Color Calibration Matrix'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ColorPalette.php b/lib/PHPExiftool/Driver/Tag/IPTC/ColorPalette.php deleted file mode 100644 index 9a7fa6a2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ColorPalette.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorPalette extends AbstractTag -{ - - protected $Id = 85; - - protected $Name = 'ColorPalette'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Color Palette'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ColorRepresentation.php b/lib/PHPExiftool/Driver/Tag/IPTC/ColorRepresentation.php deleted file mode 100644 index da167fbee..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ColorRepresentation.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorRepresentation extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'ColorRepresentation'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Representation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Image, Single Frame', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Monochrome, Single Frame', - ), - 768 => array( - 'Id' => 768, - 'Label' => '3 Components, Single Frame', - ), - 769 => array( - 'Id' => 769, - 'Label' => '3 Components, Frame Sequential in Multiple Objects', - ), - 770 => array( - 'Id' => 770, - 'Label' => '3 Components, Frame Sequential in One Object', - ), - 771 => array( - 'Id' => 771, - 'Label' => '3 Components, Line Sequential', - ), - 772 => array( - 'Id' => 772, - 'Label' => '3 Components, Pixel Sequential', - ), - 773 => array( - 'Id' => 773, - 'Label' => '3 Components, Special Interleaving', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => '4 Components, Single Frame', - ), - 1025 => array( - 'Id' => 1025, - 'Label' => '4 Components, Frame Sequential in Multiple Objects', - ), - 1026 => array( - 'Id' => 1026, - 'Label' => '4 Components, Frame Sequential in One Object', - ), - 1027 => array( - 'Id' => 1027, - 'Label' => '4 Components, Line Sequential', - ), - 1028 => array( - 'Id' => 1028, - 'Label' => '4 Components, Pixel Sequential', - ), - 1029 => array( - 'Id' => 1029, - 'Label' => '4 Components, Special Interleaving', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ColorSequence.php b/lib/PHPExiftool/Driver/Tag/IPTC/ColorSequence.php deleted file mode 100644 index 9a4504c76..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ColorSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSequence extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'ColorSequence'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ConfirmedObjectSize.php b/lib/PHPExiftool/Driver/Tag/IPTC/ConfirmedObjectSize.php deleted file mode 100644 index 3a9e10355..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ConfirmedObjectSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConfirmedObjectSize extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ConfirmedObjectSize'; - - protected $FullName = 'IPTC::PostObjectData'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Confirmed Object Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Contact.php b/lib/PHPExiftool/Driver/Tag/IPTC/Contact.php deleted file mode 100644 index 3f787b075..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Contact.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contact extends AbstractTag -{ - - protected $Id = 118; - - protected $Name = 'Contact'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Contact'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $MaxLength = 128; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ContentLocationCode.php b/lib/PHPExiftool/Driver/Tag/IPTC/ContentLocationCode.php deleted file mode 100644 index 5d63e2328..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ContentLocationCode.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentLocationCode extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'ContentLocationCode'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Content Location Code'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ContentLocationName.php b/lib/PHPExiftool/Driver/Tag/IPTC/ContentLocationName.php deleted file mode 100644 index f68037120..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ContentLocationName.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentLocationName extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'ContentLocationName'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Content Location Name'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/CopyrightNotice.php b/lib/PHPExiftool/Driver/Tag/IPTC/CopyrightNotice.php deleted file mode 100644 index 65398df57..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/CopyrightNotice.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightNotice extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'CopyrightNotice'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright Notice'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 128; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/CountryPrimaryLocationCode.php b/lib/PHPExiftool/Driver/Tag/IPTC/CountryPrimaryLocationCode.php deleted file mode 100644 index a473995fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/CountryPrimaryLocationCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryPrimaryLocationCode extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'Country-PrimaryLocationCode'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Country-Primary Location Code'; - - protected $local_g2 = 'Location'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/CountryPrimaryLocationName.php b/lib/PHPExiftool/Driver/Tag/IPTC/CountryPrimaryLocationName.php deleted file mode 100644 index 1012a1712..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/CountryPrimaryLocationName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryPrimaryLocationName extends AbstractTag -{ - - protected $Id = 101; - - protected $Name = 'Country-PrimaryLocationName'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Country-Primary Location Name'; - - protected $local_g2 = 'Location'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Credit.php b/lib/PHPExiftool/Driver/Tag/IPTC/Credit.php deleted file mode 100644 index ed0920f39..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Credit.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Credit extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'Credit'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Credit'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/DataCompressionMethod.php b/lib/PHPExiftool/Driver/Tag/IPTC/DataCompressionMethod.php deleted file mode 100644 index 1be5943b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/DataCompressionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataCompressionMethod extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'DataCompressionMethod'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Data Compression Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/DateCreated.php b/lib/PHPExiftool/Driver/Tag/IPTC/DateCreated.php deleted file mode 100644 index 97b1f5e1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/DateCreated.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateCreated extends AbstractTag -{ - - protected $Id = 55; - - protected $Name = 'DateCreated'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Date Created'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/DateSent.php b/lib/PHPExiftool/Driver/Tag/IPTC/DateSent.php deleted file mode 100644 index 45c8c8cca..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/DateSent.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateSent extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'DateSent'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Date Sent'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Destination.php b/lib/PHPExiftool/Driver/Tag/IPTC/Destination.php deleted file mode 100644 index 94baaec57..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Destination.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Destination extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Destination'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Destination'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - - protected $MaxLength = 1024; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/DigitalCreationDate.php b/lib/PHPExiftool/Driver/Tag/IPTC/DigitalCreationDate.php deleted file mode 100644 index bc8425fb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/DigitalCreationDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalCreationDate extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'DigitalCreationDate'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Digital Creation Date'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/DigitalCreationTime.php b/lib/PHPExiftool/Driver/Tag/IPTC/DigitalCreationTime.php deleted file mode 100644 index a5aafc2d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/DigitalCreationTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalCreationTime extends AbstractTag -{ - - protected $Id = 63; - - protected $Name = 'DigitalCreationTime'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Digital Creation Time'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/DocumentHistory.php b/lib/PHPExiftool/Driver/Tag/IPTC/DocumentHistory.php deleted file mode 100644 index 0b5f15224..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/DocumentHistory.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentHistory extends AbstractTag -{ - - protected $Id = 231; - - protected $Name = 'DocumentHistory'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Document History'; - - protected $MaxLength = 256; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/DocumentNotes.php b/lib/PHPExiftool/Driver/Tag/IPTC/DocumentNotes.php deleted file mode 100644 index 21368ed59..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/DocumentNotes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentNotes extends AbstractTag -{ - - protected $Id = 230; - - protected $Name = 'DocumentNotes'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Document Notes'; - - protected $MaxLength = 1024; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/EditStatus.php b/lib/PHPExiftool/Driver/Tag/IPTC/EditStatus.php deleted file mode 100644 index d611d7717..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/EditStatus.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditStatus extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'EditStatus'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Edit Status'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/EditorialUpdate.php b/lib/PHPExiftool/Driver/Tag/IPTC/EditorialUpdate.php deleted file mode 100644 index 9546f4f1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/EditorialUpdate.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditorialUpdate extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'EditorialUpdate'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Editorial Update'; - - protected $MaxLength = 2; - - protected $Values = array( - 01 => array( - 'Id' => 01, - 'Label' => 'Additional language', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/EndPoints.php b/lib/PHPExiftool/Driver/Tag/IPTC/EndPoints.php deleted file mode 100644 index 288301f0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/EndPoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndPoints extends AbstractTag -{ - - protected $Id = 125; - - protected $Name = 'EndPoints'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'End Points'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopeNumber.php b/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopeNumber.php deleted file mode 100644 index 8a34418c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopeNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnvelopeNumber extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'EnvelopeNumber'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Envelope Number'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopePriority.php b/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopePriority.php deleted file mode 100644 index 4d51092e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopePriority.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnvelopePriority extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'EnvelopePriority'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Envelope Priority'; - - protected $MaxLength = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0 (reserved)', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 (most urgent)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 3, - ), - 4 => array( - 'Id' => 4, - 'Label' => 4, - ), - 5 => array( - 'Id' => 5, - 'Label' => '5 (normal urgency)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 6, - ), - 7 => array( - 'Id' => 7, - 'Label' => 7, - ), - 8 => array( - 'Id' => 8, - 'Label' => '8 (least urgent)', - ), - 9 => array( - 'Id' => 9, - 'Label' => '9 (user-defined priority)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopeRecordVersion.php b/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopeRecordVersion.php deleted file mode 100644 index e00dc4823..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/EnvelopeRecordVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnvelopeRecordVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'EnvelopeRecordVersion'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Envelope Record Version'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ExcursionTolerance.php b/lib/PHPExiftool/Driver/Tag/IPTC/ExcursionTolerance.php deleted file mode 100644 index 990b07b63..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ExcursionTolerance.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExcursionTolerance extends AbstractTag -{ - - protected $Id = 130; - - protected $Name = 'ExcursionTolerance'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Excursion Tolerance'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Allowed', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Allowed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ExifCameraInfo.php b/lib/PHPExiftool/Driver/Tag/IPTC/ExifCameraInfo.php deleted file mode 100644 index 5ccf4a397..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ExifCameraInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifCameraInfo extends AbstractTag -{ - - protected $Id = 232; - - protected $Name = 'ExifCameraInfo'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Exif Camera Info'; - - protected $MaxLength = 4096; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ExpirationDate.php b/lib/PHPExiftool/Driver/Tag/IPTC/ExpirationDate.php deleted file mode 100644 index 07bf967c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ExpirationDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpirationDate extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'ExpirationDate'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Expiration Date'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ExpirationTime.php b/lib/PHPExiftool/Driver/Tag/IPTC/ExpirationTime.php deleted file mode 100644 index f12c6cde8..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ExpirationTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpirationTime extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'ExpirationTime'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Expiration Time'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/FileFormat.php b/lib/PHPExiftool/Driver/Tag/IPTC/FileFormat.php deleted file mode 100644 index ae1de1c57..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/FileFormat.php +++ /dev/null @@ -1,168 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileFormat extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'FileFormat'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'File Format'; - - protected $local_g2 = 'Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No ObjectData', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'IPTC-NAA Digital Newsphoto Parameter Record', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'IPTC7901 Recommended Message Format', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tagged Image File Format (Adobe/Aldus Image data)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Illustrator (Adobe Graphics data)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'AppleSingle (Apple Computer Inc)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'NAA 89-3 (ANPA 1312)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'MacBinary II', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'IPTC Unstructured Character Oriented File Format (UCOFF)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'United Press International ANPA 1312 variant', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'United Press International Down-Load Message', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'JPEG File Interchange (JFIF)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Photo-CD Image-Pac (Eastman Kodak)', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Bit Mapped Graphics File [.BMP] (Microsoft)', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Digital Audio File [.WAV] (Microsoft & Creative Labs)', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Audio plus Moving Video [.AVI] (Microsoft)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'PC DOS/Windows Executable Files [.COM][.EXE]', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Compressed Binary File [.ZIP] (PKWare Inc)', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Audio Interchange File Format AIFF (Apple Computer Inc)', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'RIFF Wave (Microsoft Corporation)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Freehand (Macromedia/Aldus)', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Hypertext Markup Language [.HTML] (The Internet Society)', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'MPEG 2 Audio Layer 2 (Musicom), ISO/IEC', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'MPEG 2 Audio Layer 3, ISO/IEC', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Portable Document File [.PDF] Adobe', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'News Industry Text Format (NITF)', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Tape Archive [.TAR]', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Tidningarnas Telegrambyra NITF version (TTNITF DTD)', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Ritzaus Bureau NITF version (RBNITF DTD)', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Corel Draw [.CDR]', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/FileVersion.php b/lib/PHPExiftool/Driver/Tag/IPTC/FileVersion.php deleted file mode 100644 index bfdd70449..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/FileVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileVersion extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'FileVersion'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'File Version'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/FixtureIdentifier.php b/lib/PHPExiftool/Driver/Tag/IPTC/FixtureIdentifier.php deleted file mode 100644 index 44bae4c6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/FixtureIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixtureIdentifier extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'FixtureIdentifier'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Fixture Identifier'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/GammaCompensatedValue.php b/lib/PHPExiftool/Driver/Tag/IPTC/GammaCompensatedValue.php deleted file mode 100644 index eaf2337eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/GammaCompensatedValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GammaCompensatedValue extends AbstractTag -{ - - protected $Id = 145; - - protected $Name = 'GammaCompensatedValue'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Gamma Compensated Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Headline.php b/lib/PHPExiftool/Driver/Tag/IPTC/Headline.php deleted file mode 100644 index 3002be2c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Headline.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Headline extends AbstractTag -{ - - protected $Id = 105; - - protected $Name = 'Headline'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Headline'; - - protected $MaxLength = 256; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ICCProfile.php b/lib/PHPExiftool/Driver/Tag/IPTC/ICCProfile.php deleted file mode 100644 index 935b73b1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ICCProfile.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ICCProfile extends AbstractTag -{ - - protected $Id = 66; - - protected $Name = 'ICC_Profile'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'ICC Profile'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTC.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTC.php deleted file mode 100644 index 419ab9eb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTC.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTC extends AbstractTag -{ - - protected $Id = 'IPTC'; - - protected $Name = 'IPTC'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'IPTC'; - - protected $local_g0 = 'IPTC'; - - protected $local_g1 = 'IPTC'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCBitsPerSample.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTCBitsPerSample.php deleted file mode 100644 index 922884c19..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCBitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCBitsPerSample extends AbstractTag -{ - - protected $Id = 86; - - protected $Name = 'IPTCBitsPerSample'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'IPTC Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageHeight.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageHeight.php deleted file mode 100644 index 5c9111834..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCImageHeight extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'IPTCImageHeight'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'IPTC Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageRotation.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageRotation.php deleted file mode 100644 index cd9af440d..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageRotation.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCImageRotation extends AbstractTag -{ - - protected $Id = 102; - - protected $Name = 'IPTCImageRotation'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'IPTC Image Rotation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 0, - ), - 1 => array( - 'Id' => 1, - 'Label' => 90, - ), - 2 => array( - 'Id' => 2, - 'Label' => 180, - ), - 3 => array( - 'Id' => 3, - 'Label' => 270, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageWidth.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageWidth.php deleted file mode 100644 index 6ea5fc4a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCImageWidth extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'IPTCImageWidth'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'IPTC Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPictureNumber.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPictureNumber.php deleted file mode 100644 index b26f464e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPictureNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCPictureNumber extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'IPTCPictureNumber'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'IPTC Picture Number'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPixelHeight.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPixelHeight.php deleted file mode 100644 index 896d587e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPixelHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCPixelHeight extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'IPTCPixelHeight'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'IPTC Pixel Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPixelWidth.php b/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPixelWidth.php deleted file mode 100644 index 5c3c2736e..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/IPTCPixelWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCPixelWidth extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'IPTCPixelWidth'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'IPTC Pixel Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ImageOrientation.php b/lib/PHPExiftool/Driver/Tag/IPTC/ImageOrientation.php deleted file mode 100644 index 4aa939025..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ImageOrientation.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOrientation extends AbstractTag -{ - - protected $Id = 131; - - protected $Name = 'ImageOrientation'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Orientation'; - - protected $local_g2 = 'Image'; - - protected $MaxLength = 1; - - protected $Values = array( - 'L' => array( - 'Id' => 'L', - 'Label' => 'Landscape', - ), - 'P' => array( - 'Id' => 'P', - 'Label' => 'Portrait', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'Square', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ImageType.php b/lib/PHPExiftool/Driver/Tag/IPTC/ImageType.php deleted file mode 100644 index a22abb15a..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ImageType.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageType extends AbstractTag -{ - - protected $Id = 130; - - protected $Name = 'ImageType'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Type'; - - protected $local_g2 = 'Image'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/InterchangeColorSpace.php b/lib/PHPExiftool/Driver/Tag/IPTC/InterchangeColorSpace.php deleted file mode 100644 index d2f260144..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/InterchangeColorSpace.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterchangeColorSpace extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'InterchangeColorSpace'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Interchange Color Space'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'X,Y,Z CIE', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'RGB SMPTE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Y,U,V (K) (D65)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RGB Device Dependent', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'CMY (K) Device Dependent', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Lab (K) CIE', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'YCbCr', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'sRGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/JobID.php b/lib/PHPExiftool/Driver/Tag/IPTC/JobID.php deleted file mode 100644 index 473c7a151..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/JobID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobID extends AbstractTag -{ - - protected $Id = 184; - - protected $Name = 'JobID'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Job ID'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Keywords.php b/lib/PHPExiftool/Driver/Tag/IPTC/Keywords.php deleted file mode 100644 index 813b733d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Keywords.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'Keywords'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keywords'; - - protected $flag_List = true; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/LanguageIdentifier.php b/lib/PHPExiftool/Driver/Tag/IPTC/LanguageIdentifier.php deleted file mode 100644 index b95ee28f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/LanguageIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LanguageIdentifier extends AbstractTag -{ - - protected $Id = 135; - - protected $Name = 'LanguageIdentifier'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Language Identifier'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/LocalCaption.php b/lib/PHPExiftool/Driver/Tag/IPTC/LocalCaption.php deleted file mode 100644 index 42125b5e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/LocalCaption.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalCaption extends AbstractTag -{ - - protected $Id = 121; - - protected $Name = 'LocalCaption'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Local Caption'; - - protected $MaxLength = 256; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/LookupTable.php b/lib/PHPExiftool/Driver/Tag/IPTC/LookupTable.php deleted file mode 100644 index 78053f41c..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/LookupTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LookupTable extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'LookupTable'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Lookup Table'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/MasterDocumentID.php b/lib/PHPExiftool/Driver/Tag/IPTC/MasterDocumentID.php deleted file mode 100644 index 7326eb960..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/MasterDocumentID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MasterDocumentID extends AbstractTag -{ - - protected $Id = 185; - - protected $Name = 'MasterDocumentID'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Master Document ID'; - - protected $MaxLength = 256; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/MaxSubfileSize.php b/lib/PHPExiftool/Driver/Tag/IPTC/MaxSubfileSize.php deleted file mode 100644 index c452ee2ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/MaxSubfileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxSubfileSize extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'MaxSubfileSize'; - - protected $FullName = 'IPTC::PreObjectData'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Subfile Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/MaximumDensityRange.php b/lib/PHPExiftool/Driver/Tag/IPTC/MaximumDensityRange.php deleted file mode 100644 index fe5abbce9..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/MaximumDensityRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumDensityRange extends AbstractTag -{ - - protected $Id = 140; - - protected $Name = 'MaximumDensityRange'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Maximum Density Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/MaximumObjectSize.php b/lib/PHPExiftool/Driver/Tag/IPTC/MaximumObjectSize.php deleted file mode 100644 index a7074f842..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/MaximumObjectSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumObjectSize extends AbstractTag -{ - - protected $Id = 95; - - protected $Name = 'MaximumObjectSize'; - - protected $FullName = 'IPTC::PreObjectData'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Maximum Object Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/NewsPhotoVersion.php b/lib/PHPExiftool/Driver/Tag/IPTC/NewsPhotoVersion.php deleted file mode 100644 index dc4ffe5d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/NewsPhotoVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NewsPhotoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'NewsPhotoVersion'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'News Photo Version'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/NumIndexEntries.php b/lib/PHPExiftool/Driver/Tag/IPTC/NumIndexEntries.php deleted file mode 100644 index d78815553..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/NumIndexEntries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumIndexEntries extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'NumIndexEntries'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Num Index Entries'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectAttributeReference.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectAttributeReference.php deleted file mode 100644 index a12cd9944..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectAttributeReference.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectAttributeReference extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ObjectAttributeReference'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Object Attribute Reference'; - - protected $flag_List = true; - - protected $MaxLength = 68; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectCycle.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectCycle.php deleted file mode 100644 index 351882684..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectCycle.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectCycle extends AbstractTag -{ - - protected $Id = 75; - - protected $Name = 'ObjectCycle'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Object Cycle'; - - protected $MaxLength = 1; - - protected $Values = array( - 'a' => array( - 'Id' => 'a', - 'Label' => 'Morning', - ), - 'b' => array( - 'Id' => 'b', - 'Label' => 'Both Morning and Evening', - ), - 'p' => array( - 'Id' => 'p', - 'Label' => 'Evening', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectName.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectName.php deleted file mode 100644 index 528467fe5..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectName extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ObjectName'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Object Name'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewData.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewData.php deleted file mode 100644 index a1db5956b..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewData.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectPreviewData extends AbstractTag -{ - - protected $Id = 202; - - protected $Name = 'ObjectPreviewData'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Object Preview Data'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = true; - - protected $MaxLength = 256000; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewFileFormat.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewFileFormat.php deleted file mode 100644 index a6da46968..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewFileFormat.php +++ /dev/null @@ -1,168 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectPreviewFileFormat extends AbstractTag -{ - - protected $Id = 200; - - protected $Name = 'ObjectPreviewFileFormat'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Object Preview File Format'; - - protected $local_g2 = 'Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No ObjectData', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'IPTC-NAA Digital Newsphoto Parameter Record', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'IPTC7901 Recommended Message Format', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tagged Image File Format (Adobe/Aldus Image data)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Illustrator (Adobe Graphics data)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'AppleSingle (Apple Computer Inc)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'NAA 89-3 (ANPA 1312)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'MacBinary II', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'IPTC Unstructured Character Oriented File Format (UCOFF)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'United Press International ANPA 1312 variant', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'United Press International Down-Load Message', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'JPEG File Interchange (JFIF)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Photo-CD Image-Pac (Eastman Kodak)', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Bit Mapped Graphics File [.BMP] (Microsoft)', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Digital Audio File [.WAV] (Microsoft & Creative Labs)', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Audio plus Moving Video [.AVI] (Microsoft)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'PC DOS/Windows Executable Files [.COM][.EXE]', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Compressed Binary File [.ZIP] (PKWare Inc)', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Audio Interchange File Format AIFF (Apple Computer Inc)', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'RIFF Wave (Microsoft Corporation)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Freehand (Macromedia/Aldus)', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Hypertext Markup Language [.HTML] (The Internet Society)', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'MPEG 2 Audio Layer 2 (Musicom), ISO/IEC', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'MPEG 2 Audio Layer 3, ISO/IEC', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Portable Document File [.PDF] Adobe', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'News Industry Text Format (NITF)', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Tape Archive [.TAR]', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Tidningarnas Telegrambyra NITF version (TTNITF DTD)', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Ritzaus Bureau NITF version (RBNITF DTD)', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Corel Draw [.CDR]', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewFileVersion.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewFileVersion.php deleted file mode 100644 index 1816c79a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectPreviewFileVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectPreviewFileVersion extends AbstractTag -{ - - protected $Id = 201; - - protected $Name = 'ObjectPreviewFileVersion'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Object Preview File Version'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectSizeAnnounced.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectSizeAnnounced.php deleted file mode 100644 index a4bcc78f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectSizeAnnounced.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectSizeAnnounced extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'ObjectSizeAnnounced'; - - protected $FullName = 'IPTC::PreObjectData'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Object Size Announced'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectTypeReference.php b/lib/PHPExiftool/Driver/Tag/IPTC/ObjectTypeReference.php deleted file mode 100644 index 0a40d3940..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ObjectTypeReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectTypeReference extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ObjectTypeReference'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Object Type Reference'; - - protected $MaxLength = 67; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/OriginalTransmissionReference.php b/lib/PHPExiftool/Driver/Tag/IPTC/OriginalTransmissionReference.php deleted file mode 100644 index d41bb0265..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/OriginalTransmissionReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalTransmissionReference extends AbstractTag -{ - - protected $Id = 103; - - protected $Name = 'OriginalTransmissionReference'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original Transmission Reference'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/OriginatingProgram.php b/lib/PHPExiftool/Driver/Tag/IPTC/OriginatingProgram.php deleted file mode 100644 index 01fc20982..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/OriginatingProgram.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginatingProgram extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'OriginatingProgram'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Originating Program'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/OwnerID.php b/lib/PHPExiftool/Driver/Tag/IPTC/OwnerID.php deleted file mode 100644 index 331dd048a..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/OwnerID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerID extends AbstractTag -{ - - protected $Id = 188; - - protected $Name = 'OwnerID'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner ID'; - - protected $MaxLength = 128; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Prefs.php b/lib/PHPExiftool/Driver/Tag/IPTC/Prefs.php deleted file mode 100644 index 01671e22d..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Prefs.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Prefs extends AbstractTag -{ - - protected $Id = 221; - - protected $Name = 'Prefs'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Prefs'; - - protected $local_g2 = 'Image'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ProductID.php b/lib/PHPExiftool/Driver/Tag/IPTC/ProductID.php deleted file mode 100644 index 55f32f481..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ProductID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductID extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'ProductID'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Product ID'; - - protected $flag_List = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ProgramVersion.php b/lib/PHPExiftool/Driver/Tag/IPTC/ProgramVersion.php deleted file mode 100644 index 0376d6ca1..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ProgramVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramVersion extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'ProgramVersion'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Program Version'; - - protected $MaxLength = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ProvinceState.php b/lib/PHPExiftool/Driver/Tag/IPTC/ProvinceState.php deleted file mode 100644 index e5f6106d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ProvinceState.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProvinceState extends AbstractTag -{ - - protected $Id = 95; - - protected $Name = 'Province-State'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Province-State'; - - protected $local_g2 = 'Location'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/QuantizationMethod.php b/lib/PHPExiftool/Driver/Tag/IPTC/QuantizationMethod.php deleted file mode 100644 index cdbcccc05..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/QuantizationMethod.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuantizationMethod extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'QuantizationMethod'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Quantization Method'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Linear Reflectance/Transmittance', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Linear Density', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'IPTC Ref B', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Linear Dot Percent', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'AP Domestic Analogue', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Compression Method Specific', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Color Space Specific', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Gamma Compensated', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/RasterizedCaption.php b/lib/PHPExiftool/Driver/Tag/IPTC/RasterizedCaption.php deleted file mode 100644 index a2295c285..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/RasterizedCaption.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RasterizedCaption extends AbstractTag -{ - - protected $Id = 125; - - protected $Name = 'RasterizedCaption'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Rasterized Caption'; - - protected $flag_Binary = true; - - protected $MaxLength = 7360; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceDate.php b/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceDate.php deleted file mode 100644 index 5a8ef20f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceDate.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceDate extends AbstractTag -{ - - protected $Id = 47; - - protected $Name = 'ReferenceDate'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Reference Date'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceNumber.php b/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceNumber.php deleted file mode 100644 index 522442173..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceNumber extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'ReferenceNumber'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Reference Number'; - - protected $flag_List = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceService.php b/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceService.php deleted file mode 100644 index a660ab9e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ReferenceService.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceService extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'ReferenceService'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reference Service'; - - protected $flag_List = true; - - protected $MaxLength = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ReleaseDate.php b/lib/PHPExiftool/Driver/Tag/IPTC/ReleaseDate.php deleted file mode 100644 index d2cae1c2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ReleaseDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDate extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'ReleaseDate'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Release Date'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ReleaseTime.php b/lib/PHPExiftool/Driver/Tag/IPTC/ReleaseTime.php deleted file mode 100644 index e1dbc2789..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ReleaseTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseTime extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'ReleaseTime'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Release Time'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SampleStructure.php b/lib/PHPExiftool/Driver/Tag/IPTC/SampleStructure.php deleted file mode 100644 index c1f112cc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SampleStructure.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleStructure extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'SampleStructure'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sample Structure'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'OrthogonalConstangSampling', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Orthogonal4-2-2Sampling', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'CompressionDependent', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ScanningDirection.php b/lib/PHPExiftool/Driver/Tag/IPTC/ScanningDirection.php deleted file mode 100644 index 21dde7939..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ScanningDirection.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanningDirection extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'ScanningDirection'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Scanning Direction'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'L-R, Top-Bottom', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'R-L, Top-Bottom', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'L-R, Bottom-Top', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'R-L, Bottom-Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Top-Bottom, L-R', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Bottom-Top, L-R', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Top-Bottom, R-L', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Bottom-Top, R-L', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ServiceIdentifier.php b/lib/PHPExiftool/Driver/Tag/IPTC/ServiceIdentifier.php deleted file mode 100644 index 50809bcc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ServiceIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ServiceIdentifier extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'ServiceIdentifier'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Service Identifier'; - - protected $MaxLength = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/ShortDocumentID.php b/lib/PHPExiftool/Driver/Tag/IPTC/ShortDocumentID.php deleted file mode 100644 index dfa4c5399..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/ShortDocumentID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShortDocumentID extends AbstractTag -{ - - protected $Id = 186; - - protected $Name = 'ShortDocumentID'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Short Document ID'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SimilarityIndex.php b/lib/PHPExiftool/Driver/Tag/IPTC/SimilarityIndex.php deleted file mode 100644 index c8aedfc9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SimilarityIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SimilarityIndex extends AbstractTag -{ - - protected $Id = 228; - - protected $Name = 'SimilarityIndex'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Similarity Index'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SizeMode.php b/lib/PHPExiftool/Driver/Tag/IPTC/SizeMode.php deleted file mode 100644 index 658aa229b..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SizeMode.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SizeMode extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'SizeMode'; - - protected $FullName = 'IPTC::PreObjectData'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Size Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Size Not Known', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Size Known', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Source.php b/lib/PHPExiftool/Driver/Tag/IPTC/Source.php deleted file mode 100644 index 3b36b178a..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Source.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 115; - - protected $Name = 'Source'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Source'; - - protected $local_g2 = 'Author'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SpecialInstructions.php b/lib/PHPExiftool/Driver/Tag/IPTC/SpecialInstructions.php deleted file mode 100644 index a2a880805..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SpecialInstructions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialInstructions extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'SpecialInstructions'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Special Instructions'; - - protected $MaxLength = 256; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SubFile.php b/lib/PHPExiftool/Driver/Tag/IPTC/SubFile.php deleted file mode 100644 index e8fdc6eca..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SubFile.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubFile extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'SubFile'; - - protected $FullName = 'IPTC::ObjectData'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub File'; - - protected $flag_Binary = true; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SubLocation.php b/lib/PHPExiftool/Driver/Tag/IPTC/SubLocation.php deleted file mode 100644 index fb83ae6d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SubLocation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubLocation extends AbstractTag -{ - - protected $Id = 92; - - protected $Name = 'Sub-location'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sub-location'; - - protected $local_g2 = 'Location'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SubjectReference.php b/lib/PHPExiftool/Driver/Tag/IPTC/SubjectReference.php deleted file mode 100644 index a3106e645..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SubjectReference.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectReference extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'SubjectReference'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subject Reference'; - - protected $flag_List = true; - - protected $MaxLength = 236; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SupplementalCategories.php b/lib/PHPExiftool/Driver/Tag/IPTC/SupplementalCategories.php deleted file mode 100644 index cee01875b..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SupplementalCategories.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplementalCategories extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'SupplementalCategories'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Supplemental Categories'; - - protected $flag_List = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/SupplementalType.php b/lib/PHPExiftool/Driver/Tag/IPTC/SupplementalType.php deleted file mode 100644 index 331b47e74..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/SupplementalType.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplementalType extends AbstractTag -{ - - protected $Id = 55; - - protected $Name = 'SupplementalType'; - - protected $FullName = 'IPTC::NewsPhoto'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Supplemental Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Main Image', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Reduced Resolution Image', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Logo', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rasterized Caption', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/TimeCreated.php b/lib/PHPExiftool/Driver/Tag/IPTC/TimeCreated.php deleted file mode 100644 index e04905a96..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/TimeCreated.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeCreated extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'TimeCreated'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time Created'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/TimeSent.php b/lib/PHPExiftool/Driver/Tag/IPTC/TimeSent.php deleted file mode 100644 index e9881e503..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/TimeSent.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSent extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'TimeSent'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time Sent'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/UniqueDocumentID.php b/lib/PHPExiftool/Driver/Tag/IPTC/UniqueDocumentID.php deleted file mode 100644 index bb7a6d7c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/UniqueDocumentID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniqueDocumentID extends AbstractTag -{ - - protected $Id = 187; - - protected $Name = 'UniqueDocumentID'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Unique Document ID'; - - protected $MaxLength = 128; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/UniqueObjectName.php b/lib/PHPExiftool/Driver/Tag/IPTC/UniqueObjectName.php deleted file mode 100644 index 1f46eee49..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/UniqueObjectName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniqueObjectName extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'UniqueObjectName'; - - protected $FullName = 'IPTC::EnvelopeRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Unique Object Name'; - - protected $MaxLength = 80; - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/Urgency.php b/lib/PHPExiftool/Driver/Tag/IPTC/Urgency.php deleted file mode 100644 index 18207761c..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/Urgency.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Urgency extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Urgency'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'digits'; - - protected $Writable = true; - - protected $Description = 'Urgency'; - - protected $MaxLength = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0 (reserved)', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 (most urgent)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 3, - ), - 4 => array( - 'Id' => 4, - 'Label' => 4, - ), - 5 => array( - 'Id' => 5, - 'Label' => '5 (normal urgency)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 6, - ), - 7 => array( - 'Id' => 7, - 'Label' => 7, - ), - 8 => array( - 'Id' => 8, - 'Label' => '8 (least urgent)', - ), - 9 => array( - 'Id' => 9, - 'Label' => '9 (user-defined priority)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/IPTC/WriterEditor.php b/lib/PHPExiftool/Driver/Tag/IPTC/WriterEditor.php deleted file mode 100644 index aebdf2388..000000000 --- a/lib/PHPExiftool/Driver/Tag/IPTC/WriterEditor.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\IPTC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WriterEditor extends AbstractTag -{ - - protected $Id = 122; - - protected $Name = 'Writer-Editor'; - - protected $FullName = 'IPTC::ApplicationRecord'; - - protected $GroupName = 'IPTC'; - - protected $g0 = 'IPTC'; - - protected $g1 = 'IPTC'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Writer-Editor'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/DataLocation.php b/lib/PHPExiftool/Driver/Tag/ITC/DataLocation.php deleted file mode 100644 index 931247bf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/DataLocation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataLocation extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'DataLocation'; - - protected $FullName = 'ITC::Item'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Data Location'; - - protected $MaxLength = 4; - - protected $Values = array( - 'down' => array( - 'Id' => 'down', - 'Label' => 'Downloaded Separately', - ), - 'locl' => array( - 'Id' => 'locl', - 'Label' => 'Local Music File', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/DataType.php b/lib/PHPExiftool/Driver/Tag/ITC/DataType.php deleted file mode 100644 index 0d7253b61..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/DataType.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataType extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'DataType'; - - protected $FullName = 'ITC::Header'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Data Type'; - - protected $MaxLength = 4; - - protected $Values = array( - 'artw' => array( - 'Id' => 'artw', - 'Label' => 'Artwork', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/ImageData.php b/lib/PHPExiftool/Driver/Tag/ITC/ImageData.php deleted file mode 100644 index 406255a18..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/ImageData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageData extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'ImageData'; - - protected $FullName = 'ITC::Main'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/ITC/ImageHeight.php deleted file mode 100644 index 5c8da4fd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'ITC::Item'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/ImageType.php b/lib/PHPExiftool/Driver/Tag/ITC/ImageType.php deleted file mode 100644 index c27d2c666..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/ImageType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageType extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ImageType'; - - protected $FullName = 'ITC::Item'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Image Type'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/ITC/ImageWidth.php deleted file mode 100644 index 583bdee2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'ITC::Item'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/LibraryID.php b/lib/PHPExiftool/Driver/Tag/ITC/LibraryID.php deleted file mode 100644 index 2a03e2456..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/LibraryID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LibraryID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'LibraryID'; - - protected $FullName = 'ITC::Item'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Library ID'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ITC/TrackID.php b/lib/PHPExiftool/Driver/Tag/ITC/TrackID.php deleted file mode 100644 index 64930d080..000000000 --- a/lib/PHPExiftool/Driver/Tag/ITC/TrackID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ITC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'TrackID'; - - protected $FullName = 'ITC::Item'; - - protected $GroupName = 'ITC'; - - protected $g0 = 'ITC'; - - protected $g1 = 'ITC'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Track ID'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/InteropIFD/InteropIndex.php b/lib/PHPExiftool/Driver/Tag/InteropIFD/InteropIndex.php deleted file mode 100644 index 6967300c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/InteropIFD/InteropIndex.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\InteropIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InteropIndex extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'InteropIndex'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'InteropIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Interoperability Index'; - - protected $local_g1 = 'InteropIFD'; - - protected $flag_Unsafe = true; - - protected $Values = array( - 'R03' => array( - 'Id' => 'R03', - 'Label' => 'R03 - DCF option file (Adobe RGB)', - ), - 'R98' => array( - 'Id' => 'R98', - 'Label' => 'R98 - DCF basic file (sRGB)', - ), - 'THM' => array( - 'Id' => 'THM', - 'Label' => 'THM - DCF thumbnail file', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/InteropIFD/InteropVersion.php b/lib/PHPExiftool/Driver/Tag/InteropIFD/InteropVersion.php deleted file mode 100644 index 958c645c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/InteropIFD/InteropVersion.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\InteropIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InteropVersion extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'InteropVersion'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'InteropIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Interoperability Version'; - - protected $local_g1 = 'InteropIFD'; - - protected $flag_Unsafe = true; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageFileFormat.php b/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageFileFormat.php deleted file mode 100644 index 2c80a95d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageFileFormat.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\InteropIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedImageFileFormat extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'RelatedImageFileFormat'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'InteropIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Image File Format'; - - protected $local_g1 = 'InteropIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageHeight.php b/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageHeight.php deleted file mode 100644 index ece6350cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageHeight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\InteropIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedImageHeight extends AbstractTag -{ - - protected $Id = 4098; - - protected $Name = 'RelatedImageHeight'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'InteropIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Related Image Height'; - - protected $local_g1 = 'InteropIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageWidth.php b/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageWidth.php deleted file mode 100644 index e03eaa648..000000000 --- a/lib/PHPExiftool/Driver/Tag/InteropIFD/RelatedImageWidth.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\InteropIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedImageWidth extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'RelatedImageWidth'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'InteropIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Related Image Width'; - - protected $local_g1 = 'InteropIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JFIF/JFIFVersion.php b/lib/PHPExiftool/Driver/Tag/JFIF/JFIFVersion.php deleted file mode 100644 index 3ce463cea..000000000 --- a/lib/PHPExiftool/Driver/Tag/JFIF/JFIFVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JFIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JFIFVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'JFIFVersion'; - - protected $FullName = 'JFIF::Main'; - - protected $GroupName = 'JFIF'; - - protected $g0 = 'JFIF'; - - protected $g1 = 'JFIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'JFIF Version'; - - protected $flag_Mandatory = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JFIF/ResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/JFIF/ResolutionUnit.php deleted file mode 100644 index 4378d8a5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/JFIF/ResolutionUnit.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JFIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResolutionUnit extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ResolutionUnit'; - - protected $FullName = 'JFIF::Main'; - - protected $GroupName = 'JFIF'; - - protected $g0 = 'JFIF'; - - protected $g1 = 'JFIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Resolution Unit'; - - protected $flag_Mandatory = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'inches', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/JFIF/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/JFIF/ThumbnailImage.php deleted file mode 100644 index 6870ad223..000000000 --- a/lib/PHPExiftool/Driver/Tag/JFIF/ThumbnailImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JFIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'JFIF::Extension'; - - protected $GroupName = 'JFIF'; - - protected $g0 = 'JFIF'; - - protected $g1 = 'JFIF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JFIF/XResolution.php b/lib/PHPExiftool/Driver/Tag/JFIF/XResolution.php deleted file mode 100644 index 85bedf9bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/JFIF/XResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JFIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'XResolution'; - - protected $FullName = 'JFIF::Main'; - - protected $GroupName = 'JFIF'; - - protected $g0 = 'JFIF'; - - protected $g1 = 'JFIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'X Resolution'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JFIF/YResolution.php b/lib/PHPExiftool/Driver/Tag/JFIF/YResolution.php deleted file mode 100644 index 5a2831ed0..000000000 --- a/lib/PHPExiftool/Driver/Tag/JFIF/YResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JFIF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'YResolution'; - - protected $FullName = 'JFIF::Main'; - - protected $GroupName = 'JFIF'; - - protected $g0 = 'JFIF'; - - protected $g1 = 'JFIF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Y Resolution'; - - protected $flag_Mandatory = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEG/Adobe.php b/lib/PHPExiftool/Driver/Tag/JPEG/Adobe.php deleted file mode 100644 index ee6a79af6..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEG/Adobe.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Adobe extends AbstractTag -{ - - protected $Id = 'APP14'; - - protected $Name = 'Adobe'; - - protected $FullName = 'JPEG::Main'; - - protected $GroupName = 'JPEG'; - - protected $g0 = 'JPEG'; - - protected $g1 = 'JPEG'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Adobe'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEG/Comment.php b/lib/PHPExiftool/Driver/Tag/JPEG/Comment.php deleted file mode 100644 index 0b6d81c5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEG/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Comment'; - - protected $FullName = 'JPEG::Main'; - - protected $GroupName = 'JPEG'; - - protected $g0 = 'JPEG'; - - protected $g1 = 'JPEG'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEG/DefineQuantizationTable.php b/lib/PHPExiftool/Driver/Tag/JPEG/DefineQuantizationTable.php deleted file mode 100644 index 2fda1933e..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEG/DefineQuantizationTable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefineQuantizationTable extends AbstractTag -{ - - protected $Id = 'DQT'; - - protected $Name = 'DefineQuantizationTable'; - - protected $FullName = 'JPEG::Main'; - - protected $GroupName = 'JPEG'; - - protected $g0 = 'JPEG'; - - protected $g1 = 'JPEG'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Define Quantization Table'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEG/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/JPEG/PreviewImage.php deleted file mode 100644 index 17d0ec573..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEG/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'JPEG::Main'; - - protected $GroupName = 'JPEG'; - - protected $g0 = 'JPEG'; - - protected $g1 = 'JPEG'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Alpha.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/Alpha.php deleted file mode 100644 index 9ef5c5340..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Alpha.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Alpha extends AbstractTag -{ - - protected $Id = 'alp'; - - protected $Name = 'Alpha'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alpha'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Beta.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/Beta.php deleted file mode 100644 index 81c12eb3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Beta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Beta extends AbstractTag -{ - - protected $Id = 'bet'; - - protected $Name = 'Beta'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Beta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/CorrectionMethod.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/CorrectionMethod.php deleted file mode 100644 index bf17a4844..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/CorrectionMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CorrectionMethod extends AbstractTag -{ - - protected $Id = 'cor'; - - protected $Name = 'CorrectionMethod'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Correction Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/JPEGHDRVersion.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/JPEGHDRVersion.php deleted file mode 100644 index df2c45d5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/JPEGHDRVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGHDRVersion extends AbstractTag -{ - - protected $Id = 'ver'; - - protected $Name = 'JPEG-HDRVersion'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG-HDR Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln0.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln0.php deleted file mode 100644 index da43759c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ln0 extends AbstractTag -{ - - protected $Id = 'ln0'; - - protected $Name = 'Ln0'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ln0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln1.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln1.php deleted file mode 100644 index ed1280c69..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ln1 extends AbstractTag -{ - - protected $Id = 'ln1'; - - protected $Name = 'Ln1'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ln1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/RatioImage.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/RatioImage.php deleted file mode 100644 index 716b255c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/RatioImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RatioImage extends AbstractTag -{ - - protected $Id = 'RatioImage'; - - protected $Name = 'RatioImage'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ratio Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JPEGHDR/S2n.php b/lib/PHPExiftool/Driver/Tag/JPEGHDR/S2n.php deleted file mode 100644 index 72e61eaca..000000000 --- a/lib/PHPExiftool/Driver/Tag/JPEGHDR/S2n.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JPEGHDR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class S2n extends AbstractTag -{ - - protected $Id = 's2n'; - - protected $Name = 'S2n'; - - protected $FullName = 'JPEG::HDR'; - - protected $GroupName = 'JPEG-HDR'; - - protected $g0 = 'APP11'; - - protected $g1 = 'JPEG-HDR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'S2n'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JVC/CPUVersions.php b/lib/PHPExiftool/Driver/Tag/JVC/CPUVersions.php deleted file mode 100644 index 98b3fc5ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/JVC/CPUVersions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JVC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CPUVersions extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CPUVersions'; - - protected $FullName = 'JVC::Main'; - - protected $GroupName = 'JVC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'JVC'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CPU Versions'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JVC/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/JVC/MakerNoteVersion.php deleted file mode 100644 index 978c373d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/JVC/MakerNoteVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JVC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 'VER'; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'JVC::Text'; - - protected $GroupName = 'JVC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'JVC'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/JVC/Quality.php b/lib/PHPExiftool/Driver/Tag/JVC/Quality.php deleted file mode 100644 index 76fb605c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/JVC/Quality.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\JVC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Quality'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'JVC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'JVC'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fine', - ), - 'FINE' => array( - 'Id' => 'FINE', - 'Label' => 'Fine', - ), - 'STD' => array( - 'Id' => 'STD', - 'Label' => 'Normal', - ), - 'STND' => array( - 'Id' => 'STND', - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Association.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Association.php deleted file mode 100644 index f492eb7ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Association.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Association extends AbstractTag -{ - - protected $Id = 'asoc'; - - protected $Name = 'Association'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Association'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/BinaryFilter.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/BinaryFilter.php deleted file mode 100644 index 09a16f685..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/BinaryFilter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BinaryFilter extends AbstractTag -{ - - protected $Id = 'bfil'; - - protected $Name = 'BinaryFilter'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Binary Filter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/BitsPerComponent.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/BitsPerComponent.php deleted file mode 100644 index d9e7e9498..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/BitsPerComponent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerComponent extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BitsPerComponent'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Bits Per Component'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureXResolution.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureXResolution.php deleted file mode 100644 index 7a57aeaed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureXResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureXResolution extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CaptureXResolution'; - - protected $FullName = 'Jpeg2000::CaptureResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'Capture X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureXResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureXResolutionUnit.php deleted file mode 100644 index 2236a5c3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureXResolutionUnit.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureXResolutionUnit extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'CaptureXResolutionUnit'; - - protected $FullName = 'Jpeg2000::CaptureResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Capture X Resolution Unit'; - - protected $Values = array( - '-3' => array( - 'Id' => '-3', - 'Label' => 'km', - ), - '-2' => array( - 'Id' => '-2', - 'Label' => '100 m', - ), - '-1' => array( - 'Id' => '-1', - 'Label' => '10 m', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'm', - ), - 1 => array( - 'Id' => 1, - 'Label' => '10 cm', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'mm', - ), - 4 => array( - 'Id' => 4, - 'Label' => '0.1 mm', - ), - 5 => array( - 'Id' => 5, - 'Label' => '0.01 mm', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'um', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureYResolution.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureYResolution.php deleted file mode 100644 index a68e11ec2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureYResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureYResolution extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CaptureYResolution'; - - protected $FullName = 'Jpeg2000::CaptureResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'Capture Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureYResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureYResolutionUnit.php deleted file mode 100644 index ff6e31df6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CaptureYResolutionUnit.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureYResolutionUnit extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'CaptureYResolutionUnit'; - - protected $FullName = 'Jpeg2000::CaptureResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Capture Y Resolution Unit'; - - protected $Values = array( - '-3' => array( - 'Id' => '-3', - 'Label' => 'km', - ), - '-2' => array( - 'Id' => '-2', - 'Label' => '100 m', - ), - '-1' => array( - 'Id' => '-1', - 'Label' => '10 m', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'm', - ), - 1 => array( - 'Id' => 1, - 'Label' => '10 cm', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'mm', - ), - 4 => array( - 'Id' => 4, - 'Label' => '0.1 mm', - ), - 5 => array( - 'Id' => 5, - 'Label' => '0.01 mm', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'um', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CodestreamRegistration.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CodestreamRegistration.php deleted file mode 100644 index 3938aa7d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CodestreamRegistration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodestreamRegistration extends AbstractTag -{ - - protected $Id = 'creg'; - - protected $Name = 'CodestreamRegistration'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codestream Registration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorGroup.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorGroup.php deleted file mode 100644 index e552b7392..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorGroup extends AbstractTag -{ - - protected $Id = 'cgrp'; - - protected $Name = 'ColorGroup'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpace.php deleted file mode 100644 index 0893bde3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpace.php +++ /dev/null @@ -1,124 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Jpeg2000::ColorSpec'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Color Space'; - - protected $Index = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bi-level', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'YCbCr(1)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'YCbCr(2)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'YCbCr(3)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'PhotoYCC', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'CMY', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'CMYK', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'YCCK', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'CIELab', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Bi-level(2)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'sRGB', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Grayscale', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'sYCC', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'CIEJab', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'e-sRGB', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'ROMM-RGB', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'YPbPr(1125/60)', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'YPbPr(1250/50)', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'e-sYCC', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecApproximation.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecApproximation.php deleted file mode 100644 index 9ce666cdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecApproximation.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpecApproximation extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ColorSpecApproximation'; - - protected $FullName = 'Jpeg2000::ColorSpec'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Color Spec Approximation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Specified', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Accurate', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Exceptional Quality', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Reasonable Quality', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Poor Quality', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecData.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecData.php deleted file mode 100644 index 2faf693c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpecData extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ColorSpecData'; - - protected $FullName = 'Jpeg2000::ColorSpec'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Color Spec Data'; - - protected $flag_Binary = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecMethod.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecMethod.php deleted file mode 100644 index bb0883ac0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecMethod.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpecMethod extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ColorSpecMethod'; - - protected $FullName = 'Jpeg2000::ColorSpec'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Color Spec Method'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Enumerated', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Restricted ICC', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Any ICC', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Vendor Color', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecPrecedence.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecPrecedence.php deleted file mode 100644 index 73c956462..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ColorSpecPrecedence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpecPrecedence extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ColorSpecPrecedence'; - - protected $FullName = 'Jpeg2000::ColorSpec'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Color Spec Precedence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CompatibleBrands.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CompatibleBrands.php deleted file mode 100644 index 22de8ff6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CompatibleBrands.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompatibleBrands extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CompatibleBrands'; - - protected $FullName = 'Jpeg2000::FileType'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Compatible Brands'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ComponentDefinition.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ComponentDefinition.php deleted file mode 100644 index 6e2de51f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ComponentDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentDefinition extends AbstractTag -{ - - protected $Id = 'cdef'; - - protected $Name = 'ComponentDefinition'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Component Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ComponentMapping.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ComponentMapping.php deleted file mode 100644 index 9a6488722..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ComponentMapping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentMapping extends AbstractTag -{ - - protected $Id = 'cmap'; - - protected $Name = 'ComponentMapping'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Component Mapping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Composition.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Composition.php deleted file mode 100644 index 379ab03c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Composition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composition extends AbstractTag -{ - - protected $Id = 'comp'; - - protected $Name = 'Composition'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CompositionOptions.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CompositionOptions.php deleted file mode 100644 index 9f6d6ca43..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CompositionOptions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionOptions extends AbstractTag -{ - - protected $Id = 'copt'; - - protected $Name = 'CompositionOptions'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composition Options'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Compression.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Compression.php deleted file mode 100644 index 2980a7b3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Compression.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Compression'; - - protected $FullName = 'Jpeg2000::ImageHeader'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Uncompressed', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Modified Huffman', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Modified READ', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Modified Modified READ', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'JBIG', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'JPEG', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'JPEG-LS', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'JPEG 2000', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'JBIG2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ContiguousCodestream.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ContiguousCodestream.php deleted file mode 100644 index cff67ae2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ContiguousCodestream.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContiguousCodestream extends AbstractTag -{ - - protected $Id = 'jp2c'; - - protected $Name = 'ContiguousCodestream'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contiguous Codestream'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CrossReference.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/CrossReference.php deleted file mode 100644 index fe1749f22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/CrossReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CrossReference extends AbstractTag -{ - - protected $Id = 'cref'; - - protected $Name = 'Cross-Reference'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cross-Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DataReference.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/DataReference.php deleted file mode 100644 index f92f2280c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DataReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataReference extends AbstractTag -{ - - protected $Id = 'dtbl'; - - protected $Name = 'DataReference'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DesiredReproductions.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/DesiredReproductions.php deleted file mode 100644 index 523d6661a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DesiredReproductions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DesiredReproductions extends AbstractTag -{ - - protected $Id = 'drep'; - - protected $Name = 'DesiredReproductions'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Desired Reproductions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DigitalSignature.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/DigitalSignature.php deleted file mode 100644 index adbac5d4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DigitalSignature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSignature extends AbstractTag -{ - - protected $Id = 'chck'; - - protected $Name = 'DigitalSignature'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Signature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayXResolution.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayXResolution.php deleted file mode 100644 index db9c51253..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayXResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayXResolution extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'DisplayXResolution'; - - protected $FullName = 'Jpeg2000::DisplayResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'Display X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayXResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayXResolutionUnit.php deleted file mode 100644 index e36387880..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayXResolutionUnit.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayXResolutionUnit extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'DisplayXResolutionUnit'; - - protected $FullName = 'Jpeg2000::DisplayResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Display X Resolution Unit'; - - protected $Values = array( - '-3' => array( - 'Id' => '-3', - 'Label' => 'km', - ), - '-2' => array( - 'Id' => '-2', - 'Label' => '100 m', - ), - '-1' => array( - 'Id' => '-1', - 'Label' => '10 m', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'm', - ), - 1 => array( - 'Id' => 1, - 'Label' => '10 cm', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'mm', - ), - 4 => array( - 'Id' => 4, - 'Label' => '0.1 mm', - ), - 5 => array( - 'Id' => 5, - 'Label' => '0.01 mm', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'um', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayYResolution.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayYResolution.php deleted file mode 100644 index 3ae7d9091..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayYResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayYResolution extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DisplayYResolution'; - - protected $FullName = 'Jpeg2000::DisplayResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'Display Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayYResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayYResolutionUnit.php deleted file mode 100644 index 55f5d01ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/DisplayYResolutionUnit.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayYResolutionUnit extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'DisplayYResolutionUnit'; - - protected $FullName = 'Jpeg2000::DisplayResolution'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Display Y Resolution Unit'; - - protected $Values = array( - '-3' => array( - 'Id' => '-3', - 'Label' => 'km', - ), - '-2' => array( - 'Id' => '-2', - 'Label' => '100 m', - ), - '-1' => array( - 'Id' => '-1', - 'Label' => '10 m', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'm', - ), - 1 => array( - 'Id' => 1, - 'Label' => '10 cm', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'mm', - ), - 4 => array( - 'Id' => 4, - 'Label' => '0.1 mm', - ), - 5 => array( - 'Id' => 5, - 'Label' => '0.01 mm', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'um', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/FragmentList.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/FragmentList.php deleted file mode 100644 index 83dc4ef30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/FragmentList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FragmentList extends AbstractTag -{ - - protected $Id = 'flst'; - - protected $Name = 'FragmentList'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fragment List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/FragmentTable.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/FragmentTable.php deleted file mode 100644 index 574b8ff43..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/FragmentTable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FragmentTable extends AbstractTag -{ - - protected $Id = 'ftbl'; - - protected $Name = 'FragmentTable'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fragment Table'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Free.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Free.php deleted file mode 100644 index 4ea6d64ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Free.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Free extends AbstractTag -{ - - protected $Id = 'free'; - - protected $Name = 'Free'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Free'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/GraphicsTechnologyStandardOutput.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/GraphicsTechnologyStandardOutput.php deleted file mode 100644 index 72f523965..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/GraphicsTechnologyStandardOutput.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicsTechnologyStandardOutput extends AbstractTag -{ - - protected $Id = 'gtso'; - - protected $Name = 'GraphicsTechnologyStandardOutput'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Graphics Technology Standard Output'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ImageHeight.php deleted file mode 100644 index 2c4793ce3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'Jpeg2000::ImageHeader'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ImageWidth.php deleted file mode 100644 index d62fcb1f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'Jpeg2000::ImageHeader'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/InstructionSet.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/InstructionSet.php deleted file mode 100644 index 15b9c43b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/InstructionSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstructionSet extends AbstractTag -{ - - protected $Id = 'inst'; - - protected $Name = 'InstructionSet'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Instruction Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/JP2Signature.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/JP2Signature.php deleted file mode 100644 index 0860e00ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/JP2Signature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JP2Signature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'JP2Signature'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JP2 Signature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Label.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Label.php deleted file mode 100644 index 1048e8f82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Label.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label extends AbstractTag -{ - - protected $Id = 'lbl '; - - protected $Name = 'Label'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MPEG7Binary.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/MPEG7Binary.php deleted file mode 100644 index 970508538..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MPEG7Binary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7Binary extends AbstractTag -{ - - protected $Id = 'mp7b'; - - protected $Name = 'MPEG7Binary'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Binary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MajorBrand.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/MajorBrand.php deleted file mode 100644 index 2556996dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MajorBrand.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MajorBrand extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MajorBrand'; - - protected $FullName = 'Jpeg2000::FileType'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Major Brand'; - - protected $MaxLength = 4; - - protected $Values = array( - 'jp2 ' => array( - 'Id' => 'jp2 ', - 'Label' => 'JPEG 2000 Image (.JP2)', - ), - 'jpm ' => array( - 'Id' => 'jpm ', - 'Label' => 'JPEG 2000 Compound Image (.JPM)', - ), - 'jpx ' => array( - 'Id' => 'jpx ', - 'Label' => 'JPEG 2000 with extensions (.JPX)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MediaData.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/MediaData.php deleted file mode 100644 index 2b4ec6b6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MediaData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaData extends AbstractTag -{ - - protected $Id = 'mdat'; - - protected $Name = 'MediaData'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MinorVersion.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/MinorVersion.php deleted file mode 100644 index c550fbf72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/MinorVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinorVersion extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MinorVersion'; - - protected $FullName = 'Jpeg2000::FileType'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Minor Version'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/NumberList.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/NumberList.php deleted file mode 100644 index 63f0d9bef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/NumberList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberList extends AbstractTag -{ - - protected $Id = 'nlst'; - - protected $Name = 'NumberList'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/NumberOfComponents.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/NumberOfComponents.php deleted file mode 100644 index 9ec2482f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/NumberOfComponents.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfComponents extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'NumberOfComponents'; - - protected $FullName = 'Jpeg2000::ImageHeader'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Number Of Components'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Opacity.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Opacity.php deleted file mode 100644 index 1897e1e50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Opacity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Opacity extends AbstractTag -{ - - protected $Id = 'opct'; - - protected $Name = 'Opacity'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Opacity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Palette.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Palette.php deleted file mode 100644 index 076991457..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Palette.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Palette extends AbstractTag -{ - - protected $Id = 'pclr'; - - protected $Name = 'Palette'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Palette'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Profile.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/Profile.php deleted file mode 100644 index b3894eaf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/Profile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Profile extends AbstractTag -{ - - protected $Id = 'prfl'; - - protected $Name = 'Profile'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ROIDescription.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ROIDescription.php deleted file mode 100644 index e327d3dde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ROIDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ROIDescription extends AbstractTag -{ - - protected $Id = 'roid'; - - protected $Name = 'ROIDescription'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ROI Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ReaderRequirements.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/ReaderRequirements.php deleted file mode 100644 index eb32ac5d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/ReaderRequirements.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReaderRequirements extends AbstractTag -{ - - protected $Id = 'rreq'; - - protected $Name = 'ReaderRequirements'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reader Requirements'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/URL.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/URL.php deleted file mode 100644 index 338870076..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'url '; - - protected $Name = 'URL'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/UUIDList.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/UUIDList.php deleted file mode 100644 index e16815c45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/UUIDList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UUIDList extends AbstractTag -{ - - protected $Id = 'ulst'; - - protected $Name = 'UUIDList'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UUID List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/UUIDUnknown.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/UUIDUnknown.php deleted file mode 100644 index 1651c2049..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/UUIDUnknown.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UUIDUnknown extends AbstractTag -{ - - protected $Id = 'uuid'; - - protected $Name = 'UUID-Unknown'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UUID-Unknown'; - - protected $Index = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Jpeg2000/XML.php b/lib/PHPExiftool/Driver/Tag/Jpeg2000/XML.php deleted file mode 100644 index f33f0b135..000000000 --- a/lib/PHPExiftool/Driver/Tag/Jpeg2000/XML.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Jpeg2000; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XML extends AbstractTag -{ - - protected $Id = 'xml '; - - protected $Name = 'XML'; - - protected $FullName = 'Jpeg2000::Main'; - - protected $GroupName = 'Jpeg2000'; - - protected $g0 = 'Jpeg2000'; - - protected $g1 = 'Jpeg2000'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'XML'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KDCIFD/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/KDCIFD/SerialNumber.php deleted file mode 100644 index a3f832183..000000000 --- a/lib/PHPExiftool/Driver/Tag/KDCIFD/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KDCIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 64000; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Kodak::KDC_IFD'; - - protected $GroupName = 'KDC_IFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KDC_IFD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsAuto.php b/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsAuto.php deleted file mode 100644 index 314ab9d05..000000000 --- a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsAuto.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KDCIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsAuto extends AbstractTag -{ - - protected $Id = 64037; - - protected $Name = 'WB_RGBLevelsAuto'; - - protected $FullName = 'Kodak::KDC_IFD'; - - protected $GroupName = 'KDC_IFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KDC_IFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Auto'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsDaylight.php deleted file mode 100644 index f689f2e05..000000000 --- a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsDaylight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KDCIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsDaylight extends AbstractTag -{ - - protected $Id = 64041; - - protected $Name = 'WB_RGBLevelsDaylight'; - - protected $FullName = 'Kodak::KDC_IFD'; - - protected $GroupName = 'KDC_IFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KDC_IFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Daylight'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsFluorescent.php b/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsFluorescent.php deleted file mode 100644 index 2a2342643..000000000 --- a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsFluorescent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KDCIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsFluorescent extends AbstractTag -{ - - protected $Id = 64040; - - protected $Name = 'WB_RGBLevelsFluorescent'; - - protected $FullName = 'Kodak::KDC_IFD'; - - protected $GroupName = 'KDC_IFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KDC_IFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Fluorescent'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsShade.php b/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsShade.php deleted file mode 100644 index 367c3199a..000000000 --- a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsShade.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KDCIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsShade extends AbstractTag -{ - - protected $Id = 64042; - - protected $Name = 'WB_RGBLevelsShade'; - - protected $FullName = 'Kodak::KDC_IFD'; - - protected $GroupName = 'KDC_IFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KDC_IFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Shade'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsTungsten.php deleted file mode 100644 index e25bfd496..000000000 --- a/lib/PHPExiftool/Driver/Tag/KDCIFD/WBRGBLevelsTungsten.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KDCIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsTungsten extends AbstractTag -{ - - protected $Id = 64039; - - protected $Name = 'WB_RGBLevelsTungsten'; - - protected $FullName = 'Kodak::KDC_IFD'; - - protected $GroupName = 'KDC_IFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KDC_IFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Tungsten'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KDCIFD/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/KDCIFD/WhiteBalance.php deleted file mode 100644 index 738f958d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/KDCIFD/WhiteBalance.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KDCIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 64013; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Kodak::KDC_IFD'; - - protected $GroupName = 'KDC_IFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KDC_IFD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fluorescent', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Tungsten', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Daylight', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Shade', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/AFMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/AFMode.php deleted file mode 100644 index ee6465e5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/AFMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMode extends AbstractTag -{ - - protected $Id = 'AF Function'; - - protected $Name = 'AFMode'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ActualCompensation.php b/lib/PHPExiftool/Driver/Tag/Kodak/ActualCompensation.php deleted file mode 100644 index 239ce7a77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ActualCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActualCompensation extends AbstractTag -{ - - protected $Id = 'Actual Compensation'; - - protected $Name = 'ActualCompensation'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actual Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Aperture.php b/lib/PHPExiftool/Driver/Tag/Kodak/Aperture.php deleted file mode 100644 index fb7ec7812..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Aperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Aperture extends AbstractTag -{ - - protected $Id = 'Aperture'; - - protected $Name = 'Aperture'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ApertureValue.php b/lib/PHPExiftool/Driver/Tag/Kodak/ApertureValue.php deleted file mode 100644 index a4712e881..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureValue extends AbstractTag -{ - - protected $Id = 'AprV'; - - protected $Name = 'ApertureValue'; - - protected $FullName = 'Kodak::Free'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/AutoBracket.php b/lib/PHPExiftool/Driver/Tag/Kodak/AutoBracket.php deleted file mode 100644 index 72d80a39c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/AutoBracket.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracket extends AbstractTag -{ - - protected $Id = 'Auto Bracket'; - - protected $Name = 'AutoBracket'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Bracket'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/BayerPattern.php b/lib/PHPExiftool/Driver/Tag/Kodak/BayerPattern.php deleted file mode 100644 index da2b2014c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/BayerPattern.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BayerPattern extends AbstractTag -{ - - protected $Id = 63746; - - protected $Name = 'BayerPattern'; - - protected $FullName = 'Kodak::CameraInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Bayer Pattern'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/Kodak/BrightnessValue.php deleted file mode 100644 index 49e633724..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/BrightnessValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Brightness Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/BurstMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/BurstMode.php deleted file mode 100644 index 6b04d31d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/BurstMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BurstMode extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'BurstMode'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Burst Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/BurstMode2.php b/lib/PHPExiftool/Driver/Tag/Kodak/BurstMode2.php deleted file mode 100644 index 16baccd92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/BurstMode2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BurstMode2 extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'BurstMode2'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Burst Mode 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/CameraBody.php b/lib/PHPExiftool/Driver/Tag/Kodak/CameraBody.php deleted file mode 100644 index 1b23dd68a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/CameraBody.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraBody extends AbstractTag -{ - - protected $Id = 'Camera body'; - - protected $Name = 'CameraBody'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Body'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/CameraByteOrder.php b/lib/PHPExiftool/Driver/Tag/Kodak/CameraByteOrder.php deleted file mode 100644 index ac0751022..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/CameraByteOrder.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraByteOrder extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraByteOrder'; - - protected $FullName = 'Kodak::DcMD'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Byte Order'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'II' => array( - 'Id' => 'II', - 'Label' => 'Little-endian (Intel, II)', - ), - 'MM' => array( - 'Id' => 'MM', - 'Label' => 'Big-endian (Motorola, MM)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/CameraModel.php b/lib/PHPExiftool/Driver/Tag/Kodak/CameraModel.php deleted file mode 100644 index 2d426e9b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/CameraModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraModel extends AbstractTag -{ - - protected $Id = 'Camera'; - - protected $Name = 'CameraModel'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/ColorMode.php deleted file mode 100644 index d9b19f131..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ColorMode.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 102; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'B&W', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Sepia', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'B&W Yellow Filter', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'B&W Red Filter', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Saturated Color', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Neutral Color', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Saturated Color', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Neutral Color', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'B&W', - ), - 16384 => array( - 'Id' => 16384, - 'Label' => 'Sepia', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Date.php b/lib/PHPExiftool/Driver/Tag/Kodak/Date.php deleted file mode 100644 index 88e8da675..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Date.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'Date'; - - protected $Name = 'Date'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Kodak/DateTimeOriginal.php deleted file mode 100644 index 21421c75c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/DateTimeOriginal.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Kodak::Type9'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/DateTimeStamp.php b/lib/PHPExiftool/Driver/Tag/Kodak/DateTimeStamp.php deleted file mode 100644 index d6c5249ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/DateTimeStamp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeStamp extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'DateTimeStamp'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Date Time Stamp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Kodak/DigitalZoom.php deleted file mode 100644 index 2f74a8b33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/DigitalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Distance1.php b/lib/PHPExiftool/Driver/Tag/Kodak/Distance1.php deleted file mode 100644 index 63dbce4ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Distance1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Distance1 extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'Distance1'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Distance 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Distance2.php b/lib/PHPExiftool/Driver/Tag/Kodak/Distance2.php deleted file mode 100644 index dba77f5ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Distance2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Distance2 extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'Distance2'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Distance 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Distance3.php b/lib/PHPExiftool/Driver/Tag/Kodak/Distance3.php deleted file mode 100644 index 522477627..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Distance3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Distance3 extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'Distance3'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Distance 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Distance4.php b/lib/PHPExiftool/Driver/Tag/Kodak/Distance4.php deleted file mode 100644 index fc9a2a9df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Distance4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Distance4 extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'Distance4'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Distance 4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureBias.php b/lib/PHPExiftool/Driver/Tag/Kodak/ExposureBias.php deleted file mode 100644 index 532ab0c9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureBias.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureBias extends AbstractTag -{ - - protected $Id = 'Exposure Bias'; - - protected $Name = 'ExposureBias'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Bias'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Kodak/ExposureCompensation.php deleted file mode 100644 index ab2120325..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/ExposureMode.php deleted file mode 100644 index eae7f5b39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 'Exposure Mode'; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'A' => array( - 'Id' => 'A', - 'Label' => 'Aperture Priority', - ), - 'B' => array( - 'Id' => 'B', - 'Label' => 'Bulb', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'Manual', - ), - 'P' => array( - 'Id' => 'P', - 'Label' => 'Program', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'Shutter Priority', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Kodak/ExposureTime.php deleted file mode 100644 index 27362922b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FNumber.php b/lib/PHPExiftool/Driver/Tag/Kodak/FNumber.php deleted file mode 100644 index 46d798242..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Kodak/FirmwareVersion.php deleted file mode 100644 index f44333773..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FirmwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Flash.php b/lib/PHPExiftool/Driver/Tag/Kodak/Flash.php deleted file mode 100644 index febcce8bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Flash.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'Flash'; - - protected $FullName = 'Kodak::Type6'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Kodak/FlashExposureComp.php deleted file mode 100644 index 09fb3549d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 'Flash Compensation'; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Exposure Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FlashFired.php b/lib/PHPExiftool/Driver/Tag/Kodak/FlashFired.php deleted file mode 100644 index c15b29c04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FlashFired.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFired extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashFired'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Flash Fired'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/FlashMode.php deleted file mode 100644 index c9884c72c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FlashMode.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fill Flash', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red-Eye', - ), - 4 => array( - 'Id' => 16, - 'Label' => 'Fill Flash', - ), - 5 => array( - 'Id' => 32, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 64, - 'Label' => 'Red-Eye?', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 10 => array( - 'Id' => 3, - 'Label' => 'Red-Eye', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FlashSyncMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/FlashSyncMode.php deleted file mode 100644 index f1bb22593..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FlashSyncMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashSyncMode extends AbstractTag -{ - - protected $Id = 'Flash Sync Mode'; - - protected $Name = 'FlashSyncMode'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Sync Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Kodak/FocalLength.php deleted file mode 100644 index 07274a748..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FocalLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FocalLengthIn35mmFormat.php b/lib/PHPExiftool/Driver/Tag/Kodak/FocalLengthIn35mmFormat.php deleted file mode 100644 index 987c3258a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FocalLengthIn35mmFormat.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLengthIn35mmFormat extends AbstractTag -{ - - protected $Id = 'FL35'; - - protected $Name = 'FocalLengthIn35mmFormat'; - - protected $FullName = 'Kodak::Free'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Focal Length In 35mm Format'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/FocusMode.php deleted file mode 100644 index 399b038d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/FocusMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'FocusMode'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ISO.php b/lib/PHPExiftool/Driver/Tag/Kodak/ISO.php deleted file mode 100644 index e3d85619b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/Kodak/ISOSetting.php deleted file mode 100644 index 85159b25a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ISOSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ImageNumber.php b/lib/PHPExiftool/Driver/Tag/Kodak/ImageNumber.php deleted file mode 100644 index 31c86df75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ImageNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber extends AbstractTag -{ - - protected $Id = 'Image Number'; - - protected $Name = 'ImageNumber'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ImageRotated.php b/lib/PHPExiftool/Driver/Tag/Kodak/ImageRotated.php deleted file mode 100644 index c41aab9e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ImageRotated.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageRotated extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'ImageRotated'; - - protected $FullName = 'Kodak::Type5'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Rotated'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakImageHeight.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakImageHeight.php deleted file mode 100644 index d2689029d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'KodakImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Kodak Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakImageWidth.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakImageWidth.php deleted file mode 100644 index 5b36e2dc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'KodakImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Kodak Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakInfoType.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakInfoType.php deleted file mode 100644 index 4d7066ae4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakInfoType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakInfoType extends AbstractTag -{ - - protected $Id = 64000; - - protected $Name = 'KodakInfoType'; - - protected $FullName = 'Kodak::CameraInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Kodak Info Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakMake.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakMake.php deleted file mode 100644 index b5c7b7b79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakMake.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakMake extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'KodakMake'; - - protected $FullName = 'Kodak::Type11'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Make'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakMaker.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakMaker.php deleted file mode 100644 index cfeacdf13..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakMaker.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakMaker extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'KodakMaker'; - - protected $FullName = 'Kodak::Type2'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Kodak Maker'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakModel.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakModel.php deleted file mode 100644 index 2fd190674..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakModel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakModel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'KodakModel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Kodak Model'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2007.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2007.php deleted file mode 100644 index 89b8dd465..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2007.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x2007 extends AbstractTag -{ - - protected $Id = 8199; - - protected $Name = 'Kodak_SubIFD3_0x2007'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x2007'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2008.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2008.php deleted file mode 100644 index 01ae0812e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2008.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x2008 extends AbstractTag -{ - - protected $Id = 8200; - - protected $Name = 'Kodak_SubIFD3_0x2008'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x2008'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2009.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2009.php deleted file mode 100644 index 06ee70fc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x2009.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x2009 extends AbstractTag -{ - - protected $Id = 8201; - - protected $Name = 'Kodak_SubIFD3_0x2009'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x2009'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x200a.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x200a.php deleted file mode 100644 index 860875878..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x200a.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x200a extends AbstractTag -{ - - protected $Id = 8202; - - protected $Name = 'Kodak_SubIFD3_0x200a'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x200a'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x200b.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x200b.php deleted file mode 100644 index ad63a7ac6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x200b.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x200b extends AbstractTag -{ - - protected $Id = 8203; - - protected $Name = 'Kodak_SubIFD3_0x200b'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x200b'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3020.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3020.php deleted file mode 100644 index ac77a0ad9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3020.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x3020 extends AbstractTag -{ - - protected $Id = 12320; - - protected $Name = 'Kodak_SubIFD3_0x3020'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x3020'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3030.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3030.php deleted file mode 100644 index 3e3a5c7cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3030.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x3030 extends AbstractTag -{ - - protected $Id = 12336; - - protected $Name = 'Kodak_SubIFD3_0x3030'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x3030'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3040.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3040.php deleted file mode 100644 index a1a01e742..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3040.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x3040 extends AbstractTag -{ - - protected $Id = 12352; - - protected $Name = 'Kodak_SubIFD3_0x3040'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x3040'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3050.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3050.php deleted file mode 100644 index 4dce7f95a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3050.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x3050 extends AbstractTag -{ - - protected $Id = 12368; - - protected $Name = 'Kodak_SubIFD3_0x3050'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x3050'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3060.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3060.php deleted file mode 100644 index eeb6b9c77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x3060.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x3060 extends AbstractTag -{ - - protected $Id = 12384; - - protected $Name = 'Kodak_SubIFD3_0x3060'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x3060'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8001.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8001.php deleted file mode 100644 index 017b9a573..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8001.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8001 extends AbstractTag -{ - - protected $Id = 32769; - - protected $Name = 'Kodak_SubIFD3_0x8001'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8001'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8002.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8002.php deleted file mode 100644 index b33458c78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8002.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8002 extends AbstractTag -{ - - protected $Id = 32770; - - protected $Name = 'Kodak_SubIFD3_0x8002'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8002'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8003.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8003.php deleted file mode 100644 index 30482fe7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8003.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8003 extends AbstractTag -{ - - protected $Id = 32771; - - protected $Name = 'Kodak_SubIFD3_0x8003'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8003'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8004.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8004.php deleted file mode 100644 index a8c2a3f0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8004.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8004 extends AbstractTag -{ - - protected $Id = 32772; - - protected $Name = 'Kodak_SubIFD3_0x8004'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8004'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8005.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8005.php deleted file mode 100644 index 3403e5a28..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8005.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8005 extends AbstractTag -{ - - protected $Id = 32773; - - protected $Name = 'Kodak_SubIFD3_0x8005'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8005'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8006.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8006.php deleted file mode 100644 index d9b4ea4f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8006.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8006 extends AbstractTag -{ - - protected $Id = 32774; - - protected $Name = 'Kodak_SubIFD3_0x8006'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8006'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8007.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8007.php deleted file mode 100644 index aded628af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8007.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8007 extends AbstractTag -{ - - protected $Id = 32775; - - protected $Name = 'Kodak_SubIFD3_0x8007'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8007'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8008.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8008.php deleted file mode 100644 index 91d369a00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8008.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8008 extends AbstractTag -{ - - protected $Id = 32776; - - protected $Name = 'Kodak_SubIFD3_0x8008'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8008'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8009.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8009.php deleted file mode 100644 index b0c41ba42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x8009.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x8009 extends AbstractTag -{ - - protected $Id = 32777; - - protected $Name = 'Kodak_SubIFD3_0x8009'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x8009'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800a.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800a.php deleted file mode 100644 index 51dc20b3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800a.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x800a extends AbstractTag -{ - - protected $Id = 32778; - - protected $Name = 'Kodak_SubIFD3_0x800a'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x800a'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800b.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800b.php deleted file mode 100644 index d2a1c5c42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800b.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x800b extends AbstractTag -{ - - protected $Id = 32779; - - protected $Name = 'Kodak_SubIFD3_0x800b'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x800b'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800c.php b/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800c.php deleted file mode 100644 index b3c989c41..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/KodakSubIFD30x800c.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KodakSubIFD30x800c extends AbstractTag -{ - - protected $Id = 32780; - - protected $Name = 'Kodak_SubIFD3_0x800c'; - - protected $FullName = 'Kodak::SubIFD3'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kodak Sub IFD3 0x800c'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/LensModel.php b/lib/PHPExiftool/Driver/Tag/Kodak/LensModel.php deleted file mode 100644 index 3690e1d40..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/LensModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 777; - - protected $Name = 'LensModel'; - - protected $FullName = 'Kodak::Type11'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Kodak/LensSerialNumber.php deleted file mode 100644 index 8b7a2564f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/LensSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 776; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'Kodak::Type11'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Macro.php b/lib/PHPExiftool/Driver/Tag/Kodak/Macro.php deleted file mode 100644 index 22354d8f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Macro.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Macro extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'Macro'; - - protected $FullName = 'Kodak::Type5'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Make.php b/lib/PHPExiftool/Driver/Tag/Kodak/Make.php deleted file mode 100644 index 6dfd78288..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'Kodak::MOV'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 21; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/Kodak/MaxAperture.php deleted file mode 100644 index ce32374f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/MeterMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/MeterMode.php deleted file mode 100644 index 87b44da42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/MeterMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterMode extends AbstractTag -{ - - protected $Id = 'Meter Mode'; - - protected $Name = 'MeterMode'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Meter Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/MeteringMode.php deleted file mode 100644 index 1976faf37..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/MeteringMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center-weighted average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/MinAperture.php b/lib/PHPExiftool/Driver/Tag/Kodak/MinAperture.php deleted file mode 100644 index b8fe94265..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/MinAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinAperture extends AbstractTag -{ - - protected $Id = 'Min Aperture'; - - protected $Name = 'MinAperture'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Min Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Model.php b/lib/PHPExiftool/Driver/Tag/Kodak/Model.php deleted file mode 100644 index 70541ced8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Model.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'Model'; - - protected $FullName = 'Kodak::MOV'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Model'; - - protected $flag_Permanent = true; - - protected $MaxLength = 42; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ModelType.php b/lib/PHPExiftool/Driver/Tag/Kodak/ModelType.php deleted file mode 100644 index 86c0e40ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ModelType.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelType extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'ModelType'; - - protected $FullName = 'Kodak::MOV'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Model Type'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/MonthDayCreated.php b/lib/PHPExiftool/Driver/Tag/Kodak/MonthDayCreated.php deleted file mode 100644 index 6da37e656..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/MonthDayCreated.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonthDayCreated extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MonthDayCreated'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Month Day Created'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/OpticalZoom.php b/lib/PHPExiftool/Driver/Tag/Kodak/OpticalZoom.php deleted file mode 100644 index c4dc42a9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/OpticalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalZoom extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OpticalZoom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Optical Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/OriginalFileName.php b/lib/PHPExiftool/Driver/Tag/Kodak/OriginalFileName.php deleted file mode 100644 index c9732cf7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/OriginalFileName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFileName extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'OriginalFileName'; - - protected $FullName = 'Kodak::Type4'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original File Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/OtherInfo.php b/lib/PHPExiftool/Driver/Tag/Kodak/OtherInfo.php deleted file mode 100644 index bf2e01e5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/OtherInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherInfo extends AbstractTag -{ - - protected $Id = '_other_info'; - - protected $Name = 'OtherInfo'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Info'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PanoramaMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/PanoramaMode.php deleted file mode 100644 index 3e30e775b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PanoramaMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaMode extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'PanoramaMode'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Panorama Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PictureEffect.php b/lib/PHPExiftool/Driver/Tag/Kodak/PictureEffect.php deleted file mode 100644 index 0d8eca5f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PictureEffect.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureEffect extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'PictureEffect'; - - protected $FullName = 'Kodak::Type11'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Monochrome', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Kodachrome', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PopupFlash.php b/lib/PHPExiftool/Driver/Tag/Kodak/PopupFlash.php deleted file mode 100644 index c8789df6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PopupFlash.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PopupFlash extends AbstractTag -{ - - protected $Id = 'Popup Flash'; - - protected $Name = 'PopupFlash'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Popup Flash'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImage.php deleted file mode 100644 index a363d6ab1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Kodak::Scrn'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageHeight.php b/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageHeight.php deleted file mode 100644 index c0bdc9a61..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageLength.php deleted file mode 100644 index b09f9d744..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Kodak::Scrn'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageSize.php b/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageSize.php deleted file mode 100644 index 752f493f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageSize extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewImageSize'; - - protected $FullName = 'Kodak::Type10'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageWidth.php b/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageWidth.php deleted file mode 100644 index eb77e9845..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/PreviewImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Quality.php b/lib/PHPExiftool/Driver/Tag/Kodak/Quality.php deleted file mode 100644 index 68b6decb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Quality.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'Quality'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Fine', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SceneMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/SceneMode.php deleted file mode 100644 index 2bc136caa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SceneMode.php +++ /dev/null @@ -1,140 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneMode extends AbstractTag -{ - - protected $Id = 64002; - - protected $Name = 'SceneMode'; - - protected $FullName = 'Kodak::SubIFD0'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Scene Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Sport', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Landscape', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Beach', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Night Portrait', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Night Landscape', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Snow', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Text', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Fireworks', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Macro', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Museum', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Children', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Program', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Aperture Priority', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Shutter Priority', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Manual', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Back Light', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Candlelight', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Sunset', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Panorama Left-right', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Panorama Right-left', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Smart Scene', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'High ISO', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SceneModeUsed.php b/lib/PHPExiftool/Driver/Tag/Kodak/SceneModeUsed.php deleted file mode 100644 index 04abfe3cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SceneModeUsed.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneModeUsed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SceneModeUsed'; - - protected $FullName = 'Kodak::SubIFD2'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Scene Mode Used'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Program', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Aperture Priority', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Shutter Priority', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Manual', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Portrait', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Sport', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Children', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Museum', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'High ISO', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Text', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Macro', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Back Light', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Landscape', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Night Landscape', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Night Portrait', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Snow', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Beach', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Fireworks', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Sunset', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Candlelight', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Panorama', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SensorFullHeight.php b/lib/PHPExiftool/Driver/Tag/Kodak/SensorFullHeight.php deleted file mode 100644 index 658fc2743..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SensorFullHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorFullHeight extends AbstractTag -{ - - protected $Id = 63748; - - protected $Name = 'SensorFullHeight'; - - protected $FullName = 'Kodak::CameraInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensor Full Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SensorFullWidth.php b/lib/PHPExiftool/Driver/Tag/Kodak/SensorFullWidth.php deleted file mode 100644 index 25074c13a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SensorFullWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorFullWidth extends AbstractTag -{ - - protected $Id = 63747; - - protected $Name = 'SensorFullWidth'; - - protected $FullName = 'Kodak::CameraInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensor Full Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SensorHeight.php b/lib/PHPExiftool/Driver/Tag/Kodak/SensorHeight.php deleted file mode 100644 index 0595a87c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SensorHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensorHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensor Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SensorWidth.php b/lib/PHPExiftool/Driver/Tag/Kodak/SensorWidth.php deleted file mode 100644 index de66f156f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SensorWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensorWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensor Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SequenceNumber.php b/lib/PHPExiftool/Driver/Tag/Kodak/SequenceNumber.php deleted file mode 100644 index 4f69a8233..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SequenceNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumber extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'SequenceNumber'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sequence Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Kodak/SerialNumber.php deleted file mode 100644 index e326356a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Kodak/Sharpness.php deleted file mode 100644 index 26e34431d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Sharpness.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ShootingMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/ShootingMode.php deleted file mode 100644 index 1b13c155e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ShootingMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingMode extends AbstractTag -{ - - protected $Id = 'Shooting Mode'; - - protected $Name = 'ShootingMode'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shooting Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ShutterMode.php b/lib/PHPExiftool/Driver/Tag/Kodak/ShutterMode.php deleted file mode 100644 index 7a5343c87..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ShutterMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterMode extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'ShutterMode'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shutter Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Aperture Priority', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Manual?', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ShutterSpeed.php b/lib/PHPExiftool/Driver/Tag/Kodak/ShutterSpeed.php deleted file mode 100644 index 6dd8f9d3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ShutterSpeed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeed extends AbstractTag -{ - - protected $Id = 'Shutter'; - - protected $Name = 'ShutterSpeed'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Speed'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ShutterSpeedValue.php b/lib/PHPExiftool/Driver/Tag/Kodak/ShutterSpeedValue.php deleted file mode 100644 index e5788804b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ShutterSpeedValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedValue extends AbstractTag -{ - - protected $Id = 'StSV'; - - protected $Name = 'ShutterSpeedValue'; - - protected $FullName = 'Kodak::Free'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Shutter Speed Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/SubjectDistance.php b/lib/PHPExiftool/Driver/Tag/Kodak/SubjectDistance.php deleted file mode 100644 index 091b9e552..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/SubjectDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistance extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'SubjectDistance'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Subject Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Temperature.php b/lib/PHPExiftool/Driver/Tag/Kodak/Temperature.php deleted file mode 100644 index 81190b181..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Temperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Temperature extends AbstractTag -{ - - protected $Id = 'Temperature'; - - protected $Name = 'Temperature'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ThumbnailHeight.php b/lib/PHPExiftool/Driver/Tag/Kodak/ThumbnailHeight.php deleted file mode 100644 index b40104e6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ThumbnailHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailHeight extends AbstractTag -{ - - protected $Id = 64085; - - protected $Name = 'ThumbnailHeight'; - - protected $FullName = 'Kodak::SubIFD0'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/ThumbnailWidth.php b/lib/PHPExiftool/Driver/Tag/Kodak/ThumbnailWidth.php deleted file mode 100644 index 7375c4622..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/ThumbnailWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailWidth extends AbstractTag -{ - - protected $Id = 64084; - - protected $Name = 'ThumbnailWidth'; - - protected $FullName = 'Kodak::SubIFD0'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/Time.php b/lib/PHPExiftool/Driver/Tag/Kodak/Time.php deleted file mode 100644 index 102024417..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/Time.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Time extends AbstractTag -{ - - protected $Id = 'Time'; - - protected $Name = 'Time'; - - protected $FullName = 'Kodak::TextualInfo'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/TimeCreated.php b/lib/PHPExiftool/Driver/Tag/Kodak/TimeCreated.php deleted file mode 100644 index 36f8759ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/TimeCreated.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeCreated extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TimeCreated'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Time Created'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/TotalZoom.php b/lib/PHPExiftool/Driver/Tag/Kodak/TotalZoom.php deleted file mode 100644 index efbeab785..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/TotalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalZoom extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'TotalZoom'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Total Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/UnknownNumber.php b/lib/PHPExiftool/Driver/Tag/Kodak/UnknownNumber.php deleted file mode 100644 index ffd702d3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/UnknownNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UnknownNumber'; - - protected $FullName = 'Kodak::Type9'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Unknown Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/VariousModes.php b/lib/PHPExiftool/Driver/Tag/Kodak/VariousModes.php deleted file mode 100644 index c7809cc31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/VariousModes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariousModes extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'VariousModes'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Various Modes'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/VariousModes2.php b/lib/PHPExiftool/Driver/Tag/Kodak/VariousModes2.php deleted file mode 100644 index 2b7069e80..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/VariousModes2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariousModes2 extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'VariousModes2'; - - protected $FullName = 'Kodak::Main'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Various Modes 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/WBRGBLevels.php b/lib/PHPExiftool/Driver/Tag/Kodak/WBRGBLevels.php deleted file mode 100644 index 363145df6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/WBRGBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'WB_RGBLevels'; - - protected $FullName = 'Kodak::Processing'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Kodak/WhiteBalance.php deleted file mode 100644 index ee990d21d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/WhiteBalance.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Flash?', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Tungsten', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Daylight', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'Flash', - ), - 6 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Kodak/YearCreated.php b/lib/PHPExiftool/Driver/Tag/Kodak/YearCreated.php deleted file mode 100644 index 243361074..000000000 --- a/lib/PHPExiftool/Driver/Tag/Kodak/YearCreated.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Kodak; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YearCreated extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'YearCreated'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Kodak'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Kodak'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Year Created'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderID.php b/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderID.php deleted file mode 100644 index 662c6c34a..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakBordersIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BorderID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'BorderID'; - - protected $FullName = 'Kodak::Borders'; - - protected $GroupName = 'KodakBordersIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakBordersIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Border ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderLocation.php b/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderLocation.php deleted file mode 100644 index aa1e495ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakBordersIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BorderLocation extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'BorderLocation'; - - protected $FullName = 'Kodak::Borders'; - - protected $GroupName = 'KodakBordersIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakBordersIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Border Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderName.php b/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderName.php deleted file mode 100644 index c87c1d757..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakBordersIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BorderName extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'BorderName'; - - protected $FullName = 'Kodak::Borders'; - - protected $GroupName = 'KodakBordersIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakBordersIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Border Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderType.php b/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderType.php deleted file mode 100644 index e99845816..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BorderType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakBordersIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BorderType extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'BorderType'; - - protected $FullName = 'Kodak::Borders'; - - protected $GroupName = 'KodakBordersIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakBordersIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Border Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BordersVersion.php b/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BordersVersion.php deleted file mode 100644 index 78b6bf7a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/BordersVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakBordersIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BordersVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'BordersVersion'; - - protected $FullName = 'Kodak::Borders'; - - protected $GroupName = 'KodakBordersIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakBordersIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Borders Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/WatermarkType.php b/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/WatermarkType.php deleted file mode 100644 index dfa26effb..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakBordersIFD/WatermarkType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakBordersIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WatermarkType extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'WatermarkType'; - - protected $FullName = 'Kodak::Borders'; - - protected $GroupName = 'KodakBordersIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakBordersIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Watermark Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsName.php b/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsName.php deleted file mode 100644 index a5745e540..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakEffectsIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalEffectsName extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'DigitalEffectsName'; - - protected $FullName = 'Kodak::SpecialEffects'; - - protected $GroupName = 'KodakEffectsIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakEffectsIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Effects Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsType.php b/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsType.php deleted file mode 100644 index d4ec9d17e..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakEffectsIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalEffectsType extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'DigitalEffectsType'; - - protected $FullName = 'Kodak::SpecialEffects'; - - protected $GroupName = 'KodakEffectsIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakEffectsIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Effects Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsVersion.php b/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsVersion.php deleted file mode 100644 index e577dba11..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakEffectsIFD/DigitalEffectsVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakEffectsIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalEffectsVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DigitalEffectsVersion'; - - protected $FullName = 'Kodak::SpecialEffects'; - - protected $GroupName = 'KodakEffectsIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'KodakEffectsIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Effects Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/ColorTemperature.php deleted file mode 100644 index 0d7fe6ee1..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 2118; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/ExposureValue.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/ExposureValue.php deleted file mode 100644 index ec54b96ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/ExposureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureValue extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ExposureValue'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Exposure Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/FirmwareVersion.php deleted file mode 100644 index d28f583f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/FirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 3301; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/ISO.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/ISO.php deleted file mode 100644 index 827fa64dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 6020; - - protected $Name = 'ISO'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/NCDFileInfo.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/NCDFileInfo.php deleted file mode 100644 index adcefa845..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/NCDFileInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NCDFileInfo extends AbstractTag -{ - - protected $Id = 1044; - - protected $Name = 'NCDFileInfo'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'NCD File Info'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/OriginalFileName.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/OriginalFileName.php deleted file mode 100644 index 63a47ea13..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/OriginalFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFileName extends AbstractTag -{ - - protected $Id = 1001; - - protected $Name = 'OriginalFileName'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original File Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorImageHeight.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorImageHeight.php deleted file mode 100644 index 60f94982f..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorImageHeight extends AbstractTag -{ - - protected $Id = 1006; - - protected $Name = 'SensorImageHeight'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorImageWidth.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorImageWidth.php deleted file mode 100644 index d080b0228..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorImageWidth extends AbstractTag -{ - - protected $Id = 1005; - - protected $Name = 'SensorImageWidth'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorLeftBorder.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorLeftBorder.php deleted file mode 100644 index 912765287..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorLeftBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorLeftBorder extends AbstractTag -{ - - protected $Id = 1003; - - protected $Name = 'SensorLeftBorder'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Left Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorTopBorder.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorTopBorder.php deleted file mode 100644 index c9c2d0991..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/SensorTopBorder.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTopBorder extends AbstractTag -{ - - protected $Id = 1004; - - protected $Name = 'SensorTopBorder'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Top Border'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/Time.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/Time.php deleted file mode 100644 index 9af85c35a..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/Time.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Time extends AbstractTag -{ - - protected $Id = 1025; - - protected $Name = 'Time'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/ToneCurveFileName.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/ToneCurveFileName.php deleted file mode 100644 index a6258dbe7..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/ToneCurveFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveFileName extends AbstractTag -{ - - protected $Id = 5009; - - protected $Name = 'ToneCurveFileName'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve File Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/UnknownEV.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/UnknownEV.php deleted file mode 100644 index f7ec5e4c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/UnknownEV.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownEV extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'UnknownEV'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Unknown EV'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs0.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs0.php deleted file mode 100644 index 530362068..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs0.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBCoeffs0 extends AbstractTag -{ - - protected $Id = 2140; - - protected $Name = 'WB_RGBCoeffs0'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Coeffs 0'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs1.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs1.php deleted file mode 100644 index 9f2615256..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBCoeffs1 extends AbstractTag -{ - - protected $Id = 2141; - - protected $Name = 'WB_RGBCoeffs1'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Coeffs 1'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs2.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs2.php deleted file mode 100644 index 87aa2d8e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBCoeffs2 extends AbstractTag -{ - - protected $Id = 2142; - - protected $Name = 'WB_RGBCoeffs2'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Coeffs 2'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs3.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs3.php deleted file mode 100644 index 15361ca49..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBCoeffs3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBCoeffs3 extends AbstractTag -{ - - protected $Id = 2143; - - protected $Name = 'WB_RGBCoeffs3'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Coeffs 3'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul0.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul0.php deleted file mode 100644 index cb1cdee2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBMul0 extends AbstractTag -{ - - protected $Id = 2130; - - protected $Name = 'WB_RGBMul0'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Mul 0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul1.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul1.php deleted file mode 100644 index 3fb66170b..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBMul1 extends AbstractTag -{ - - protected $Id = 2131; - - protected $Name = 'WB_RGBMul1'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Mul 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul2.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul2.php deleted file mode 100644 index 42bbf6280..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBMul2 extends AbstractTag -{ - - protected $Id = 2132; - - protected $Name = 'WB_RGBMul2'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Mul 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul3.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul3.php deleted file mode 100644 index ba6bba5af..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WBRGBMul3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBMul3 extends AbstractTag -{ - - protected $Id = 2133; - - protected $Name = 'WB_RGBMul3'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Mul 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KodakIFD/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/KodakIFD/WhiteBalance.php deleted file mode 100644 index a9dfe8812..000000000 --- a/lib/PHPExiftool/Driver/Tag/KodakIFD/WhiteBalance.php +++ /dev/null @@ -1,48 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KodakIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 1020; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Kodak::IFD'; - - protected $GroupName = 'KodakIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KodakIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/DateTimeOriginal.php deleted file mode 100644 index 6fd040784..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/DateTimeOriginal.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/ExposureTime.php deleted file mode 100644 index 0a16d3944..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/ExposureTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FNumber.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FNumber.php deleted file mode 100644 index b9be0bc25..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'FNumber'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FirmwareVersion.php deleted file mode 100644 index dcc2ba528..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FirmwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FocalLength.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FocalLength.php deleted file mode 100644 index 054974eb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'FocalLength'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/ISO.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/ISO.php deleted file mode 100644 index 2f3bdd227..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/ISO.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'ISO'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $Values = array( - 7 => array( - 'Id' => 7, - 'Label' => 25, - ), - 8 => array( - 'Id' => 8, - 'Label' => 32, - ), - 9 => array( - 'Id' => 9, - 'Label' => 40, - ), - 10 => array( - 'Id' => 10, - 'Label' => 50, - ), - 11 => array( - 'Id' => 11, - 'Label' => 64, - ), - 12 => array( - 'Id' => 12, - 'Label' => 80, - ), - 13 => array( - 'Id' => 13, - 'Label' => 100, - ), - 14 => array( - 'Id' => 14, - 'Label' => 125, - ), - 15 => array( - 'Id' => 15, - 'Label' => 160, - ), - 16 => array( - 'Id' => 16, - 'Label' => 200, - ), - 17 => array( - 'Id' => 17, - 'Label' => 250, - ), - 18 => array( - 'Id' => 18, - 'Label' => 320, - ), - 19 => array( - 'Id' => 19, - 'Label' => 400, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Lens.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Lens.php deleted file mode 100644 index 3cb93516f..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Lens.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lens extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'Lens'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Lens'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Make.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Make.php deleted file mode 100644 index 7798c9973..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'Make'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/MaxAperture.php deleted file mode 100644 index 112ad52db..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 104; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Model.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Model.php deleted file mode 100644 index 9a37d14c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/Model.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Model'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Model'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/WBRGGBLevels.php b/lib/PHPExiftool/Driver/Tag/KyoceraRaw/WBRGGBLevels.php deleted file mode 100644 index b287ba57e..000000000 --- a/lib/PHPExiftool/Driver/Tag/KyoceraRaw/WBRGGBLevels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\KyoceraRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevels extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'WB_RGGBLevels'; - - protected $FullName = 'KyoceraRaw::Main'; - - protected $GroupName = 'KyoceraRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'KyoceraRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'WB RGGB Levels'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/AccessDate.php b/lib/PHPExiftool/Driver/Tag/LNK/AccessDate.php deleted file mode 100644 index 89193b843..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/AccessDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccessDate extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'AccessDate'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Access Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/CodePage.php b/lib/PHPExiftool/Driver/Tag/LNK/CodePage.php deleted file mode 100644 index 624469142..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/CodePage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodePage extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'CodePage'; - - protected $FullName = 'LNK::ConsoleFEData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Code Page'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/CommandLineArguments.php b/lib/PHPExiftool/Driver/Tag/LNK/CommandLineArguments.php deleted file mode 100644 index 075a26e4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/CommandLineArguments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommandLineArguments extends AbstractTag -{ - - protected $Id = 196640; - - protected $Name = 'CommandLineArguments'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Command Line Arguments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/CommonNetworkRelLink.php b/lib/PHPExiftool/Driver/Tag/LNK/CommonNetworkRelLink.php deleted file mode 100644 index 35ea28645..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/CommonNetworkRelLink.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommonNetworkRelLink extends AbstractTag -{ - - protected $Id = 'CommonNetworkRelLink'; - - protected $Name = 'CommonNetworkRelLink'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Common Network Rel Link'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/CommonPathSuffix.php b/lib/PHPExiftool/Driver/Tag/LNK/CommonPathSuffix.php deleted file mode 100644 index 7d58b9842..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/CommonPathSuffix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommonPathSuffix extends AbstractTag -{ - - protected $Id = 'CommonPathSuffix'; - - protected $Name = 'CommonPathSuffix'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Common Path Suffix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/CreateDate.php b/lib/PHPExiftool/Driver/Tag/LNK/CreateDate.php deleted file mode 100644 index 45eae9ea0..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'CreateDate'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/CursorSize.php b/lib/PHPExiftool/Driver/Tag/LNK/CursorSize.php deleted file mode 100644 index 051bdbc36..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/CursorSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CursorSize extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'CursorSize'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Cursor Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/Description.php b/lib/PHPExiftool/Driver/Tag/LNK/Description.php deleted file mode 100644 index ca2d0849b..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 196612; - - protected $Name = 'Description'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/DeviceName.php b/lib/PHPExiftool/Driver/Tag/LNK/DeviceName.php deleted file mode 100644 index 391866a93..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/DeviceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceName extends AbstractTag -{ - - protected $Id = 'DeviceName'; - - protected $Name = 'DeviceName'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Device Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/DriveSerialNumber.php b/lib/PHPExiftool/Driver/Tag/LNK/DriveSerialNumber.php deleted file mode 100644 index d8b780c08..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/DriveSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveSerialNumber extends AbstractTag -{ - - protected $Id = 'DriveSerialNumber'; - - protected $Name = 'DriveSerialNumber'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Drive Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/DriveType.php b/lib/PHPExiftool/Driver/Tag/LNK/DriveType.php deleted file mode 100644 index 1878e64d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/DriveType.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveType extends AbstractTag -{ - - protected $Id = 'DriveType'; - - protected $Name = 'DriveType'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Drive Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Invalid Root Path', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Removable Media', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fixed Disk', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Remote Drive', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'CD-ROM', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Ram Disk', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/FileAttributes.php b/lib/PHPExiftool/Driver/Tag/LNK/FileAttributes.php deleted file mode 100644 index b5ecfe92c..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/FileAttributes.php +++ /dev/null @@ -1,106 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileAttributes extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'FileAttributes'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Attributes'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Read-only', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Hidden', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'System', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Volume', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Directory', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Archive', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Encrypted?', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Normal', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Temporary', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Sparse', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Reparse point', - ), - 2048 => array( - 'Id' => 2048, - 'Label' => 'Compressed', - ), - 4096 => array( - 'Id' => 4096, - 'Label' => 'Offline', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'Not indexed', - ), - 16384 => array( - 'Id' => 16384, - 'Label' => 'Encrypted', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/FillAttributes.php b/lib/PHPExiftool/Driver/Tag/LNK/FillAttributes.php deleted file mode 100644 index 48e14f25b..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/FillAttributes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillAttributes extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'FillAttributes'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Fill Attributes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/Flags.php b/lib/PHPExiftool/Driver/Tag/LNK/Flags.php deleted file mode 100644 index b0e61b0fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/Flags.php +++ /dev/null @@ -1,146 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flags extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'Flags'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Flags'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'IDList', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'LinkInfo', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Description', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'RelativePath', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'WorkingDir', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'CommandArgs', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'IconFile', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Unicode', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'NoLinkInfo', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'ExpString', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'SeparateProc', - ), - 4096 => array( - 'Id' => 4096, - 'Label' => 'DarwinID', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'RunAsUser', - ), - 16384 => array( - 'Id' => 16384, - 'Label' => 'ExpIcon', - ), - 32768 => array( - 'Id' => 32768, - 'Label' => 'NoPidAlias', - ), - 131072 => array( - 'Id' => 131072, - 'Label' => 'RunWithShim', - ), - 262144 => array( - 'Id' => 262144, - 'Label' => 'NoLinkTrack', - ), - 524288 => array( - 'Id' => 524288, - 'Label' => 'TargetMetadata', - ), - 1048576 => array( - 'Id' => 1048576, - 'Label' => 'NoLinkPathTracking', - ), - 2097152 => array( - 'Id' => 2097152, - 'Label' => 'NoKnownFolderTracking', - ), - 4194304 => array( - 'Id' => 4194304, - 'Label' => 'NoKnownFolderAlias', - ), - 8388608 => array( - 'Id' => 8388608, - 'Label' => 'LinkToLink', - ), - 16777216 => array( - 'Id' => 16777216, - 'Label' => 'UnaliasOnSave', - ), - 33554432 => array( - 'Id' => 33554432, - 'Label' => 'PreferEnvPath', - ), - 67108864 => array( - 'Id' => 67108864, - 'Label' => 'KeepLocalIDList', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/FontFamily.php b/lib/PHPExiftool/Driver/Tag/LNK/FontFamily.php deleted file mode 100644 index ae0a78e0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/FontFamily.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontFamily extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'FontFamily'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Font Family'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Don\'t Care', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Roman', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Swiss', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Modern', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Script', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Decorative', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/FontName.php b/lib/PHPExiftool/Driver/Tag/LNK/FontName.php deleted file mode 100644 index f677d2847..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/FontName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontName extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'FontName'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Font Name'; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/FontSize.php b/lib/PHPExiftool/Driver/Tag/LNK/FontSize.php deleted file mode 100644 index bb6659c67..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/FontSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontSize extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'FontSize'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Font Size'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/FontWeight.php b/lib/PHPExiftool/Driver/Tag/LNK/FontWeight.php deleted file mode 100644 index 18aa802a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/FontWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontWeight extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'FontWeight'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Font Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/FullScreen.php b/lib/PHPExiftool/Driver/Tag/LNK/FullScreen.php deleted file mode 100644 index af4178908..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/FullScreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullScreen extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'FullScreen'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Full Screen'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/HistoryBufferSize.php b/lib/PHPExiftool/Driver/Tag/LNK/HistoryBufferSize.php deleted file mode 100644 index aff59bd98..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/HistoryBufferSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistoryBufferSize extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'HistoryBufferSize'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'History Buffer Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/HotKey.php b/lib/PHPExiftool/Driver/Tag/LNK/HotKey.php deleted file mode 100644 index 99ebdf12e..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/HotKey.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HotKey extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'HotKey'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Hot Key'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'Num Lock', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'Scroll Lock', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Shift', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Control', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Alt', - ), - '0x30\'-\'0x39' => array( - 'Id' => '0x30\'-\'0x39', - 'Label' => '0-9', - ), - '0x41\'-\'0x5a' => array( - 'Id' => '0x41\'-\'0x5a', - 'Label' => 'A-Z', - ), - '0x70\'-\'0x87' => array( - 'Id' => '0x70\'-\'0x87', - 'Label' => 'F1-F24', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/IconFileName.php b/lib/PHPExiftool/Driver/Tag/LNK/IconFileName.php deleted file mode 100644 index e400e3771..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/IconFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IconFileName extends AbstractTag -{ - - protected $Id = 196672; - - protected $Name = 'IconFileName'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Icon File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/IconIndex.php b/lib/PHPExiftool/Driver/Tag/LNK/IconIndex.php deleted file mode 100644 index 75c8f1ded..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/IconIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IconIndex extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'IconIndex'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Icon Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/InsertMode.php b/lib/PHPExiftool/Driver/Tag/LNK/InsertMode.php deleted file mode 100644 index 60c563a1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/InsertMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InsertMode extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'InsertMode'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Insert Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/LocalBasePath.php b/lib/PHPExiftool/Driver/Tag/LNK/LocalBasePath.php deleted file mode 100644 index a00bb91e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/LocalBasePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalBasePath extends AbstractTag -{ - - protected $Id = 'LocalBasePath'; - - protected $Name = 'LocalBasePath'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Local Base Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/MachineID.php b/lib/PHPExiftool/Driver/Tag/LNK/MachineID.php deleted file mode 100644 index 97246e9b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/MachineID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MachineID extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'MachineID'; - - protected $FullName = 'LNK::TrackerData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'var_string'; - - protected $Writable = false; - - protected $Description = 'Machine ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/LNK/ModifyDate.php deleted file mode 100644 index c73147caf..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/NetName.php b/lib/PHPExiftool/Driver/Tag/LNK/NetName.php deleted file mode 100644 index 4e33f1fc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/NetName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NetName extends AbstractTag -{ - - protected $Id = 'NetName'; - - protected $Name = 'NetName'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Net Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/NetProviderType.php b/lib/PHPExiftool/Driver/Tag/LNK/NetProviderType.php deleted file mode 100644 index 0e04e1ef4..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/NetProviderType.php +++ /dev/null @@ -1,178 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NetProviderType extends AbstractTag -{ - - protected $Id = 'NetProviderType'; - - protected $Name = 'NetProviderType'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Net Provider Type'; - - protected $Values = array( - 1703936 => array( - 'Id' => 1703936, - 'Label' => 'AVID', - ), - 1769472 => array( - 'Id' => 1769472, - 'Label' => 'DOCUSPACE', - ), - 1835008 => array( - 'Id' => 1835008, - 'Label' => 'MANGOSOFT', - ), - 1900544 => array( - 'Id' => 1900544, - 'Label' => 'SERNET', - ), - 1966080 => array( - 'Id' => 1966080, - 'Label' => 'RIVERFRONT1', - ), - 2031616 => array( - 'Id' => 2031616, - 'Label' => 'RIVERFRONT2', - ), - 2097152 => array( - 'Id' => 2097152, - 'Label' => 'DECORB', - ), - 2162688 => array( - 'Id' => 2162688, - 'Label' => 'PROTSTOR', - ), - 2228224 => array( - 'Id' => 2228224, - 'Label' => 'FJ_REDIR', - ), - 2293760 => array( - 'Id' => 2293760, - 'Label' => 'DISTINCT', - ), - 2359296 => array( - 'Id' => 2359296, - 'Label' => 'TWINS', - ), - 2424832 => array( - 'Id' => 2424832, - 'Label' => 'RDR2SAMPLE', - ), - 2490368 => array( - 'Id' => 2490368, - 'Label' => 'CSC', - ), - 2555904 => array( - 'Id' => 2555904, - 'Label' => '3IN1', - ), - 2686976 => array( - 'Id' => 2686976, - 'Label' => 'EXTENDNET', - ), - 2752512 => array( - 'Id' => 2752512, - 'Label' => 'STAC', - ), - 2818048 => array( - 'Id' => 2818048, - 'Label' => 'FOXBAT', - ), - 2883584 => array( - 'Id' => 2883584, - 'Label' => 'YAHOO', - ), - 2949120 => array( - 'Id' => 2949120, - 'Label' => 'EXIFS', - ), - 3014656 => array( - 'Id' => 3014656, - 'Label' => 'DAV', - ), - 3080192 => array( - 'Id' => 3080192, - 'Label' => 'KNOWARE', - ), - 3145728 => array( - 'Id' => 3145728, - 'Label' => 'OBJECT_DIRE', - ), - 3211264 => array( - 'Id' => 3211264, - 'Label' => 'MASFAX', - ), - 3276800 => array( - 'Id' => 3276800, - 'Label' => 'HOB_NFS', - ), - 3342336 => array( - 'Id' => 3342336, - 'Label' => 'SHIVA', - ), - 3407872 => array( - 'Id' => 3407872, - 'Label' => 'IBMAL', - ), - 3473408 => array( - 'Id' => 3473408, - 'Label' => 'LOCK', - ), - 3538944 => array( - 'Id' => 3538944, - 'Label' => 'TERMSRV', - ), - 3604480 => array( - 'Id' => 3604480, - 'Label' => 'SRT', - ), - 3670016 => array( - 'Id' => 3670016, - 'Label' => 'QUINCY', - ), - 3735552 => array( - 'Id' => 3735552, - 'Label' => 'OPENAFS', - ), - 3801088 => array( - 'Id' => 3801088, - 'Label' => 'AVID1', - ), - 3866624 => array( - 'Id' => 3866624, - 'Label' => 'DFS', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/NumHistoryBuffers.php b/lib/PHPExiftool/Driver/Tag/LNK/NumHistoryBuffers.php deleted file mode 100644 index b30ab6345..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/NumHistoryBuffers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumHistoryBuffers extends AbstractTag -{ - - protected $Id = 132; - - protected $Name = 'NumHistoryBuffers'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Num History Buffers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/PopupFillAttributes.php b/lib/PHPExiftool/Driver/Tag/LNK/PopupFillAttributes.php deleted file mode 100644 index 8ffcd32d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/PopupFillAttributes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PopupFillAttributes extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'PopupFillAttributes'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Popup Fill Attributes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/QuickEdit.php b/lib/PHPExiftool/Driver/Tag/LNK/QuickEdit.php deleted file mode 100644 index 930862cfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/QuickEdit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuickEdit extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'QuickEdit'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Quick Edit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/RelativePath.php b/lib/PHPExiftool/Driver/Tag/LNK/RelativePath.php deleted file mode 100644 index 21299e00e..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/RelativePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativePath extends AbstractTag -{ - - protected $Id = 196616; - - protected $Name = 'RelativePath'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Relative Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/RemoveHistoryDuplicates.php b/lib/PHPExiftool/Driver/Tag/LNK/RemoveHistoryDuplicates.php deleted file mode 100644 index 1e7ba542e..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/RemoveHistoryDuplicates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RemoveHistoryDuplicates extends AbstractTag -{ - - protected $Id = 136; - - protected $Name = 'RemoveHistoryDuplicates'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Remove History Duplicates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/RunWindow.php b/lib/PHPExiftool/Driver/Tag/LNK/RunWindow.php deleted file mode 100644 index a07fd4bd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/RunWindow.php +++ /dev/null @@ -1,90 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RunWindow extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'RunWindow'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Run Window'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Hide', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Show Minimized', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Show Maximized', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Show No Activate', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Show', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Minimized', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Show Minimized No Activate', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Show NA', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Restore', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Show Default', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/ScreenBufferSize.php b/lib/PHPExiftool/Driver/Tag/LNK/ScreenBufferSize.php deleted file mode 100644 index 43bfcb59e..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/ScreenBufferSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenBufferSize extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ScreenBufferSize'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Screen Buffer Size'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/TargetFileDOSName.php b/lib/PHPExiftool/Driver/Tag/LNK/TargetFileDOSName.php deleted file mode 100644 index 40100a7b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/TargetFileDOSName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetFileDOSName extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'TargetFileDOSName'; - - protected $FullName = 'LNK::Item0032'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'var_string'; - - protected $Writable = false; - - protected $Description = 'Target File DOS Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/TargetFileSize.php b/lib/PHPExiftool/Driver/Tag/LNK/TargetFileSize.php deleted file mode 100644 index 706ca73bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/TargetFileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetFileSize extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'TargetFileSize'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Target File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/VolumeID.php b/lib/PHPExiftool/Driver/Tag/LNK/VolumeID.php deleted file mode 100644 index 65038cfc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/VolumeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VolumeID extends AbstractTag -{ - - protected $Id = 'VolumeID'; - - protected $Name = 'VolumeID'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Volume ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/VolumeLabel.php b/lib/PHPExiftool/Driver/Tag/LNK/VolumeLabel.php deleted file mode 100644 index bd1f45684..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/VolumeLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VolumeLabel extends AbstractTag -{ - - protected $Id = 'VolumeLabel'; - - protected $Name = 'VolumeLabel'; - - protected $FullName = 'LNK::LinkInfo'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Volume Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/WindowOrigin.php b/lib/PHPExiftool/Driver/Tag/LNK/WindowOrigin.php deleted file mode 100644 index 7610c67f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/WindowOrigin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowOrigin extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'WindowOrigin'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Window Origin'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/WindowOriginAuto.php b/lib/PHPExiftool/Driver/Tag/LNK/WindowOriginAuto.php deleted file mode 100644 index 3bc73a7cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/WindowOriginAuto.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowOriginAuto extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'WindowOriginAuto'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Window Origin Auto'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/WindowSize.php b/lib/PHPExiftool/Driver/Tag/LNK/WindowSize.php deleted file mode 100644 index c99d37205..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/WindowSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowSize extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'WindowSize'; - - protected $FullName = 'LNK::ConsoleData'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Window Size'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/LNK/WorkingDirectory.php b/lib/PHPExiftool/Driver/Tag/LNK/WorkingDirectory.php deleted file mode 100644 index cad9df82e..000000000 --- a/lib/PHPExiftool/Driver/Tag/LNK/WorkingDirectory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\LNK; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorkingDirectory extends AbstractTag -{ - - protected $Id = 196624; - - protected $Name = 'WorkingDirectory'; - - protected $FullName = 'LNK::Main'; - - protected $GroupName = 'LNK'; - - protected $g0 = 'LNK'; - - protected $g1 = 'LNK'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Working Directory'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/BackSerial.php b/lib/PHPExiftool/Driver/Tag/Leaf/BackSerial.php deleted file mode 100644 index e6be6aa03..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/BackSerial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackSerial extends AbstractTag -{ - - protected $Id = 'back_serial_number'; - - protected $Name = 'BackSerial'; - - protected $FullName = 'Leaf::Main'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Back Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CCDRect.php b/lib/PHPExiftool/Driver/Tag/Leaf/CCDRect.php deleted file mode 100644 index bb7482a7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CCDRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CCDRect extends AbstractTag -{ - - protected $Id = 'CaptProf_CCD_rect'; - - protected $Name = 'CCDRect'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CCD Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CCDValidRect.php b/lib/PHPExiftool/Driver/Tag/Leaf/CCDValidRect.php deleted file mode 100644 index 6b50c74ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CCDValidRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CCDValidRect extends AbstractTag -{ - - protected $Id = 'CaptProf_CCD_valid_rect'; - - protected $Name = 'CCDValidRect'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CCD Valid Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CCDVideoRect.php b/lib/PHPExiftool/Driver/Tag/Leaf/CCDVideoRect.php deleted file mode 100644 index 6ccb2ca8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CCDVideoRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CCDVideoRect extends AbstractTag -{ - - protected $Id = 'CaptProf_CCD_video_rect'; - - protected $Name = 'CCDVideoRect'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CCD Video Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraBackType.php deleted file mode 100644 index 9343ed441..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraBackType extends AbstractTag -{ - - protected $Id = 'CamProf_back_type'; - - protected $Name = 'CameraBackType'; - - protected $FullName = 'Leaf::CameraProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraName.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraName.php deleted file mode 100644 index 422515a91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraName extends AbstractTag -{ - - protected $Id = 'CamProf_name'; - - protected $Name = 'CameraName'; - - protected $FullName = 'Leaf::CameraProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjBackType.php deleted file mode 100644 index be743476f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraObjBackType extends AbstractTag -{ - - protected $Id = 'CameraObj_back_type'; - - protected $Name = 'CameraObjBackType'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjName.php deleted file mode 100644 index 248606b1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraObjName extends AbstractTag -{ - - protected $Id = 'CameraObj_name'; - - protected $Name = 'CameraObjName'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjType.php deleted file mode 100644 index bb12ca9ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraObjType extends AbstractTag -{ - - protected $Id = 'CameraObj_type'; - - protected $Name = 'CameraObjType'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjVersion.php deleted file mode 100644 index ed6f1475a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraObjVersion extends AbstractTag -{ - - protected $Id = 'CameraObj_version'; - - protected $Name = 'CameraObjVersion'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraProfileVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraProfileVersion.php deleted file mode 100644 index e6274d028..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraProfileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraProfileVersion extends AbstractTag -{ - - protected $Id = 'CamProf_version'; - - protected $Name = 'CameraProfileVersion'; - - protected $FullName = 'Leaf::CameraProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Profile Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CameraType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CameraType.php deleted file mode 100644 index 46d8dcd51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CameraType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfBackType.php deleted file mode 100644 index 717104c72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptProfBackType extends AbstractTag -{ - - protected $Id = 'CaptProf_back_type'; - - protected $Name = 'CaptProfBackType'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capt Prof Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfName.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfName.php deleted file mode 100644 index 6924c0162..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptProfName extends AbstractTag -{ - - protected $Id = 'CaptProf_name'; - - protected $Name = 'CaptProfName'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capt Prof Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfType.php deleted file mode 100644 index 86f612cd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptProfType extends AbstractTag -{ - - protected $Id = 'CaptProf_type'; - - protected $Name = 'CaptProfType'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capt Prof Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfVersion.php deleted file mode 100644 index 5f14a17d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptProfVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptProfVersion extends AbstractTag -{ - - protected $Id = 'CaptProf_version'; - - protected $Name = 'CaptProfVersion'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capt Prof Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjBackType.php deleted file mode 100644 index 4ff87b46d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureObjBackType extends AbstractTag -{ - - protected $Id = 'CaptureObj_back_type'; - - protected $Name = 'CaptureObjBackType'; - - protected $FullName = 'Leaf::CaptureSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capture Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjName.php deleted file mode 100644 index 32395e93c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureObjName extends AbstractTag -{ - - protected $Id = 'CaptureObj_name'; - - protected $Name = 'CaptureObjName'; - - protected $FullName = 'Leaf::CaptureSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capture Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjType.php deleted file mode 100644 index 44683e4a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureObjType extends AbstractTag -{ - - protected $Id = 'CaptureObj_type'; - - protected $Name = 'CaptureObjType'; - - protected $FullName = 'Leaf::CaptureSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capture Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjVersion.php deleted file mode 100644 index edd7e0e85..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureObjVersion extends AbstractTag -{ - - protected $Id = 'CaptureObj_version'; - - protected $Name = 'CaptureObjVersion'; - - protected $FullName = 'Leaf::CaptureSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capture Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureSerial.php b/lib/PHPExiftool/Driver/Tag/Leaf/CaptureSerial.php deleted file mode 100644 index ed2d86b0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CaptureSerial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureSerial extends AbstractTag -{ - - protected $Id = 'CaptProf_serial_number'; - - protected $Name = 'CaptureSerial'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capture Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/CenterDarkRect.php b/lib/PHPExiftool/Driver/Tag/Leaf/CenterDarkRect.php deleted file mode 100644 index 30bd0b4ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/CenterDarkRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterDarkRect extends AbstractTag -{ - - protected $Id = 'CaptProf_center_dark_rect'; - - protected $Name = 'CenterDarkRect'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Center Dark Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorAverages.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorAverages.php deleted file mode 100644 index 3482d238a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorAverages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorAverages extends AbstractTag -{ - - protected $Id = 'CaptProf_color_averages'; - - protected $Name = 'ColorAverages'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Averages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorCasts.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorCasts.php deleted file mode 100644 index bc15594a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorCasts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCasts extends AbstractTag -{ - - protected $Id = 'NeutObj_color_casts'; - - protected $Name = 'ColorCasts'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Casts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorMatrix.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorMatrix.php deleted file mode 100644 index 39c8d73cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorMatrix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrix extends AbstractTag -{ - - protected $Id = 'CaptProf_color_matrix'; - - protected $Name = 'ColorMatrix'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Matrix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorMode.php deleted file mode 100644 index fc66c8c90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 'ColorObj_color_mode'; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjBackType.php deleted file mode 100644 index 0ee1c9fe1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorObjBackType extends AbstractTag -{ - - protected $Id = 'ColorObj_back_type'; - - protected $Name = 'ColorObjBackType'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjName.php deleted file mode 100644 index a95728652..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorObjName extends AbstractTag -{ - - protected $Id = 'ColorObj_name'; - - protected $Name = 'ColorObjName'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjType.php deleted file mode 100644 index 843d3a31d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorObjType extends AbstractTag -{ - - protected $Id = 'ColorObj_type'; - - protected $Name = 'ColorObjType'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjVersion.php deleted file mode 100644 index e486be9a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorObjVersion extends AbstractTag -{ - - protected $Id = 'ColorObj_version'; - - protected $Name = 'ColorObjVersion'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ColorType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ColorType.php deleted file mode 100644 index 2d095e6e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ColorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorType extends AbstractTag -{ - - protected $Id = 'ColorObj_color_type'; - - protected $Name = 'ColorType'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/DarkCorrectionType.php b/lib/PHPExiftool/Driver/Tag/Leaf/DarkCorrectionType.php deleted file mode 100644 index 919d61363..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/DarkCorrectionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DarkCorrectionType extends AbstractTag -{ - - protected $Id = 'CaptProf_dark_correction_type'; - - protected $Name = 'DarkCorrectionType'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dark Correction Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/DataLen.php b/lib/PHPExiftool/Driver/Tag/Leaf/DataLen.php deleted file mode 100644 index f3325c42b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/DataLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataLen extends AbstractTag -{ - - protected $Id = 'SharpObj_data_len'; - - protected $Name = 'DataLen'; - - protected $FullName = 'Leaf::Sharpness'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Gamma.php b/lib/PHPExiftool/Driver/Tag/Leaf/Gamma.php deleted file mode 100644 index 1788ba6e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 'ToneObj_gamma'; - - protected $Name = 'Gamma'; - - protected $FullName = 'Leaf::ToneCurve'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/HasICC.php b/lib/PHPExiftool/Driver/Tag/Leaf/HasICC.php deleted file mode 100644 index 10a5b2d31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/HasICC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasICC extends AbstractTag -{ - - protected $Id = 'ColorObj_has_ICC'; - - protected $Name = 'HasICC'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has ICC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/HighlightEndPoints.php b/lib/PHPExiftool/Driver/Tag/Leaf/HighlightEndPoints.php deleted file mode 100644 index d17989bf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/HighlightEndPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighlightEndPoints extends AbstractTag -{ - - protected $Id = 'NeutObj_highlight_end_points'; - - protected $Name = 'HighlightEndPoints'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Highlight End Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ISOSpeed.php b/lib/PHPExiftool/Driver/Tag/Leaf/ISOSpeed.php deleted file mode 100644 index 5838f13ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ISOSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeed extends AbstractTag -{ - - protected $Id = 'CameraObj_ISO_speed'; - - protected $Name = 'ISOSpeed'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImageBounds.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImageBounds.php deleted file mode 100644 index f0f27fb02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImageBounds.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBounds extends AbstractTag -{ - - protected $Id = 'CaptProf_image_bounds'; - - protected $Name = 'ImageBounds'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Bounds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImageFields.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImageFields.php deleted file mode 100644 index db84242ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImageFields.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFields extends AbstractTag -{ - - protected $Id = 'CaptProf_image_fields'; - - protected $Name = 'ImageFields'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Fields'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImageOffset.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImageOffset.php deleted file mode 100644 index 53b419ff9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImageOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOffset extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageOffset'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImageStatus.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImageStatus.php deleted file mode 100644 index 9117e3832..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImageStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStatus extends AbstractTag -{ - - protected $Id = 'ImgProf_image_status'; - - protected $Name = 'ImageStatus'; - - protected $FullName = 'Leaf::ImageProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfBackType.php deleted file mode 100644 index d314def54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImgProfBackType extends AbstractTag -{ - - protected $Id = 'ImgProf_back_type'; - - protected $Name = 'ImgProfBackType'; - - protected $FullName = 'Leaf::ImageProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Img Prof Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfName.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfName.php deleted file mode 100644 index c78cfc2b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImgProfName extends AbstractTag -{ - - protected $Id = 'ImgProf_name'; - - protected $Name = 'ImgProfName'; - - protected $FullName = 'Leaf::ImageProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Img Prof Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfType.php deleted file mode 100644 index 0b28ba464..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImgProfType extends AbstractTag -{ - - protected $Id = 'ImgProf_type'; - - protected $Name = 'ImgProfType'; - - protected $FullName = 'Leaf::ImageProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Img Prof Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfVersion.php deleted file mode 100644 index 9fce61ac8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ImgProfVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImgProfVersion extends AbstractTag -{ - - protected $Id = 'ImgProf_version'; - - protected $Name = 'ImgProfVersion'; - - protected $FullName = 'Leaf::ImageProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Img Prof Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/InputProfile.php b/lib/PHPExiftool/Driver/Tag/Leaf/InputProfile.php deleted file mode 100644 index ecb496161..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/InputProfile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputProfile extends AbstractTag -{ - - protected $Id = 'ColorObj_input_profile'; - - protected $Name = 'InputProfile'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Input Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LeafAutoActive.php b/lib/PHPExiftool/Driver/Tag/Leaf/LeafAutoActive.php deleted file mode 100644 index 21488125e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LeafAutoActive.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafAutoActive extends AbstractTag -{ - - protected $Id = 'SaveObj_leaf_auto_active'; - - protected $Name = 'LeafAutoActive'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Auto Active'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LeafAutoBaseName.php b/lib/PHPExiftool/Driver/Tag/Leaf/LeafAutoBaseName.php deleted file mode 100644 index 3bd175aee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LeafAutoBaseName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafAutoBaseName extends AbstractTag -{ - - protected $Id = 'SaveObj_leaf_auto_base_name'; - - protected $Name = 'LeafAutoBaseName'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Auto Base Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LeafHotFolder.php b/lib/PHPExiftool/Driver/Tag/Leaf/LeafHotFolder.php deleted file mode 100644 index 5a2002fd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LeafHotFolder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafHotFolder extends AbstractTag -{ - - protected $Id = 'SaveObj_leaf_hot_folder'; - - protected $Name = 'LeafHotFolder'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Hot Folder'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LeafOpenProcHDR.php b/lib/PHPExiftool/Driver/Tag/Leaf/LeafOpenProcHDR.php deleted file mode 100644 index 9b852c900..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LeafOpenProcHDR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafOpenProcHDR extends AbstractTag -{ - - protected $Id = 'SaveObj_leaf_open_proc_HDR'; - - protected $Name = 'LeafOpenProcHDR'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Open Proc HDR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LeafOutputFileType.php b/lib/PHPExiftool/Driver/Tag/Leaf/LeafOutputFileType.php deleted file mode 100644 index bf5f9d73b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LeafOutputFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafOutputFileType extends AbstractTag -{ - - protected $Id = 'SaveObj_leaf_output_file_type'; - - protected $Name = 'LeafOutputFileType'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Output File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LeafSaveSelection.php b/lib/PHPExiftool/Driver/Tag/Leaf/LeafSaveSelection.php deleted file mode 100644 index 35fb957ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LeafSaveSelection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeafSaveSelection extends AbstractTag -{ - - protected $Id = 'SaveObj_leaf_save_selection'; - - protected $Name = 'LeafSaveSelection'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Leaf Save Selection'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LeftDarkRect.php b/lib/PHPExiftool/Driver/Tag/Leaf/LeftDarkRect.php deleted file mode 100644 index 44f1446d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LeftDarkRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeftDarkRect extends AbstractTag -{ - - protected $Id = 'CaptProf_left_dark_rect'; - - protected $Name = 'LeftDarkRect'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Left Dark Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LensID.php b/lib/PHPExiftool/Driver/Tag/Leaf/LensID.php deleted file mode 100644 index 97991a4bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LensID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensID extends AbstractTag -{ - - protected $Id = 'CameraObj_lens_ID'; - - protected $Name = 'LensID'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LensType.php b/lib/PHPExiftool/Driver/Tag/Leaf/LensType.php deleted file mode 100644 index 505773f6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LensType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'CameraObj_lens_type'; - - protected $Name = 'LensType'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Locks.php b/lib/PHPExiftool/Driver/Tag/Leaf/Locks.php deleted file mode 100644 index bc0f07b9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Locks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Locks extends AbstractTag -{ - - protected $Id = 'SelObj_locks'; - - protected $Name = 'Locks'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Locks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadBackType.php deleted file mode 100644 index 66422a4d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LookHeadBackType extends AbstractTag -{ - - protected $Id = 'LookHead_back_type'; - - protected $Name = 'LookHeadBackType'; - - protected $FullName = 'Leaf::LookHeader'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Look Head Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadName.php b/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadName.php deleted file mode 100644 index b643e4a0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LookHeadName extends AbstractTag -{ - - protected $Id = 'LookHead_name'; - - protected $Name = 'LookHeadName'; - - protected $FullName = 'Leaf::LookHeader'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Look Head Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadType.php b/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadType.php deleted file mode 100644 index 6867e642f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LookHeadType extends AbstractTag -{ - - protected $Id = 'LookHead_type'; - - protected $Name = 'LookHeadType'; - - protected $FullName = 'Leaf::LookHeader'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Look Head Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadVersion.php deleted file mode 100644 index 2df7de8b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LookHeadVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LookHeadVersion extends AbstractTag -{ - - protected $Id = 'LookHead_version'; - - protected $Name = 'LookHeadVersion'; - - protected $FullName = 'Leaf::LookHeader'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Look Head Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/LuminanceConsts.php b/lib/PHPExiftool/Driver/Tag/Leaf/LuminanceConsts.php deleted file mode 100644 index f28287db2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/LuminanceConsts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceConsts extends AbstractTag -{ - - protected $Id = 'CaptProf_luminance_consts'; - - protected $Name = 'LuminanceConsts'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Luminance Consts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/MosaicPattern.php b/lib/PHPExiftool/Driver/Tag/Leaf/MosaicPattern.php deleted file mode 100644 index 9ce79ed9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/MosaicPattern.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MosaicPattern extends AbstractTag -{ - - protected $Id = 'CaptProf_mosaic_pattern'; - - protected $Name = 'MosaicPattern'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mosaic Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/MultiQuality.php b/lib/PHPExiftool/Driver/Tag/Leaf/MultiQuality.php deleted file mode 100644 index 7be083677..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/MultiQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiQuality extends AbstractTag -{ - - protected $Id = 'CaptureObj_Multi_quality'; - - protected $Name = 'MultiQuality'; - - protected $FullName = 'Leaf::CaptureSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjBackType.php deleted file mode 100644 index e9f3b2036..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutObjBackType extends AbstractTag -{ - - protected $Id = 'NeutObj_back_type'; - - protected $Name = 'NeutObjBackType'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Neut Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjName.php deleted file mode 100644 index 0ff8b4942..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutObjName extends AbstractTag -{ - - protected $Id = 'NeutObj_name'; - - protected $Name = 'NeutObjName'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Neut Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjType.php deleted file mode 100644 index 6233c0b22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutObjType extends AbstractTag -{ - - protected $Id = 'NeutObj_type'; - - protected $Name = 'NeutObjType'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Neut Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjVersion.php deleted file mode 100644 index 613d25dcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/NeutObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutObjVersion extends AbstractTag -{ - - protected $Id = 'NeutObj_version'; - - protected $Name = 'NeutObjVersion'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Neut Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Neutrals.php b/lib/PHPExiftool/Driver/Tag/Leaf/Neutrals.php deleted file mode 100644 index 3f688557b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Neutrals.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Neutrals extends AbstractTag -{ - - protected $Id = 'NeutObj_neutrals'; - - protected $Name = 'Neutrals'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Neutrals'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Npts.php b/lib/PHPExiftool/Driver/Tag/Leaf/Npts.php deleted file mode 100644 index 9738d84fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Npts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Npts extends AbstractTag -{ - - protected $Id = 'ToneObj_npts'; - - protected $Name = 'Npts'; - - protected $FullName = 'Leaf::ToneCurve'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Npts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/NumberOfPlanes.php b/lib/PHPExiftool/Driver/Tag/Leaf/NumberOfPlanes.php deleted file mode 100644 index 1f545ff97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/NumberOfPlanes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfPlanes extends AbstractTag -{ - - protected $Id = 'CaptProf_number_of_planes'; - - protected $Name = 'NumberOfPlanes'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Planes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Orientation.php b/lib/PHPExiftool/Driver/Tag/Leaf/Orientation.php deleted file mode 100644 index 1ec1fd2f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Orientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 'SelObj_orientation'; - - protected $Name = 'Orientation'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/OutputProfile.php b/lib/PHPExiftool/Driver/Tag/Leaf/OutputProfile.php deleted file mode 100644 index 409bb4cf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/OutputProfile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputProfile extends AbstractTag -{ - - protected $Id = 'ColorObj_output_profile'; - - protected $Name = 'OutputProfile'; - - protected $FullName = 'Leaf::ColorSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Output Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/PDAHistogram.php b/lib/PHPExiftool/Driver/Tag/Leaf/PDAHistogram.php deleted file mode 100644 index 38cf377a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/PDAHistogram.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PDAHistogram extends AbstractTag -{ - - protected $Id = 'PDA_histogram_data'; - - protected $Name = 'PDAHistogram'; - - protected $FullName = 'Leaf::Main'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PDA Histogram'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/PatternAngle.php b/lib/PHPExiftool/Driver/Tag/Leaf/PatternAngle.php deleted file mode 100644 index 592fc2d5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/PatternAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatternAngle extends AbstractTag -{ - - protected $Id = 'pattern_ratation_angle'; - - protected $Name = 'PatternAngle'; - - protected $FullName = 'Leaf::Main'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Pattern Rotation Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Leaf/PreviewImage.php deleted file mode 100644 index 3453b2cb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/PreviewImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'JPEG_preview_data'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Leaf::Main'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/PreviewInfo.php b/lib/PHPExiftool/Driver/Tag/Leaf/PreviewInfo.php deleted file mode 100644 index 9a364ad2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/PreviewInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewInfo extends AbstractTag -{ - - protected $Id = 'JPEG_preview_info'; - - protected $Name = 'PreviewInfo'; - - protected $FullName = 'Leaf::Main'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/RawDataRotation.php b/lib/PHPExiftool/Driver/Tag/Leaf/RawDataRotation.php deleted file mode 100644 index 4f52060d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/RawDataRotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataRotation extends AbstractTag -{ - - protected $Id = 'CaptProf_raw_data_rotation'; - - protected $Name = 'RawDataRotation'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ReconstructionType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ReconstructionType.php deleted file mode 100644 index 3aa11e665..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ReconstructionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReconstructionType extends AbstractTag -{ - - protected $Id = 'CaptProf_reconstruction_type'; - - protected $Name = 'ReconstructionType'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reconstruction Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Rect.php b/lib/PHPExiftool/Driver/Tag/Leaf/Rect.php deleted file mode 100644 index ae9e33d67..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Rect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rect extends AbstractTag -{ - - protected $Id = 'SelObj_rect'; - - protected $Name = 'Rect'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Resolution.php b/lib/PHPExiftool/Driver/Tag/Leaf/Resolution.php deleted file mode 100644 index b74cae3d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Resolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Resolution extends AbstractTag -{ - - protected $Id = 'SelObj_resolution'; - - protected $Name = 'Resolution'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/RightDarkRect.php b/lib/PHPExiftool/Driver/Tag/Leaf/RightDarkRect.php deleted file mode 100644 index 05737875c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/RightDarkRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightDarkRect extends AbstractTag -{ - - protected $Id = 'CaptProf_right_dark_rect'; - - protected $Name = 'RightDarkRect'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Right Dark Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/RotationAngle.php b/lib/PHPExiftool/Driver/Tag/Leaf/RotationAngle.php deleted file mode 100644 index ea4ddd985..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/RotationAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RotationAngle extends AbstractTag -{ - - protected $Id = 'ImgProf_rotation_angle'; - - protected $Name = 'RotationAngle'; - - protected $FullName = 'Leaf::ImageProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rotation Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjBackType.php deleted file mode 100644 index 408e0473c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaveObjBackType extends AbstractTag -{ - - protected $Id = 'SaveObj_back_type'; - - protected $Name = 'SaveObjBackType'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Save Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjName.php deleted file mode 100644 index e13697640..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaveObjName extends AbstractTag -{ - - protected $Id = 'SaveObj_name'; - - protected $Name = 'SaveObjName'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Save Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjType.php deleted file mode 100644 index 69a4d3860..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaveObjType extends AbstractTag -{ - - protected $Id = 'SaveObj_type'; - - protected $Name = 'SaveObjType'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Save Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjVersion.php deleted file mode 100644 index 07e16eef6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SaveObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaveObjVersion extends AbstractTag -{ - - protected $Id = 'SaveObj_version'; - - protected $Name = 'SaveObjVersion'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Save Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Scale.php b/lib/PHPExiftool/Driver/Tag/Leaf/Scale.php deleted file mode 100644 index 3c00c2287..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Scale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Scale extends AbstractTag -{ - - protected $Id = 'SelObj_scale'; - - protected $Name = 'Scale'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/SelObjBackType.php deleted file mode 100644 index f5384001e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelObjBackType extends AbstractTag -{ - - protected $Id = 'SelObj_back_type'; - - protected $Name = 'SelObjBackType'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sel Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/SelObjName.php deleted file mode 100644 index 9fb84018d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelObjName extends AbstractTag -{ - - protected $Id = 'SelObj_name'; - - protected $Name = 'SelObjName'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sel Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/SelObjType.php deleted file mode 100644 index 9a2152f89..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelObjType extends AbstractTag -{ - - protected $Id = 'SelObj_type'; - - protected $Name = 'SelObjType'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sel Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/SelObjVersion.php deleted file mode 100644 index 456e24c33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SelObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelObjVersion extends AbstractTag -{ - - protected $Id = 'SelObj_version'; - - protected $Name = 'SelObjVersion'; - - protected $FullName = 'Leaf::Selection'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sel Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ShadowEndPoints.php b/lib/PHPExiftool/Driver/Tag/Leaf/ShadowEndPoints.php deleted file mode 100644 index c64ae862d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ShadowEndPoints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadowEndPoints extends AbstractTag -{ - - protected $Id = 'NeutObj_shadow_end_points'; - - protected $Name = 'ShadowEndPoints'; - - protected $FullName = 'Leaf::Neutrals'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shadow End Points'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SharpInfo.php b/lib/PHPExiftool/Driver/Tag/Leaf/SharpInfo.php deleted file mode 100644 index 399f876c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SharpInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpInfo extends AbstractTag -{ - - protected $Id = 'SharpObj_sharp_info'; - - protected $Name = 'SharpInfo'; - - protected $FullName = 'Leaf::Sharpness'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharp Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SharpMethod.php b/lib/PHPExiftool/Driver/Tag/Leaf/SharpMethod.php deleted file mode 100644 index f57ea92d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SharpMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpMethod extends AbstractTag -{ - - protected $Id = 'SharpObj_sharp_method'; - - protected $Name = 'SharpMethod'; - - protected $FullName = 'Leaf::Sharpness'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharp Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjBackType.php deleted file mode 100644 index 37a11ec0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpObjBackType extends AbstractTag -{ - - protected $Id = 'SharpObj_back_type'; - - protected $Name = 'SharpObjBackType'; - - protected $FullName = 'Leaf::Sharpness'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharp Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjName.php deleted file mode 100644 index b64c062de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpObjName extends AbstractTag -{ - - protected $Id = 'SharpObj_name'; - - protected $Name = 'SharpObjName'; - - protected $FullName = 'Leaf::Sharpness'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharp Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjType.php deleted file mode 100644 index 14dc50a3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpObjType extends AbstractTag -{ - - protected $Id = 'SharpObj_type'; - - protected $Name = 'SharpObjType'; - - protected $FullName = 'Leaf::Sharpness'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharp Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjVersion.php deleted file mode 100644 index af3051437..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SharpObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpObjVersion extends AbstractTag -{ - - protected $Id = 'SharpObj_version'; - - protected $Name = 'SharpObjVersion'; - - protected $FullName = 'Leaf::Sharpness'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharp Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjBackType.php deleted file mode 100644 index 6bf52b558..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootObjBackType extends AbstractTag -{ - - protected $Id = 'ShootObj_back_type'; - - protected $Name = 'ShootObjBackType'; - - protected $FullName = 'Leaf::ShootSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shoot Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjName.php deleted file mode 100644 index 34db3e864..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootObjName extends AbstractTag -{ - - protected $Id = 'ShootObj_name'; - - protected $Name = 'ShootObjName'; - - protected $FullName = 'Leaf::ShootSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shoot Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjType.php deleted file mode 100644 index a1c20df96..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootObjType extends AbstractTag -{ - - protected $Id = 'ShootObj_type'; - - protected $Name = 'ShootObjType'; - - protected $FullName = 'Leaf::ShootSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shoot Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjVersion.php deleted file mode 100644 index 56a92aa75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ShootObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootObjVersion extends AbstractTag -{ - - protected $Id = 'ShootObj_version'; - - protected $Name = 'ShootObjVersion'; - - protected $FullName = 'Leaf::ShootSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shoot Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/SingleQuality.php b/lib/PHPExiftool/Driver/Tag/Leaf/SingleQuality.php deleted file mode 100644 index cee2bd4f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/SingleQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SingleQuality extends AbstractTag -{ - - protected $Id = 'CaptureObj_single_quality'; - - protected $Name = 'SingleQuality'; - - protected $FullName = 'Leaf::CaptureSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Single Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdAutoActive.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdAutoActive.php deleted file mode 100644 index 6a921e7c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdAutoActive.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdAutoActive extends AbstractTag -{ - - protected $Id = 'SaveObj_std_auto_active'; - - protected $Name = 'StdAutoActive'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Auto Active'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdBaseName.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdBaseName.php deleted file mode 100644 index fd097d748..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdBaseName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdBaseName extends AbstractTag -{ - - protected $Id = 'SaveObj_std_base_name'; - - protected $Name = 'StdBaseName'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Base Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdHotFolder.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdHotFolder.php deleted file mode 100644 index eebdf98f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdHotFolder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdHotFolder extends AbstractTag -{ - - protected $Id = 'SaveObj_std_hot_folder'; - - protected $Name = 'StdHotFolder'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Hot Folder'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdOpenInPhotoshop.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdOpenInPhotoshop.php deleted file mode 100644 index af85b17ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdOpenInPhotoshop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdOpenInPhotoshop extends AbstractTag -{ - - protected $Id = 'SaveObj_std_open_in_photoshop'; - - protected $Name = 'StdOpenInPhotoshop'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Open In Photoshop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputBitDepth.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputBitDepth.php deleted file mode 100644 index ea470f702..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdOutputBitDepth extends AbstractTag -{ - - protected $Id = 'SaveObj_std_output_bit_depth'; - - protected $Name = 'StdOutputBitDepth'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Output Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputColorMode.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputColorMode.php deleted file mode 100644 index a644d4cca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputColorMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdOutputColorMode extends AbstractTag -{ - - protected $Id = 'SaveObj_std_output_color_mode'; - - protected $Name = 'StdOutputColorMode'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Output Color Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputFileType.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputFileType.php deleted file mode 100644 index 271154850..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdOutputFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdOutputFileType extends AbstractTag -{ - - protected $Id = 'SaveObj_std_output_file_type'; - - protected $Name = 'StdOutputFileType'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Output File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdOxygen.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdOxygen.php deleted file mode 100644 index 571c71fb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdOxygen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdOxygen extends AbstractTag -{ - - protected $Id = 'SaveObj_std_oxygen'; - - protected $Name = 'StdOxygen'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Oxygen'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdSaveSelection.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdSaveSelection.php deleted file mode 100644 index 53208bb49..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdSaveSelection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdSaveSelection extends AbstractTag -{ - - protected $Id = 'SaveObj_std_save_selection'; - - protected $Name = 'StdSaveSelection'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Save Selection'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdScaledOutput.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdScaledOutput.php deleted file mode 100644 index e17c59c5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdScaledOutput.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdScaledOutput extends AbstractTag -{ - - protected $Id = 'SaveObj_std_scaled_output'; - - protected $Name = 'StdScaledOutput'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Scaled Output'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/StdSharpenOutput.php b/lib/PHPExiftool/Driver/Tag/Leaf/StdSharpenOutput.php deleted file mode 100644 index 1a085affe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/StdSharpenOutput.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StdSharpenOutput extends AbstractTag -{ - - protected $Id = 'SaveObj_std_sharpen_output'; - - protected $Name = 'StdSharpenOutput'; - - protected $FullName = 'Leaf::SaveSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Std Sharpen Output'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Strobe.php b/lib/PHPExiftool/Driver/Tag/Leaf/Strobe.php deleted file mode 100644 index 114a8a5d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Strobe.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Strobe extends AbstractTag -{ - - protected $Id = 'CameraObj_strobe'; - - protected $Name = 'Strobe'; - - protected $FullName = 'Leaf::CameraSetup'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Strobe'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ToneMatrix.php b/lib/PHPExiftool/Driver/Tag/Leaf/ToneMatrix.php deleted file mode 100644 index f58a3aa01..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ToneMatrix.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneMatrix extends AbstractTag -{ - - protected $Id = 'icc_camera_to_tone_matrix'; - - protected $Name = 'ToneMatrix'; - - protected $FullName = 'Leaf::Main'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'ICC To Tone Matrix'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjBackType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjBackType.php deleted file mode 100644 index 350ab1e06..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjBackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneObjBackType extends AbstractTag -{ - - protected $Id = 'ToneObj_back_type'; - - protected $Name = 'ToneObjBackType'; - - protected $FullName = 'Leaf::ToneCurve'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Obj Back Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjName.php b/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjName.php deleted file mode 100644 index 96fc8134d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneObjName extends AbstractTag -{ - - protected $Id = 'ToneObj_name'; - - protected $Name = 'ToneObjName'; - - protected $FullName = 'Leaf::ToneCurve'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Obj Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjType.php b/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjType.php deleted file mode 100644 index 0f25a2ad3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneObjType extends AbstractTag -{ - - protected $Id = 'ToneObj_type'; - - protected $Name = 'ToneObjType'; - - protected $FullName = 'Leaf::ToneCurve'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Obj Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjVersion.php b/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjVersion.php deleted file mode 100644 index b1d61e597..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ToneObjVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneObjVersion extends AbstractTag -{ - - protected $Id = 'ToneObj_version'; - - protected $Name = 'ToneObjVersion'; - - protected $FullName = 'Leaf::ToneCurve'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Obj Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/ToneSpaceFlow.php b/lib/PHPExiftool/Driver/Tag/Leaf/ToneSpaceFlow.php deleted file mode 100644 index 73b6db594..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/ToneSpaceFlow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneSpaceFlow extends AbstractTag -{ - - protected $Id = 'icc_camera_to_tone_space_flow'; - - protected $Name = 'ToneSpaceFlow'; - - protected $FullName = 'Leaf::Main'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'ICC To Tone Space Flow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/Tones.php b/lib/PHPExiftool/Driver/Tag/Leaf/Tones.php deleted file mode 100644 index f16597178..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/Tones.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tones extends AbstractTag -{ - - protected $Id = 'ToneObj_tones'; - - protected $Name = 'Tones'; - - protected $FullName = 'Leaf::ToneCurve'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tones'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leaf/XYOffsetInfo.php b/lib/PHPExiftool/Driver/Tag/Leaf/XYOffsetInfo.php deleted file mode 100644 index 2888860f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leaf/XYOffsetInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leaf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XYOffsetInfo extends AbstractTag -{ - - protected $Id = 'CaptProf_xy_offset_info'; - - protected $Name = 'XYOffsetInfo'; - - protected $FullName = 'Leaf::CaptureProfile'; - - protected $GroupName = 'Leaf'; - - protected $g0 = 'Leaf'; - - protected $g1 = 'Leaf'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'XY Offset Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/ApproximateFNumber.php b/lib/PHPExiftool/Driver/Tag/Leica/ApproximateFNumber.php deleted file mode 100644 index 61a64e389..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/ApproximateFNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApproximateFNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ApproximateFNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Approximate F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/BaseISO.php b/lib/PHPExiftool/Driver/Tag/Leica/BaseISO.php deleted file mode 100644 index 6fd4bb5a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/BaseISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseISO extends AbstractTag -{ - - protected $Id = 12586; - - protected $Name = 'BaseISO'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Base ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/CCDBoardVersion.php b/lib/PHPExiftool/Driver/Tag/Leica/CCDBoardVersion.php deleted file mode 100644 index d3c87f8be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/CCDBoardVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CCDBoardVersion extends AbstractTag -{ - - protected $Id = 817; - - protected $Name = 'CCDBoardVersion'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'CCD Board Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/CCDVersion.php b/lib/PHPExiftool/Driver/Tag/Leica/CCDVersion.php deleted file mode 100644 index d45d87b0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/CCDVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CCDVersion extends AbstractTag -{ - - protected $Id = 816; - - protected $Name = 'CCDVersion'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'CCD Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/CameraTemperature.php b/lib/PHPExiftool/Driver/Tag/Leica/CameraTemperature.php deleted file mode 100644 index fa9c26b5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/CameraTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/Leica/ColorTemperature.php deleted file mode 100644 index 3df2f35b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 801; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/Contrast.php b/lib/PHPExiftool/Driver/Tag/Leica/Contrast.php deleted file mode 100644 index ee5fccda4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/Contrast.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 12298; - - protected $Name = 'Contrast'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Medium Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Medium High', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/ControllerBoardVersion.php b/lib/PHPExiftool/Driver/Tag/Leica/ControllerBoardVersion.php deleted file mode 100644 index f2152d3fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/ControllerBoardVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControllerBoardVersion extends AbstractTag -{ - - protected $Id = 818; - - protected $Name = 'ControllerBoardVersion'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Controller Board Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/Leica/ExposureMode.php deleted file mode 100644 index 065e7b9d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/ExposureMode.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 1037; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'Panasonic::Leica5'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - '0 0 0 0' => array( - 'Id' => '0 0 0 0', - 'Label' => 'Program AE', - ), - '1 0 0 0' => array( - 'Id' => '1 0 0 0', - 'Label' => 'Aperture-priority AE', - ), - '1 1 0 0' => array( - 'Id' => '1 1 0 0', - 'Label' => 'Aperture-priority AE (1)', - ), - '2 0 0 0' => array( - 'Id' => '2 0 0 0', - 'Label' => 'Shutter speed priority AE', - ), - '3 0 0 0' => array( - 'Id' => '3 0 0 0', - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/ExternalSensorBrightnessValue.php b/lib/PHPExiftool/Driver/Tag/Leica/ExternalSensorBrightnessValue.php deleted file mode 100644 index 38e9e2249..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/ExternalSensorBrightnessValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalSensorBrightnessValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExternalSensorBrightnessValue'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'External Sensor Brightness Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/FileIndex.php b/lib/PHPExiftool/Driver/Tag/Leica/FileIndex.php deleted file mode 100644 index 26506a3dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/FileIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileIndex extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FileIndex'; - - protected $FullName = 'Panasonic::ShotInfo'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'File Index'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/FilmMode.php b/lib/PHPExiftool/Driver/Tag/Leica/FilmMode.php deleted file mode 100644 index 09c8db144..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/FilmMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmMode extends AbstractTag -{ - - protected $Id = 1042; - - protected $Name = 'FilmMode'; - - protected $FullName = 'Panasonic::Leica5'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Film Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Leica/FirmwareVersion.php deleted file mode 100644 index f50b2aa7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/FirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 12553; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/ImageIDNumber.php b/lib/PHPExiftool/Driver/Tag/Leica/ImageIDNumber.php deleted file mode 100644 index d49ebd9e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/ImageIDNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageIDNumber extends AbstractTag -{ - - protected $Id = 832; - - protected $Name = 'ImageIDNumber'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Image ID Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/JPEGQuality.php b/lib/PHPExiftool/Driver/Tag/Leica/JPEGQuality.php deleted file mode 100644 index 64b185471..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/JPEGQuality.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGQuality extends AbstractTag -{ - - protected $Id = 12340; - - protected $Name = 'JPEGQuality'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'JPEG Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 94 => array( - 'Id' => 94, - 'Label' => 'Basic', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'Fine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/JPEGSize.php b/lib/PHPExiftool/Driver/Tag/Leica/JPEGSize.php deleted file mode 100644 index 37ed99d6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/JPEGSize.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGSize extends AbstractTag -{ - - protected $Id = 12346; - - protected $Name = 'JPEGSize'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'JPEG Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '5216x3472', - ), - 1 => array( - 'Id' => 1, - 'Label' => '3840x2592', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2592x1728', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1728x1152', - ), - 4 => array( - 'Id' => 4, - 'Label' => '1280x864', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/LensModel.php b/lib/PHPExiftool/Driver/Tag/Leica/LensModel.php deleted file mode 100644 index 181048ddc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/LensModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 771; - - protected $Name = 'LensModel'; - - protected $FullName = 'Panasonic::Leica5'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/LensType.php b/lib/PHPExiftool/Driver/Tag/Leica/LensType.php deleted file mode 100644 index b98809518..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/LensType.php +++ /dev/null @@ -1,256 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Elmarit-M 21mm f/2.8', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Elmarit-M 28mm f/2.8 (III)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tele-Elmarit-M 90mm f/2.8 (II)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Summilux-M 50mm f/1.4 (II)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Summicron-M 35mm f/2 (IV)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Summicron-M 90mm f/2 (II)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Elmarit-M 135mm f/2.8 (I/II)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Tri-Elmar-M 16-18-21mm f/4 ASPH.', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Summicron-M 50mm f/2 (III)', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Elmarit-M 21mm f/2.8 ASPH.', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Elmarit-M 24mm f/2.8 ASPH.', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Summicron-M 28mm f/2 ASPH.', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Elmarit-M 28mm f/2.8 (IV)', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Elmarit-M 28mm f/2.8 ASPH.', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Summilux-M 35mm f/1.4 ASPH.', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Summicron-M 35mm f/2 ASPH.', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Noctilux-M 50mm f/1', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Summilux-M 50mm f/1.4 ASPH.', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Summicron-M 50mm f/2 (IV, V)', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Elmar-M 50mm f/2.8', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Summilux-M 75mm f/1.4', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Apo-Summicron-M 75mm f/2 ASPH.', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Apo-Summicron-M 90mm f/2 ASPH.', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Elmarit-M 90mm f/2.8', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Macro-Elmar-M 90mm f/4', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Macro-Adapter M', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Tri-Elmar-M 28-35-50mm f/4 ASPH.', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Summarit-M 35mm f/2.5', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Summarit-M 50mm f/2.5', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Summarit-M 75mm f/2.5', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Summarit-M 90mm f/2.5', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Summilux-M 21mm f/1.4 ASPH.', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Summilux-M 24mm f/1.4 ASPH.', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Noctilux-M 50mm f/0.95 ASPH.', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Elmar-M 24mm f/3.8 ASPH.', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Super-Elmar-M 21mm f/3.4 Asph', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Super-Elmar-M 18mm f/3.8 ASPH.', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'Uncoded lens', - ), - '6 0' => array( - 'Id' => '6 0', - 'Label' => 'Summilux-M 35mm f/1.4', - ), - '9 0' => array( - 'Id' => '9 0', - 'Label' => 'Apo-Telyt-M 135mm f/3.4', - ), - '16 1' => array( - 'Id' => '16 1', - 'Label' => 'Tri-Elmar-M 16-18-21mm f/4 ASPH. (at 16mm)', - ), - '16 2' => array( - 'Id' => '16 2', - 'Label' => 'Tri-Elmar-M 16-18-21mm f/4 ASPH. (at 18mm)', - ), - '16 3' => array( - 'Id' => '16 3', - 'Label' => 'Tri-Elmar-M 16-18-21mm f/4 ASPH. (at 21mm)', - ), - '29 0' => array( - 'Id' => '29 0', - 'Label' => 'Summilux-M 35mm f/1.4 ASPHERICAL', - ), - '31 0' => array( - 'Id' => '31 0', - 'Label' => 'Noctilux-M 50mm f/1.2', - ), - '39 0' => array( - 'Id' => '39 0', - 'Label' => 'Tele-Elmar-M 135mm f/4 (II)', - ), - '41 3' => array( - 'Id' => '41 3', - 'Label' => 'Apo-Summicron-M 50mm f/2 Asph', - ), - '42 1' => array( - 'Id' => '42 1', - 'Label' => 'Tri-Elmar-M 28-35-50mm f/4 ASPH. (at 28mm)', - ), - '42 2' => array( - 'Id' => '42 2', - 'Label' => 'Tri-Elmar-M 28-35-50mm f/4 ASPH. (at 35mm)', - ), - '42 3' => array( - 'Id' => '42 3', - 'Label' => 'Tri-Elmar-M 28-35-50mm f/4 ASPH. (at 50mm)', - ), - '51 2' => array( - 'Id' => '51 2', - 'Label' => 'Super-Elmar-M 14mm f/3.8 Asph', - ), - '53 2' => array( - 'Id' => '53 2', - 'Label' => 'Apo-Telyt-M 135mm f/3.4', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/M16CVersion.php b/lib/PHPExiftool/Driver/Tag/Leica/M16CVersion.php deleted file mode 100644 index dbfca3db9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/M16CVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class M16CVersion extends AbstractTag -{ - - protected $Id = 819; - - protected $Name = 'M16CVersion'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'M16C Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/MeasuredLV.php b/lib/PHPExiftool/Driver/Tag/Leica/MeasuredLV.php deleted file mode 100644 index fdbec5312..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/MeasuredLV.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredLV extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MeasuredLV'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Measured LV'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/OriginalDirectory.php b/lib/PHPExiftool/Driver/Tag/Leica/OriginalDirectory.php deleted file mode 100644 index 79cbc4473..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/OriginalDirectory.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalDirectory extends AbstractTag -{ - - protected $Id = 1032; - - protected $Name = 'OriginalDirectory'; - - protected $FullName = 'Panasonic::Leica5'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original Directory'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/OriginalFileName.php b/lib/PHPExiftool/Driver/Tag/Leica/OriginalFileName.php deleted file mode 100644 index 6a4fa13a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/OriginalFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFileName extends AbstractTag -{ - - protected $Id = 1031; - - protected $Name = 'OriginalFileName'; - - protected $FullName = 'Panasonic::Leica5'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original File Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Leica/PreviewImage.php deleted file mode 100644 index c26701bf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Panasonic::Leica6'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/Quality.php b/lib/PHPExiftool/Driver/Tag/Leica/Quality.php deleted file mode 100644 index b82200487..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/Quality.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'Quality'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Fine', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Basic', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/Saturation.php b/lib/PHPExiftool/Driver/Tag/Leica/Saturation.php deleted file mode 100644 index eab43f6d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/Saturation.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 12301; - - protected $Name = 'Saturation'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Medium Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Medium High', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Black & White', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Vintage B&W', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/SensorBitDepth.php b/lib/PHPExiftool/Driver/Tag/Leica/SensorBitDepth.php deleted file mode 100644 index 0d137a24d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/SensorBitDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorBitDepth extends AbstractTag -{ - - protected $Id = 12589; - - protected $Name = 'SensorBitDepth'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sensor Bit Depth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/SensorHeight.php b/lib/PHPExiftool/Driver/Tag/Leica/SensorHeight.php deleted file mode 100644 index 86e1ee47f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/SensorHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorHeight extends AbstractTag -{ - - protected $Id = 12588; - - protected $Name = 'SensorHeight'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sensor Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/SensorWidth.php b/lib/PHPExiftool/Driver/Tag/Leica/SensorWidth.php deleted file mode 100644 index ce4e0faa8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/SensorWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorWidth extends AbstractTag -{ - - protected $Id = 12587; - - protected $Name = 'SensorWidth'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sensor Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Leica/SerialNumber.php deleted file mode 100644 index 5b24086ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/Sharpening.php b/lib/PHPExiftool/Driver/Tag/Leica/Sharpening.php deleted file mode 100644 index f1f75c8aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/Sharpening.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpening extends AbstractTag -{ - - protected $Id = 12299; - - protected $Name = 'Sharpening'; - - protected $FullName = 'Panasonic::Subdir'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sharpening'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Medium High', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/UVIRFilterCorrection.php b/lib/PHPExiftool/Driver/Tag/Leica/UVIRFilterCorrection.php deleted file mode 100644 index ba50b3676..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/UVIRFilterCorrection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UVIRFilterCorrection extends AbstractTag -{ - - protected $Id = 805; - - protected $Name = 'UV-IRFilterCorrection'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'UV/IR Filter Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Active', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Active', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/UnknownBlock.php b/lib/PHPExiftool/Driver/Tag/Leica/UnknownBlock.php deleted file mode 100644 index f3aca31d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/UnknownBlock.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownBlock extends AbstractTag -{ - - protected $Id = 769; - - protected $Name = 'UnknownBlock'; - - protected $FullName = 'Panasonic::Leica6'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown Block'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/UserProfile.php b/lib/PHPExiftool/Driver/Tag/Leica/UserProfile.php deleted file mode 100644 index e0b9508f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/UserProfile.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserProfile extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UserProfile'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'User Profile'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'User Profile 1', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'User Profile 2', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'User Profile 3', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'User Profile 0 (Dynamic)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/WBBlueLevel.php b/lib/PHPExiftool/Driver/Tag/Leica/WBBlueLevel.php deleted file mode 100644 index ce2b4ccf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/WBBlueLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevel extends AbstractTag -{ - - protected $Id = 804; - - protected $Name = 'WBBlueLevel'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/WBGreenLevel.php b/lib/PHPExiftool/Driver/Tag/Leica/WBGreenLevel.php deleted file mode 100644 index 71704daa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/WBGreenLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGreenLevel extends AbstractTag -{ - - protected $Id = 803; - - protected $Name = 'WBGreenLevel'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'WB Green Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/WBRGBLevels.php b/lib/PHPExiftool/Driver/Tag/Leica/WBRGBLevels.php deleted file mode 100644 index 7146fda58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/WBRGBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGBLevels'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'WB RGB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/WBRedLevel.php b/lib/PHPExiftool/Driver/Tag/Leica/WBRedLevel.php deleted file mode 100644 index cacde4ac8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/WBRedLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevel extends AbstractTag -{ - - protected $Id = 802; - - protected $Name = 'WBRedLevel'; - - protected $FullName = 'Panasonic::Leica2'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'WB Red Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Leica/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Leica/WhiteBalance.php deleted file mode 100644 index a5b34ba99..000000000 --- a/lib/PHPExiftool/Driver/Tag/Leica/WhiteBalance.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Leica; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Leica'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Leica'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto or Manual', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fluorescent', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Flash', - ), - 5 => array( - 'Id' => 10, - 'Label' => 'Cloudy', - ), - 6 => array( - 'Id' => 11, - 'Label' => 'Shade', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Tungsten', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Fluorescent', - ), - 10 => array( - 'Id' => 3, - 'Label' => 'Daylight Fluorescent', - ), - 11 => array( - 'Id' => 4, - 'Label' => 'Daylight', - ), - 12 => array( - 'Id' => 5, - 'Label' => 'Flash', - ), - 13 => array( - 'Id' => 6, - 'Label' => 'Cloudy', - ), - 14 => array( - 'Id' => 7, - 'Label' => 'Shade', - ), - 15 => array( - 'Id' => 8, - 'Label' => 'Manual', - ), - 16 => array( - 'Id' => 9, - 'Label' => 'Kelvin', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerTime.php b/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerTime.php deleted file mode 100644 index e03464624..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerometerTime extends AbstractTag -{ - - protected $Id = 'DevicesAccelerometerSampleArrayTime'; - - protected $Name = 'AccelerometerTime'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Accelerometer Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerX.php b/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerX.php deleted file mode 100644 index 3d99ae273..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerometerX extends AbstractTag -{ - - protected $Id = 'DevicesAccelerometerSampleArrayX'; - - protected $Name = 'AccelerometerX'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Accelerometer X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerY.php b/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerY.php deleted file mode 100644 index 6149a6a90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerometerY extends AbstractTag -{ - - protected $Id = 'DevicesAccelerometerSampleArrayY'; - - protected $Name = 'AccelerometerY'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Accelerometer Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerZ.php b/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerZ.php deleted file mode 100644 index 487777108..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/AccelerometerZ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerometerZ extends AbstractTag -{ - - protected $Id = 'DevicesAccelerometerSampleArrayZ'; - - protected $Name = 'AccelerometerZ'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Accelerometer Z'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/CameraType.php b/lib/PHPExiftool/Driver/Tag/Lytro/CameraType.php deleted file mode 100644 index 5a2aad72d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/CameraType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraType extends AbstractTag -{ - - protected $Id = 'Type'; - - protected $Name = 'CameraType'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Lytro/DateTimeOriginal.php deleted file mode 100644 index 3328c6319..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'DevicesClockZuluTime'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/EmbeddedImage.php b/lib/PHPExiftool/Driver/Tag/Lytro/EmbeddedImage.php deleted file mode 100644 index 773948ab8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/EmbeddedImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImage extends AbstractTag -{ - - protected $Id = 'EmbeddedImage'; - - protected $Name = 'EmbeddedImage'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded Image'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Lytro/ExposureTime.php deleted file mode 100644 index 53d832d8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/ExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'DevicesShutterPixelExposureDuration'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/FNumber.php b/lib/PHPExiftool/Driver/Tag/Lytro/FNumber.php deleted file mode 100644 index a1d73a1bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/FNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'DevicesLensFNumber'; - - protected $Name = 'FNumber'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'F Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Lytro/FirmwareVersion.php deleted file mode 100644 index efd701475..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/FirmwareVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'CameraFirmware'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Lytro/FocalLength.php deleted file mode 100644 index cf9e94b1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/FocalLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'DevicesLensFocalLength'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/FocalPlaneXResolution.php b/lib/PHPExiftool/Driver/Tag/Lytro/FocalPlaneXResolution.php deleted file mode 100644 index 39f0b8e31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/FocalPlaneXResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneXResolution extends AbstractTag -{ - - protected $Id = 'DevicesSensorPixelPitch'; - - protected $Name = 'FocalPlaneXResolution'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Plane X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/FrameExposureTime.php b/lib/PHPExiftool/Driver/Tag/Lytro/FrameExposureTime.php deleted file mode 100644 index 249089814..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/FrameExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameExposureTime extends AbstractTag -{ - - protected $Id = 'DevicesShutterFrameExposureDuration'; - - protected $Name = 'FrameExposureTime'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/ISO.php b/lib/PHPExiftool/Driver/Tag/Lytro/ISO.php deleted file mode 100644 index 1ffe90fe7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/ISO.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'DevicesSensorIso'; - - protected $Name = 'ISO'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/ImageLimitExposureBias.php b/lib/PHPExiftool/Driver/Tag/Lytro/ImageLimitExposureBias.php deleted file mode 100644 index d98dcb5af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/ImageLimitExposureBias.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageLimitExposureBias extends AbstractTag -{ - - protected $Id = 'ImageLimitExposureBias'; - - protected $Name = 'ImageLimitExposureBias'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Limit Exposure Bias'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/ImageModulationExposureBias.php b/lib/PHPExiftool/Driver/Tag/Lytro/ImageModulationExposureBias.php deleted file mode 100644 index b0aa83286..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/ImageModulationExposureBias.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageModulationExposureBias extends AbstractTag -{ - - protected $Id = 'ImageModulationExposureBias'; - - protected $Name = 'ImageModulationExposureBias'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Modulation Exposure Bias'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/JSONMetadata.php b/lib/PHPExiftool/Driver/Tag/Lytro/JSONMetadata.php deleted file mode 100644 index 54d4a9405..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/JSONMetadata.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JSONMetadata extends AbstractTag -{ - - protected $Id = 'JSONMetadata'; - - protected $Name = 'JSONMetadata'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JSON Metadata'; - - protected $flag_Binary = true; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/LensTemperature.php b/lib/PHPExiftool/Driver/Tag/Lytro/LensTemperature.php deleted file mode 100644 index 3588f45e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/LensTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensTemperature extends AbstractTag -{ - - protected $Id = 'DevicesLensTemperature'; - - protected $Name = 'LensTemperature'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/Make.php b/lib/PHPExiftool/Driver/Tag/Lytro/Make.php deleted file mode 100644 index 461651299..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/Make.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'CameraMake'; - - protected $Name = 'Make'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/Model.php b/lib/PHPExiftool/Driver/Tag/Lytro/Model.php deleted file mode 100644 index cf85ec8f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/Model.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'CameraModel'; - - protected $Name = 'Model'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/Orientation.php b/lib/PHPExiftool/Driver/Tag/Lytro/Orientation.php deleted file mode 100644 index e1c6a14fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/Orientation.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 'ImageOrientation'; - - protected $Name = 'Orientation'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $local_g2 = 'Image'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/SensorSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Lytro/SensorSerialNumber.php deleted file mode 100644 index 7a7b034b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/SensorSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorSerialNumber extends AbstractTag -{ - - protected $Id = 'DevicesSensorSensorSerial'; - - protected $Name = 'SensorSerialNumber'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Lytro/SerialNumber.php deleted file mode 100644 index 333fe517f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/SerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'CameraSerialNumber'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Lytro/SocTemperature.php b/lib/PHPExiftool/Driver/Tag/Lytro/SocTemperature.php deleted file mode 100644 index 3313aa1a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Lytro/SocTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Lytro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SocTemperature extends AbstractTag -{ - - protected $Id = 'DevicesSocTemperature'; - - protected $Name = 'SocTemperature'; - - protected $FullName = 'Lytro::Main'; - - protected $GroupName = 'Lytro'; - - protected $g0 = 'Lytro'; - - protected $g1 = 'Lytro'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Soc Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/M2TS/AudioStreamType.php b/lib/PHPExiftool/Driver/Tag/M2TS/AudioStreamType.php deleted file mode 100644 index 412ffcba8..000000000 --- a/lib/PHPExiftool/Driver/Tag/M2TS/AudioStreamType.php +++ /dev/null @@ -1,190 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\M2TS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioStreamType extends AbstractTag -{ - - protected $Id = 'AudioStreamType'; - - protected $Name = 'AudioStreamType'; - - protected $FullName = 'M2TS::Main'; - - protected $GroupName = 'M2TS'; - - protected $g0 = 'M2TS'; - - protected $g1 = 'M2TS'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Stream Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Reserved', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'MPEG-1 Video', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'MPEG-2 Video', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'MPEG-1 Audio', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'MPEG-2 Audio', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'ISO 13818-1 private sections', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'ISO 13818-1 PES private data', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'ISO 13522 MHEG', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'ISO 13818-1 DSM-CC', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'ISO 13818-1 auxiliary', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'ISO 13818-6 multi-protocol encap', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'ISO 13818-6 DSM-CC U-N msgs', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'ISO 13818-6 stream descriptors', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'ISO 13818-6 sections', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'ISO 13818-1 auxiliary', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'MPEG-2 AAC Audio', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'MPEG-4 Video', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'MPEG-4 LATM AAC Audio', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'MPEG-4 generic', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'ISO 14496-1 SL-packetized', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'ISO 13818-6 Synchronized Download Protocol', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'H.264 Video', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'DigiCipher II Video', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'A52/AC-3 Audio', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'HDMV DTS Audio', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'LPCM Audio', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'SDDS Audio', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'ATSC Program ID', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'DTS-HD Audio', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'E-AC-3 Audio', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'DTS Audio', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'A52b/AC-3 Audio', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'DVD_SPU vls Subtitle', - ), - 148 => array( - 'Id' => 148, - 'Label' => 'SDDS Audio', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'MSCODEC Video', - ), - 234 => array( - 'Id' => 234, - 'Label' => 'Private ES (VC-1)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/M2TS/Duration.php b/lib/PHPExiftool/Driver/Tag/M2TS/Duration.php deleted file mode 100644 index 949c9cd77..000000000 --- a/lib/PHPExiftool/Driver/Tag/M2TS/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\M2TS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'Duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'M2TS::Main'; - - protected $GroupName = 'M2TS'; - - protected $g0 = 'M2TS'; - - protected $g1 = 'M2TS'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/M2TS/VideoStreamType.php b/lib/PHPExiftool/Driver/Tag/M2TS/VideoStreamType.php deleted file mode 100644 index 4e15d14af..000000000 --- a/lib/PHPExiftool/Driver/Tag/M2TS/VideoStreamType.php +++ /dev/null @@ -1,190 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\M2TS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoStreamType extends AbstractTag -{ - - protected $Id = 'VideoStreamType'; - - protected $Name = 'VideoStreamType'; - - protected $FullName = 'M2TS::Main'; - - protected $GroupName = 'M2TS'; - - protected $g0 = 'M2TS'; - - protected $g1 = 'M2TS'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Stream Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Reserved', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'MPEG-1 Video', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'MPEG-2 Video', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'MPEG-1 Audio', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'MPEG-2 Audio', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'ISO 13818-1 private sections', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'ISO 13818-1 PES private data', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'ISO 13522 MHEG', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'ISO 13818-1 DSM-CC', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'ISO 13818-1 auxiliary', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'ISO 13818-6 multi-protocol encap', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'ISO 13818-6 DSM-CC U-N msgs', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'ISO 13818-6 stream descriptors', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'ISO 13818-6 sections', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'ISO 13818-1 auxiliary', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'MPEG-2 AAC Audio', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'MPEG-4 Video', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'MPEG-4 LATM AAC Audio', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'MPEG-4 generic', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'ISO 14496-1 SL-packetized', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'ISO 13818-6 Synchronized Download Protocol', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'H.264 Video', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'DigiCipher II Video', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'A52/AC-3 Audio', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'HDMV DTS Audio', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'LPCM Audio', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'SDDS Audio', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'ATSC Program ID', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'DTS-HD Audio', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'E-AC-3 Audio', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'DTS Audio', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'A52b/AC-3 Audio', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'DVD_SPU vls Subtitle', - ), - 148 => array( - 'Id' => 148, - 'Label' => 'SDDS Audio', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'MSCODEC Video', - ), - 234 => array( - 'Id' => 234, - 'Label' => 'Private ES (VC-1)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/APEVersion.php b/lib/PHPExiftool/Driver/Tag/MAC/APEVersion.php deleted file mode 100644 index fad5326ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/APEVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class APEVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'APEVersion'; - - protected $FullName = 'APE::OldHeader'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'APE Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/MAC/BitsPerSample.php deleted file mode 100644 index 821b0ab25..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'APE::NewHeader'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/BlocksPerFrame.php b/lib/PHPExiftool/Driver/Tag/MAC/BlocksPerFrame.php deleted file mode 100644 index 2d82d26bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/BlocksPerFrame.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlocksPerFrame extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'BlocksPerFrame'; - - protected $FullName = 'APE::NewHeader'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Blocks Per Frame'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/Channels.php b/lib/PHPExiftool/Driver/Tag/MAC/Channels.php deleted file mode 100644 index b7f8182e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Channels'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/CompressionLevel.php b/lib/PHPExiftool/Driver/Tag/MAC/CompressionLevel.php deleted file mode 100644 index d75fccd1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/CompressionLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CompressionLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Compression Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/FinalFrameBlocks.php b/lib/PHPExiftool/Driver/Tag/MAC/FinalFrameBlocks.php deleted file mode 100644 index e68ae29d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/FinalFrameBlocks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FinalFrameBlocks extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FinalFrameBlocks'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Final Frame Blocks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/SampleRate.php b/lib/PHPExiftool/Driver/Tag/MAC/SampleRate.php deleted file mode 100644 index f22fc4d33..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SampleRate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MAC/TotalFrames.php b/lib/PHPExiftool/Driver/Tag/MAC/TotalFrames.php deleted file mode 100644 index 06fd8a41b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MAC/TotalFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MAC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalFrames extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TotalFrames'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MAC'; - - protected $g0 = 'APE'; - - protected $g1 = 'MAC'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Total Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/AudioCompression.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/AudioCompression.php deleted file mode 100644 index 76994f08c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/AudioCompression.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCompression extends AbstractTag -{ - - protected $Id = 'Compression'; - - protected $Name = 'AudioCompression'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Audio Compression'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/Channels.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/Channels.php deleted file mode 100644 index 0380620a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 'Channels'; - - protected $Name = 'Channels'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/Duration.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/Duration.php deleted file mode 100644 index 30e067006..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'Duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFile.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFile.php deleted file mode 100644 index 96ece6ab4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFile.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedAudioFile extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'RelatedAudioFile'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Related Audio File'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFileName.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFileName.php deleted file mode 100644 index 6f5e49273..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedAudioFileName extends AbstractTag -{ - - protected $Id = '1Name'; - - protected $Name = 'RelatedAudioFileName'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Audio File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFileType.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFileType.php deleted file mode 100644 index a8d8753c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/RelatedAudioFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedAudioFileType extends AbstractTag -{ - - protected $Id = '0Type'; - - protected $Name = 'RelatedAudioFileType'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Audio File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/SampleBits.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/SampleBits.php deleted file mode 100644 index 06547916b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/SampleBits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleBits extends AbstractTag -{ - - protected $Id = 'SampleBits'; - - protected $Name = 'SampleBits'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sample Bits'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEAudio/SampleRate.php b/lib/PHPExiftool/Driver/Tag/MIEAudio/SampleRate.php deleted file mode 100644 index 7530bbc18..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEAudio/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEAudio; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 'SampleRate'; - - protected $Name = 'SampleRate'; - - protected $FullName = 'MIE::Audio'; - - protected $GroupName = 'MIE-Audio'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Audio'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/Brightness.php b/lib/PHPExiftool/Driver/Tag/MIECamera/Brightness.php deleted file mode 100644 index a77191d7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/Brightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 'Brightness'; - - protected $Name = 'Brightness'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Brightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ColorBalance.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ColorBalance.php deleted file mode 100644 index 7da6a2566..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ColorBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBalance extends AbstractTag -{ - - protected $Id = 'ColorBalance'; - - protected $Name = 'ColorBalance'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Color Balance'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ColorTemperature.php deleted file mode 100644 index 148428456..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ColorTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 'ColorTemperature'; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/Contrast.php b/lib/PHPExiftool/Driver/Tag/MIECamera/Contrast.php deleted file mode 100644 index 30cd3465f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/Contrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'Contrast'; - - protected $Name = 'Contrast'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/MIECamera/DigitalZoom.php deleted file mode 100644 index d095834ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/DigitalZoom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 'DigitalZoom'; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureCompensation.php deleted file mode 100644 index 6eb60bda3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureCompensation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'ExposureComp'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureMode.php deleted file mode 100644 index 5e65d8824..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 'ExposureMode'; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureTime.php deleted file mode 100644 index d91ab9f7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'ExposureTime'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/MIECamera/FirmwareVersion.php deleted file mode 100644 index ad23be167..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/FirmwareVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'FirmwareVersion'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/FocusMode.php b/lib/PHPExiftool/Driver/Tag/MIECamera/FocusMode.php deleted file mode 100644 index 48ff2599c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/FocusMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'FocusMode'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ISO.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ISO.php deleted file mode 100644 index b52fa658a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ISO.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'ISO'; - - protected $Name = 'ISO'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ISO'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ISOSetting.php deleted file mode 100644 index a1e26fec6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ISOSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = 'ISOSetting'; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ImageNumber.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ImageNumber.php deleted file mode 100644 index 828344270..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ImageNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber extends AbstractTag -{ - - protected $Id = 'ImageNumber'; - - protected $Name = 'ImageNumber'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Image Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ImageQuality.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ImageQuality.php deleted file mode 100644 index 83e2e25a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ImageQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageQuality extends AbstractTag -{ - - protected $Id = 'ImageQuality'; - - protected $Name = 'ImageQuality'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ImageStabilization.php deleted file mode 100644 index bb16d2e38..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ImageStabilization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 'ImageStabilization'; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/Make.php b/lib/PHPExiftool/Driver/Tag/MIECamera/Make.php deleted file mode 100644 index d6146b772..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/Make.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'Make'; - - protected $Name = 'Make'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/MeasuredEV.php b/lib/PHPExiftool/Driver/Tag/MIECamera/MeasuredEV.php deleted file mode 100644 index 857ab5513..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/MeasuredEV.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredEV extends AbstractTag -{ - - protected $Id = 'MeasuredEV'; - - protected $Name = 'MeasuredEV'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Measured EV'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/Model.php b/lib/PHPExiftool/Driver/Tag/MIECamera/Model.php deleted file mode 100644 index a79cf71e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/Model.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'Model'; - - protected $Name = 'Model'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/OwnerName.php b/lib/PHPExiftool/Driver/Tag/MIECamera/OwnerName.php deleted file mode 100644 index d82f728f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/OwnerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerName extends AbstractTag -{ - - protected $Id = 'OwnerName'; - - protected $Name = 'OwnerName'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/Saturation.php b/lib/PHPExiftool/Driver/Tag/MIECamera/Saturation.php deleted file mode 100644 index 783d8e065..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/Saturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'Saturation'; - - protected $Name = 'Saturation'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/SensorSize.php b/lib/PHPExiftool/Driver/Tag/MIECamera/SensorSize.php deleted file mode 100644 index c7144a51f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/SensorSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorSize extends AbstractTag -{ - - protected $Id = 'SensorSize'; - - protected $Name = 'SensorSize'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Sensor Size'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/MIECamera/SerialNumber.php deleted file mode 100644 index ca30c29e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/SerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'SerialNumber'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/Sharpness.php b/lib/PHPExiftool/Driver/Tag/MIECamera/Sharpness.php deleted file mode 100644 index 5b00f01b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/Sharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'Sharpness'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIECamera/ShootingMode.php b/lib/PHPExiftool/Driver/Tag/MIECamera/ShootingMode.php deleted file mode 100644 index c3a7c330a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIECamera/ShootingMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIECamera; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingMode extends AbstractTag -{ - - protected $Id = 'ShootingMode'; - - protected $Name = 'ShootingMode'; - - protected $FullName = 'MIE::Camera'; - - protected $GroupName = 'MIE-Camera'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Camera'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shooting Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/Author.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/Author.php deleted file mode 100644 index faeddee1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'Author'; - - protected $Name = 'Author'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/Comment.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/Comment.php deleted file mode 100644 index 2426a43e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'Comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/Contributors.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/Contributors.php deleted file mode 100644 index 2b50a5ded..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/Contributors.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contributors extends AbstractTag -{ - - protected $Id = 'Contributors'; - - protected $Name = 'Contributors'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Contributors'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/Copyright.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/Copyright.php deleted file mode 100644 index d46388b83..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'Copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/CreateDate.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/CreateDate.php deleted file mode 100644 index e25011a19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'CreateDate'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/DateTimeOriginal.php deleted file mode 100644 index 1e80ed913..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'OriginalDate'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/EMail.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/EMail.php deleted file mode 100644 index db9d17376..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/EMail.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EMail extends AbstractTag -{ - - protected $Id = 'EMail'; - - protected $Name = 'EMail'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'E Mail'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/Keywords.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/Keywords.php deleted file mode 100644 index 454903a2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/Keywords.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keywords'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/ModifyDate.php deleted file mode 100644 index d22ee27c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'ModifyDate'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/PhoneNumber.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/PhoneNumber.php deleted file mode 100644 index 70360eddf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/PhoneNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhoneNumber extends AbstractTag -{ - - protected $Id = 'Phone'; - - protected $Name = 'PhoneNumber'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Phone Number'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/References.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/References.php deleted file mode 100644 index c1bc28dcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/References.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class References extends AbstractTag -{ - - protected $Id = 'References'; - - protected $Name = 'References'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'References'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/Software.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/Software.php deleted file mode 100644 index c1c0a30e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'Software'; - - protected $Name = 'Software'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/Title.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/Title.php deleted file mode 100644 index 316a41835..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'Title'; - - protected $Name = 'Title'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEDoc/URL.php b/lib/PHPExiftool/Driver/Tag/MIEDoc/URL.php deleted file mode 100644 index a54669afc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEDoc/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEDoc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'URL'; - - protected $Name = 'URL'; - - protected $FullName = 'MIE::Doc'; - - protected $GroupName = 'MIE-Doc'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Doc'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderMagnification.php b/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderMagnification.php deleted file mode 100644 index 9b657d2a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderMagnification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEExtender; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderMagnification extends AbstractTag -{ - - protected $Id = 'Magnification'; - - protected $Name = 'ExtenderMagnification'; - - protected $FullName = 'MIE::Extender'; - - protected $GroupName = 'MIE-Extender'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Extender'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Extender Magnification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderMake.php b/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderMake.php deleted file mode 100644 index b55338b9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderMake.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEExtender; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderMake extends AbstractTag -{ - - protected $Id = 'Make'; - - protected $Name = 'ExtenderMake'; - - protected $FullName = 'MIE::Extender'; - - protected $GroupName = 'MIE-Extender'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Extender'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Extender Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderModel.php b/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderModel.php deleted file mode 100644 index de1aac505..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEExtender; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderModel extends AbstractTag -{ - - protected $Id = 'Model'; - - protected $Name = 'ExtenderModel'; - - protected $FullName = 'MIE::Extender'; - - protected $GroupName = 'MIE-Extender'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Extender'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Extender Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderSerialNumber.php b/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderSerialNumber.php deleted file mode 100644 index b9078b09b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEExtender/ExtenderSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEExtender; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderSerialNumber extends AbstractTag -{ - - protected $Id = 'SerialNumber'; - - protected $Name = 'ExtenderSerialNumber'; - - protected $FullName = 'MIE::Extender'; - - protected $GroupName = 'MIE-Extender'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Extender'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Extender Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashExposureComp.php deleted file mode 100644 index c8977324d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashExposureComp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 'ExposureComp'; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashFired.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashFired.php deleted file mode 100644 index 12d23504c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashFired.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFired extends AbstractTag -{ - - protected $Id = 'Fired'; - - protected $Name = 'FlashFired'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Fired'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashGuideNumber.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashGuideNumber.php deleted file mode 100644 index 931782193..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashGuideNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGuideNumber extends AbstractTag -{ - - protected $Id = 'GuideNumber'; - - protected $Name = 'FlashGuideNumber'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Guide Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashMake.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashMake.php deleted file mode 100644 index c11ce5ee4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashMake.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMake extends AbstractTag -{ - - protected $Id = 'Make'; - - protected $Name = 'FlashMake'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashMode.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashMode.php deleted file mode 100644 index 51fbc2b1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'Mode'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashModel.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashModel.php deleted file mode 100644 index 659f6dfc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashModel extends AbstractTag -{ - - protected $Id = 'Model'; - - protected $Name = 'FlashModel'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashSerialNumber.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashSerialNumber.php deleted file mode 100644 index 45611a6c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashSerialNumber extends AbstractTag -{ - - protected $Id = 'SerialNumber'; - - protected $Name = 'FlashSerialNumber'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashType.php b/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashType.php deleted file mode 100644 index 140f388af..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEFlash/FlashType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEFlash; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashType extends AbstractTag -{ - - protected $Id = 'Type'; - - protected $Name = 'FlashType'; - - protected $FullName = 'MIE::Flash'; - - protected $GroupName = 'MIE-Flash'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Flash'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSAltitude.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSAltitude.php deleted file mode 100644 index 0ee6a7984..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSAltitude.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitude extends AbstractTag -{ - - protected $Id = 'Altitude'; - - protected $Name = 'GPSAltitude'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'GPS Altitude'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDateTime.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDateTime.php deleted file mode 100644 index 57dd1bce3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDateTime extends AbstractTag -{ - - protected $Id = 'DateTime'; - - protected $Name = 'GPSDateTime'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDestBearing.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDestBearing.php deleted file mode 100644 index d2f1a491f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDestBearing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestBearing extends AbstractTag -{ - - protected $Id = 'Bearing'; - - protected $Name = 'GPSDestBearing'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Bearing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDestDistance.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDestDistance.php deleted file mode 100644 index 4f9c551cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDestDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestDistance extends AbstractTag -{ - - protected $Id = 'Distance'; - - protected $Name = 'GPSDestDistance'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDifferential.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDifferential.php deleted file mode 100644 index aba186752..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSDifferential.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDifferential extends AbstractTag -{ - - protected $Id = 'Differential'; - - protected $Name = 'GPSDifferential'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'GPS Differential'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Correction', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Differential Corrected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSLatitude.php deleted file mode 100644 index 551e8fcb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSLatitude.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 'Latitude'; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'GPS Latitude'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSLongitude.php deleted file mode 100644 index 9c1fe3f46..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSLongitude.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 'Longitude'; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'GPS Longitude'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSMapDatum.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSMapDatum.php deleted file mode 100644 index 3f9daa16b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSMapDatum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMapDatum extends AbstractTag -{ - - protected $Id = 'Datum'; - - protected $Name = 'GPSMapDatum'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Map Datum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSMeasureMode.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSMeasureMode.php deleted file mode 100644 index 265d6a6d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSMeasureMode.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMeasureMode extends AbstractTag -{ - - protected $Id = 'MeasureMode'; - - protected $Name = 'GPSMeasureMode'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'GPS Measure Mode'; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => '2-D', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3-D', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSSatellites.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSSatellites.php deleted file mode 100644 index 9502308ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSSatellites.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSatellites extends AbstractTag -{ - - protected $Id = 'Satellites'; - - protected $Name = 'GPSSatellites'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Satellites'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSSpeed.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSSpeed.php deleted file mode 100644 index 57f6a1882..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSpeed extends AbstractTag -{ - - protected $Id = 'Speed'; - - protected $Name = 'GPSSpeed'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'GPS Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSTrack.php b/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSTrack.php deleted file mode 100644 index 61adde9fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGPS/GPSTrack.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGPS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSTrack extends AbstractTag -{ - - protected $Id = 'Heading'; - - protected $Name = 'GPSTrack'; - - protected $FullName = 'MIE::GPS'; - - protected $GroupName = 'MIE-GPS'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-GPS'; - - protected $g2 = 'Location'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'GPS Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGeo/Address.php b/lib/PHPExiftool/Driver/Tag/MIEGeo/Address.php deleted file mode 100644 index b35bd8f3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGeo/Address.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGeo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Address extends AbstractTag -{ - - protected $Id = 'Address'; - - protected $Name = 'Address'; - - protected $FullName = 'MIE::Geo'; - - protected $GroupName = 'MIE-Geo'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Geo'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGeo/City.php b/lib/PHPExiftool/Driver/Tag/MIEGeo/City.php deleted file mode 100644 index f63c11e76..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGeo/City.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGeo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class City extends AbstractTag -{ - - protected $Id = 'City'; - - protected $Name = 'City'; - - protected $FullName = 'MIE::Geo'; - - protected $GroupName = 'MIE-Geo'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Geo'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'City'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGeo/Country.php b/lib/PHPExiftool/Driver/Tag/MIEGeo/Country.php deleted file mode 100644 index 4c9d1290b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGeo/Country.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGeo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Country extends AbstractTag -{ - - protected $Id = 'Country'; - - protected $Name = 'Country'; - - protected $FullName = 'MIE::Geo'; - - protected $GroupName = 'MIE-Geo'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Geo'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Country'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGeo/PostalCode.php b/lib/PHPExiftool/Driver/Tag/MIEGeo/PostalCode.php deleted file mode 100644 index 3385c14db..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGeo/PostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGeo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostalCode extends AbstractTag -{ - - protected $Id = 'PostalCode'; - - protected $Name = 'PostalCode'; - - protected $FullName = 'MIE::Geo'; - - protected $GroupName = 'MIE-Geo'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Geo'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEGeo/State.php b/lib/PHPExiftool/Driver/Tag/MIEGeo/State.php deleted file mode 100644 index c7c3dd26b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEGeo/State.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEGeo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class State extends AbstractTag -{ - - protected $Id = 'State'; - - protected $Name = 'State'; - - protected $FullName = 'MIE::Geo'; - - protected $GroupName = 'MIE-Geo'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Geo'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/BitDepth.php b/lib/PHPExiftool/Driver/Tag/MIEImage/BitDepth.php deleted file mode 100644 index cba191dd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 'BitDepth'; - - protected $Name = 'BitDepth'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/MIEImage/ColorSpace.php deleted file mode 100644 index 2aad54db5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/ColorSpace.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'ColorSpace'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/ComponentsConfiguration.php b/lib/PHPExiftool/Driver/Tag/MIEImage/ComponentsConfiguration.php deleted file mode 100644 index d2d7037cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/ComponentsConfiguration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentsConfiguration extends AbstractTag -{ - - protected $Id = 'Components'; - - protected $Name = 'ComponentsConfiguration'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Components Configuration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/CompressionRatio.php b/lib/PHPExiftool/Driver/Tag/MIEImage/CompressionRatio.php deleted file mode 100644 index 2efce1df7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/CompressionRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionRatio extends AbstractTag -{ - - protected $Id = 'Compression'; - - protected $Name = 'CompressionRatio'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'rational32u'; - - protected $Writable = true; - - protected $Description = 'Compression Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImage.php b/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImage.php deleted file mode 100644 index b9c7ec0b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullSizeImage extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'FullSizeImage'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Full Size Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImageName.php b/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImageName.php deleted file mode 100644 index d97f36d3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImageName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullSizeImageName extends AbstractTag -{ - - protected $Id = '1Name'; - - protected $Name = 'FullSizeImageName'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Full Size Image Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImageType.php b/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImageType.php deleted file mode 100644 index 05caa9e44..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/FullSizeImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullSizeImageType extends AbstractTag -{ - - protected $Id = '0Type'; - - protected $Name = 'FullSizeImageType'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Full Size Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/ImageSize.php b/lib/PHPExiftool/Driver/Tag/MIEImage/ImageSize.php deleted file mode 100644 index d9dec569b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/ImageSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSize extends AbstractTag -{ - - protected $Id = 'ImageSize'; - - protected $Name = 'ImageSize'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEImage/Resolution.php b/lib/PHPExiftool/Driver/Tag/MIEImage/Resolution.php deleted file mode 100644 index c47e1abbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEImage/Resolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Resolution extends AbstractTag -{ - - protected $Id = 'Resolution'; - - protected $Name = 'Resolution'; - - protected $FullName = 'MIE::Image'; - - protected $GroupName = 'MIE-Image'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Image'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/FNumber.php b/lib/PHPExiftool/Driver/Tag/MIELens/FNumber.php deleted file mode 100644 index c68348912..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/FNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'FNumber'; - - protected $Name = 'FNumber'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'F Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/FocalLength.php b/lib/PHPExiftool/Driver/Tag/MIELens/FocalLength.php deleted file mode 100644 index 96e40a2f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/FocalLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'FocalLength'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Focal Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/FocusDistance.php b/lib/PHPExiftool/Driver/Tag/MIELens/FocusDistance.php deleted file mode 100644 index b6f554431..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/FocusDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistance extends AbstractTag -{ - - protected $Id = 'FocusDistance'; - - protected $Name = 'FocusDistance'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Focus Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/LensMake.php b/lib/PHPExiftool/Driver/Tag/MIELens/LensMake.php deleted file mode 100644 index d9ac53455..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/LensMake.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensMake extends AbstractTag -{ - - protected $Id = 'Make'; - - protected $Name = 'LensMake'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/LensModel.php b/lib/PHPExiftool/Driver/Tag/MIELens/LensModel.php deleted file mode 100644 index d7a67b0e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/LensModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 'Model'; - - protected $Name = 'LensModel'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/MIELens/LensSerialNumber.php deleted file mode 100644 index 686a0f3dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/LensSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 'SerialNumber'; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/MIELens/MaxAperture.php deleted file mode 100644 index 00c818da4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/MaxAperture.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 'MaxAperture'; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/MaxApertureAtMaxFocal.php b/lib/PHPExiftool/Driver/Tag/MIELens/MaxApertureAtMaxFocal.php deleted file mode 100644 index 6d38f73ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/MaxApertureAtMaxFocal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMaxFocal extends AbstractTag -{ - - protected $Id = 'MaxApertureAtMaxFocal'; - - protected $Name = 'MaxApertureAtMaxFocal'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture At Max Focal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/MaxFocalLength.php b/lib/PHPExiftool/Driver/Tag/MIELens/MaxFocalLength.php deleted file mode 100644 index 04fae01a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/MaxFocalLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxFocalLength extends AbstractTag -{ - - protected $Id = 'MaxFocalLength'; - - protected $Name = 'MaxFocalLength'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Max Focal Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/MinAperture.php b/lib/PHPExiftool/Driver/Tag/MIELens/MinAperture.php deleted file mode 100644 index 8950c7537..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/MinAperture.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinAperture extends AbstractTag -{ - - protected $Id = 'MinAperture'; - - protected $Name = 'MinAperture'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Min Aperture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/MinFocalLength.php b/lib/PHPExiftool/Driver/Tag/MIELens/MinFocalLength.php deleted file mode 100644 index c5fd7b395..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/MinFocalLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinFocalLength extends AbstractTag -{ - - protected $Id = 'MinFocalLength'; - - protected $Name = 'MinFocalLength'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Min Focal Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIELens/OpticalZoom.php b/lib/PHPExiftool/Driver/Tag/MIELens/OpticalZoom.php deleted file mode 100644 index 7435337b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIELens/OpticalZoom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIELens; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalZoom extends AbstractTag -{ - - protected $Id = 'OpticalZoom'; - - protected $Name = 'OpticalZoom'; - - protected $FullName = 'MIE::Lens'; - - protected $GroupName = 'MIE-Lens'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Lens'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Optical Zoom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/MD5Digest.php b/lib/PHPExiftool/Driver/Tag/MIEMain/MD5Digest.php deleted file mode 100644 index ad431162c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/MD5Digest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MD5Digest extends AbstractTag -{ - - protected $Id = 'zmd5'; - - protected $Name = 'MD5Digest'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'MD5 Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/MIEVersion.php b/lib/PHPExiftool/Driver/Tag/MIEMain/MIEVersion.php deleted file mode 100644 index 054dddb58..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/MIEVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MIEVersion extends AbstractTag -{ - - protected $Id = '0Vers'; - - protected $Name = 'MIEVersion'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'MIE Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileData.php b/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileData.php deleted file mode 100644 index 07434576c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileData extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'SubfileData'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Subfile Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileDirectory.php b/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileDirectory.php deleted file mode 100644 index 57248612f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileDirectory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileDirectory extends AbstractTag -{ - - protected $Id = '1Directory'; - - protected $Name = 'SubfileDirectory'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subfile Directory'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileMIMEType.php b/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileMIMEType.php deleted file mode 100644 index 4fc4a24ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileMIMEType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileMIMEType extends AbstractTag -{ - - protected $Id = '2MIME'; - - protected $Name = 'SubfileMIMEType'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subfile MIME Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileName.php b/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileName.php deleted file mode 100644 index edbf0e006..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileName extends AbstractTag -{ - - protected $Id = '1Name'; - - protected $Name = 'SubfileName'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subfile Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileResource.php b/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileResource.php deleted file mode 100644 index 4cb56bec5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileResource.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileResource extends AbstractTag -{ - - protected $Id = 'rsrc'; - - protected $Name = 'SubfileResource'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Subfile Resource'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileType.php b/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileType.php deleted file mode 100644 index 5ef4bf3fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/SubfileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileType extends AbstractTag -{ - - protected $Id = '0Type'; - - protected $Name = 'SubfileType'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subfile Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEMain/TrailerSignature.php b/lib/PHPExiftool/Driver/Tag/MIEMain/TrailerSignature.php deleted file mode 100644 index 431e2a075..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEMain/TrailerSignature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEMain; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrailerSignature extends AbstractTag -{ - - protected $Id = 'zmie'; - - protected $Name = 'TrailerSignature'; - - protected $FullName = 'MIE::Main'; - - protected $GroupName = 'MIE-Main'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Main'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Trailer Signature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEOrient/Azimuth.php b/lib/PHPExiftool/Driver/Tag/MIEOrient/Azimuth.php deleted file mode 100644 index e85ba38dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEOrient/Azimuth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEOrient; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Azimuth extends AbstractTag -{ - - protected $Id = 'Azimuth'; - - protected $Name = 'Azimuth'; - - protected $FullName = 'MIE::Orient'; - - protected $GroupName = 'MIE-Orient'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Orient'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Azimuth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEOrient/Declination.php b/lib/PHPExiftool/Driver/Tag/MIEOrient/Declination.php deleted file mode 100644 index a0c1cdb60..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEOrient/Declination.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEOrient; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Declination extends AbstractTag -{ - - protected $Id = 'Declination'; - - protected $Name = 'Declination'; - - protected $FullName = 'MIE::Orient'; - - protected $GroupName = 'MIE-Orient'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Orient'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Declination'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEOrient/Elevation.php b/lib/PHPExiftool/Driver/Tag/MIEOrient/Elevation.php deleted file mode 100644 index e23d19f8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEOrient/Elevation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEOrient; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Elevation extends AbstractTag -{ - - protected $Id = 'Elevation'; - - protected $Name = 'Elevation'; - - protected $FullName = 'MIE::Orient'; - - protected $GroupName = 'MIE-Orient'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Orient'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Elevation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEOrient/RightAscension.php b/lib/PHPExiftool/Driver/Tag/MIEOrient/RightAscension.php deleted file mode 100644 index 5c4869039..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEOrient/RightAscension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEOrient; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightAscension extends AbstractTag -{ - - protected $Id = 'RightAscension'; - - protected $Name = 'RightAscension'; - - protected $FullName = 'MIE::Orient'; - - protected $GroupName = 'MIE-Orient'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Orient'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Right Ascension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEOrient/Rotation.php b/lib/PHPExiftool/Driver/Tag/MIEOrient/Rotation.php deleted file mode 100644 index c4dbefd19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEOrient/Rotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEOrient; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 'Rotation'; - - protected $Name = 'Rotation'; - - protected $FullName = 'MIE::Orient'; - - protected $GroupName = 'MIE-Orient'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Orient'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImage.php deleted file mode 100644 index 1952c2a52..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEPreview; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'MIE::Preview'; - - protected $GroupName = 'MIE-Preview'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Preview'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageName.php b/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageName.php deleted file mode 100644 index 1f73564ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEPreview; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageName extends AbstractTag -{ - - protected $Id = '1Name'; - - protected $Name = 'PreviewImageName'; - - protected $FullName = 'MIE::Preview'; - - protected $GroupName = 'MIE-Preview'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Preview'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Preview Image Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageSize.php b/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageSize.php deleted file mode 100644 index 9436b46cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEPreview; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageSize extends AbstractTag -{ - - protected $Id = 'ImageSize'; - - protected $Name = 'PreviewImageSize'; - - protected $FullName = 'MIE::Preview'; - - protected $GroupName = 'MIE-Preview'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Preview'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageType.php b/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageType.php deleted file mode 100644 index 6fd38bef4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEPreview/PreviewImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEPreview; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageType extends AbstractTag -{ - - protected $Id = '0Type'; - - protected $Name = 'PreviewImageType'; - - protected $FullName = 'MIE::Preview'; - - protected $GroupName = 'MIE-Preview'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Preview'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Preview Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImage.php deleted file mode 100644 index eb9ed9da2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEThumbnail; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'MIE::Thumbnail'; - - protected $GroupName = 'MIE-Thumbnail'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Thumbnail'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageName.php b/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageName.php deleted file mode 100644 index 6975ce207..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEThumbnail; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImageName extends AbstractTag -{ - - protected $Id = '1Name'; - - protected $Name = 'ThumbnailImageName'; - - protected $FullName = 'MIE::Thumbnail'; - - protected $GroupName = 'MIE-Thumbnail'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Thumbnail'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageSize.php b/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageSize.php deleted file mode 100644 index 45454b652..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEThumbnail; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImageSize extends AbstractTag -{ - - protected $Id = 'ImageSize'; - - protected $Name = 'ThumbnailImageSize'; - - protected $FullName = 'MIE::Thumbnail'; - - protected $GroupName = 'MIE-Thumbnail'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Thumbnail'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageType.php b/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageType.php deleted file mode 100644 index cae3cc479..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEThumbnail/ThumbnailImageType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEThumbnail; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImageType extends AbstractTag -{ - - protected $Id = '0Type'; - - protected $Name = 'ThumbnailImageType'; - - protected $FullName = 'MIE::Thumbnail'; - - protected $GroupName = 'MIE-Thumbnail'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Thumbnail'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMEasting.php b/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMEasting.php deleted file mode 100644 index 8192321e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMEasting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEUTM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTMEasting extends AbstractTag -{ - - protected $Id = 'Easting'; - - protected $Name = 'UTMEasting'; - - protected $FullName = 'MIE::UTM'; - - protected $GroupName = 'MIE-UTM'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-UTM'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'UTM Easting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMMapDatum.php b/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMMapDatum.php deleted file mode 100644 index 32ec9af15..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMMapDatum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEUTM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTMMapDatum extends AbstractTag -{ - - protected $Id = 'Datum'; - - protected $Name = 'UTMMapDatum'; - - protected $FullName = 'MIE::UTM'; - - protected $GroupName = 'MIE-UTM'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-UTM'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'UTM Map Datum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMNorthing.php b/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMNorthing.php deleted file mode 100644 index 955c8ac87..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMNorthing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEUTM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTMNorthing extends AbstractTag -{ - - protected $Id = 'Northing'; - - protected $Name = 'UTMNorthing'; - - protected $FullName = 'MIE::UTM'; - - protected $GroupName = 'MIE-UTM'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-UTM'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'UTM Northing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMZone.php b/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMZone.php deleted file mode 100644 index c4ab49bc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEUTM/UTMZone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEUTM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTMZone extends AbstractTag -{ - - protected $Id = 'Zone'; - - protected $Name = 'UTMZone'; - - protected $FullName = 'MIE::UTM'; - - protected $GroupName = 'MIE-UTM'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-UTM'; - - protected $g2 = 'Location'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'UTM Zone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEVideo/Codec.php b/lib/PHPExiftool/Driver/Tag/MIEVideo/Codec.php deleted file mode 100644 index c2beff6cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEVideo/Codec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEVideo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Codec extends AbstractTag -{ - - protected $Id = 'Codec'; - - protected $Name = 'Codec'; - - protected $FullName = 'MIE::Video'; - - protected $GroupName = 'MIE-Video'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Video'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Codec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEVideo/Duration.php b/lib/PHPExiftool/Driver/Tag/MIEVideo/Duration.php deleted file mode 100644 index d0d3b10ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEVideo/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEVideo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'Duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'MIE::Video'; - - protected $GroupName = 'MIE-Video'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Video'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFile.php b/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFile.php deleted file mode 100644 index af85c03e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFile.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEVideo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedVideoFile extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'RelatedVideoFile'; - - protected $FullName = 'MIE::Video'; - - protected $GroupName = 'MIE-Video'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Video'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Related Video File'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFileName.php b/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFileName.php deleted file mode 100644 index b6d0158a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEVideo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedVideoFileName extends AbstractTag -{ - - protected $Id = '1Name'; - - protected $Name = 'RelatedVideoFileName'; - - protected $FullName = 'MIE::Video'; - - protected $GroupName = 'MIE-Video'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Video'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Video File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFileType.php b/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFileType.php deleted file mode 100644 index 62b9f7a48..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIEVideo/RelatedVideoFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIEVideo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedVideoFileType extends AbstractTag -{ - - protected $Id = '0Type'; - - protected $Name = 'RelatedVideoFileType'; - - protected $FullName = 'MIE::Video'; - - protected $GroupName = 'MIE-Video'; - - protected $g0 = 'MIE'; - - protected $g1 = 'MIE-Video'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Video File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/MIFF/BackgroundColor.php deleted file mode 100644 index 4420340c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/BackgroundColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 'background-color'; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/BluePrimary.php b/lib/PHPExiftool/Driver/Tag/MIFF/BluePrimary.php deleted file mode 100644 index 0a6ce317d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/BluePrimary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BluePrimary extends AbstractTag -{ - - protected $Id = 'blue-primary'; - - protected $Name = 'BluePrimary'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blue Primary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/BorderColor.php b/lib/PHPExiftool/Driver/Tag/MIFF/BorderColor.php deleted file mode 100644 index 98077fb81..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/BorderColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BorderColor extends AbstractTag -{ - - protected $Id = 'border-color'; - - protected $Name = 'BorderColor'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Border Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Class0.php b/lib/PHPExiftool/Driver/Tag/MIFF/Class0.php deleted file mode 100644 index adb9b4091..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Class0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Class0 extends AbstractTag -{ - - protected $Id = 'class'; - - protected $Name = 'Class'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/MIFF/ColorSpace.php deleted file mode 100644 index 7a241fe48..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/ColorSpace.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'colorspace'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Space'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Colors.php b/lib/PHPExiftool/Driver/Tag/MIFF/Colors.php deleted file mode 100644 index ec8038f8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Colors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colors extends AbstractTag -{ - - protected $Id = 'colors'; - - protected $Name = 'Colors'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Compression.php b/lib/PHPExiftool/Driver/Tag/MIFF/Compression.php deleted file mode 100644 index c0269e0ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Compression.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 'compression'; - - protected $Name = 'Compression'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Delay.php b/lib/PHPExiftool/Driver/Tag/MIFF/Delay.php deleted file mode 100644 index e121fde2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Delay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Delay extends AbstractTag -{ - - protected $Id = 'delay'; - - protected $Name = 'Delay'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Depth.php b/lib/PHPExiftool/Driver/Tag/MIFF/Depth.php deleted file mode 100644 index 3f08ce68c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Depth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Depth extends AbstractTag -{ - - protected $Id = 'depth'; - - protected $Name = 'Depth'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Dispose.php b/lib/PHPExiftool/Driver/Tag/MIFF/Dispose.php deleted file mode 100644 index cd75d15a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Dispose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Dispose extends AbstractTag -{ - - protected $Id = 'dispose'; - - protected $Name = 'Dispose'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dispose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Gamma.php b/lib/PHPExiftool/Driver/Tag/MIFF/Gamma.php deleted file mode 100644 index 4a07624c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 'gamma'; - - protected $Name = 'Gamma'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/GreenPrimary.php b/lib/PHPExiftool/Driver/Tag/MIFF/GreenPrimary.php deleted file mode 100644 index e518a1eff..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/GreenPrimary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenPrimary extends AbstractTag -{ - - protected $Id = 'green-primary'; - - protected $Name = 'GreenPrimary'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Green Primary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/ID.php b/lib/PHPExiftool/Driver/Tag/MIFF/ID.php deleted file mode 100644 index c7e45653d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/ID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ID extends AbstractTag -{ - - protected $Id = 'id'; - - protected $Name = 'ID'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/MIFF/ImageHeight.php deleted file mode 100644 index 60e11e983..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'rows'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/MIFF/ImageWidth.php deleted file mode 100644 index cb9fb89ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'columns'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Iterations.php b/lib/PHPExiftool/Driver/Tag/MIFF/Iterations.php deleted file mode 100644 index 209e4e36a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Iterations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Iterations extends AbstractTag -{ - - protected $Id = 'iterations'; - - protected $Name = 'Iterations'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Iterations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Label.php b/lib/PHPExiftool/Driver/Tag/MIFF/Label.php deleted file mode 100644 index 47ddb3aab..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Label.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label extends AbstractTag -{ - - protected $Id = 'label'; - - protected $Name = 'Label'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/MattColor.php b/lib/PHPExiftool/Driver/Tag/MIFF/MattColor.php deleted file mode 100644 index fe5ea8cdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/MattColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MattColor extends AbstractTag -{ - - protected $Id = 'matt-color'; - - protected $Name = 'MattColor'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Matt Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Matte.php b/lib/PHPExiftool/Driver/Tag/MIFF/Matte.php deleted file mode 100644 index 7ebcefb03..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Matte.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Matte extends AbstractTag -{ - - protected $Id = 'matte'; - - protected $Name = 'Matte'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Matte'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Montage.php b/lib/PHPExiftool/Driver/Tag/MIFF/Montage.php deleted file mode 100644 index 576f25c09..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Montage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Montage extends AbstractTag -{ - - protected $Id = 'montage'; - - protected $Name = 'Montage'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Montage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Packets.php b/lib/PHPExiftool/Driver/Tag/MIFF/Packets.php deleted file mode 100644 index db3d5abd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Packets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Packets extends AbstractTag -{ - - protected $Id = 'packets'; - - protected $Name = 'Packets'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Packets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Page.php b/lib/PHPExiftool/Driver/Tag/MIFF/Page.php deleted file mode 100644 index 13a924c72..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Page.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Page extends AbstractTag -{ - - protected $Id = 'page'; - - protected $Name = 'Page'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/RedPrimary.php b/lib/PHPExiftool/Driver/Tag/MIFF/RedPrimary.php deleted file mode 100644 index cf11fefaa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/RedPrimary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedPrimary extends AbstractTag -{ - - protected $Id = 'red-primary'; - - protected $Name = 'RedPrimary'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Primary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/RenderingIntent.php b/lib/PHPExiftool/Driver/Tag/MIFF/RenderingIntent.php deleted file mode 100644 index a2a5a3596..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/RenderingIntent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenderingIntent extends AbstractTag -{ - - protected $Id = 'rendering-intent'; - - protected $Name = 'RenderingIntent'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rendering Intent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Resolution.php b/lib/PHPExiftool/Driver/Tag/MIFF/Resolution.php deleted file mode 100644 index 2bfdb8ab6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Resolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Resolution extends AbstractTag -{ - - protected $Id = 'resolution'; - - protected $Name = 'Resolution'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Scene.php b/lib/PHPExiftool/Driver/Tag/MIFF/Scene.php deleted file mode 100644 index 079fdb538..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Scene.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Scene extends AbstractTag -{ - - protected $Id = 'scene'; - - protected $Name = 'Scene'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scene'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Signature.php b/lib/PHPExiftool/Driver/Tag/MIFF/Signature.php deleted file mode 100644 index 141216a5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Signature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Signature extends AbstractTag -{ - - protected $Id = 'signature'; - - protected $Name = 'Signature'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/Units.php b/lib/PHPExiftool/Driver/Tag/MIFF/Units.php deleted file mode 100644 index 02361c69e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/Units.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Units extends AbstractTag -{ - - protected $Id = 'units'; - - protected $Name = 'Units'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MIFF/WhitePoint.php b/lib/PHPExiftool/Driver/Tag/MIFF/WhitePoint.php deleted file mode 100644 index 45ea2e07c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MIFF/WhitePoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhitePoint extends AbstractTag -{ - - protected $Id = 'white-point'; - - protected $Name = 'WhitePoint'; - - protected $FullName = 'MIFF::Main'; - - protected $GroupName = 'MIFF'; - - protected $g0 = 'MIFF'; - - protected $g1 = 'MIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'White Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/AlphaBitDepth.php b/lib/PHPExiftool/Driver/Tag/MNG/AlphaBitDepth.php deleted file mode 100644 index 2aa78dca6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/AlphaBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaBitDepth extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'AlphaBitDepth'; - - protected $FullName = 'MNG::JNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/AlphaCompression.php b/lib/PHPExiftool/Driver/Tag/MNG/AlphaCompression.php deleted file mode 100644 index c1ab65e0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/AlphaCompression.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaCompression extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'AlphaCompression'; - - protected $FullName = 'MNG::JNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'MNG Grayscale IDAT', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'JNG 8-bit Grayscale JDAA', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/AlphaFilter.php b/lib/PHPExiftool/Driver/Tag/MNG/AlphaFilter.php deleted file mode 100644 index 19a7855b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/AlphaFilter.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaFilter extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'AlphaFilter'; - - protected $FullName = 'MNG::JNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Filter'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Adaptive MNG (N/A for JPEG)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/AlphaInterlace.php b/lib/PHPExiftool/Driver/Tag/MNG/AlphaInterlace.php deleted file mode 100644 index 39bc3f9e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/AlphaInterlace.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaInterlace extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'AlphaInterlace'; - - protected $FullName = 'MNG::JNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Interlace'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Noninterlaced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/AlphaSample.php b/lib/PHPExiftool/Driver/Tag/MNG/AlphaSample.php deleted file mode 100644 index dbc9ea43f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/AlphaSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaSample extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'AlphaSample'; - - protected $FullName = 'MNG::BasisObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Alpha Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/MNG/BackgroundColor.php deleted file mode 100644 index 5b4d4e95e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BackgroundColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'MNG::Background'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BackgroundImageID.php b/lib/PHPExiftool/Driver/Tag/MNG/BackgroundImageID.php deleted file mode 100644 index 35e63b758..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BackgroundImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundImageID extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'BackgroundImageID'; - - protected $FullName = 'MNG::Background'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Background Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BackgroundTiling.php b/lib/PHPExiftool/Driver/Tag/MNG/BackgroundTiling.php deleted file mode 100644 index 6d9a3e455..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BackgroundTiling.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundTiling extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'BackgroundTiling'; - - protected $FullName = 'MNG::Background'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Background Tiling'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BitDepth.php b/lib/PHPExiftool/Driver/Tag/MNG/BitDepth.php deleted file mode 100644 index c55c0389e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BitDepth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BlockLocation.php b/lib/PHPExiftool/Driver/Tag/MNG/BlockLocation.php deleted file mode 100644 index 68826993d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BlockLocation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockLocation extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'BlockLocation'; - - protected $FullName = 'MNG::DeltaPNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Block Location'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BlockSize.php b/lib/PHPExiftool/Driver/Tag/MNG/BlockSize.php deleted file mode 100644 index dfe84ab37..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BlockSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockSize extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'BlockSize'; - - protected $FullName = 'MNG::DeltaPNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Block Size'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BlueSample.php b/lib/PHPExiftool/Driver/Tag/MNG/BlueSample.php deleted file mode 100644 index 55df49e36..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BlueSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueSample extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'BlueSample'; - - protected $FullName = 'MNG::BasisObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Blue Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BottomMag.php b/lib/PHPExiftool/Driver/Tag/MNG/BottomMag.php deleted file mode 100644 index 0e8a7d247..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BottomMag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BottomMag extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'BottomMag'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bottom Mag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/BoundaryOrigin.php b/lib/PHPExiftool/Driver/Tag/MNG/BoundaryOrigin.php deleted file mode 100644 index 5224e2a5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/BoundaryOrigin.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoundaryOrigin extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'BoundaryOrigin'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Boundary Origin'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Desination Origin', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Target Origin', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ClipBoundary.php b/lib/PHPExiftool/Driver/Tag/MNG/ClipBoundary.php deleted file mode 100644 index 1130e8914..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ClipBoundary.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipBoundary extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ClipBoundary'; - - protected $FullName = 'MNG::ClipObjects'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Clip Boundary'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ClippingBoundary.php b/lib/PHPExiftool/Driver/Tag/MNG/ClippingBoundary.php deleted file mode 100644 index a2c2d232d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ClippingBoundary.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClippingBoundary extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ClippingBoundary'; - - protected $FullName = 'MNG::DefineObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Clipping Boundary'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/CloneID.php b/lib/PHPExiftool/Driver/Tag/MNG/CloneID.php deleted file mode 100644 index 44f6d259c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/CloneID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CloneID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CloneID'; - - protected $FullName = 'MNG::CloneObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Clone ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/CloneType.php b/lib/PHPExiftool/Driver/Tag/MNG/CloneType.php deleted file mode 100644 index dd66a9998..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/CloneType.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CloneType extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CloneType'; - - protected $FullName = 'MNG::CloneObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Clone Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Full', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Parital', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Renumber object', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ColorType.php b/lib/PHPExiftool/Driver/Tag/MNG/ColorType.php deleted file mode 100644 index 6ab0f954a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ColorType.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Grayscale', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'RGB', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Palette', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Grayscale with Alpha', - ), - 4 => array( - 'Id' => 6, - 'Label' => 'RGB with Alpha', - ), - 5 => array( - 'Id' => 8, - 'Label' => 'Gray', - ), - 6 => array( - 'Id' => 10, - 'Label' => 'Color', - ), - 7 => array( - 'Id' => 12, - 'Label' => 'Gray Alpha', - ), - 8 => array( - 'Id' => 14, - 'Label' => 'Color Alpha', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/CompositionMode.php b/lib/PHPExiftool/Driver/Tag/MNG/CompositionMode.php deleted file mode 100644 index c26b1095d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/CompositionMode.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionMode extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'CompositionMode'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Composition Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Over', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Replace', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Under', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Compression.php b/lib/PHPExiftool/Driver/Tag/MNG/Compression.php deleted file mode 100644 index a64242ebe..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Compression.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Compression'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Deflate/Inflate', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'Huffman-coded baseline JPEG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ConcreteFlag.php b/lib/PHPExiftool/Driver/Tag/MNG/ConcreteFlag.php deleted file mode 100644 index 83535c770..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ConcreteFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConcreteFlag extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ConcreteFlag'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Concrete Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Delay.php b/lib/PHPExiftool/Driver/Tag/MNG/Delay.php deleted file mode 100644 index a97349d84..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Delay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Delay extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Delay'; - - protected $FullName = 'MNG::TerminationAction'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/DeltaType.php b/lib/PHPExiftool/Driver/Tag/MNG/DeltaType.php deleted file mode 100644 index f6ff23674..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/DeltaType.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeltaType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeltaType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Delta Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Absolute', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Relative', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Full Replacement', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Pixel Addition', - ), - 4 => array( - 'Id' => 2, - 'Label' => 'Alpha Addition', - ), - 5 => array( - 'Id' => 3, - 'Label' => 'Color Addition', - ), - 6 => array( - 'Id' => 4, - 'Label' => 'Pixel Replacement', - ), - 7 => array( - 'Id' => 5, - 'Label' => 'Alpha Replacement', - ), - 8 => array( - 'Id' => 6, - 'Label' => 'Color Replacement', - ), - 9 => array( - 'Id' => 7, - 'Label' => 'No Change', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Absolute', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Relative', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Absolute', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Relative', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/DeltaXY.php b/lib/PHPExiftool/Driver/Tag/MNG/DeltaXY.php deleted file mode 100644 index a456f1bb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/DeltaXY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeltaXY extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeltaXY'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Delta XY'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/DestinationID.php b/lib/PHPExiftool/Driver/Tag/MNG/DestinationID.php deleted file mode 100644 index 10d1fe670..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/DestinationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DestinationID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DestinationID'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Destination ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/DiscardObjects.php b/lib/PHPExiftool/Driver/Tag/MNG/DiscardObjects.php deleted file mode 100644 index 43e79e357..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/DiscardObjects.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiscardObjects extends AbstractTag -{ - - protected $Id = 'DISC'; - - protected $Name = 'DiscardObjects'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Discard Objects'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/DoNotShow.php b/lib/PHPExiftool/Driver/Tag/MNG/DoNotShow.php deleted file mode 100644 index c03de4f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/DoNotShow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DoNotShow extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DoNotShow'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Do Not Show'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/DropByKeyword.php b/lib/PHPExiftool/Driver/Tag/MNG/DropByKeyword.php deleted file mode 100644 index 7495b63a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/DropByKeyword.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DropByKeyword extends AbstractTag -{ - - protected $Id = 'DBYK'; - - protected $Name = 'DropByKeyword'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Drop By Keyword'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/DropChunks.php b/lib/PHPExiftool/Driver/Tag/MNG/DropChunks.php deleted file mode 100644 index f5b65cf6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/DropChunks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DropChunks extends AbstractTag -{ - - protected $Id = 'DROP'; - - protected $Name = 'DropChunks'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Drop Chunks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/FillMethod.php b/lib/PHPExiftool/Driver/Tag/MNG/FillMethod.php deleted file mode 100644 index fd520772d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/FillMethod.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillMethod extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FillMethod'; - - protected $FullName = 'MNG::PromoteParent'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Fill Method'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bit Replication', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Zero Fill', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Filter.php b/lib/PHPExiftool/Driver/Tag/MNG/Filter.php deleted file mode 100644 index 1a13f89a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Filter.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Filter extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Filter'; - - protected $FullName = 'MNG::BasisObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Filter'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Adaptive', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/FirstObject.php b/lib/PHPExiftool/Driver/Tag/MNG/FirstObject.php deleted file mode 100644 index 15c6c389e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/FirstObject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstObject extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FirstObject'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'First Object'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/FirstObjectID.php b/lib/PHPExiftool/Driver/Tag/MNG/FirstObjectID.php deleted file mode 100644 index 2250a4441..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/FirstObjectID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstObjectID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FirstObjectID'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'First Object ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Frame.php b/lib/PHPExiftool/Driver/Tag/MNG/Frame.php deleted file mode 100644 index c80d35dc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Frame.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Frame extends AbstractTag -{ - - protected $Id = 'FRAM'; - - protected $Name = 'Frame'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/GreenSample.php b/lib/PHPExiftool/Driver/Tag/MNG/GreenSample.php deleted file mode 100644 index c90fb252c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/GreenSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenSample extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'GreenSample'; - - protected $FullName = 'MNG::BasisObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Green Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/MNG/ImageHeight.php deleted file mode 100644 index 51d5731b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ImageType.php b/lib/PHPExiftool/Driver/Tag/MNG/ImageType.php deleted file mode 100644 index 4e46651a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ImageType.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageType extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ImageType'; - - protected $FullName = 'MNG::DeltaPNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unspecified', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'PNG', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'JNG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/MNG/ImageWidth.php deleted file mode 100644 index 89770f0e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Interlace.php b/lib/PHPExiftool/Driver/Tag/MNG/Interlace.php deleted file mode 100644 index 478c859a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Interlace.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Interlace extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Interlace'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Interlace'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Noninterlaced', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adam7 Interlace', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Sequential', - ), - 3 => array( - 'Id' => 8, - 'Label' => 'Progressive', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/IterationCount.php b/lib/PHPExiftool/Driver/Tag/MNG/IterationCount.php deleted file mode 100644 index 0d1a8f432..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/IterationCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IterationCount extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'IterationCount'; - - protected $FullName = 'MNG::Loop'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Iteration Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/IterationEndAction.php b/lib/PHPExiftool/Driver/Tag/MNG/IterationEndAction.php deleted file mode 100644 index 935413b4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/IterationEndAction.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IterationEndAction extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'IterationEndAction'; - - protected $FullName = 'MNG::TerminationAction'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Iteration End Action'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Show Last Frame', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Display Nothing', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Show First Frame', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/IterationMax.php b/lib/PHPExiftool/Driver/Tag/MNG/IterationMax.php deleted file mode 100644 index cf9e31b0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/IterationMax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IterationMax extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'IterationMax'; - - protected $FullName = 'MNG::TerminationAction'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Iteration Max'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/IterationMinMax.php b/lib/PHPExiftool/Driver/Tag/MNG/IterationMinMax.php deleted file mode 100644 index fc7951381..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/IterationMinMax.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IterationMinMax extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'IterationMinMax'; - - protected $FullName = 'MNG::Loop'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Iteration Min Max'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/LastObject.php b/lib/PHPExiftool/Driver/Tag/MNG/LastObject.php deleted file mode 100644 index 1a915c500..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/LastObject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastObject extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'LastObject'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Last Object'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/LastObjectID.php b/lib/PHPExiftool/Driver/Tag/MNG/LastObjectID.php deleted file mode 100644 index a2ca6abde..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/LastObjectID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastObjectID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'LastObjectID'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Last Object ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/LeftMag.php b/lib/PHPExiftool/Driver/Tag/MNG/LeftMag.php deleted file mode 100644 index 0af8a29c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/LeftMag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeftMag extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'LeftMag'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Left Mag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/LocalDeltaType.php b/lib/PHPExiftool/Driver/Tag/MNG/LocalDeltaType.php deleted file mode 100644 index be55c2179..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/LocalDeltaType.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalDeltaType extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'LocalDeltaType'; - - protected $FullName = 'MNG::CloneObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Local Delta Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Absolute', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Relative', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/MandatoryBackground.php b/lib/PHPExiftool/Driver/Tag/MNG/MandatoryBackground.php deleted file mode 100644 index a872ad31e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/MandatoryBackground.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MandatoryBackground extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'MandatoryBackground'; - - protected $FullName = 'MNG::Background'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Mandatory Background'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Color and Image Advisory', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Color Mandatory, Image Advisory', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Color Advisory, Image Mandatory', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Color and Image Mandatory', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/NestLevel.php b/lib/PHPExiftool/Driver/Tag/MNG/NestLevel.php deleted file mode 100644 index 0d027de25..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/NestLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NestLevel extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'NestLevel'; - - protected $FullName = 'MNG::Loop'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Nest Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/NewBitDepth.php b/lib/PHPExiftool/Driver/Tag/MNG/NewBitDepth.php deleted file mode 100644 index 2f31a91f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/NewBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NewBitDepth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'NewBitDepth'; - - protected $FullName = 'MNG::PromoteParent'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'New Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/NewColorType.php b/lib/PHPExiftool/Driver/Tag/MNG/NewColorType.php deleted file mode 100644 index e3ec38187..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/NewColorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NewColorType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'NewColorType'; - - protected $FullName = 'MNG::PromoteParent'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'New Color Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/NominalFrameCount.php b/lib/PHPExiftool/Driver/Tag/MNG/NominalFrameCount.php deleted file mode 100644 index 3befff153..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/NominalFrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalFrameCount extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'NominalFrameCount'; - - protected $FullName = 'MNG::MNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Nominal Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/NominalLayerCount.php b/lib/PHPExiftool/Driver/Tag/MNG/NominalLayerCount.php deleted file mode 100644 index 160ddca13..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/NominalLayerCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalLayerCount extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'NominalLayerCount'; - - protected $FullName = 'MNG::MNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Nominal Layer Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/NominalPlayTime.php b/lib/PHPExiftool/Driver/Tag/MNG/NominalPlayTime.php deleted file mode 100644 index 4106d2ef2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/NominalPlayTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalPlayTime extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'NominalPlayTime'; - - protected $FullName = 'MNG::MNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Nominal Play Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ObjectID.php b/lib/PHPExiftool/Driver/Tag/MNG/ObjectID.php deleted file mode 100644 index 0765685a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ObjectID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ObjectID'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Object ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/OffsetOrigin.php b/lib/PHPExiftool/Driver/Tag/MNG/OffsetOrigin.php deleted file mode 100644 index e8b816f92..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/OffsetOrigin.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetOrigin extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'OffsetOrigin'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Offset Origin'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Desination Origin', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Target Origin', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/OffsetXY.php b/lib/PHPExiftool/Driver/Tag/MNG/OffsetXY.php deleted file mode 100644 index cc51b92ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/OffsetXY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetXY extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'OffsetXY'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Offset XY'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/OrderingRestrictions.php b/lib/PHPExiftool/Driver/Tag/MNG/OrderingRestrictions.php deleted file mode 100644 index d1fb0b762..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/OrderingRestrictions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrderingRestrictions extends AbstractTag -{ - - protected $Id = 'ORDR'; - - protected $Name = 'OrderingRestrictions'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ordering Restrictions'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Orientation.php b/lib/PHPExiftool/Driver/Tag/MNG/Orientation.php deleted file mode 100644 index 8a6d1823c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Orientation.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Orientation'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Same as source', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Flipped left-right, then up-down', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Flipped left-right', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Flipped up-down', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Tiled', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/PartialPalette.php b/lib/PHPExiftool/Driver/Tag/MNG/PartialPalette.php deleted file mode 100644 index d6802402c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/PartialPalette.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialPalette extends AbstractTag -{ - - protected $Id = 'PPLT'; - - protected $Name = 'PartialPalette'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial Palette'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/PastClippingBoundary.php b/lib/PHPExiftool/Driver/Tag/MNG/PastClippingBoundary.php deleted file mode 100644 index 974e06b41..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/PastClippingBoundary.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PastClippingBoundary extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'PastClippingBoundary'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Past Clipping Boundary'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Priority.php b/lib/PHPExiftool/Driver/Tag/MNG/Priority.php deleted file mode 100644 index 84b06b0b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Priority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Priority extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Priority'; - - protected $FullName = 'MNG::FramePriority'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/RedSample.php b/lib/PHPExiftool/Driver/Tag/MNG/RedSample.php deleted file mode 100644 index 997b2d59d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/RedSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedSample extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'RedSample'; - - protected $FullName = 'MNG::BasisObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Red Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ResourcesNeeded.php b/lib/PHPExiftool/Driver/Tag/MNG/ResourcesNeeded.php deleted file mode 100644 index 4d4d88548..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ResourcesNeeded.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResourcesNeeded extends AbstractTag -{ - - protected $Id = 'nEED'; - - protected $Name = 'ResourcesNeeded'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resources Needed'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/RightMag.php b/lib/PHPExiftool/Driver/Tag/MNG/RightMag.php deleted file mode 100644 index bd22b4ee3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/RightMag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightMag extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'RightMag'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Right Mag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/SaveObjects.php b/lib/PHPExiftool/Driver/Tag/MNG/SaveObjects.php deleted file mode 100644 index dce9a5ce5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/SaveObjects.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaveObjects extends AbstractTag -{ - - protected $Id = 'SAVE'; - - protected $Name = 'SaveObjects'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Save Objects'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/SeekPoint.php b/lib/PHPExiftool/Driver/Tag/MNG/SeekPoint.php deleted file mode 100644 index 5b4b18375..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/SeekPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeekPoint extends AbstractTag -{ - - protected $Id = 'SEEK'; - - protected $Name = 'SeekPoint'; - - protected $FullName = 'MNG::Main'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Seek Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/ShowMode.php b/lib/PHPExiftool/Driver/Tag/MNG/ShowMode.php deleted file mode 100644 index 8acadb1d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/ShowMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShowMode extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ShowMode'; - - protected $FullName = 'MNG::ShowObjects'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Show Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/SignalNumber.php b/lib/PHPExiftool/Driver/Tag/MNG/SignalNumber.php deleted file mode 100644 index 0d0ba3871..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/SignalNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignalNumber extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'SignalNumber'; - - protected $FullName = 'MNG::Loop'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Signal Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/SimplicityProfile.php b/lib/PHPExiftool/Driver/Tag/MNG/SimplicityProfile.php deleted file mode 100644 index e730bb59d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/SimplicityProfile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SimplicityProfile extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'SimplicityProfile'; - - protected $FullName = 'MNG::MNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Simplicity Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/SnapshotID.php b/lib/PHPExiftool/Driver/Tag/MNG/SnapshotID.php deleted file mode 100644 index b25870582..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/SnapshotID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SnapshotID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SnapshotID'; - - protected $FullName = 'MNG::ExportImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Snapshot ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/SnapshotName.php b/lib/PHPExiftool/Driver/Tag/MNG/SnapshotName.php deleted file mode 100644 index 001855345..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/SnapshotName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SnapshotName extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SnapshotName'; - - protected $FullName = 'MNG::ExportImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Snapshot Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/SourceID.php b/lib/PHPExiftool/Driver/Tag/MNG/SourceID.php deleted file mode 100644 index af5050e73..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/SourceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SourceID'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Source ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/TargetDeltaType.php b/lib/PHPExiftool/Driver/Tag/MNG/TargetDeltaType.php deleted file mode 100644 index 883d9a862..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/TargetDeltaType.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetDeltaType extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'TargetDeltaType'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Target Delta Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Absolute', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Relative', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/TargetXY.php b/lib/PHPExiftool/Driver/Tag/MNG/TargetXY.php deleted file mode 100644 index 4a91c4bbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/TargetXY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetXY extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'TargetXY'; - - protected $FullName = 'MNG::PasteImage'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Target XY'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/TerminationAction.php b/lib/PHPExiftool/Driver/Tag/MNG/TerminationAction.php deleted file mode 100644 index fb0c50570..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/TerminationAction.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TerminationAction extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'TerminationAction'; - - protected $FullName = 'MNG::TerminationAction'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Termination Action'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Show Last Frame', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Display Nothing', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Show First Frame', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Repeat Sequence', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/TerminationCondition.php b/lib/PHPExiftool/Driver/Tag/MNG/TerminationCondition.php deleted file mode 100644 index b35decbb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/TerminationCondition.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TerminationCondition extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'TerminationCondition'; - - protected $FullName = 'MNG::Loop'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Termination Condition'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Deterministic, not cacheable', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Decoder discretion, not cacheable', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'User discretion, not cacheable', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'External signal, not cacheable', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Deterministic, cacheable', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Decoder discretion, cacheable', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'User discretion, cacheable', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'External signal, cacheable', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/TicksPerSecond.php b/lib/PHPExiftool/Driver/Tag/MNG/TicksPerSecond.php deleted file mode 100644 index 14e0281f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/TicksPerSecond.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TicksPerSecond extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'TicksPerSecond'; - - protected $FullName = 'MNG::MNGHeader'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Ticks Per Second'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/TopMag.php b/lib/PHPExiftool/Driver/Tag/MNG/TopMag.php deleted file mode 100644 index af4984ccd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/TopMag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TopMag extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'TopMag'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Top Mag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/Viewable.php b/lib/PHPExiftool/Driver/Tag/MNG/Viewable.php deleted file mode 100644 index 850181f9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/Viewable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Viewable extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'Viewable'; - - protected $FullName = 'MNG::BasisObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Viewable'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/XMag.php b/lib/PHPExiftool/Driver/Tag/MNG/XMag.php deleted file mode 100644 index a822c6951..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/XMag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMag extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'XMag'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'X Mag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/XMethod.php b/lib/PHPExiftool/Driver/Tag/MNG/XMethod.php deleted file mode 100644 index 218ede8ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/XMethod.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMethod extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'XMethod'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'X Method'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Magnification', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Pixel Replication', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Linear Interpolation', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Closest Pixel', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Linear Interpolation and Alpha Closest Pixel', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Color Closest Pixel and Alpha Linear Interpolation', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/XYLocation.php b/lib/PHPExiftool/Driver/Tag/MNG/XYLocation.php deleted file mode 100644 index e19894869..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/XYLocation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XYLocation extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'XYLocation'; - - protected $FullName = 'MNG::DefineObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'XY Location'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/YMag.php b/lib/PHPExiftool/Driver/Tag/MNG/YMag.php deleted file mode 100644 index 7425a7fef..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/YMag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YMag extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'YMag'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Y Mag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MNG/YMethod.php b/lib/PHPExiftool/Driver/Tag/MNG/YMethod.php deleted file mode 100644 index 79f350271..000000000 --- a/lib/PHPExiftool/Driver/Tag/MNG/YMethod.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YMethod extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'YMethod'; - - protected $FullName = 'MNG::MagnifyObject'; - - protected $GroupName = 'MNG'; - - protected $g0 = 'MNG'; - - protected $g1 = 'MNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Y Method'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Magnification', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Pixel Replication', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Linear Interpolation', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Closest Pixel', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Linear Interpolation and Alpha Closest Pixel', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Color Closest Pixel and Alpha Linear Interpolation', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/ASIN.php b/lib/PHPExiftool/Driver/Tag/MOBI/ASIN.php deleted file mode 100644 index 954d2e811..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/ASIN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASIN extends AbstractTag -{ - - protected $Id = 113; - - protected $Name = 'ASIN'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'ASIN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/ASIN2.php b/lib/PHPExiftool/Driver/Tag/MOBI/ASIN2.php deleted file mode 100644 index abe6b36aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/ASIN2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASIN2 extends AbstractTag -{ - - protected $Id = 504; - - protected $Name = 'ASIN2'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'ASIN2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Adult.php b/lib/PHPExiftool/Driver/Tag/MOBI/Adult.php deleted file mode 100644 index 7ba4fb74a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Adult.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Adult extends AbstractTag -{ - - protected $Id = 117; - - protected $Name = 'Adult'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Adult'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Alignment.php b/lib/PHPExiftool/Driver/Tag/MOBI/Alignment.php deleted file mode 100644 index 9844b97e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Alignment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Alignment extends AbstractTag -{ - - protected $Id = 525; - - protected $Name = 'Alignment'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Alignment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Author.php b/lib/PHPExiftool/Driver/Tag/MOBI/Author.php deleted file mode 100644 index 59bfd48d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'Author'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/BookName.php b/lib/PHPExiftool/Driver/Tag/MOBI/BookName.php deleted file mode 100644 index e50b82dc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/BookName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BookName extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'BookName'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Book Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/BookType.php b/lib/PHPExiftool/Driver/Tag/MOBI/BookType.php deleted file mode 100644 index 97dae6675..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/BookType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BookType extends AbstractTag -{ - - protected $Id = 111; - - protected $Name = 'BookType'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Book Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/BookVersion.php b/lib/PHPExiftool/Driver/Tag/MOBI/BookVersion.php deleted file mode 100644 index 82c594648..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/BookVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BookVersion extends AbstractTag -{ - - protected $Id = 114; - - protected $Name = 'BookVersion'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Book Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/CDEType.php b/lib/PHPExiftool/Driver/Tag/MOBI/CDEType.php deleted file mode 100644 index cf8ddb9b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/CDEType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CDEType extends AbstractTag -{ - - protected $Id = 501; - - protected $Name = 'CDEType'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'CDE Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/ClippingLimit.php b/lib/PHPExiftool/Driver/Tag/MOBI/ClippingLimit.php deleted file mode 100644 index 58250dcaa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/ClippingLimit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClippingLimit extends AbstractTag -{ - - protected $Id = 401; - - protected $Name = 'ClippingLimit'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Clipping Limit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/CodePage.php b/lib/PHPExiftool/Driver/Tag/MOBI/CodePage.php deleted file mode 100644 index fee1191a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/CodePage.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodePage extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'CodePage'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Code Page'; - - protected $Values = array( - 1252 => array( - 'Id' => 1252, - 'Label' => 'Windows Latin 1 (Western European)', - ), - 65001 => array( - 'Id' => 65001, - 'Label' => 'Unicode (UTF-8)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Compression.php b/lib/PHPExiftool/Driver/Tag/MOBI/Compression.php deleted file mode 100644 index f7751d088..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Compression.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Compression'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'PalmDOC', - ), - 17480 => array( - 'Id' => 17480, - 'Label' => 'HUFF/CDIC', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Contributor.php b/lib/PHPExiftool/Driver/Tag/MOBI/Contributor.php deleted file mode 100644 index 01ac5fcc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Contributor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contributor extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'Contributor'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Contributor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorBuildNumber.php b/lib/PHPExiftool/Driver/Tag/MOBI/CreatorBuildNumber.php deleted file mode 100644 index a28ced7b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorBuildNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorBuildNumber extends AbstractTag -{ - - protected $Id = 207; - - protected $Name = 'CreatorBuildNumber'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Creator Build Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorBuildNumber2.php b/lib/PHPExiftool/Driver/Tag/MOBI/CreatorBuildNumber2.php deleted file mode 100644 index 059eeff67..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorBuildNumber2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorBuildNumber2 extends AbstractTag -{ - - protected $Id = 535; - - protected $Name = 'CreatorBuildNumber2'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Creator Build Number 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorMajorVersion.php b/lib/PHPExiftool/Driver/Tag/MOBI/CreatorMajorVersion.php deleted file mode 100644 index 1e39f3e45..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorMajorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorMajorVersion extends AbstractTag -{ - - protected $Id = 205; - - protected $Name = 'CreatorMajorVersion'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Creator Major Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorMinorVersion.php b/lib/PHPExiftool/Driver/Tag/MOBI/CreatorMinorVersion.php deleted file mode 100644 index 6d84fdffa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorMinorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorMinorVersion extends AbstractTag -{ - - protected $Id = 206; - - protected $Name = 'CreatorMinorVersion'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Creator Minor Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorSoftware.php b/lib/PHPExiftool/Driver/Tag/MOBI/CreatorSoftware.php deleted file mode 100644 index 896a5d8ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/CreatorSoftware.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorSoftware extends AbstractTag -{ - - protected $Id = 204; - - protected $Name = 'CreatorSoftware'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Creator Software'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Mobigen', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mobipocket', - ), - 200 => array( - 'Id' => 200, - 'Label' => 'Kindlegen (Windows)', - ), - 201 => array( - 'Id' => 201, - 'Label' => 'Kindlegen (Linux)', - ), - 202 => array( - 'Id' => 202, - 'Label' => 'Kindlegen (Mac)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/DRMCommerceID.php b/lib/PHPExiftool/Driver/Tag/MOBI/DRMCommerceID.php deleted file mode 100644 index 4878fb8ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/DRMCommerceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMCommerceID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'DRMCommerceID'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'DRM Commerce ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/DRMEBookBaseID.php b/lib/PHPExiftool/Driver/Tag/MOBI/DRMEBookBaseID.php deleted file mode 100644 index cf837a55f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/DRMEBookBaseID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMEBookBaseID extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'DRM_E-BookBaseID'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'DRM E-Book Base ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/DRMServerID.php b/lib/PHPExiftool/Driver/Tag/MOBI/DRMServerID.php deleted file mode 100644 index 0a108eec9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/DRMServerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMServerID extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'DRMServerID'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'DRM Server ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Description.php b/lib/PHPExiftool/Driver/Tag/MOBI/Description.php deleted file mode 100644 index 769d62ef8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 103; - - protected $Name = 'Description'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/DictionaryShortName.php b/lib/PHPExiftool/Driver/Tag/MOBI/DictionaryShortName.php deleted file mode 100644 index 5ae6ce237..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/DictionaryShortName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DictionaryShortName extends AbstractTag -{ - - protected $Id = 200; - - protected $Name = 'DictionaryShortName'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Dictionary Short Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Encryption.php b/lib/PHPExiftool/Driver/Tag/MOBI/Encryption.php deleted file mode 100644 index 821a8c8f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Encryption.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Encryption extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Encryption'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Encryption'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Old Mobipocket', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mobipocket', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/ISBN.php b/lib/PHPExiftool/Driver/Tag/MOBI/ISBN.php deleted file mode 100644 index 39ce646af..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/ISBN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISBN extends AbstractTag -{ - - protected $Id = 104; - - protected $Name = 'ISBN'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'ISBN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Imprint.php b/lib/PHPExiftool/Driver/Tag/MOBI/Imprint.php deleted file mode 100644 index aafcf0f90..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Imprint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Imprint extends AbstractTag -{ - - protected $Id = 102; - - protected $Name = 'Imprint'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Imprint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/KF8CoverURI.php b/lib/PHPExiftool/Driver/Tag/MOBI/KF8CoverURI.php deleted file mode 100644 index 1c0be0397..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/KF8CoverURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KF8CoverURI extends AbstractTag -{ - - protected $Id = 129; - - protected $Name = 'KF8CoverURI'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'KF8 Cover URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Language.php b/lib/PHPExiftool/Driver/Tag/MOBI/Language.php deleted file mode 100644 index 3eaceb943..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 524; - - protected $Name = 'Language'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/LastUpdateTime.php b/lib/PHPExiftool/Driver/Tag/MOBI/LastUpdateTime.php deleted file mode 100644 index a30e0ffc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/LastUpdateTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastUpdateTime extends AbstractTag -{ - - protected $Id = 502; - - protected $Name = 'LastUpdateTime'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Last Update Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/MinimumVersion.php b/lib/PHPExiftool/Driver/Tag/MOBI/MinimumVersion.php deleted file mode 100644 index d526cecf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/MinimumVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinimumVersion extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'MinimumVersion'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Minimum Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/MobiType.php b/lib/PHPExiftool/Driver/Tag/MOBI/MobiType.php deleted file mode 100644 index a7fc7ba19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/MobiType.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MobiType extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'MobiType'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Mobi Type'; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Mobipocket Book', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'PalmDoc Book', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Audio', - ), - 232 => array( - 'Id' => 232, - 'Label' => 'mobipocket? generated by kindlegen1.2', - ), - 248 => array( - 'Id' => 248, - 'Label' => 'KF8: generated by kindlegen2', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'News', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'News_Feed', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'News_Magazine', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'PICS', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'WORD', - ), - 515 => array( - 'Id' => 515, - 'Label' => 'XLS', - ), - 516 => array( - 'Id' => 516, - 'Label' => 'PPT', - ), - 517 => array( - 'Id' => 517, - 'Label' => 'TEXT', - ), - 518 => array( - 'Id' => 518, - 'Label' => 'HTML', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/MobiVersion.php b/lib/PHPExiftool/Driver/Tag/MOBI/MobiVersion.php deleted file mode 100644 index db52f9769..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/MobiVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MobiVersion extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'MobiVersion'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Mobi Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/PublishDate.php b/lib/PHPExiftool/Driver/Tag/MOBI/PublishDate.php deleted file mode 100644 index cc60abe14..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/PublishDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublishDate extends AbstractTag -{ - - protected $Id = 106; - - protected $Name = 'PublishDate'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Publish Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Publisher.php b/lib/PHPExiftool/Driver/Tag/MOBI/Publisher.php deleted file mode 100644 index f5e815bde..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 101; - - protected $Name = 'Publisher'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/PublisherLimit.php b/lib/PHPExiftool/Driver/Tag/MOBI/PublisherLimit.php deleted file mode 100644 index 8cb66a599..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/PublisherLimit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublisherLimit extends AbstractTag -{ - - protected $Id = 402; - - protected $Name = 'PublisherLimit'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Publisher Limit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/RentalExpirationDate.php b/lib/PHPExiftool/Driver/Tag/MOBI/RentalExpirationDate.php deleted file mode 100644 index 03d51f454..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/RentalExpirationDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RentalExpirationDate extends AbstractTag -{ - - protected $Id = 406; - - protected $Name = 'RentalExpirationDate'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Rental Expiration Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/RentalFlag.php b/lib/PHPExiftool/Driver/Tag/MOBI/RentalFlag.php deleted file mode 100644 index 5db19a471..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/RentalFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RentalFlag extends AbstractTag -{ - - protected $Id = 405; - - protected $Name = 'RentalFlag'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Rental Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/ResourceCount.php b/lib/PHPExiftool/Driver/Tag/MOBI/ResourceCount.php deleted file mode 100644 index 6f1625e5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/ResourceCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResourceCount extends AbstractTag -{ - - protected $Id = 125; - - protected $Name = 'ResourceCount'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Resource Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/RetailPrice.php b/lib/PHPExiftool/Driver/Tag/MOBI/RetailPrice.php deleted file mode 100644 index 22c62a6d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/RetailPrice.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetailPrice extends AbstractTag -{ - - protected $Id = 118; - - protected $Name = 'RetailPrice'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Retail Price'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/RetailPriceCurrency.php b/lib/PHPExiftool/Driver/Tag/MOBI/RetailPriceCurrency.php deleted file mode 100644 index e70dcd0f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/RetailPriceCurrency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetailPriceCurrency extends AbstractTag -{ - - protected $Id = 119; - - protected $Name = 'RetailPriceCurrency'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Retail Price Currency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Review.php b/lib/PHPExiftool/Driver/Tag/MOBI/Review.php deleted file mode 100644 index 22ed868d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Review.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Review extends AbstractTag -{ - - protected $Id = 107; - - protected $Name = 'Review'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Review'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Rights.php b/lib/PHPExiftool/Driver/Tag/MOBI/Rights.php deleted file mode 100644 index 65e18da85..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Rights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rights extends AbstractTag -{ - - protected $Id = 109; - - protected $Name = 'Rights'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Rights'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/SampleFlag.php b/lib/PHPExiftool/Driver/Tag/MOBI/SampleFlag.php deleted file mode 100644 index 12a8e9aa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/SampleFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleFlag extends AbstractTag -{ - - protected $Id = 115; - - protected $Name = 'SampleFlag'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sample Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Source.php b/lib/PHPExiftool/Driver/Tag/MOBI/Source.php deleted file mode 100644 index 4b82d7b9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Source.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'Source'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/StartReading.php b/lib/PHPExiftool/Driver/Tag/MOBI/StartReading.php deleted file mode 100644 index f9fdba8a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/StartReading.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartReading extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'StartReading'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Start Reading'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Subject.php b/lib/PHPExiftool/Driver/Tag/MOBI/Subject.php deleted file mode 100644 index 54f18096a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Subject.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 105; - - protected $Name = 'Subject'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Subject'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/SubjectCode.php b/lib/PHPExiftool/Driver/Tag/MOBI/SubjectCode.php deleted file mode 100644 index e6248c39d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/SubjectCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectCode extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'SubjectCode'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Subject Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/TamperProofKeys.php b/lib/PHPExiftool/Driver/Tag/MOBI/TamperProofKeys.php deleted file mode 100644 index c456e3471..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/TamperProofKeys.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TamperProofKeys extends AbstractTag -{ - - protected $Id = 209; - - protected $Name = 'Tamper-proofKeys'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Tamper-proof Keys'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/TextToSpeech.php b/lib/PHPExiftool/Driver/Tag/MOBI/TextToSpeech.php deleted file mode 100644 index 4ba0c3197..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/TextToSpeech.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextToSpeech extends AbstractTag -{ - - protected $Id = 404; - - protected $Name = 'TextToSpeech'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Text To Speech'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Enabled', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Disabled', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/UncompressedTextLength.php b/lib/PHPExiftool/Driver/Tag/MOBI/UncompressedTextLength.php deleted file mode 100644 index fb6b49e9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/UncompressedTextLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UncompressedTextLength extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'UncompressedTextLength'; - - protected $FullName = 'Palm::MOBI'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Uncompressed Text Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/UpdatedTitle.php b/lib/PHPExiftool/Driver/Tag/MOBI/UpdatedTitle.php deleted file mode 100644 index 0cac4ce14..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/UpdatedTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UpdatedTitle extends AbstractTag -{ - - protected $Id = 503; - - protected $Name = 'UpdatedTitle'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Updated Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MOBI/Watermark.php b/lib/PHPExiftool/Driver/Tag/MOBI/Watermark.php deleted file mode 100644 index 2c4f0e141..000000000 --- a/lib/PHPExiftool/Driver/Tag/MOBI/Watermark.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MOBI; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Watermark extends AbstractTag -{ - - protected $Id = 208; - - protected $Name = 'Watermark'; - - protected $FullName = 'Palm::EXTH'; - - protected $GroupName = 'MOBI'; - - protected $g0 = 'Palm'; - - protected $g1 = 'MOBI'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Watermark'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/EncoderVersion.php b/lib/PHPExiftool/Driver/Tag/MPC/EncoderVersion.php deleted file mode 100644 index a8ed9683f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/EncoderVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncoderVersion extends AbstractTag -{ - - protected $Id = 'Bit216-223'; - - protected $Name = 'EncoderVersion'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoder Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/FastSeek.php b/lib/PHPExiftool/Driver/Tag/MPC/FastSeek.php deleted file mode 100644 index 53574e352..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/FastSeek.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FastSeek extends AbstractTag -{ - - protected $Id = 'Bit179'; - - protected $Name = 'FastSeek'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fast Seek'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/Gapless.php b/lib/PHPExiftool/Driver/Tag/MPC/Gapless.php deleted file mode 100644 index 4aa258446..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/Gapless.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gapless extends AbstractTag -{ - - protected $Id = 'Bit191'; - - protected $Name = 'Gapless'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gapless'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/MaxBand.php b/lib/PHPExiftool/Driver/Tag/MPC/MaxBand.php deleted file mode 100644 index 87f119f13..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/MaxBand.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxBand extends AbstractTag -{ - - protected $Id = 'Bit088-093'; - - protected $Name = 'MaxBand'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Band'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/Quality.php b/lib/PHPExiftool/Driver/Tag/MPC/Quality.php deleted file mode 100644 index 551953f9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/Quality.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'Bit084-087'; - - protected $Name = 'Quality'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quality'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Unstable/Experimental', - ), - 5 => array( - 'Id' => 5, - 'Label' => 0, - ), - 6 => array( - 'Id' => 6, - 'Label' => 1, - ), - 7 => array( - 'Id' => 7, - 'Label' => '2 (Telephone)', - ), - 8 => array( - 'Id' => 8, - 'Label' => '3 (Thumb)', - ), - 9 => array( - 'Id' => 9, - 'Label' => '4 (Radio)', - ), - 10 => array( - 'Id' => 10, - 'Label' => '5 (Standard)', - ), - 11 => array( - 'Id' => 11, - 'Label' => '6 (Xtreme)', - ), - 12 => array( - 'Id' => 12, - 'Label' => '7 (Insane)', - ), - 13 => array( - 'Id' => 13, - 'Label' => '8 (BrainDead)', - ), - 14 => array( - 'Id' => 14, - 'Label' => 9, - ), - 15 => array( - 'Id' => 15, - 'Label' => 10, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainAlbumGain.php b/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainAlbumGain.php deleted file mode 100644 index 29c031db1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainAlbumGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainAlbumGain extends AbstractTag -{ - - protected $Id = 'Bit144-159'; - - protected $Name = 'ReplayGainAlbumGain'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Album Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainAlbumPeak.php b/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainAlbumPeak.php deleted file mode 100644 index 105acdfde..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainAlbumPeak.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainAlbumPeak extends AbstractTag -{ - - protected $Id = 'Bit128-143'; - - protected $Name = 'ReplayGainAlbumPeak'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Album Peak'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainTrackGain.php b/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainTrackGain.php deleted file mode 100644 index 08bd09b10..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainTrackGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainTrackGain extends AbstractTag -{ - - protected $Id = 'Bit112-127'; - - protected $Name = 'ReplayGainTrackGain'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Track Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainTrackPeak.php b/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainTrackPeak.php deleted file mode 100644 index 05cd5ab45..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/ReplayGainTrackPeak.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainTrackPeak extends AbstractTag -{ - - protected $Id = 'Bit096-111'; - - protected $Name = 'ReplayGainTrackPeak'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Track Peak'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/SampleRate.php b/lib/PHPExiftool/Driver/Tag/MPC/SampleRate.php deleted file mode 100644 index e47bab56d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/SampleRate.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 'Bit080-081'; - - protected $Name = 'SampleRate'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 44100, - ), - 1 => array( - 'Id' => 1, - 'Label' => 48000, - ), - 2 => array( - 'Id' => 2, - 'Label' => 37800, - ), - 3 => array( - 'Id' => 3, - 'Label' => 32000, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPC/TotalFrames.php b/lib/PHPExiftool/Driver/Tag/MPC/TotalFrames.php deleted file mode 100644 index 130c40018..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPC/TotalFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalFrames extends AbstractTag -{ - - protected $Id = 'Bit032-063'; - - protected $Name = 'TotalFrames'; - - protected $FullName = 'MPC::Main'; - - protected $GroupName = 'MPC'; - - protected $g0 = 'MPC'; - - protected $g1 = 'MPC'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/AspectRatio.php b/lib/PHPExiftool/Driver/Tag/MPEG/AspectRatio.php deleted file mode 100644 index 76083e410..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/AspectRatio.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatio extends AbstractTag -{ - - protected $Id = 'Bit24-27'; - - protected $Name = 'AspectRatio'; - - protected $FullName = 'MPEG::Video'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aspect Ratio'; - - protected $Values = array( - '0.6735' => array( - 'Id' => '0.6735', - 'Label' => '0.6735', - ), - '0.7031' => array( - 'Id' => '0.7031', - 'Label' => '16:9, 625 line, PAL', - ), - '0.7615' => array( - 'Id' => '0.7615', - 'Label' => '0.7615', - ), - '0.8055' => array( - 'Id' => '0.8055', - 'Label' => '0.8055', - ), - '0.8437' => array( - 'Id' => '0.8437', - 'Label' => '16:9, 525 line, NTSC', - ), - '0.8935' => array( - 'Id' => '0.8935', - 'Label' => '0.8935', - ), - '0.9157' => array( - 'Id' => '0.9157', - 'Label' => '4:3, 625 line, PAL, CCIR601', - ), - '0.9815' => array( - 'Id' => '0.9815', - 'Label' => '0.9815', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1:1', - ), - '1.0255' => array( - 'Id' => '1.0255', - 'Label' => '1.0255', - ), - '1.0695' => array( - 'Id' => '1.0695', - 'Label' => '1.0695', - ), - '1.095' => array( - 'Id' => '1.095', - 'Label' => '4:3, 525 line, NTSC, CCIR601', - ), - '1.1575' => array( - 'Id' => '1.1575', - 'Label' => '1.1575', - ), - '1.2015' => array( - 'Id' => '1.2015', - 'Label' => '1.2015', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/AudioBitrate.php b/lib/PHPExiftool/Driver/Tag/MPEG/AudioBitrate.php deleted file mode 100644 index e30df7e6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/AudioBitrate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitrate extends AbstractTag -{ - - protected $Id = 'Bit16-19'; - - protected $Name = 'AudioBitrate'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bitrate'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/AudioLayer.php b/lib/PHPExiftool/Driver/Tag/MPEG/AudioLayer.php deleted file mode 100644 index da9c0906f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/AudioLayer.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioLayer extends AbstractTag -{ - - protected $Id = 'Bit13-14'; - - protected $Name = 'AudioLayer'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Layer'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 3, - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 1, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/ChannelMode.php b/lib/PHPExiftool/Driver/Tag/MPEG/ChannelMode.php deleted file mode 100644 index 8b519a346..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/ChannelMode.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelMode extends AbstractTag -{ - - protected $Id = 'Bit24-25'; - - protected $Name = 'ChannelMode'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Stereo', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Joint Stereo', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Dual Channel', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Single Channel', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/CopyrightFlag.php b/lib/PHPExiftool/Driver/Tag/MPEG/CopyrightFlag.php deleted file mode 100644 index ecc05429e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/CopyrightFlag.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightFlag extends AbstractTag -{ - - protected $Id = 'Bit28'; - - protected $Name = 'CopyrightFlag'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright Flag'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => False, - ), - 1 => array( - 'Id' => 1, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/Emphasis.php b/lib/PHPExiftool/Driver/Tag/MPEG/Emphasis.php deleted file mode 100644 index 45424b2e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/Emphasis.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Emphasis extends AbstractTag -{ - - protected $Id = 'Bit30-31'; - - protected $Name = 'Emphasis'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Emphasis'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => '50/15 ms', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'reserved', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'CCIT J.17', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/Encoder.php b/lib/PHPExiftool/Driver/Tag/MPEG/Encoder.php deleted file mode 100644 index e67175345..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/Encoder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Encoder extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Encoder'; - - protected $FullName = 'MPEG::Xing'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoder'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/FrameRate.php b/lib/PHPExiftool/Driver/Tag/MPEG/FrameRate.php deleted file mode 100644 index 7e42d96e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 'Bit28-31'; - - protected $Name = 'FrameRate'; - - protected $FullName = 'MPEG::Video'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/MPEG/ImageHeight.php deleted file mode 100644 index 41f678f4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'Bit12-23'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'MPEG::Video'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/MPEG/ImageWidth.php deleted file mode 100644 index 2861a4bd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'Bit00-11'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'MPEG::Video'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/IntensityStereo.php b/lib/PHPExiftool/Driver/Tag/MPEG/IntensityStereo.php deleted file mode 100644 index af01fcc95..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/IntensityStereo.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntensityStereo extends AbstractTag -{ - - protected $Id = 'Bit27'; - - protected $Name = 'IntensityStereo'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intensity Stereo'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/LameBitrate.php b/lib/PHPExiftool/Driver/Tag/MPEG/LameBitrate.php deleted file mode 100644 index 8bf006978..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/LameBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LameBitrate extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'LameBitrate'; - - protected $FullName = 'MPEG::Lame'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Lame Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/LameLowPassFilter.php b/lib/PHPExiftool/Driver/Tag/MPEG/LameLowPassFilter.php deleted file mode 100644 index c2a6e0567..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/LameLowPassFilter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LameLowPassFilter extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'LameLowPassFilter'; - - protected $FullName = 'MPEG::Lame'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Lame Low Pass Filter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/LameMethod.php b/lib/PHPExiftool/Driver/Tag/MPEG/LameMethod.php deleted file mode 100644 index 4281812ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/LameMethod.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LameMethod extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'LameMethod'; - - protected $FullName = 'MPEG::Lame'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Lame Method'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'CBR', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'ABR', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'VBR (old/rh)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'VBR (new/mtrh)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'VBR (old/rh)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'VBR', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'CBR (2-pass)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'ABR (2-pass)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/LameQuality.php b/lib/PHPExiftool/Driver/Tag/MPEG/LameQuality.php deleted file mode 100644 index ca5d68dca..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/LameQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LameQuality extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'LameQuality'; - - protected $FullName = 'MPEG::Xing'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lame Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/LameStereoMode.php b/lib/PHPExiftool/Driver/Tag/MPEG/LameStereoMode.php deleted file mode 100644 index 979dfe0a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/LameStereoMode.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LameStereoMode extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'LameStereoMode'; - - protected $FullName = 'MPEG::Lame'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Lame Stereo Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Mono', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Stereo', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Dual Channels', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Joint Stereo', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Forced Joint Stereo', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Auto', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Intensity Stereo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/LameVBRQuality.php b/lib/PHPExiftool/Driver/Tag/MPEG/LameVBRQuality.php deleted file mode 100644 index 9d100e6a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/LameVBRQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LameVBRQuality extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'LameVBRQuality'; - - protected $FullName = 'MPEG::Xing'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lame VBR Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/MPEGAudioVersion.php b/lib/PHPExiftool/Driver/Tag/MPEG/MPEGAudioVersion.php deleted file mode 100644 index a886a1b8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/MPEGAudioVersion.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEGAudioVersion extends AbstractTag -{ - - protected $Id = 'Bit11-12'; - - protected $Name = 'MPEGAudioVersion'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG Audio Version'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '2.5', - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 1, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/MSStereo.php b/lib/PHPExiftool/Driver/Tag/MPEG/MSStereo.php deleted file mode 100644 index d98a6ba8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/MSStereo.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MSStereo extends AbstractTag -{ - - protected $Id = 'Bit26'; - - protected $Name = 'MSStereo'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MS Stereo'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/ModeExtension.php b/lib/PHPExiftool/Driver/Tag/MPEG/ModeExtension.php deleted file mode 100644 index 42d5726e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/ModeExtension.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModeExtension extends AbstractTag -{ - - protected $Id = 'Bit26-27'; - - protected $Name = 'ModeExtension'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mode Extension'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bands 4-31', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Bands 8-31', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Bands 12-31', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Bands 16-31', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/OriginalMedia.php b/lib/PHPExiftool/Driver/Tag/MPEG/OriginalMedia.php deleted file mode 100644 index 9279e156c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/OriginalMedia.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalMedia extends AbstractTag -{ - - protected $Id = 'Bit29'; - - protected $Name = 'OriginalMedia'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Media'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => False, - ), - 1 => array( - 'Id' => 1, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/SampleRate.php b/lib/PHPExiftool/Driver/Tag/MPEG/SampleRate.php deleted file mode 100644 index a019156a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/SampleRate.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 'Bit20-21'; - - protected $Name = 'SampleRate'; - - protected $FullName = 'MPEG::Audio'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 44100, - ), - 1 => array( - 'Id' => 1, - 'Label' => 48000, - ), - 2 => array( - 'Id' => 2, - 'Label' => 32000, - ), - 3 => array( - 'Id' => 0, - 'Label' => 22050, - ), - 4 => array( - 'Id' => 1, - 'Label' => 24000, - ), - 5 => array( - 'Id' => 2, - 'Label' => 16000, - ), - 6 => array( - 'Id' => 0, - 'Label' => 11025, - ), - 7 => array( - 'Id' => 1, - 'Label' => 12000, - ), - 8 => array( - 'Id' => 2, - 'Label' => 8000, - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/VBRBytes.php b/lib/PHPExiftool/Driver/Tag/MPEG/VBRBytes.php deleted file mode 100644 index a0d9df8f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/VBRBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBRBytes extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'VBRBytes'; - - protected $FullName = 'MPEG::Xing'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VBR Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/VBRFrames.php b/lib/PHPExiftool/Driver/Tag/MPEG/VBRFrames.php deleted file mode 100644 index 9ec0deec4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/VBRFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBRFrames extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'VBRFrames'; - - protected $FullName = 'MPEG::Xing'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VBR Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/VBRScale.php b/lib/PHPExiftool/Driver/Tag/MPEG/VBRScale.php deleted file mode 100644 index acb94d9ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/VBRScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBRScale extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'VBRScale'; - - protected $FullName = 'MPEG::Xing'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VBR Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPEG/VideoBitrate.php b/lib/PHPExiftool/Driver/Tag/MPEG/VideoBitrate.php deleted file mode 100644 index 50d6895a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPEG/VideoBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPEG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoBitrate extends AbstractTag -{ - - protected $Id = 'Bit32-49'; - - protected $Name = 'VideoBitrate'; - - protected $FullName = 'MPEG::Video'; - - protected $GroupName = 'MPEG'; - - protected $g0 = 'MPEG'; - - protected $g1 = 'MPEG'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceX.php b/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceX.php deleted file mode 100644 index 87fb64102..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxisDistanceX extends AbstractTag -{ - - protected $Id = 45576; - - protected $Name = 'AxisDistanceX'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axis Distance X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceY.php b/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceY.php deleted file mode 100644 index 5a96a0417..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxisDistanceY extends AbstractTag -{ - - protected $Id = 45577; - - protected $Name = 'AxisDistanceY'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axis Distance Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceZ.php b/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceZ.php deleted file mode 100644 index 5124a431f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/AxisDistanceZ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AxisDistanceZ extends AbstractTag -{ - - protected $Id = 45578; - - protected $Name = 'AxisDistanceZ'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Axis Distance Z'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/BaseViewpointNum.php b/lib/PHPExiftool/Driver/Tag/MPF0/BaseViewpointNum.php deleted file mode 100644 index 91c1d8c1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/BaseViewpointNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseViewpointNum extends AbstractTag -{ - - protected $Id = 45572; - - protected $Name = 'BaseViewpointNum'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Base Viewpoint Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/BaselineLength.php b/lib/PHPExiftool/Driver/Tag/MPF0/BaselineLength.php deleted file mode 100644 index f85f51e48..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/BaselineLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaselineLength extends AbstractTag -{ - - protected $Id = 45574; - - protected $Name = 'BaselineLength'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Baseline Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/ConvergenceAngle.php b/lib/PHPExiftool/Driver/Tag/MPF0/ConvergenceAngle.php deleted file mode 100644 index 9765529ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/ConvergenceAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConvergenceAngle extends AbstractTag -{ - - protected $Id = 45573; - - protected $Name = 'ConvergenceAngle'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Convergence Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/ImageUIDList.php b/lib/PHPExiftool/Driver/Tag/MPF0/ImageUIDList.php deleted file mode 100644 index 6c01c2fc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/ImageUIDList.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageUIDList extends AbstractTag -{ - - protected $Id = 45059; - - protected $Name = 'ImageUIDList'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image UID List'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/MPFVersion.php b/lib/PHPExiftool/Driver/Tag/MPF0/MPFVersion.php deleted file mode 100644 index 2e0f399b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/MPFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPFVersion extends AbstractTag -{ - - protected $Id = 45056; - - protected $Name = 'MPFVersion'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/MPIndividualNum.php b/lib/PHPExiftool/Driver/Tag/MPF0/MPIndividualNum.php deleted file mode 100644 index 9d5e72ae6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/MPIndividualNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPIndividualNum extends AbstractTag -{ - - protected $Id = 45313; - - protected $Name = 'MPIndividualNum'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MP Individual Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/NumberOfImages.php b/lib/PHPExiftool/Driver/Tag/MPF0/NumberOfImages.php deleted file mode 100644 index c2dbc37af..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/NumberOfImages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfImages extends AbstractTag -{ - - protected $Id = 45057; - - protected $Name = 'NumberOfImages'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Images'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/PanOrientation.php b/lib/PHPExiftool/Driver/Tag/MPF0/PanOrientation.php deleted file mode 100644 index a5ddf92ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/PanOrientation.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanOrientation extends AbstractTag -{ - - protected $Id = 45569; - - protected $Name = 'PanOrientation'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pan Orientation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '[unused]', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Start at top right', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Start at top left', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Start at bottom left', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Start at bottom right', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/PanOverlapH.php b/lib/PHPExiftool/Driver/Tag/MPF0/PanOverlapH.php deleted file mode 100644 index 7f532f510..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/PanOverlapH.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanOverlapH extends AbstractTag -{ - - protected $Id = 45570; - - protected $Name = 'PanOverlapH'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pan Overlap H'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/PanOverlapV.php b/lib/PHPExiftool/Driver/Tag/MPF0/PanOverlapV.php deleted file mode 100644 index 0becb3a0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/PanOverlapV.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanOverlapV extends AbstractTag -{ - - protected $Id = 45571; - - protected $Name = 'PanOverlapV'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pan Overlap V'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/PitchAngle.php b/lib/PHPExiftool/Driver/Tag/MPF0/PitchAngle.php deleted file mode 100644 index 8755ad633..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/PitchAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PitchAngle extends AbstractTag -{ - - protected $Id = 45580; - - protected $Name = 'PitchAngle'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pitch Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/RollAngle.php b/lib/PHPExiftool/Driver/Tag/MPF0/RollAngle.php deleted file mode 100644 index 54a7d4cb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/RollAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RollAngle extends AbstractTag -{ - - protected $Id = 45581; - - protected $Name = 'RollAngle'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Roll Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/TotalFrames.php b/lib/PHPExiftool/Driver/Tag/MPF0/TotalFrames.php deleted file mode 100644 index e1f6a79c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/TotalFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalFrames extends AbstractTag -{ - - protected $Id = 45060; - - protected $Name = 'TotalFrames'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/VerticalDivergence.php b/lib/PHPExiftool/Driver/Tag/MPF0/VerticalDivergence.php deleted file mode 100644 index 3850c0eff..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/VerticalDivergence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalDivergence extends AbstractTag -{ - - protected $Id = 45575; - - protected $Name = 'VerticalDivergence'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertical Divergence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPF0/YawAngle.php b/lib/PHPExiftool/Driver/Tag/MPF0/YawAngle.php deleted file mode 100644 index 2a8f655b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPF0/YawAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPF0; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YawAngle extends AbstractTag -{ - - protected $Id = 45579; - - protected $Name = 'YawAngle'; - - protected $FullName = 'MPF::Main'; - - protected $GroupName = 'MPF0'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPF0'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yaw Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPImage/DependentImage1EntryNumber.php b/lib/PHPExiftool/Driver/Tag/MPImage/DependentImage1EntryNumber.php deleted file mode 100644 index 0a787df1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPImage/DependentImage1EntryNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DependentImage1EntryNumber extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'DependentImage1EntryNumber'; - - protected $FullName = 'MPF::MPImage'; - - protected $GroupName = 'MPImage'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPImage'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Dependent Image 1 Entry Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPImage/DependentImage2EntryNumber.php b/lib/PHPExiftool/Driver/Tag/MPImage/DependentImage2EntryNumber.php deleted file mode 100644 index cd537ad6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPImage/DependentImage2EntryNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DependentImage2EntryNumber extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'DependentImage2EntryNumber'; - - protected $FullName = 'MPF::MPImage'; - - protected $GroupName = 'MPImage'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPImage'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Dependent Image 2 Entry Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageFlags.php b/lib/PHPExiftool/Driver/Tag/MPImage/MPImageFlags.php deleted file mode 100644 index ac45f44a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageFlags.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPImageFlags extends AbstractTag -{ - - protected $Id = '0.1'; - - protected $Name = 'MPImageFlags'; - - protected $FullName = 'MPF::MPImage'; - - protected $GroupName = 'MPImage'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPImage'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'MP Image Flags'; - - protected $Values = array( - 536870912 => array( - 'Id' => 536870912, - 'Label' => 'Representative image', - ), - 1073741824 => array( - 'Id' => 1073741824, - 'Label' => 'Dependent child image', - ), - 2147483648 => array( - 'Id' => 2147483648, - 'Label' => 'Dependent parent image', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageFormat.php b/lib/PHPExiftool/Driver/Tag/MPImage/MPImageFormat.php deleted file mode 100644 index d60ab906d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageFormat.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPImageFormat extends AbstractTag -{ - - protected $Id = '0.2'; - - protected $Name = 'MPImageFormat'; - - protected $FullName = 'MPF::MPImage'; - - protected $GroupName = 'MPImage'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPImage'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'MP Image Format'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'JPEG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageLength.php b/lib/PHPExiftool/Driver/Tag/MPImage/MPImageLength.php deleted file mode 100644 index bfde8efb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPImageLength extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'MPImageLength'; - - protected $FullName = 'MPF::MPImage'; - - protected $GroupName = 'MPImage'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPImage'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'MP Image Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageStart.php b/lib/PHPExiftool/Driver/Tag/MPImage/MPImageStart.php deleted file mode 100644 index dcfebf86d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageStart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPImageStart extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'MPImageStart'; - - protected $FullName = 'MPF::MPImage'; - - protected $GroupName = 'MPImage'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPImage'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'MP Image Start'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageType.php b/lib/PHPExiftool/Driver/Tag/MPImage/MPImageType.php deleted file mode 100644 index f1edb68a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MPImage/MPImageType.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MPImage; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPImageType extends AbstractTag -{ - - protected $Id = '0.3'; - - protected $Name = 'MPImageType'; - - protected $FullName = 'MPF::MPImage'; - - protected $GroupName = 'MPImage'; - - protected $g0 = 'MPF'; - - protected $g1 = 'MPImage'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'MP Image Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Undefined', - ), - 65537 => array( - 'Id' => 65537, - 'Label' => 'Large Thumbnail (VGA equivalent)', - ), - 65538 => array( - 'Id' => 65538, - 'Label' => 'Large Thumbnail (full HD equivalent)', - ), - 131073 => array( - 'Id' => 131073, - 'Label' => 'Multi-frame Panorama', - ), - 131074 => array( - 'Id' => 131074, - 'Label' => 'Multi-frame Disparity', - ), - 131075 => array( - 'Id' => 131075, - 'Label' => 'Multi-angle', - ), - 196608 => array( - 'Id' => 196608, - 'Label' => 'Baseline MP Primary Image', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AAFManufacturerID.php b/lib/PHPExiftool/Driver/Tag/MXF/AAFManufacturerID.php deleted file mode 100644 index 1f6887b7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AAFManufacturerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AAFManufacturerID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.010a0103.00000000'; - - protected $Name = 'AAFManufacturerID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AAF Manufacturer ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AFDAndBarData.php b/lib/PHPExiftool/Driver/Tag/MXF/AFDAndBarData.php deleted file mode 100644 index 73b1916f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AFDAndBarData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFDAndBarData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010101.09000000'; - - protected $Name = 'AFDAndBarData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFD And Bar Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AGICOAID.php b/lib/PHPExiftool/Driver/Tag/MXF/AGICOAID.php deleted file mode 100644 index 4f84e8967..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AGICOAID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AGICOAID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01100201.00000000'; - - protected $Name = 'AGICOAID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AGICOAID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AICI.php b/lib/PHPExiftool/Driver/Tag/MXF/AICI.php deleted file mode 100644 index f99288aee..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AICI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AICI extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011303.00000000'; - - protected $Name = 'AICI'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AICI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AIFCSummary.php b/lib/PHPExiftool/Driver/Tag/MXF/AIFCSummary.php deleted file mode 100644 index 217b04e16..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AIFCSummary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AIFCSummary extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03030302.02000000'; - - protected $Name = 'AIFCSummary'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AIFC Summary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ANCPacketCount.php b/lib/PHPExiftool/Driver/Tag/MXF/ANCPacketCount.php deleted file mode 100644 index b93edff97..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ANCPacketCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ANCPacketCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.08000000'; - - protected $Name = 'ANCPacketCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'ANC Packet Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadByteArray.php b/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadByteArray.php deleted file mode 100644 index 90d3cc1bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadByteArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ANCPayloadByteArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.0c000000'; - - protected $Name = 'ANCPayloadByteArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'ANC Payload Byte Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadSampleCoding.php b/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadSampleCoding.php deleted file mode 100644 index 0eb509f20..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadSampleCoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ANCPayloadSampleCoding extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010503.10000000'; - - protected $Name = 'ANCPayloadSampleCoding'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'ANC Payload Sample Coding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadSampleCount.php b/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadSampleCount.php deleted file mode 100644 index c7bd349e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ANCPayloadSampleCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ANCPayloadSampleCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.0b000000'; - - protected $Name = 'ANCPayloadSampleCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'ANC Payload Sample Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ANCWrappingType.php b/lib/PHPExiftool/Driver/Tag/MXF/ANCWrappingType.php deleted file mode 100644 index 65e6c48d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ANCWrappingType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ANCWrappingType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.0a000000'; - - protected $Name = 'ANCWrappingType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'ANC Wrapping Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Abstract0.php b/lib/PHPExiftool/Driver/Tag/MXF/Abstract0.php deleted file mode 100644 index b730c8cd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Abstract0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Abstract0 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Abstract'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Abstract'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AccountingReferenceNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/AccountingReferenceNumber.php deleted file mode 100644 index da193fc80..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AccountingReferenceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccountingReferenceNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030104.00000000'; - - protected $Name = 'AccountingReferenceNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Accounting Reference Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ActiveFormatDescriptor.php b/lib/PHPExiftool/Driver/Tag/MXF/ActiveFormatDescriptor.php deleted file mode 100644 index 5e7269c89..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ActiveFormatDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveFormatDescriptor extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010302.09000000'; - - protected $Name = 'ActiveFormatDescriptor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Active Format Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ActiveLinesperFrame.php b/lib/PHPExiftool/Driver/Tag/MXF/ActiveLinesperFrame.php deleted file mode 100644 index 436ac5075..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ActiveLinesperFrame.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveLinesperFrame extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010302.02000000'; - - protected $Name = 'ActiveLinesperFrame'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Active Linesper Frame'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ActiveSamplesperLine.php b/lib/PHPExiftool/Driver/Tag/MXF/ActiveSamplesperLine.php deleted file mode 100644 index e3dd739a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ActiveSamplesperLine.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveSamplesperLine extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.02000000'; - - protected $Name = 'ActiveSamplesperLine'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Active Samplesper Line'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ActiveState.php b/lib/PHPExiftool/Driver/Tag/MXF/ActiveState.php deleted file mode 100644 index ecc931fb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ActiveState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveState extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05300401.00000000'; - - protected $Name = 'ActiveState'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Active State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AdID.php b/lib/PHPExiftool/Driver/Tag/MXF/AdID.php deleted file mode 100644 index 105946704..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AdID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.0101110b.00000000'; - - protected $Name = 'Ad-ID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ad-ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AddressLine.php b/lib/PHPExiftool/Driver/Tag/MXF/AddressLine.php deleted file mode 100644 index b800255f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AddressLine.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddressLine extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AddressLine'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Address Line'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AddressNameValueSets.php b/lib/PHPExiftool/Driver/Tag/MXF/AddressNameValueSets.php deleted file mode 100644 index 6357063ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AddressNameValueSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddressNameValueSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010104.05401f04'; - - protected $Name = 'AddressNameValueSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Address Name Value Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AddressSets.php b/lib/PHPExiftool/Driver/Tag/MXF/AddressSets.php deleted file mode 100644 index 51193da66..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AddressSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AddressSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401700'; - - protected $Name = 'AddressSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Address Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AdvertisingMaterialReference.php b/lib/PHPExiftool/Driver/Tag/MXF/AdvertisingMaterialReference.php deleted file mode 100644 index 852c0734c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AdvertisingMaterialReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvertisingMaterialReference extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.06020200.00000000'; - - protected $Name = 'AdvertisingMaterialReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Advertising Material Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AestheticValue.php b/lib/PHPExiftool/Driver/Tag/MXF/AestheticValue.php deleted file mode 100644 index ae8dd164e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AestheticValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AestheticValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020202.04000000'; - - protected $Name = 'AestheticValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Aesthetic Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AlphaMaximumRef.php b/lib/PHPExiftool/Driver/Tag/MXF/AlphaMaximumRef.php deleted file mode 100644 index cc8694c41..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AlphaMaximumRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaMaximumRef extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010503.0d000000'; - - protected $Name = 'AlphaMaximumRef'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Alpha Maximum Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AlphaMinimumRef.php b/lib/PHPExiftool/Driver/Tag/MXF/AlphaMinimumRef.php deleted file mode 100644 index b531a58da..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AlphaMinimumRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaMinimumRef extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010503.0e000000'; - - protected $Name = 'AlphaMinimumRef'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Alpha Minimum Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AlphaSampleDepth.php b/lib/PHPExiftool/Driver/Tag/MXF/AlphaSampleDepth.php deleted file mode 100644 index 6cd5e7b90..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AlphaSampleDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaSampleDepth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010503.07000000'; - - protected $Name = 'AlphaSampleDepth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Alpha Sample Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AlphaTransparency.php b/lib/PHPExiftool/Driver/Tag/MXF/AlphaTransparency.php deleted file mode 100644 index 3de800961..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AlphaTransparency.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaTransparency extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200102.00000000'; - - protected $Name = 'AlphaTransparency'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Transparency'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Inverted', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Inverted', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AlternateName.php b/lib/PHPExiftool/Driver/Tag/MXF/AlternateName.php deleted file mode 100644 index 2093dc153..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AlternateName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlternateName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AlternateName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Alternate Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Alternates.php b/lib/PHPExiftool/Driver/Tag/MXF/Alternates.php deleted file mode 100644 index 514f310a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Alternates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Alternates extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06080000'; - - protected $Name = 'Alternates'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alternates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnalogDataCodingKind.php b/lib/PHPExiftool/Driver/Tag/MXF/AnalogDataCodingKind.php deleted file mode 100644 index 0eefe2b88..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnalogDataCodingKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnalogDataCodingKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04030201.00000000'; - - protected $Name = 'AnalogDataCodingKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Analog Data Coding Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnalogMetadataCarrier.php b/lib/PHPExiftool/Driver/Tag/MXF/AnalogMetadataCarrier.php deleted file mode 100644 index 932353a0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnalogMetadataCarrier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnalogMetadataCarrier extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04040202.00000000'; - - protected $Name = 'AnalogMetadataCarrier'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Analog Metadata Carrier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnalogMonitoringAndControlCodingKind.php b/lib/PHPExiftool/Driver/Tag/MXF/AnalogMonitoringAndControlCodingKind.php deleted file mode 100644 index b1cbaa4aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnalogMonitoringAndControlCodingKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnalogMonitoringAndControlCodingKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04050201.00000000'; - - protected $Name = 'AnalogMonitoringAndControlCodingKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Analog Monitoring And Control Coding Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnalogSystem.php b/lib/PHPExiftool/Driver/Tag/MXF/AnalogSystem.php deleted file mode 100644 index ea2a6b42d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnalogSystem.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnalogSystem extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020201.00000000'; - - protected $Name = 'AnalogSystem'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Analog System'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnalogVideoSystemName.php b/lib/PHPExiftool/Driver/Tag/MXF/AnalogVideoSystemName.php deleted file mode 100644 index 685880660..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnalogVideoSystemName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnalogVideoSystemName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AnalogVideoSystemName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Analog Video System Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnamorphicLensCharacteristic.php b/lib/PHPExiftool/Driver/Tag/MXF/AnamorphicLensCharacteristic.php deleted file mode 100644 index 1f3811c4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnamorphicLensCharacteristic.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnamorphicLensCharacteristic extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04200201.01090000'; - - protected $Name = 'AnamorphicLensCharacteristic'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Anamorphic Lens Characteristic'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnchorOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/AnchorOffset.php deleted file mode 100644 index a740defa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnchorOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnchorOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040402.04000000'; - - protected $Name = 'AnchorOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Anchor Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AncillaryResourceID.php b/lib/PHPExiftool/Driver/Tag/MXF/AncillaryResourceID.php deleted file mode 100644 index 116fa384b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AncillaryResourceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AncillaryResourceID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.01011513.00000000'; - - protected $Name = 'AncillaryResourceID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ancillary Resource ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AngleToNorth.php b/lib/PHPExiftool/Driver/Tag/MXF/AngleToNorth.php deleted file mode 100644 index 0285f91ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AngleToNorth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngleToNorth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07011001.02000000'; - - protected $Name = 'AngleToNorth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Angle To North'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AngularUnitKind.php b/lib/PHPExiftool/Driver/Tag/MXF/AngularUnitKind.php deleted file mode 100644 index b62120551..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AngularUnitKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngularUnitKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010302.01000000'; - - protected $Name = 'AngularUnitKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Angular Unit Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Annotation.php b/lib/PHPExiftool/Driver/Tag/MXF/Annotation.php deleted file mode 100644 index 4f0f56885..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Annotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Annotation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.020a0000'; - - protected $Name = 'Annotation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationCueWordsSet.php b/lib/PHPExiftool/Driver/Tag/MXF/AnnotationCueWordsSet.php deleted file mode 100644 index b85b1f02e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationCueWordsSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationCueWordsSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02402301'; - - protected $Name = 'AnnotationCueWordsSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Cue Words Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/AnnotationDescription.php deleted file mode 100644 index e0b5511f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AnnotationDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Annotation Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationKind.php b/lib/PHPExiftool/Driver/Tag/MXF/AnnotationKind.php deleted file mode 100644 index 08cc31a3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AnnotationKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Annotation Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationParticipantSets.php b/lib/PHPExiftool/Driver/Tag/MXF/AnnotationParticipantSets.php deleted file mode 100644 index 41b415f8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationParticipantSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationParticipantSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010104.03401303'; - - protected $Name = 'AnnotationParticipantSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Participant Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/AnnotationSets.php deleted file mode 100644 index 17e118fec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400d00'; - - protected $Name = 'AnnotationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationSynopsis.php b/lib/PHPExiftool/Driver/Tag/MXF/AnnotationSynopsis.php deleted file mode 100644 index eb578a646..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AnnotationSynopsis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationSynopsis extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AnnotationSynopsis'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Annotation Synopsis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationEnvironmentID.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationEnvironmentID.php deleted file mode 100644 index 809939962..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationEnvironmentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationEnvironmentID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.05200701.0f000000'; - - protected $Name = 'ApplicationEnvironmentID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Environment ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationInformationArray.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationInformationArray.php deleted file mode 100644 index 3a45047dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationInformationArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationInformationArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.06130000'; - - protected $Name = 'ApplicationInformationArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Information Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationName.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationName.php deleted file mode 100644 index 2936eac44..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ApplicationName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Application Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlatform.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlatform.php deleted file mode 100644 index 94b1b9dde..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlatform.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationPlatform extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ApplicationPlatform'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Application Platform'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlugInBatch.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlugInBatch.php deleted file mode 100644 index 041242c19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlugInBatch.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationPlugInBatch extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.020e0000'; - - protected $Name = 'ApplicationPlug-InBatch'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Plug-In Batch'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlugInInstanceID.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlugInInstanceID.php deleted file mode 100644 index bd6b531c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationPlugInInstanceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationPlugInInstanceID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.05200701.0d000000'; - - protected $Name = 'ApplicationPlug-InInstanceID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Plug-In Instance ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationProductID.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationProductID.php deleted file mode 100644 index cf89a7a1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationProductID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationProductID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200701.07000000'; - - protected $Name = 'ApplicationProductID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Product ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationScheme.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationScheme.php deleted file mode 100644 index e506c18ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationScheme.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationScheme extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04060803.00000000'; - - protected $Name = 'ApplicationScheme'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Scheme'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationSchemeBatch.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationSchemeBatch.php deleted file mode 100644 index d48809948..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationSchemeBatch.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSchemeBatch extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.01020210.02030000'; - - protected $Name = 'ApplicationSchemeBatch'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Scheme Batch'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationSupplierName.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationSupplierName.php deleted file mode 100644 index db45ca3f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationSupplierName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationSupplierName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ApplicationSupplierName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Application Supplier Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationVersionNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationVersionNumber.php deleted file mode 100644 index f2cfd8732..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationVersionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationVersionNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200701.04000000'; - - protected $Name = 'ApplicationVersionNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Version Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationVersionString.php b/lib/PHPExiftool/Driver/Tag/MXF/ApplicationVersionString.php deleted file mode 100644 index 4bf70ad7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApplicationVersionString.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationVersionString extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ApplicationVersionString'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Application Version String'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ApproximateImageContainerSize.php b/lib/PHPExiftool/Driver/Tag/MXF/ApproximateImageContainerSize.php deleted file mode 100644 index d34e4d89c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ApproximateImageContainerSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApproximateImageContainerSize extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.04060202.00000000'; - - protected $Name = 'ApproximateImageContainerSize'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Approximate Image Container Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ArchiveID.php b/lib/PHPExiftool/Driver/Tag/MXF/ArchiveID.php deleted file mode 100644 index b78364838..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ArchiveID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArchiveID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030102.00000000'; - - protected $Name = 'ArchiveID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Archive ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AssetValue.php b/lib/PHPExiftool/Driver/Tag/MXF/AssetValue.php deleted file mode 100644 index c104917ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AssetValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssetValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020202.01000000'; - - protected $Name = 'AssetValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Asset Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AssignedCategoryName.php b/lib/PHPExiftool/Driver/Tag/MXF/AssignedCategoryName.php deleted file mode 100644 index a7bf93758..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AssignedCategoryName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssignedCategoryName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AssignedCategoryName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Assigned Category Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AssignedCategoryValue.php b/lib/PHPExiftool/Driver/Tag/MXF/AssignedCategoryValue.php deleted file mode 100644 index b9b9c8725..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AssignedCategoryValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssignedCategoryValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AssignedCategoryValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Assigned Category Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AssociatedMetadataDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/AssociatedMetadataDefinition.php deleted file mode 100644 index d72737ec9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AssociatedMetadataDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssociatedMetadataDefinition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0520090f.00000000'; - - protected $Name = 'AssociatedMetadataDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Associated Metadata Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AstronomicalBodyName.php b/lib/PHPExiftool/Driver/Tag/MXF/AstronomicalBodyName.php deleted file mode 100644 index 7e9a9b27e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AstronomicalBodyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AstronomicalBodyName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AstronomicalBodyName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Astronomical Body Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudienceAppreciation.php b/lib/PHPExiftool/Driver/Tag/MXF/AudienceAppreciation.php deleted file mode 100644 index 7d2680019..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudienceAppreciation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudienceAppreciation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.02200304.00000000'; - - protected $Name = 'AudienceAppreciation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Audience Appreciation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudienceRating.php b/lib/PHPExiftool/Driver/Tag/MXF/AudienceRating.php deleted file mode 100644 index 521b08e29..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudienceRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudienceRating extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02200301.00000000'; - - protected $Name = 'AudienceRating'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audience Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudienceReach.php b/lib/PHPExiftool/Driver/Tag/MXF/AudienceReach.php deleted file mode 100644 index f1c1b2166..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudienceReach.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudienceReach extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02200302.00000000'; - - protected $Name = 'AudienceReach'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audience Reach'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudienceShare.php b/lib/PHPExiftool/Driver/Tag/MXF/AudienceShare.php deleted file mode 100644 index 4a4f29a03..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudienceShare.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudienceShare extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.02200303.00000000'; - - protected $Name = 'AudienceShare'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Audience Share'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioAverageBitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioAverageBitrate.php deleted file mode 100644 index a6915c271..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioAverageBitrate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioAverageBitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04020301.02000000'; - - protected $Name = 'AudioAverageBitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Audio Average Bitrate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeCode.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeCode.php deleted file mode 100644 index f149931a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeCode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodingSchemeCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04020402.01000000'; - - protected $Name = 'AudioCodingSchemeCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Coding Scheme Code'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeID.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeID.php deleted file mode 100644 index 0410caa26..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodingSchemeID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04020402.00000000'; - - protected $Name = 'AudioCodingSchemeID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Coding Scheme ID'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeName.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeName.php deleted file mode 100644 index 9c9adf4e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioCodingSchemeName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodingSchemeName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04020402.02000000'; - - protected $Name = 'AudioCodingSchemeName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Coding Scheme Name'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioCompressionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioCompressionAlgorithm.php deleted file mode 100644 index 741bb11b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioCompressionAlgorithm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCompressionAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05020201.00000000'; - - protected $Name = 'AudioCompressionAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Compression Algorithm'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceKind.php deleted file mode 100644 index a11fa82f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceKind.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioDeviceKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200401.00000000'; - - protected $Name = 'AudioDeviceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Device Kind'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceParameter.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceParameter.php deleted file mode 100644 index c23cde49b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceParameter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioDeviceParameter extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200402.00000000'; - - protected $Name = 'AudioDeviceParameter'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Device Parameter'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceParameterSetting.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceParameterSetting.php deleted file mode 100644 index b301fee04..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioDeviceParameterSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioDeviceParameterSetting extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200403.00000000'; - - protected $Name = 'AudioDeviceParameterSetting'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Device Parameter Setting'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioEnhancementOrModificationDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioEnhancementOrModificationDescription.php deleted file mode 100644 index e552bf8a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioEnhancementOrModificationDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioEnhancementOrModificationDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200301.00000000'; - - protected $Name = 'AudioEnhancementOrModificationDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Enhancement Or Modification Description'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioFirstMixDownProcess.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioFirstMixDownProcess.php deleted file mode 100644 index 68d6b45c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioFirstMixDownProcess.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFirstMixDownProcess extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200302.00000000'; - - protected $Name = 'AudioFirstMix-DownProcess'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio First Mix-Down Process'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioFixedBitrateFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioFixedBitrateFlag.php deleted file mode 100644 index cc5d18f4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioFixedBitrateFlag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFixedBitrateFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04020301.03000000'; - - protected $Name = 'AudioFixedBitrateFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Fixed Bitrate Flag'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioMonoChannelCount.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioMonoChannelCount.php deleted file mode 100644 index 8886ecc01..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioMonoChannelCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioMonoChannelCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020101.10010000'; - - protected $Name = 'AudioMonoChannelCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Audio Mono Channel Count'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioNoiseReductionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioNoiseReductionAlgorithm.php deleted file mode 100644 index 1e1a4afe8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioNoiseReductionAlgorithm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioNoiseReductionAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05030201.00000000'; - - protected $Name = 'AudioNoiseReductionAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Noise Reduction Algorithm'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioReferenceLevel.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioReferenceLevel.php deleted file mode 100644 index 96b607abf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioReferenceLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioReferenceLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AudioReferenceLevel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Audio Reference Level'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioSampleRate.php deleted file mode 100644 index e5464b837..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioSampleRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioStereoChannelCount.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioStereoChannelCount.php deleted file mode 100644 index 5922aa2e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioStereoChannelCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioStereoChannelCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020101.10020000'; - - protected $Name = 'AudioStereoChannelCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Audio Stereo Channel Count'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AudioWatermarkKind.php b/lib/PHPExiftool/Driver/Tag/MXF/AudioWatermarkKind.php deleted file mode 100644 index 937367788..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AudioWatermarkKind.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioWatermarkKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0107.00000000'; - - protected $Name = 'AudioWatermarkKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Watermark Kind'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AuthenticationFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/AuthenticationFlag.php deleted file mode 100644 index 2e7fa2097..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AuthenticationFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthenticationFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0520090e.00000000'; - - protected $Name = 'AuthenticationFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Authentication Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AuxiliaryBitsMode.php b/lib/PHPExiftool/Driver/Tag/MXF/AuxiliaryBitsMode.php deleted file mode 100644 index d48f8ae98..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AuxiliaryBitsMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuxiliaryBitsMode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020501.01000000'; - - protected $Name = 'AuxiliaryBitsMode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Auxiliary Bits Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AvailableRepresentations.php b/lib/PHPExiftool/Driver/Tag/MXF/AvailableRepresentations.php deleted file mode 100644 index 4cbfa6091..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AvailableRepresentations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvailableRepresentations extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06010000'; - - protected $Name = 'AvailableRepresentations'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Available Representations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AverageBytesPerSecond.php b/lib/PHPExiftool/Driver/Tag/MXF/AverageBytesPerSecond.php deleted file mode 100644 index df40df484..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AverageBytesPerSecond.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AverageBytesPerSecond extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020303.05000000'; - - protected $Name = 'AverageBytesPerSecond'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Average Bytes Per Second'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AwardCategory.php b/lib/PHPExiftool/Driver/Tag/MXF/AwardCategory.php deleted file mode 100644 index 48bb66e32..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AwardCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AwardCategory extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AwardCategory'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Award Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AwardName.php b/lib/PHPExiftool/Driver/Tag/MXF/AwardName.php deleted file mode 100644 index eae17e675..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AwardName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AwardName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AwardName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Award Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AwardParticipantSets.php b/lib/PHPExiftool/Driver/Tag/MXF/AwardParticipantSets.php deleted file mode 100644 index 19a844763..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AwardParticipantSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AwardParticipantSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.03401301'; - - protected $Name = 'AwardParticipantSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Award Participant Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/AwardSets.php b/lib/PHPExiftool/Driver/Tag/MXF/AwardSets.php deleted file mode 100644 index e6b756e14..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/AwardSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AwardSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400b00'; - - protected $Name = 'AwardSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Award Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BICI.php b/lib/PHPExiftool/Driver/Tag/MXF/BICI.php deleted file mode 100644 index 07c6c3c39..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BICI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BICI extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011302.00000000'; - - protected $Name = 'BICI'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'BICI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BackgroundMusicFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/BackgroundMusicFlag.php deleted file mode 100644 index c562cc79e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BackgroundMusicFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundMusicFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.05010402.00000000'; - - protected $Name = 'BackgroundMusicFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Background Music Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BankDetailsSet.php b/lib/PHPExiftool/Driver/Tag/MXF/BankDetailsSet.php deleted file mode 100644 index 69672d833..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BankDetailsSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BankDetailsSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02401c00'; - - protected $Name = 'BankDetailsSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bank Details Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BeginAnchor.php b/lib/PHPExiftool/Driver/Tag/MXF/BeginAnchor.php deleted file mode 100644 index 1786557cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BeginAnchor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeginAnchor extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BeginAnchor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Begin Anchor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BextCodingHistory.php b/lib/PHPExiftool/Driver/Tag/MXF/BextCodingHistory.php deleted file mode 100644 index 4749a7324..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BextCodingHistory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BextCodingHistory extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BextCodingHistory'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Bext Coding History'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Bitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/Bitrate.php deleted file mode 100644 index 613cc2798..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Bitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Bitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.010b0000'; - - protected $Name = 'Bitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BitsPerAudioSample.php b/lib/PHPExiftool/Driver/Tag/MXF/BitsPerAudioSample.php deleted file mode 100644 index 79894e817..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BitsPerAudioSample.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerAudioSample extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04020303.04000000'; - - protected $Name = 'BitsPerAudioSample'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Audio Sample'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/MXF/BitsPerSample.php deleted file mode 100644 index 39bdf9f99..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BitsPerSample.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020303.01000000'; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BitsperPixel.php b/lib/PHPExiftool/Driver/Tag/MXF/BitsperPixel.php deleted file mode 100644 index ba82606df..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BitsperPixel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsperPixel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BitsperPixel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Bitsper Pixel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BlackReferenceLevel.php b/lib/PHPExiftool/Driver/Tag/MXF/BlackReferenceLevel.php deleted file mode 100644 index c742ce5c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BlackReferenceLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackReferenceLevel extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010503.03000000'; - - protected $Name = 'BlackReferenceLevel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Black Reference Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BlockAlign.php b/lib/PHPExiftool/Driver/Tag/MXF/BlockAlign.php deleted file mode 100644 index 8ce72d551..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BlockAlign.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockAlign extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020302.01000000'; - - protected $Name = 'BlockAlign'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Block Align'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BlockContinuityCount.php b/lib/PHPExiftool/Driver/Tag/MXF/BlockContinuityCount.php deleted file mode 100644 index ffe688d17..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BlockContinuityCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockContinuityCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06080101.01000000'; - - protected $Name = 'BlockContinuityCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Block Continuity Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BlockStartOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/BlockStartOffset.php deleted file mode 100644 index faa32f467..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BlockStartOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockStartOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020302.03000000'; - - protected $Name = 'BlockStartOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Block Start Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BoundingRectangle.php b/lib/PHPExiftool/Driver/Tag/MXF/BoundingRectangle.php deleted file mode 100644 index 5acd300a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BoundingRectangle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoundingRectangle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07010201.030f0000'; - - protected $Name = 'BoundingRectangle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bounding Rectangle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BrandMainTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/BrandMainTitle.php deleted file mode 100644 index 181cec3d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BrandMainTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrandMainTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BrandMainTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Brand Main Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BrandOriginalTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/BrandOriginalTitle.php deleted file mode 100644 index 0383b351f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BrandOriginalTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrandOriginalTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BrandOriginalTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Brand Original Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BrandingSets.php b/lib/PHPExiftool/Driver/Tag/MXF/BrandingSets.php deleted file mode 100644 index 47ed86084..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BrandingSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrandingSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400800'; - - protected $Name = 'BrandingSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Branding Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastChannel.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastChannel.php deleted file mode 100644 index ebe71d414..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastChannel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastChannel extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02100101.02000000'; - - protected $Name = 'BroadcastChannel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Broadcast Channel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastDate.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastDate.php deleted file mode 100644 index f7769f301..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0601.00000000'; - - protected $Name = 'BroadcastDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Broadcast Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastMediumCode.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastMediumCode.php deleted file mode 100644 index 31068f59f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastMediumCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastMediumCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02100101.03020000'; - - protected $Name = 'BroadcastMediumCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Broadcast Medium Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastMediumKind.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastMediumKind.php deleted file mode 100644 index eea788094..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastMediumKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastMediumKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02100101.03000000'; - - protected $Name = 'BroadcastMediumKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Broadcast Medium Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastOrganizationName.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastOrganizationName.php deleted file mode 100644 index 6dc371918..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastOrganizationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastOrganizationName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BroadcastOrganizationName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Broadcast Organization Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastRegion.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastRegion.php deleted file mode 100644 index 6c324b5f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastRegion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BroadcastRegion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Broadcast Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastServiceName.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastServiceName.php deleted file mode 100644 index 695fad3df..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastServiceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastServiceName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02100101.02010000'; - - protected $Name = 'BroadcastServiceName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Broadcast Service Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastTime.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcastTime.php deleted file mode 100644 index b7b778a3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcastTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0602.00000000'; - - protected $Name = 'BroadcastTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Broadcast Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BroadcasterRightsToCopy.php b/lib/PHPExiftool/Driver/Tag/MXF/BroadcasterRightsToCopy.php deleted file mode 100644 index bd24a785c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BroadcasterRightsToCopy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcasterRightsToCopy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0902.00000000'; - - protected $Name = 'BroadcasterRightsToCopy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Broadcaster Rights To Copy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BufferDelay.php b/lib/PHPExiftool/Driver/Tag/MXF/BufferDelay.php deleted file mode 100644 index c7daa422b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BufferDelay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BufferDelay extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020301.03010000'; - - protected $Name = 'BufferDelay'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Buffer Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BuildingName.php b/lib/PHPExiftool/Driver/Tag/MXF/BuildingName.php deleted file mode 100644 index 1a281f55b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BuildingName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BuildingName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BuildingName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Building Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Bypass.php b/lib/PHPExiftool/Driver/Tag/MXF/Bypass.php deleted file mode 100644 index f87db65ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Bypass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Bypass extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05300505.00000000'; - - protected $Name = 'Bypass'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Bypass'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/BypassOverride.php b/lib/PHPExiftool/Driver/Tag/MXF/BypassOverride.php deleted file mode 100644 index 5e805994a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/BypassOverride.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BypassOverride extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0530050c.00000000'; - - protected $Name = 'BypassOverride'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Bypass Override'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ByteOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/ByteOffset.php deleted file mode 100644 index a07eff3f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ByteOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ByteOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.06090201.01000000'; - - protected $Name = 'ByteOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Byte Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ByteOrder.php b/lib/PHPExiftool/Driver/Tag/MXF/ByteOrder.php deleted file mode 100644 index ceefd1836..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ByteOrder.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ByteOrder extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010201.02000000'; - - protected $Name = 'ByteOrder'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Byte Order'; - - protected $Values = array( - 'II' => array( - 'Id' => 'II', - 'Label' => 'Little-endian (Intel, II)', - ), - 'MM' => array( - 'Id' => 'MM', - 'Label' => 'Big-endian (Motorola, MM)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CBEStartOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/CBEStartOffset.php deleted file mode 100644 index 44a8b025a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CBEStartOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CBEStartOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04060204.00000000'; - - protected $Name = 'CBEStartOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'CBE Start Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CISACLegalEntityID.php b/lib/PHPExiftool/Driver/Tag/MXF/CISACLegalEntityID.php deleted file mode 100644 index 959d70bd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CISACLegalEntityID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CISACLegalEntityID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01100101.00000000'; - - protected $Name = 'CISACLegalEntityID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CISAC Legal Entity ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptionDescriptionSets.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptionDescriptionSets.php deleted file mode 100644 index b13e9f917..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptionDescriptionSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionDescriptionSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400c00'; - - protected $Name = 'CaptionDescriptionSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Caption Description Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptionKind.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptionKind.php deleted file mode 100644 index 67d83d3c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptionKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CaptionKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Caption Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptionTitles.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptionTitles.php deleted file mode 100644 index 764fcd7cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptionTitles.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionTitles extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0301.00000000'; - - protected $Name = 'CaptionTitles'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Caption Titles'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptionsDescriptionParticipantSets.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptionsDescriptionParticipantSets.php deleted file mode 100644 index 89f68580a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptionsDescriptionParticipantSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionsDescriptionParticipantSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.06010104.03401304'; - - protected $Name = 'CaptionsDescriptionParticipantSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Captions Description Participant Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptionsViaTeletext.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptionsViaTeletext.php deleted file mode 100644 index 66eb52328..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptionsViaTeletext.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionsViaTeletext extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0302.00000000'; - - protected $Name = 'CaptionsViaTeletext'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Captions Via Teletext'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptureAspectRatio.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptureAspectRatio.php deleted file mode 100644 index 30be37ab6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptureAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureAspectRatio extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010101.02000000'; - - protected $Name = 'CaptureAspectRatio'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Capture Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptureFilmFrameRate.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptureFilmFrameRate.php deleted file mode 100644 index d2b5f4de2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptureFilmFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureFilmFrameRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010802.01000000'; - - protected $Name = 'CaptureFilmFrameRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Capture Film Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CaptureGammaEquation.php b/lib/PHPExiftool/Driver/Tag/MXF/CaptureGammaEquation.php deleted file mode 100644 index 139b26267..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CaptureGammaEquation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureGammaEquation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CaptureGammaEquation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Capture Gamma Equation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CatalogDataStatus.php b/lib/PHPExiftool/Driver/Tag/MXF/CatalogDataStatus.php deleted file mode 100644 index 7172fbb17..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CatalogDataStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CatalogDataStatus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CatalogDataStatus'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Catalog Data Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CatalogPrefixNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/CatalogPrefixNumber.php deleted file mode 100644 index 5ba130a17..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CatalogPrefixNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CatalogPrefixNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01100305.00000000'; - - protected $Name = 'CatalogPrefixNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Catalog Prefix Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CatalogingSystemName.php b/lib/PHPExiftool/Driver/Tag/MXF/CatalogingSystemName.php deleted file mode 100644 index b14976827..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CatalogingSystemName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CatalogingSystemName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03030102.02000000'; - - protected $Name = 'CatalogingSystemName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Cataloging System Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CentralTelephoneNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/CentralTelephoneNumber.php deleted file mode 100644 index a1b25ec9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CentralTelephoneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CentralTelephoneNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07012001.10030400'; - - protected $Name = 'CentralTelephoneNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Central Telephone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ChannelAssignment.php b/lib/PHPExiftool/Driver/Tag/MXF/ChannelAssignment.php deleted file mode 100644 index 8ffa27dcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ChannelAssignment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelAssignment extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.04020101.05000000'; - - protected $Name = 'ChannelAssignment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Assignment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ChannelCount.php b/lib/PHPExiftool/Driver/Tag/MXF/ChannelCount.php deleted file mode 100644 index e078a39b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ChannelCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020101.04000000'; - - protected $Name = 'ChannelCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Channel Count'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ChannelHandle.php b/lib/PHPExiftool/Driver/Tag/MXF/ChannelHandle.php deleted file mode 100644 index 6e8c90faf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ChannelHandle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelHandle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01030401.00000000'; - - protected $Name = 'ChannelHandle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Channel Handle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ChannelID.php b/lib/PHPExiftool/Driver/Tag/MXF/ChannelID.php deleted file mode 100644 index d99ce8443..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ChannelID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010103.06000000'; - - protected $Name = 'ChannelID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Channel ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ChannelIDs.php b/lib/PHPExiftool/Driver/Tag/MXF/ChannelIDs.php deleted file mode 100644 index 5daa425b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ChannelIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelIDs extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010103.07000000'; - - protected $Name = 'ChannelIDs'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Channel I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ChannelStatusMode.php b/lib/PHPExiftool/Driver/Tag/MXF/ChannelStatusMode.php deleted file mode 100644 index 39c0dfa05..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ChannelStatusMode.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelStatusMode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020501.02000000'; - - protected $Name = 'ChannelStatusMode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Channel Status Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Channel Status Data', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AES3 Minimum', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AES3 Standard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fixed 24 Bytes in FixedChannelStatusData', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Stream of Data in MXF Header Metadata', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Stream of Data Multiplexed within MXF Body', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CipherAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/CipherAlgorithm.php deleted file mode 100644 index d025564af..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CipherAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CipherAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.02090301.01000000'; - - protected $Name = 'CipherAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cipher Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CipherAlgorithmAES128CBC.php b/lib/PHPExiftool/Driver/Tag/MXF/CipherAlgorithmAES128CBC.php deleted file mode 100644 index e7da7a54f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CipherAlgorithmAES128CBC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CipherAlgorithmAES128CBC extends AbstractTag -{ - - protected $Id = '060e2b34.0401.0107.02090201.01000000'; - - protected $Name = 'CipherAlgorithmAES128CBC'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cipher Algorithm AES128 CBC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Citizenship.php b/lib/PHPExiftool/Driver/Tag/MXF/Citizenship.php deleted file mode 100644 index d235fd959..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Citizenship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Citizenship extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Citizenship'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Citizenship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CityName.php b/lib/PHPExiftool/Driver/Tag/MXF/CityName.php deleted file mode 100644 index 1795ad9e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CityName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CityName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CityName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'City Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassDefinitions.php deleted file mode 100644 index a621d6cad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.07000000'; - - protected $Name = 'ClassDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Class Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationAndMarkingSystem.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassificationAndMarkingSystem.php deleted file mode 100644 index 95bc25139..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationAndMarkingSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassificationAndMarkingSystem extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02080208.00000000'; - - protected $Name = 'ClassificationAndMarkingSystem'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Classification And Marking System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationComment.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassificationComment.php deleted file mode 100644 index 156ae1440..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassificationComment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ClassificationComment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Classification Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationNameValueSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassificationNameValueSets.php deleted file mode 100644 index b110d8b22..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationNameValueSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassificationNameValueSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401f01'; - - protected $Name = 'ClassificationNameValueSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Classification Name Value Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationReason.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassificationReason.php deleted file mode 100644 index 7f76edd95..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationReason.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassificationReason extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02080204.00000000'; - - protected $Name = 'ClassificationReason'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Classification Reason'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassificationSets.php deleted file mode 100644 index deededfc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassificationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassificationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401000'; - - protected $Name = 'ClassificationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Classification Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassifiedBy.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassifiedBy.php deleted file mode 100644 index 5c07273b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassifiedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassifiedBy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02080203.00000000'; - - protected $Name = 'ClassifiedBy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Classified By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClassifyingCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ClassifyingCountryCode.php deleted file mode 100644 index a27989bf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClassifyingCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClassifyingCountryCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07012001.02080100'; - - protected $Name = 'ClassifyingCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Classifying Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClipCreationDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/ClipCreationDateTime.php deleted file mode 100644 index 4be30b9a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClipCreationDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipCreationDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07020110.01040000'; - - protected $Name = 'ClipCreationDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clip Creation Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClipID.php b/lib/PHPExiftool/Driver/Tag/MXF/ClipID.php deleted file mode 100644 index aa4e39989..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClipID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01011508.00000000'; - - protected $Name = 'ClipID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clip ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClipIDArray.php b/lib/PHPExiftool/Driver/Tag/MXF/ClipIDArray.php deleted file mode 100644 index 05b09d35e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClipIDArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipIDArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.0101150a.00000000'; - - protected $Name = 'ClipIDArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clip ID Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClipKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ClipKind.php deleted file mode 100644 index 93ead7ab5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClipKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.03020504.00000000'; - - protected $Name = 'ClipKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clip Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClipNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/ClipNumber.php deleted file mode 100644 index 740423832..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClipNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ClipNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Clip Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClipShotSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ClipShotSets.php deleted file mode 100644 index 2b20f1a77..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClipShotSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipShotSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401102'; - - protected $Name = 'ClipShotSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clip Shot Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CloneCount.php b/lib/PHPExiftool/Driver/Tag/MXF/CloneCount.php deleted file mode 100644 index 13e3469de..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CloneCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CloneCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010303.00000000'; - - protected $Name = 'CloneCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Clone Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClosedBodyPartition.php b/lib/PHPExiftool/Driver/Tag/MXF/ClosedBodyPartition.php deleted file mode 100644 index 2f449552d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClosedBodyPartition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClosedBodyPartition extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01030200'; - - protected $Name = 'ClosedBodyPartition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Closed Body Partition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClosedCaptionSubtitlesFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/ClosedCaptionSubtitlesFlag.php deleted file mode 100644 index f68c9cadd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClosedCaptionSubtitlesFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClosedCaptionSubtitlesFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010101.03000000'; - - protected $Name = 'ClosedCaptionSubtitlesFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Closed Caption Subtitles Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClosedCompleteBodyPartition.php b/lib/PHPExiftool/Driver/Tag/MXF/ClosedCompleteBodyPartition.php deleted file mode 100644 index 7c352ee1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClosedCompleteBodyPartition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClosedCompleteBodyPartition extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01030400'; - - protected $Name = 'ClosedCompleteBodyPartition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Closed Complete Body Partition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ClosedGOPIndicator.php b/lib/PHPExiftool/Driver/Tag/MXF/ClosedGOPIndicator.php deleted file mode 100644 index 209a12217..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ClosedGOPIndicator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClosedGOPIndicator extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01060000'; - - protected $Name = 'ClosedGOPIndicator'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Closed GOP Indicator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodecDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/CodecDefinition.php deleted file mode 100644 index 6f1a91ad9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodecDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecDefinition extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CodecDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codec Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodecDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/CodecDefinitions.php deleted file mode 100644 index 7900806fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodecDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05070000'; - - protected $Name = 'CodecDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codec Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodecEssenceDescriptor.php b/lib/PHPExiftool/Driver/Tag/MXF/CodecEssenceDescriptor.php deleted file mode 100644 index 93fedb96e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodecEssenceDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecEssenceDescriptor extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.01070000'; - - protected $Name = 'CodecEssenceDescriptor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codec Essence Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodecEssenceKinds.php b/lib/PHPExiftool/Driver/Tag/MXF/CodecEssenceKinds.php deleted file mode 100644 index 026e0000d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodecEssenceKinds.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecEssenceKinds extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.03010000'; - - protected $Name = 'CodecEssenceKinds'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codec Essence Kinds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodedContentScanningKind.php b/lib/PHPExiftool/Driver/Tag/MXF/CodedContentScanningKind.php deleted file mode 100644 index 9fff07ce9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodedContentScanningKind.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodedContentScanningKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01040000'; - - protected $Name = 'CodedContentScanningKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coded Content Scanning Kind'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Progressive', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Interlaced', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Mixed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodingLawKind.php b/lib/PHPExiftool/Driver/Tag/MXF/CodingLawKind.php deleted file mode 100644 index 4210a8daf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodingLawKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingLawKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04020401.00000000'; - - protected $Name = 'CodingLawKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Coding Law Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodingLawName.php b/lib/PHPExiftool/Driver/Tag/MXF/CodingLawName.php deleted file mode 100644 index 8f2312d67..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodingLawName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingLawName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04020401.01000000'; - - protected $Name = 'CodingLawName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Coding Law Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CodingStyleDefault.php b/lib/PHPExiftool/Driver/Tag/MXF/CodingStyleDefault.php deleted file mode 100644 index b7879fd5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CodingStyleDefault.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingStyleDefault extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.0c000000'; - - protected $Name = 'CodingStyleDefault'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Coding Style Default'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CollectionName.php b/lib/PHPExiftool/Driver/Tag/MXF/CollectionName.php deleted file mode 100644 index 2d6eaf6dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CollectionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollectionName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CollectionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Collection Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ColorDescriptor.php b/lib/PHPExiftool/Driver/Tag/MXF/ColorDescriptor.php deleted file mode 100644 index cc56f41fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ColorDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorDescriptor extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorDescriptor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Color Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ColorFieldCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ColorFieldCode.php deleted file mode 100644 index 360a80155..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ColorFieldCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorFieldCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010301.01000000'; - - protected $Name = 'ColorFieldCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Field Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ColorPrimaries.php b/lib/PHPExiftool/Driver/Tag/MXF/ColorPrimaries.php deleted file mode 100644 index 72462a70b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ColorPrimaries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorPrimaries extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorPrimaries'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Color Primaries'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ColorRangeLevels.php b/lib/PHPExiftool/Driver/Tag/MXF/ColorRangeLevels.php deleted file mode 100644 index 4fc46538c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ColorRangeLevels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorRangeLevels extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010503.05000000'; - - protected $Name = 'ColorRangeLevels'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Color Range Levels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ColorSiting.php b/lib/PHPExiftool/Driver/Tag/MXF/ColorSiting.php deleted file mode 100644 index 985502543..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ColorSiting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSiting extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.06000000'; - - protected $Name = 'ColorSiting'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Siting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ColorimetryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ColorimetryCode.php deleted file mode 100644 index 2bcd1717b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ColorimetryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorimetryCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorimetryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Colorimetry Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CommunicationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/CommunicationSets.php deleted file mode 100644 index dc5303315..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CommunicationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommunicationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401800'; - - protected $Name = 'CommunicationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Communication Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CompleteFooter.php b/lib/PHPExiftool/Driver/Tag/MXF/CompleteFooter.php deleted file mode 100644 index a6efd480b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CompleteFooter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompleteFooter extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01040400'; - - protected $Name = 'CompleteFooter'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Complete Footer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentAttributes.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentAttributes.php deleted file mode 100644 index 1ad5e9481..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentAttributes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentAttributes extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010210.08000000'; - - protected $Name = 'ComponentAttributes'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Component Attributes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentDataDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentDataDefinition.php deleted file mode 100644 index 5476e6ebf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentDataDefinition.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentDataDefinition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04070100.00000000'; - - protected $Name = 'ComponentDataDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Component Data Definition'; - - protected $Values = array( - '060e2b34.0401.0101.01030201.01000000' => array( - 'Id' => '060e2b34.0401.0101.01030201.01000000', - 'Label' => 'SMPTE 12M Timecode Track', - ), - '060e2b34.0401.0101.01030201.02000000' => array( - 'Id' => '060e2b34.0401.0101.01030201.02000000', - 'Label' => 'SMPTE 12M Timecode Track with active user bits', - ), - '060e2b34.0401.0101.01030201.03000000' => array( - 'Id' => '060e2b34.0401.0101.01030201.03000000', - 'Label' => 'SMPTE 309M Timecode Track', - ), - '060e2b34.0401.0101.01030201.10000000' => array( - 'Id' => '060e2b34.0401.0101.01030201.10000000', - 'Label' => 'Descriptive Metadata Track', - ), - '060e2b34.0401.0101.01030202.01000000' => array( - 'Id' => '060e2b34.0401.0101.01030202.01000000', - 'Label' => 'Picture Essence Track', - ), - '060e2b34.0401.0101.01030202.02000000' => array( - 'Id' => '060e2b34.0401.0101.01030202.02000000', - 'Label' => 'Sound Essence Track', - ), - '060e2b34.0401.0101.01030202.03000000' => array( - 'Id' => '060e2b34.0401.0101.01030202.03000000', - 'Label' => 'Data Essence Track', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentDepth.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentDepth.php deleted file mode 100644 index 5ad1fa6bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentDepth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010503.0a000000'; - - protected $Name = 'ComponentDepth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Component Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentKLVData.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentKLVData.php deleted file mode 100644 index 7dfdba42b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentKLVData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentKLVData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010210.04000000'; - - protected $Name = 'ComponentKLVData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Component KLV Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentMaximumRef.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentMaximumRef.php deleted file mode 100644 index 5a8e02293..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentMaximumRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentMaximumRef extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010503.0b000000'; - - protected $Name = 'ComponentMaximumRef'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Component Maximum Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentMinimumRef.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentMinimumRef.php deleted file mode 100644 index ff395fb19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentMinimumRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentMinimumRef extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010503.0c000000'; - - protected $Name = 'ComponentMinimumRef'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Component Minimum Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentUserComments.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentUserComments.php deleted file mode 100644 index 5c8bda69f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentUserComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentUserComments extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03020102.16000000'; - - protected $Name = 'ComponentUserComments'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Component User Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComponentsInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/ComponentsInSequence.php deleted file mode 100644 index a79ef13e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComponentsInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentsInSequence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06090000'; - - protected $Name = 'ComponentsInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Components In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CompositionRendering.php b/lib/PHPExiftool/Driver/Tag/MXF/CompositionRendering.php deleted file mode 100644 index f4601600f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CompositionRendering.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionRendering extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.06010104.010a0000'; - - protected $Name = 'CompositionRendering'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composition Rendering'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeyData.php b/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeyData.php deleted file mode 100644 index 5574a4b51..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeyData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputedKeyData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03030102.09000000'; - - protected $Name = 'ComputedKeyData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Computed Key Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeyFrames.php b/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeyFrames.php deleted file mode 100644 index 7324dd606..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeyFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputedKeyFrames extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03030102.07000000'; - - protected $Name = 'ComputedKeyFrames'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Computed Key Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeySounds.php b/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeySounds.php deleted file mode 100644 index 55beea78b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeySounds.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputedKeySounds extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03030102.08000000'; - - protected $Name = 'ComputedKeySounds'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Computed Key Sounds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeywords.php b/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeywords.php deleted file mode 100644 index e35c96a84..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComputedKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputedKeywords extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ComputedKeywords'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Computed Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComputedObjectKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ComputedObjectKind.php deleted file mode 100644 index b6a783167..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComputedObjectKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputedObjectKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ComputedObjectKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Computed Object Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ComputedStratumKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ComputedStratumKind.php deleted file mode 100644 index afe430160..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ComputedStratumKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComputedStratumKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03030107.01000000'; - - protected $Name = 'ComputedStratumKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Computed Stratum Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ConstantBPictureFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/ConstantBPictureFlag.php deleted file mode 100644 index 0e30ebe94..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ConstantBPictureFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConstantBPictureFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01030000'; - - protected $Name = 'ConstantBPictureFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Constant B Picture Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ConsumerRightsToCopy.php b/lib/PHPExiftool/Driver/Tag/MXF/ConsumerRightsToCopy.php deleted file mode 100644 index 31d076f0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ConsumerRightsToCopy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConsumerRightsToCopy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0901.00000000'; - - protected $Name = 'ConsumerRightsToCopy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Consumer Rights To Copy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContactDepartmentName.php b/lib/PHPExiftool/Driver/Tag/MXF/ContactDepartmentName.php deleted file mode 100644 index ec01690b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContactDepartmentName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactDepartmentName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContactDepartmentName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Contact Department Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContactID.php b/lib/PHPExiftool/Driver/Tag/MXF/ContactID.php deleted file mode 100644 index 1642f6257..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContactID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.01011540.01020000'; - - protected $Name = 'ContactID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contact ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContactKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ContactKind.php deleted file mode 100644 index bfcf3a369..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContactKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContactKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Contact Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContactNameValueSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ContactNameValueSets.php deleted file mode 100644 index d2457f967..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContactNameValueSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactNameValueSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401f02'; - - protected $Name = 'ContactNameValueSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contact Name Value Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContactsListSet.php b/lib/PHPExiftool/Driver/Tag/MXF/ContactsListSet.php deleted file mode 100644 index 833ca412b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContactsListSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactsListSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02402200'; - - protected $Name = 'ContactsListSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contacts List Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContainerDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/ContainerDefinitions.php deleted file mode 100644 index 38187ad5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContainerDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05080000'; - - protected $Name = 'ContainerDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContainerLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/ContainerLastModifyDate.php deleted file mode 100644 index 1fcab2e90..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContainerLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerLastModifyDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020110.02040000'; - - protected $Name = 'ContainerLastModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContainerVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/ContainerVersion.php deleted file mode 100644 index 9e2204826..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContainerVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200701.09000000'; - - protected $Name = 'ContainerVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentClassification.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentClassification.php deleted file mode 100644 index 242fb724d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentClassification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentClassification extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContentClassification'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Content Classification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentCodingSystem.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentCodingSystem.php deleted file mode 100644 index f7ecb69bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentCodingSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentCodingSystem extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020101.01000000'; - - protected $Name = 'ContentCodingSystem'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Content Coding System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityDescription.php deleted file mode 100644 index d385f6268..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentMaturityDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0704.00000000'; - - protected $Name = 'ContentMaturityDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Maturity Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityGraphic.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityGraphic.php deleted file mode 100644 index a366c7a8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityGraphic.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentMaturityGraphic extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0705.00000000'; - - protected $Name = 'ContentMaturityGraphic'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Maturity Graphic'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityRating.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityRating.php deleted file mode 100644 index b39d46af9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentMaturityRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentMaturityRating extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0703.00000000'; - - protected $Name = 'ContentMaturityRating'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Maturity Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentPackageIndexArray.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentPackageIndexArray.php deleted file mode 100644 index aa958304d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentPackageIndexArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentPackageIndexArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.04040402.06000000'; - - protected $Name = 'ContentPackageIndexArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Package Index Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentPackageMetadataLink.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentPackageMetadataLink.php deleted file mode 100644 index 29a1f91d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentPackageMetadataLink.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentPackageMetadataLink extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01070103.00000000'; - - protected $Name = 'ContentPackageMetadataLink'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Content Package Metadata Link'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentStorage.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentStorage.php deleted file mode 100644 index 913bfa214..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentStorage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentStorage extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02010000'; - - protected $Name = 'ContentStorage'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Storage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContentValue.php b/lib/PHPExiftool/Driver/Tag/MXF/ContentValue.php deleted file mode 100644 index 6212d501c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContentValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020202.02000000'; - - protected $Name = 'ContentValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Content Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContextDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/ContextDescription.php deleted file mode 100644 index fefd35b89..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContextDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContextDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03020601.00000000'; - - protected $Name = 'ContextDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Context Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContiguousDataFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/ContiguousDataFlag.php deleted file mode 100644 index 4833c90de..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContiguousDataFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContiguousDataFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.06080201.00000000'; - - protected $Name = 'ContiguousDataFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contiguous Data Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractClauseDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractClauseDescription.php deleted file mode 100644 index 73b4635fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractClauseDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractClauseDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContractClauseDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Contract Clause Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractDateTime.php deleted file mode 100644 index 834f55cbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07020120.01000000'; - - protected $Name = 'ContractDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contract Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractEntity.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractEntity.php deleted file mode 100644 index 0e1332488..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractEntity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractEntity extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0801.00000000'; - - protected $Name = 'ContractEntity'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contract Entity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractInstallmentPercentage.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractInstallmentPercentage.php deleted file mode 100644 index eca6a2192..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractInstallmentPercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractInstallmentPercentage extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02040500.00000000'; - - protected $Name = 'ContractInstallmentPercentage'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Contract Installment Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractLineCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractLineCode.php deleted file mode 100644 index 976d00d07..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractLineCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractLineCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02040300.00000000'; - - protected $Name = 'ContractLineCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Contract Line Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractLineName.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractLineName.php deleted file mode 100644 index 3fae02712..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractLineName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractLineName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContractLineName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Contract Line Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractParticipantSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractParticipantSets.php deleted file mode 100644 index e0d051a0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractParticipantSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractParticipantSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.03401302'; - - protected $Name = 'ContractParticipantSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contract Participant Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractSets.php deleted file mode 100644 index b74918ee9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401900'; - - protected $Name = 'ContractSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contract Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractTermsOfBusiness.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractTermsOfBusiness.php deleted file mode 100644 index 5cbb8e33b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractTermsOfBusiness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractTermsOfBusiness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContractTermsOfBusiness'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Contract Terms Of Business'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractType.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractType.php deleted file mode 100644 index a89bdb046..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContractType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Contract Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractTypeCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractTypeCode.php deleted file mode 100644 index e5ec901a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractTypeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractTypeCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02040101.00000000'; - - protected $Name = 'ContractTypeCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Contract Type Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContractTypeLink.php b/lib/PHPExiftool/Driver/Tag/MXF/ContractTypeLink.php deleted file mode 100644 index 86c8d7c2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContractTypeLink.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContractTypeLink extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0802.00000000'; - - protected $Name = 'ContractTypeLink'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contract Type Link'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ContributionStatus.php b/lib/PHPExiftool/Driver/Tag/MXF/ContributionStatus.php deleted file mode 100644 index 1ca4e098c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ContributionStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributionStatus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContributionStatus'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Contribution Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ControlPointList.php b/lib/PHPExiftool/Driver/Tag/MXF/ControlPointList.php deleted file mode 100644 index 99186393c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ControlPointList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPointList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06060000'; - - protected $Name = 'ControlPointList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Control Point List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ControlPointTime.php b/lib/PHPExiftool/Driver/Tag/MXF/ControlPointTime.php deleted file mode 100644 index 273e4ce4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ControlPointTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlPointTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020103.10020100'; - - protected $Name = 'ControlPointTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Control Point Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CopyCount.php b/lib/PHPExiftool/Driver/Tag/MXF/CopyCount.php deleted file mode 100644 index 0461bf224..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CopyCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010302.00000000'; - - protected $Name = 'CopyCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Copy Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseCountryCode.php deleted file mode 100644 index eb36bc06e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightLicenseCountryCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.02040000'; - - protected $Name = 'CopyrightLicenseCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Copyright License Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseRegionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseRegionCode.php deleted file mode 100644 index f06282a24..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseRegionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightLicenseRegionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.03040000'; - - protected $Name = 'CopyrightLicenseRegionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Copyright License Region Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseRegionName.php b/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseRegionName.php deleted file mode 100644 index 369033268..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightLicenseRegionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightLicenseRegionName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07012001.03040100'; - - protected $Name = 'CopyrightLicenseRegionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright License Region Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightOwnerName.php b/lib/PHPExiftool/Driver/Tag/MXF/CopyrightOwnerName.php deleted file mode 100644 index 3ac8785af..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightOwnerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightOwnerName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CopyrightOwnerName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Copyright Owner Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightStatus.php b/lib/PHPExiftool/Driver/Tag/MXF/CopyrightStatus.php deleted file mode 100644 index 794b5dc28..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CopyrightStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightStatus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CopyrightStatus'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Copyright Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint1.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint1.php deleted file mode 100644 index b3bdb79bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLatitudePoint1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLatitudePoint1'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Latitude Point 1'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint2.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint2.php deleted file mode 100644 index e2bd7ba52..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLatitudePoint2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLatitudePoint2'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Latitude Point 2'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint3.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint3.php deleted file mode 100644 index cbd853e5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLatitudePoint3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLatitudePoint3'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Latitude Point 3'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint4.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint4.php deleted file mode 100644 index a9b585d46..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLatitudePoint4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLatitudePoint4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLatitudePoint4'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Latitude Point 4'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint1.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint1.php deleted file mode 100644 index 75653ed7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLongitudePoint1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLongitudePoint1'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Longitude Point 1'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint2.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint2.php deleted file mode 100644 index d0f2c6ed8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLongitudePoint2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLongitudePoint2'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Longitude Point 2'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint3.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint3.php deleted file mode 100644 index 0545a475d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLongitudePoint3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLongitudePoint3'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Longitude Point 3'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint4.php b/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint4.php deleted file mode 100644 index 71e7c54b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CornerLongitudePoint4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CornerLongitudePoint4 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CornerLongitudePoint4'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Corner Longitude Point 4'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CountryCodeMethod.php b/lib/PHPExiftool/Driver/Tag/MXF/CountryCodeMethod.php deleted file mode 100644 index 6e42b17b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CountryCodeMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryCodeMethod extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CountryCodeMethod'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Country Code Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CountryName.php b/lib/PHPExiftool/Driver/Tag/MXF/CountryName.php deleted file mode 100644 index f755f0492..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CountryName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CountryName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Country Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CreateDate.php b/lib/PHPExiftool/Driver/Tag/MXF/CreateDate.php deleted file mode 100644 index 9c577013d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020110.01030000'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextID.php b/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextID.php deleted file mode 100644 index e6e341c6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CryptographicContextID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.01011511.00000000'; - - protected $Name = 'CryptographicContextID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cryptographic Context ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextLink.php b/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextLink.php deleted file mode 100644 index 2b0ce8b21..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextLink.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CryptographicContextLink extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010106.03000000'; - - protected $Name = 'CryptographicContextLink'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cryptographic Context Link'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextObject.php b/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextObject.php deleted file mode 100644 index 9d9818c82..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicContextObject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CryptographicContextObject extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010104.020d0000'; - - protected $Name = 'CryptographicContextObject'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cryptographic Context Object'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicFrameworkLabel.php b/lib/PHPExiftool/Driver/Tag/MXF/CryptographicFrameworkLabel.php deleted file mode 100644 index c8a386f8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicFrameworkLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CryptographicFrameworkLabel extends AbstractTag -{ - - protected $Id = '060e2b34.0401.0107.0d010401.02010100'; - - protected $Name = 'CryptographicFrameworkLabel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cryptographic Framework Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicKeyID.php b/lib/PHPExiftool/Driver/Tag/MXF/CryptographicKeyID.php deleted file mode 100644 index b254382e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CryptographicKeyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CryptographicKeyID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.02090301.02000000'; - - protected $Name = 'CryptographicKeyID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cryptographic Key ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Csiz.php b/lib/PHPExiftool/Driver/Tag/MXF/Csiz.php deleted file mode 100644 index e58448e9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Csiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Csiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.0a000000'; - - protected $Name = 'Csiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Csiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CueInWords.php b/lib/PHPExiftool/Driver/Tag/MXF/CueInWords.php deleted file mode 100644 index 4f10766c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CueInWords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueInWords extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Cue-InWords'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Cue-In Words'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CueOutWords.php b/lib/PHPExiftool/Driver/Tag/MXF/CueOutWords.php deleted file mode 100644 index ee30add07..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CueOutWords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueOutWords extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Cue-OutWords'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Cue-Out Words'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CulturalValue.php b/lib/PHPExiftool/Driver/Tag/MXF/CulturalValue.php deleted file mode 100644 index e299d693d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CulturalValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CulturalValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020202.03000000'; - - protected $Name = 'CulturalValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Cultural Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CurrencyCode.php b/lib/PHPExiftool/Driver/Tag/MXF/CurrencyCode.php deleted file mode 100644 index ffc5d4d9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CurrencyCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrencyCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02060101.00000000'; - - protected $Name = 'CurrencyCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Currency Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CurrencyName.php b/lib/PHPExiftool/Driver/Tag/MXF/CurrencyName.php deleted file mode 100644 index d9361802a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CurrencyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrencyName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060101.01000000'; - - protected $Name = 'CurrencyName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Currency Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CurrentNumberInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/CurrentNumberInSequence.php deleted file mode 100644 index 4233eee45..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CurrentNumberInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentNumberInSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CurrentNumberInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Current Number In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CurrentRepeatNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/CurrentRepeatNumber.php deleted file mode 100644 index 022911364..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CurrentRepeatNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentRepeatNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02200201.00000000'; - - protected $Name = 'CurrentRepeatNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Current Repeat Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/CutPoint.php b/lib/PHPExiftool/Driver/Tag/MXF/CutPoint.php deleted file mode 100644 index 1fdb99a3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/CutPoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CutPoint extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020103.01060000'; - - protected $Name = 'CutPoint'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64s'; - - protected $Writable = false; - - protected $Description = 'Cut Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DOI.php b/lib/PHPExiftool/Driver/Tag/MXF/DOI.php deleted file mode 100644 index 2f304668c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DOI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DOI extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011501.00000000'; - - protected $Name = 'DOI'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DOI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DVBParentalRating.php b/lib/PHPExiftool/Driver/Tag/MXF/DVBParentalRating.php deleted file mode 100644 index 46ca007cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DVBParentalRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVBParentalRating extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0702.00000000'; - - protected $Name = 'DVBParentalRating'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVB Parental Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/DataDefinition.php deleted file mode 100644 index 9b5c32fd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDefinition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04070101.00000000'; - - protected $Name = 'DataDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/DataDefinitions.php deleted file mode 100644 index 415ea0119..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05050000'; - - protected $Name = 'DataDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceKind.php deleted file mode 100644 index 3210e84aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDeviceKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200601.00000000'; - - protected $Name = 'DataDeviceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Data Device Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceParameterName.php b/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceParameterName.php deleted file mode 100644 index b014e7115..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceParameterName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDeviceParameterName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200602.00000000'; - - protected $Name = 'DataDeviceParameterName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Data Device Parameter Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceParameterSetting.php b/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceParameterSetting.php deleted file mode 100644 index ba1a6a4d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataDeviceParameterSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDeviceParameterSetting extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200603.00000000'; - - protected $Name = 'DataDeviceParameterSetting'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Data Device Parameter Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataEnhancementOrModificationDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/DataEnhancementOrModificationDescription.php deleted file mode 100644 index 19580605d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataEnhancementOrModificationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataEnhancementOrModificationDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200501.00000000'; - - protected $Name = 'DataEnhancementOrModificationDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Data Enhancement Or Modification Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataEssenceCoding.php b/lib/PHPExiftool/Driver/Tag/MXF/DataEssenceCoding.php deleted file mode 100644 index 7c5a8af7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataEssenceCoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataEssenceCoding extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04030302.00000000'; - - protected $Name = 'DataEssenceCoding'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Essence Coding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DataEssenceCodingID.php b/lib/PHPExiftool/Driver/Tag/MXF/DataEssenceCodingID.php deleted file mode 100644 index 802ff5d41..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DataEssenceCodingID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataEssenceCodingID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04030302.00000000'; - - protected $Name = 'DataEssenceCodingID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Essence Coding ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeDropFrameFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/DateTimeDropFrameFlag.php deleted file mode 100644 index cda20beda..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeDropFrameFlag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeDropFrameFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040102.02000000'; - - protected $Name = 'DateTimeDropFrameFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time Drop Frame Flag'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeEmbeddedFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/DateTimeEmbeddedFlag.php deleted file mode 100644 index cc17002e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeEmbeddedFlag.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeEmbeddedFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040102.03000000'; - - protected $Name = 'DateTimeEmbeddedFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time Embedded Flag'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeKind.php b/lib/PHPExiftool/Driver/Tag/MXF/DateTimeKind.php deleted file mode 100644 index 2963438b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeKind.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040102.04000000'; - - protected $Name = 'DateTimeKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time Kind'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeRate.php b/lib/PHPExiftool/Driver/Tag/MXF/DateTimeRate.php deleted file mode 100644 index d068d1f22..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DateTimeRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040102.01000000'; - - protected $Name = 'DateTimeRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Date Time Rate'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeclassificationDate.php b/lib/PHPExiftool/Driver/Tag/MXF/DeclassificationDate.php deleted file mode 100644 index aeecbcf58..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeclassificationDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeclassificationDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02080205.00000000'; - - protected $Name = 'DeclassificationDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Declassification Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefaultDataValue.php b/lib/PHPExiftool/Driver/Tag/MXF/DefaultDataValue.php deleted file mode 100644 index 326e6fbc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefaultDataValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultDataValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010202.03020000'; - - protected $Name = 'DefaultDataValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Data Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeDuration.php deleted file mode 100644 index d174c29c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultFadeDuration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020201.01050100'; - - protected $Name = 'DefaultFadeDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Fade Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeEditRate.php b/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeEditRate.php deleted file mode 100644 index 567744056..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeEditRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultFadeEditRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05300403.00000000'; - - protected $Name = 'DefaultFadeEditRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Default Fade Edit Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeType.php b/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeType.php deleted file mode 100644 index 4acd5523b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefaultFadeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultFadeType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05300201.00000000'; - - protected $Name = 'DefaultFadeType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Fade Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefaultNamespaceURI.php b/lib/PHPExiftool/Driver/Tag/MXF/DefaultNamespaceURI.php deleted file mode 100644 index c9987e3cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefaultNamespaceURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultNamespaceURI extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DefaultNamespaceURI'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Default Namespace URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefaultObject.php b/lib/PHPExiftool/Driver/Tag/MXF/DefaultObject.php deleted file mode 100644 index e4cc10c12..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefaultObject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultObject extends AbstractTag -{ - - protected $Id = '060e2b34.0253.0101.7f000000.00000000'; - - protected $Name = 'DefaultObject'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Object'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefinedName.php b/lib/PHPExiftool/Driver/Tag/MXF/DefinedName.php deleted file mode 100644 index e553a3017..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefinedName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefinedName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DefinedName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Defined Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefinitionObjectID.php b/lib/PHPExiftool/Driver/Tag/MXF/DefinitionObjectID.php deleted file mode 100644 index e14ca9a62..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefinitionObjectID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefinitionObjectID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01011503.00000000'; - - protected $Name = 'DefinitionObjectID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Definition Object ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DefinitionObjectName.php b/lib/PHPExiftool/Driver/Tag/MXF/DefinitionObjectName.php deleted file mode 100644 index 6dcc9eed1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DefinitionObjectName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefinitionObjectName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DefinitionObjectName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Definition Object Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DegradedEffects.php b/lib/PHPExiftool/Driver/Tag/MXF/DegradedEffects.php deleted file mode 100644 index ec5c91c23..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DegradedEffects.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DegradedEffects extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.04010000'; - - protected $Name = 'DegradedEffects'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Degraded Effects'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeltaEntryArray.php b/lib/PHPExiftool/Driver/Tag/MXF/DeltaEntryArray.php deleted file mode 100644 index 2f366fccd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeltaEntryArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeltaEntryArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040401.06000000'; - - protected $Name = 'DeltaEntryArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Delta Entry Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DerivedFrom.php b/lib/PHPExiftool/Driver/Tag/MXF/DerivedFrom.php deleted file mode 100644 index e4a62963c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DerivedFrom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFrom extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02080206.00000000'; - - protected $Name = 'DerivedFrom'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Derived From'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Description.php b/lib/PHPExiftool/Driver/Tag/MXF/Description.php deleted file mode 100644 index 623c1bf33..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Description'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptionKind.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptionKind.php deleted file mode 100644 index d1713989e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptionKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptionKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DescriptionKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Description Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveComment.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveComment.php deleted file mode 100644 index 964de8b61..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveComment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DescriptiveComment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Descriptive Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataApplicationEnvironmentID.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataApplicationEnvironmentID.php deleted file mode 100644 index 9aa737efb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataApplicationEnvironmentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataApplicationEnvironmentID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.05200701.10000000'; - - protected $Name = 'DescriptiveMetadataApplicationEnvironmentID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Application Environment ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataFramework.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataFramework.php deleted file mode 100644 index f4ea48f8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataFramework.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataFramework extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.020c0000'; - - protected $Name = 'DescriptiveMetadataFramework'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Framework'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataPlugInID.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataPlugInID.php deleted file mode 100644 index 4fc9209f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataPlugInID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataPlugInID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.05200701.0e000000'; - - protected $Name = 'DescriptiveMetadataPlug-InID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Plug-In ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataScheme.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataScheme.php deleted file mode 100644 index 03134fc20..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataScheme.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataScheme extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04060804.00000000'; - - protected $Name = 'DescriptiveMetadataScheme'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Scheme'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSchemes.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSchemes.php deleted file mode 100644 index ade9f2426..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSchemes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataSchemes extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01020210.02020000'; - - protected $Name = 'DescriptiveMetadataSchemes'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Schemes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSetReferences.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSetReferences.php deleted file mode 100644 index 757d2518b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSetReferences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataSetReferences extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.06010104.04020000'; - - protected $Name = 'DescriptiveMetadataSetReferences'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Set References'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSets.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSets.php deleted file mode 100644 index 073cabb83..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.06010104.03030000'; - - protected $Name = 'DescriptiveMetadataSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataTrackIDs.php b/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataTrackIDs.php deleted file mode 100644 index 61f055d87..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DescriptiveMetadataTrackIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DescriptiveMetadataTrackIDs extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.01070105.00000000'; - - protected $Name = 'DescriptiveMetadataTrackIDs'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Descriptive Metadata Track I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsoluteHeading.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsoluteHeading.php deleted file mode 100644 index 74fe3300c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsoluteHeading.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceAbsoluteHeading extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010301.01020000'; - - protected $Name = 'DeviceAbsoluteHeading'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Absolute Heading'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsolutePositionalAccuracy.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsolutePositionalAccuracy.php deleted file mode 100644 index 400056dbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsolutePositionalAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceAbsolutePositionalAccuracy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010201.02010000'; - - protected $Name = 'DeviceAbsolutePositionalAccuracy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Absolute Positional Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsoluteSpeed.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsoluteSpeed.php deleted file mode 100644 index f16d5ff5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAbsoluteSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceAbsoluteSpeed extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010301.01010000'; - - protected $Name = 'DeviceAbsoluteSpeed'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Absolute Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAltitude.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceAltitude.php deleted file mode 100644 index 34e4a3cd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAltitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceAltitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeviceAltitude'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Device Altitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAssetNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceAssetNumber.php deleted file mode 100644 index c5974a11f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceAssetNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceAssetNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.0101200c.00000000'; - - protected $Name = 'DeviceAssetNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device Asset Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceDesignation.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceDesignation.php deleted file mode 100644 index d76e19ad3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceDesignation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceDesignation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01012001.00000000'; - - protected $Name = 'DeviceDesignation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device Designation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceIDKind.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceIDKind.php deleted file mode 100644 index 9b3b5f51d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceIDKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceIDKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01012007.00000000'; - - protected $Name = 'DeviceIDKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device ID Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceKind.php deleted file mode 100644 index 28ac358b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeviceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Device Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceKindCode.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceKindCode.php deleted file mode 100644 index 1aef51e4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceKindCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceKindCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01012008.02000000'; - - protected $Name = 'DeviceKindCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device Kind Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceLatitude.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceLatitude.php deleted file mode 100644 index 396918235..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceLatitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeviceLatitude'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Device Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceLongitude.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceLongitude.php deleted file mode 100644 index 5964e3bf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceLongitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeviceLongitude'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Device Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceManufacturerName.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceManufacturerName.php deleted file mode 100644 index 4e1609b2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceManufacturerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceManufacturerName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeviceManufacturerName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Device Manufacturer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceModel.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceModel.php deleted file mode 100644 index 251eb1073..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceModel extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01012003.00000000'; - - protected $Name = 'DeviceModel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceParameterNameValueSets.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceParameterNameValueSets.php deleted file mode 100644 index 114f9a33c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceParameterNameValueSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceParameterNameValueSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401f03'; - - protected $Name = 'DeviceParameterNameValueSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Parameter Name Value Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceParametersSets.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceParametersSets.php deleted file mode 100644 index 4843ccd6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceParametersSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceParametersSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401e00'; - - protected $Name = 'DeviceParametersSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Device Parameters Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativeHeading.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativeHeading.php deleted file mode 100644 index 86b6239c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativeHeading.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceRelativeHeading extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010302.01020000'; - - protected $Name = 'DeviceRelativeHeading'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Relative Heading'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionX.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionX.php deleted file mode 100644 index f0e2d5ac7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceRelativePositionX extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010202.02020000'; - - protected $Name = 'DeviceRelativePositionX'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Relative Position X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionY.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionY.php deleted file mode 100644 index f76324e58..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceRelativePositionY extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010202.02030000'; - - protected $Name = 'DeviceRelativePositionY'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Relative Position Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionZ.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionZ.php deleted file mode 100644 index 4a3769cf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionZ.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceRelativePositionZ extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010202.02040000'; - - protected $Name = 'DeviceRelativePositionZ'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Relative Position Z'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionalAccuracy.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionalAccuracy.php deleted file mode 100644 index 84c21300b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativePositionalAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceRelativePositionalAccuracy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010202.02010000'; - - protected $Name = 'DeviceRelativePositionalAccuracy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Relative Positional Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativeSpeed.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativeSpeed.php deleted file mode 100644 index 21ae2df16..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceRelativeSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceRelativeSpeed extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010302.01010000'; - - protected $Name = 'DeviceRelativeSpeed'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Relative Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceSerialNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceSerialNumber.php deleted file mode 100644 index ba72ce943..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSerialNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01012004.00000000'; - - protected $Name = 'DeviceSerialNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Device Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceUsageDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceUsageDescription.php deleted file mode 100644 index b4953f553..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceUsageDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceUsageDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeviceUsageDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Device Usage Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceXDimension.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceXDimension.php deleted file mode 100644 index 9659a65d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceXDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceXDimension extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010201.02100000'; - - protected $Name = 'DeviceXDimension'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device X Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DeviceYDimension.php b/lib/PHPExiftool/Driver/Tag/MXF/DeviceYDimension.php deleted file mode 100644 index 0b3a5a5db..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DeviceYDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceYDimension extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010201.02110000'; - - protected $Name = 'DeviceYDimension'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Device Y Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DialNorm.php b/lib/PHPExiftool/Driver/Tag/MXF/DialNorm.php deleted file mode 100644 index 9ffc1b0ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DialNorm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DialNorm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020701.00000000'; - - protected $Name = 'DialNorm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Dial Norm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Dictionary.php b/lib/PHPExiftool/Driver/Tag/MXF/Dictionary.php deleted file mode 100644 index 013db3f44..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Dictionary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Dictionary extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02020000'; - - protected $Name = 'Dictionary'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dictionary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DictionaryDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/DictionaryDescription.php deleted file mode 100644 index c9268b533..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DictionaryDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DictionaryDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DictionaryDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Dictionary Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DictionaryIdentifier.php b/lib/PHPExiftool/Driver/Tag/MXF/DictionaryIdentifier.php deleted file mode 100644 index 6f56ddc9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DictionaryIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DictionaryIdentifier extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.13000000'; - - protected $Name = 'DictionaryIdentifier'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dictionary Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DigitalEncodingBitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/DigitalEncodingBitrate.php deleted file mode 100644 index 19b483dfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DigitalEncodingBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalEncodingBitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04030301.00000000'; - - protected $Name = 'DigitalEncodingBitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Digital Encoding Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DigitalMetadataCarrier.php b/lib/PHPExiftool/Driver/Tag/MXF/DigitalMetadataCarrier.php deleted file mode 100644 index 2a70bc511..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DigitalMetadataCarrier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalMetadataCarrier extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04040301.00000000'; - - protected $Name = 'DigitalMetadataCarrier'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Digital Metadata Carrier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DigitalOrAnalogOrigination.php b/lib/PHPExiftool/Driver/Tag/MXF/DigitalOrAnalogOrigination.php deleted file mode 100644 index e5eab651e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DigitalOrAnalogOrigination.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalOrAnalogOrigination extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010201.00000000'; - - protected $Name = 'DigitalOrAnalogOrigination'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Digital Or Analog Origination'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DigitalVideoFileFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/DigitalVideoFileFormat.php deleted file mode 100644 index b8c10deb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DigitalVideoFileFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalVideoFileFormat extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010b01.00000000'; - - protected $Name = 'DigitalVideoFileFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Digital Video File Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DirectorName.php b/lib/PHPExiftool/Driver/Tag/MXF/DirectorName.php deleted file mode 100644 index e3b3b5ae9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DirectorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectorName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0a01.00000000'; - - protected $Name = 'DirectorName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Director Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DiscPartitionCapacity.php b/lib/PHPExiftool/Driver/Tag/MXF/DiscPartitionCapacity.php deleted file mode 100644 index 9e2cb1ae0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DiscPartitionCapacity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiscPartitionCapacity extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04100102.02000000'; - - protected $Name = 'DiscPartitionCapacity'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Disc Partition Capacity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DisplayF2Offset.php b/lib/PHPExiftool/Driver/Tag/MXF/DisplayF2Offset.php deleted file mode 100644 index 4e09739ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DisplayF2Offset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayF2Offset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010302.07000000'; - - protected $Name = 'DisplayF2Offset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Display F2 Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DisplayHeight.php b/lib/PHPExiftool/Driver/Tag/MXF/DisplayHeight.php deleted file mode 100644 index be8a876d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DisplayHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayHeight extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.0b000000'; - - protected $Name = 'DisplayHeight'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Display Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DisplayUnits.php b/lib/PHPExiftool/Driver/Tag/MXF/DisplayUnits.php deleted file mode 100644 index cff27a944..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DisplayUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayUnits extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DisplayUnits'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Display Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DisplayWidth.php b/lib/PHPExiftool/Driver/Tag/MXF/DisplayWidth.php deleted file mode 100644 index eea1702f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DisplayWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayWidth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.0c000000'; - - protected $Name = 'DisplayWidth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Display Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DisplayXOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/DisplayXOffset.php deleted file mode 100644 index c4bbfd6e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DisplayXOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayXOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.0d000000'; - - protected $Name = 'DisplayXOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Display X Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DisplayYOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/DisplayYOffset.php deleted file mode 100644 index ed2e2fa25..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DisplayYOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayYOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.0e000000'; - - protected $Name = 'DisplayYOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Display Y Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Dither.php b/lib/PHPExiftool/Driver/Tag/MXF/Dither.php deleted file mode 100644 index 1259a4d4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Dither.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Dither extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020303.03000000'; - - protected $Name = 'Dither'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Dither'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DropFrame.php b/lib/PHPExiftool/Driver/Tag/MXF/DropFrame.php deleted file mode 100644 index b382ff072..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DropFrame.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DropFrame extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04040101.05000000'; - - protected $Name = 'DropFrame'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Drop Frame'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Duration.php b/lib/PHPExiftool/Driver/Tag/MXF/Duration.php deleted file mode 100644 index c7ce7659d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020201.01030000'; - - protected $Name = 'Duration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DynamicSourcePackageID.php b/lib/PHPExiftool/Driver/Tag/MXF/DynamicSourcePackageID.php deleted file mode 100644 index 2f5aae968..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DynamicSourcePackageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicSourcePackageID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010103.09000000'; - - protected $Name = 'DynamicSourcePackageID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dynamic Source Package ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/DynamicSourceTrackIDs.php b/lib/PHPExiftool/Driver/Tag/MXF/DynamicSourceTrackIDs.php deleted file mode 100644 index a4e749b82..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/DynamicSourceTrackIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicSourceTrackIDs extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010103.0a000000'; - - protected $Name = 'DynamicSourceTrackIDs'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Dynamic Source Track I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EMailAddress.php b/lib/PHPExiftool/Driver/Tag/MXF/EMailAddress.php deleted file mode 100644 index 5f38825be..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EMailAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EMailAddress extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'E-MailAddress'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'E-Mail Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EPGProgramSynopsis.php b/lib/PHPExiftool/Driver/Tag/MXF/EPGProgramSynopsis.php deleted file mode 100644 index 8bbe85dd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EPGProgramSynopsis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EPGProgramSynopsis extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0608.00000000'; - - protected $Name = 'EPGProgramSynopsis'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'EPG Program Synopsis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCode.php b/lib/PHPExiftool/Driver/Tag/MXF/EdgeCode.php deleted file mode 100644 index 7db5efe08..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgeCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01040701.00000000'; - - protected $Name = 'EdgeCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Edge Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeFilmGauge.php b/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeFilmGauge.php deleted file mode 100644 index f44937457..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeFilmGauge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgeCodeFilmGauge extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04100103.01090000'; - - protected $Name = 'EdgeCodeFilmGauge'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edge Code Film Gauge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeFormat.php deleted file mode 100644 index 7ecf49b76..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgeCodeFormat extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04100103.01020000'; - - protected $Name = 'EdgeCodeFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edge Code Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeHeader.php b/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeHeader.php deleted file mode 100644 index 0e039787d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeHeader.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgeCodeHeader extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01030201.02000000'; - - protected $Name = 'EdgeCodeHeader'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edge Code Header'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeStart.php b/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeStart.php deleted file mode 100644 index 474a114f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EdgeCodeStart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgeCodeStart extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01040901.00000000'; - - protected $Name = 'EdgeCodeStart'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edge Code Start'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EditHint.php b/lib/PHPExiftool/Driver/Tag/MXF/EditHint.php deleted file mode 100644 index ca3e32378..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EditHint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditHint extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05300508.00000000'; - - protected $Name = 'EditHint'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit Hint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EditRate.php b/lib/PHPExiftool/Driver/Tag/MXF/EditRate.php deleted file mode 100644 index a07770077..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EditRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05300405.00000000'; - - protected $Name = 'EditRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Edit Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EditUnitFlags.php b/lib/PHPExiftool/Driver/Tag/MXF/EditUnitFlags.php deleted file mode 100644 index e343d3670..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EditUnitFlags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditUnitFlags extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040402.02000000'; - - protected $Name = 'EditUnitFlags'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Edit Unit Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EditUnitLength.php b/lib/PHPExiftool/Driver/Tag/MXF/EditUnitLength.php deleted file mode 100644 index 9bf3f48a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EditUnitLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditUnitLength extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04060201.00000000'; - - protected $Name = 'EditUnitLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Edit Unit Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EditingEventComment.php b/lib/PHPExiftool/Driver/Tag/MXF/EditingEventComment.php deleted file mode 100644 index 5dc1518e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EditingEventComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditingEventComment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EditingEventComment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Editing Event Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EffectRendering.php b/lib/PHPExiftool/Driver/Tag/MXF/EffectRendering.php deleted file mode 100644 index be7f26d37..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EffectRendering.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectRendering extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02060000'; - - protected $Name = 'EffectRendering'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Effect Rendering'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ElectrospatialFormulation.php b/lib/PHPExiftool/Driver/Tag/MXF/ElectrospatialFormulation.php deleted file mode 100644 index 86a6b967e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ElectrospatialFormulation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ElectrospatialFormulation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020101.01000000'; - - protected $Name = 'ElectrospatialFormulation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Electrospatial Formulation'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ElementCount.php b/lib/PHPExiftool/Driver/Tag/MXF/ElementCount.php deleted file mode 100644 index eb76c9ed7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ElementCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ElementCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.03000000'; - - protected $Name = 'ElementCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Element Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ElementDelta.php b/lib/PHPExiftool/Driver/Tag/MXF/ElementDelta.php deleted file mode 100644 index 1ab052e42..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ElementDelta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ElementDelta extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040401.03000000'; - - protected $Name = 'ElementDelta'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Element Delta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ElementLength.php b/lib/PHPExiftool/Driver/Tag/MXF/ElementLength.php deleted file mode 100644 index 33c5acd10..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ElementLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ElementLength extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010203.09000000'; - - protected $Name = 'ElementLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Element Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ElementNameList.php b/lib/PHPExiftool/Driver/Tag/MXF/ElementNameList.php deleted file mode 100644 index 39673fe7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ElementNameList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ElementNameList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.04000000'; - - protected $Name = 'ElementNameList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Element Name List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Emphasis.php b/lib/PHPExiftool/Driver/Tag/MXF/Emphasis.php deleted file mode 100644 index 1d21003fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Emphasis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Emphasis extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020501.06000000'; - - protected $Name = 'Emphasis'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Emphasis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EncryptedContainerLabel.php b/lib/PHPExiftool/Driver/Tag/MXF/EncryptedContainerLabel.php deleted file mode 100644 index 2abbcdd10..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EncryptedContainerLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptedContainerLabel extends AbstractTag -{ - - protected $Id = '060e2b34.0401.0107.0d010301.020b0100'; - - protected $Name = 'EncryptedContainerLabel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encrypted Container Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EncryptedSourceValue.php b/lib/PHPExiftool/Driver/Tag/MXF/EncryptedSourceValue.php deleted file mode 100644 index d7e73f62b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EncryptedSourceValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptedSourceValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.02090301.03000000'; - - protected $Name = 'EncryptedSourceValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encrypted Source Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EncryptedTrackFileID.php b/lib/PHPExiftool/Driver/Tag/MXF/EncryptedTrackFileID.php deleted file mode 100644 index 86eaa3189..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EncryptedTrackFileID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptedTrackFileID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010106.02000000'; - - protected $Name = 'EncryptedTrackFileID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encrypted Track File ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EndAnchor.php b/lib/PHPExiftool/Driver/Tag/MXF/EndAnchor.php deleted file mode 100644 index 54f956067..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EndAnchor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndAnchor extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EndAnchor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'End Anchor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EnhancementOrModificationDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/EnhancementOrModificationDescription.php deleted file mode 100644 index 29e380059..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EnhancementOrModificationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnhancementOrModificationDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200101.00000000'; - - protected $Name = 'EnhancementOrModificationDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Enhancement Or Modification Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EnumerationUnderlyingIntegerType.php b/lib/PHPExiftool/Driver/Tag/MXF/EnumerationUnderlyingIntegerType.php deleted file mode 100644 index f581cc871..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EnumerationUnderlyingIntegerType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnumerationUnderlyingIntegerType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.0b000000'; - - protected $Name = 'EnumerationUnderlyingIntegerType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Enumeration Underlying Integer Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EpisodeEndNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/EpisodeEndNumber.php deleted file mode 100644 index 298e430b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EpisodeEndNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpisodeEndNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02020500.00000000'; - - protected $Name = 'EpisodeEndNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Episode End Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EpisodeNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/EpisodeNumber.php deleted file mode 100644 index 76893af04..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EpisodeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpisodeNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EpisodeNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Episode Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EpisodeStartNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/EpisodeStartNumber.php deleted file mode 100644 index d4b8ec086..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EpisodeStartNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpisodeStartNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02020400.00000000'; - - protected $Name = 'EpisodeStartNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Episode Start Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EpisodicItemSets.php b/lib/PHPExiftool/Driver/Tag/MXF/EpisodicItemSets.php deleted file mode 100644 index 933005787..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EpisodicItemSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpisodicItemSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400700'; - - protected $Name = 'EpisodicItemSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Episodic Item Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainerArray.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainerArray.php deleted file mode 100644 index e7b36dbb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainerArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceContainerArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.01020210.01010000'; - - protected $Name = 'EssenceContainerArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Container Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainerFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainerFormat.php deleted file mode 100644 index ee170e850..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainerFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceContainerFormat extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EssenceContainerFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Container Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainers.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainers.php deleted file mode 100644 index c490feb64..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceContainers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceContainers extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01020210.02010000'; - - protected $Name = 'EssenceContainers'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Containers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceData.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceData.php deleted file mode 100644 index 92c0f820f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05020000'; - - protected $Name = 'EssenceData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceDescription.php deleted file mode 100644 index 04b14097d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02030000'; - - protected $Name = 'EssenceDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceIsIdentified.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceIsIdentified.php deleted file mode 100644 index 63cb0d48c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceIsIdentified.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceIsIdentified extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010201.03000000'; - - protected $Name = 'EssenceIsIdentified'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Is Identified'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceLength.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceLength.php deleted file mode 100644 index f357dcf9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceLength extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04060102.00000000'; - - protected $Name = 'EssenceLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceLocators.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceLocators.php deleted file mode 100644 index f04b9a0a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceLocators.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceLocators extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06030000'; - - protected $Name = 'EssenceLocators'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Essence Locators'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EssenceStreamID.php b/lib/PHPExiftool/Driver/Tag/MXF/EssenceStreamID.php deleted file mode 100644 index db368efb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EssenceStreamID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EssenceStreamID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.01030404.00000000'; - - protected $Name = 'EssenceStreamID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Essence Stream ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventAbsoluteDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/EventAbsoluteDuration.php deleted file mode 100644 index cf3a668ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventAbsoluteDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventAbsoluteDuration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EventAbsoluteDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Event Absolute Duration'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventAbsoluteDurationFrameCount.php b/lib/PHPExiftool/Driver/Tag/MXF/EventAbsoluteDurationFrameCount.php deleted file mode 100644 index d270f8222..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventAbsoluteDurationFrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventAbsoluteDurationFrameCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020201.03010000'; - - protected $Name = 'EventAbsoluteDurationFrameCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Event Absolute Duration Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventAnnotationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/EventAnnotationSets.php deleted file mode 100644 index bbceab7a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventAnnotationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventAnnotationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.06010104.05400d01'; - - protected $Name = 'EventAnnotationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Annotation Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventElapsedTimeToEnd.php b/lib/PHPExiftool/Driver/Tag/MXF/EventElapsedTimeToEnd.php deleted file mode 100644 index b3bda7822..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventElapsedTimeToEnd.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventElapsedTimeToEnd extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07020103.10030200'; - - protected $Name = 'EventElapsedTimeToEnd'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Event Elapsed Time To End'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventElapsedTimeToStart.php b/lib/PHPExiftool/Driver/Tag/MXF/EventElapsedTimeToStart.php deleted file mode 100644 index dbc982df0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventElapsedTimeToStart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventElapsedTimeToStart extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07020103.10030100'; - - protected $Name = 'EventElapsedTimeToStart'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Event Elapsed Time To Start'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventEndTimeOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/EventEndTimeOffset.php deleted file mode 100644 index 700de4915..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventEndTimeOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventEndTimeOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.04010000'; - - protected $Name = 'EventEndTimeOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Event End Time Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventEndTimecodeOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/EventEndTimecodeOffset.php deleted file mode 100644 index de1d27284..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventEndTimecodeOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventEndTimecodeOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.04020000'; - - protected $Name = 'EventEndTimecodeOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event End Timecode Offset'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventIndication.php b/lib/PHPExiftool/Driver/Tag/MXF/EventIndication.php deleted file mode 100644 index 838049de5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventIndication.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventIndication extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EventIndication'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Event Indication'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventOrigin.php b/lib/PHPExiftool/Driver/Tag/MXF/EventOrigin.php deleted file mode 100644 index dee0e489a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventOrigin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventOrigin extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.07020103.010b0000'; - - protected $Name = 'EventOrigin'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventSets.php b/lib/PHPExiftool/Driver/Tag/MXF/EventSets.php deleted file mode 100644 index c387b85f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400900'; - - protected $Name = 'EventSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventStart.php b/lib/PHPExiftool/Driver/Tag/MXF/EventStart.php deleted file mode 100644 index 2f2da5474..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventStart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventStart extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020103.03030000'; - - protected $Name = 'EventStart'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Start'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventStartTimeOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/EventStartTimeOffset.php deleted file mode 100644 index f50651c27..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventStartTimeOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventStartTimeOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.03010000'; - - protected $Name = 'EventStartTimeOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Event Start Time Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventStartTimecodeOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/EventStartTimecodeOffset.php deleted file mode 100644 index 7bf4dbeda..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventStartTimecodeOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventStartTimecodeOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.03020000'; - - protected $Name = 'EventStartTimecodeOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event Start Timecode Offset'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/EventTrackEditRate.php b/lib/PHPExiftool/Driver/Tag/MXF/EventTrackEditRate.php deleted file mode 100644 index 3085a12c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/EventTrackEditRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventTrackEditRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05300402.00000000'; - - protected $Name = 'EventTrackEditRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Event Track Edit Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ExCCIData.php b/lib/PHPExiftool/Driver/Tag/MXF/ExCCIData.php deleted file mode 100644 index 0b8a14da2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ExCCIData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExCCIData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02070200.00000000'; - - protected $Name = 'ExCCIData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ex CCI Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ExposedAspectRatio.php b/lib/PHPExiftool/Driver/Tag/MXF/ExposedAspectRatio.php deleted file mode 100644 index 16959514b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ExposedAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposedAspectRatio extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04100103.02030000'; - - protected $Name = 'ExposedAspectRatio'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Exposed Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedCaptionsLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ExtendedCaptionsLanguageCode.php deleted file mode 100644 index 8b9fff455..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedCaptionsLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendedCaptionsLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010102.02120000'; - - protected $Name = 'ExtendedCaptionsLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Extended Captions Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedClipID.php b/lib/PHPExiftool/Driver/Tag/MXF/ExtendedClipID.php deleted file mode 100644 index 817011acb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedClipID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendedClipID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.01011509.00000000'; - - protected $Name = 'ExtendedClipID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extended Clip ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedClipIDArray.php b/lib/PHPExiftool/Driver/Tag/MXF/ExtendedClipIDArray.php deleted file mode 100644 index 7f9ae9ca3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedClipIDArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendedClipIDArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.0101150b.00000000'; - - protected $Name = 'ExtendedClipIDArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extended Clip ID Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedTextLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ExtendedTextLanguageCode.php deleted file mode 100644 index 2d8608059..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ExtendedTextLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendedTextLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010102.02110000'; - - protected $Name = 'ExtendedTextLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Extended Text Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ExtendibleElementNameList.php b/lib/PHPExiftool/Driver/Tag/MXF/ExtendibleElementNameList.php deleted file mode 100644 index da4f1a703..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ExtendibleElementNameList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendibleElementNameList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.07000000'; - - protected $Name = 'ExtendibleElementNameList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Extendible Element Name List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/FNumber.php deleted file mode 100644 index 15356d616..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04200201.01060000'; - - protected $Name = 'FNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'F Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FadeInDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/FadeInDuration.php deleted file mode 100644 index 62796bc8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FadeInDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FadeInDuration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020201.01050200'; - - protected $Name = 'Fade-InDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fade-In Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FadeInType.php b/lib/PHPExiftool/Driver/Tag/MXF/FadeInType.php deleted file mode 100644 index 45502d7f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FadeInType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FadeInType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05300501.00000000'; - - protected $Name = 'Fade-InType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fade-In Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FadeOutDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/FadeOutDuration.php deleted file mode 100644 index b4e5a9706..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FadeOutDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FadeOutDuration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020201.01050300'; - - protected $Name = 'Fade-OutDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fade-Out Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FadeOutType.php b/lib/PHPExiftool/Driver/Tag/MXF/FadeOutType.php deleted file mode 100644 index a656469d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FadeOutType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FadeOutType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05300502.00000000'; - - protected $Name = 'Fade-OutType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fade-Out Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FamilyName.php b/lib/PHPExiftool/Driver/Tag/MXF/FamilyName.php deleted file mode 100644 index f41aa10db..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FamilyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FamilyName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FamilyName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Family Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FaxNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/FaxNumber.php deleted file mode 100644 index ae7611111..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FaxNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaxNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FaxNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Fax Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FemaleLeadActressName.php b/lib/PHPExiftool/Driver/Tag/MXF/FemaleLeadActressName.php deleted file mode 100644 index 14bf372a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FemaleLeadActressName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FemaleLeadActressName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0a03.00000000'; - - protected $Name = 'FemaleLeadActressName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Female Lead Actress Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FestivalName.php b/lib/PHPExiftool/Driver/Tag/MXF/FestivalName.php deleted file mode 100644 index 9a7c6055f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FestivalName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FestivalName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FestivalName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Festival Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FieldDominance.php b/lib/PHPExiftool/Driver/Tag/MXF/FieldDominance.php deleted file mode 100644 index e6273c452..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FieldDominance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldDominance extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010301.06000000'; - - protected $Name = 'FieldDominance'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Field Dominance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FieldFrameTypeCode.php b/lib/PHPExiftool/Driver/Tag/MXF/FieldFrameTypeCode.php deleted file mode 100644 index f507b8996..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FieldFrameTypeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldFrameTypeCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010602.01010000'; - - protected $Name = 'FieldFrameTypeCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Field Frame Type Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewHorizontal.php b/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewHorizontal.php deleted file mode 100644 index fd22b569d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewHorizontal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewHorizontal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FieldOfViewHorizontal'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Field Of View Horizontal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewVertical.php b/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewVertical.php deleted file mode 100644 index 6d6af76fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewVertical.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewVertical extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04200201.010a0000'; - - protected $Name = 'FieldOfViewVertical'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Field Of View Vertical'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewVerticalFP.php b/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewVerticalFP.php deleted file mode 100644 index ae4c60328..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FieldOfViewVerticalFP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldOfViewVerticalFP extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.04200201.010a0100'; - - protected $Name = 'FieldOfViewVerticalFP'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Field Of View Vertical FP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FieldRate.php b/lib/PHPExiftool/Driver/Tag/MXF/FieldRate.php deleted file mode 100644 index a0add5b77..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FieldRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010301.02000000'; - - protected $Name = 'FieldRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Field Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FileDescriptors.php b/lib/PHPExiftool/Driver/Tag/MXF/FileDescriptors.php deleted file mode 100644 index c2fafa2a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FileDescriptors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileDescriptors extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.06010104.060b0000'; - - protected $Name = 'FileDescriptors'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Descriptors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FileSecurityReport.php b/lib/PHPExiftool/Driver/Tag/MXF/FileSecurityReport.php deleted file mode 100644 index 7cd0d274a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FileSecurityReport.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSecurityReport extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020302.05000000'; - - protected $Name = 'FileSecurityReport'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Security Report'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FileSecurityWave.php b/lib/PHPExiftool/Driver/Tag/MXF/FileSecurityWave.php deleted file mode 100644 index 046402d98..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FileSecurityWave.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSecurityWave extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020302.06000000'; - - protected $Name = 'FileSecurityWave'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Security Wave'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FillerData.php b/lib/PHPExiftool/Driver/Tag/MXF/FillerData.php deleted file mode 100644 index d7d9ef092..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FillerData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillerData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010210.01000000'; - - protected $Name = 'FillerData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Filler Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmBatchNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmBatchNumber.php deleted file mode 100644 index 6911ba397..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmBatchNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmBatchNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilmBatchNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Film Batch Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmCaptureAperture.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmCaptureAperture.php deleted file mode 100644 index a338ec7d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmCaptureAperture.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmCaptureAperture extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04100103.02020000'; - - protected $Name = 'FilmCaptureAperture'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Film Capture Aperture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmColorProcess.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmColorProcess.php deleted file mode 100644 index fc4504e70..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmColorProcess.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmColorProcess extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04100103.01010000'; - - protected $Name = 'FilmColorProcess'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Film Color Process'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmFormatName.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmFormatName.php deleted file mode 100644 index fa32e2388..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmFormatName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmFormatName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilmFormatName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Film Format Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmGauge.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmGauge.php deleted file mode 100644 index 171de3b6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmGauge.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmGauge extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04100103.01080000'; - - protected $Name = 'FilmGauge'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Gauge'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmStockKind.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmStockKind.php deleted file mode 100644 index 46d2d13b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmStockKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmStockKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilmStockKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Film Stock Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmStockManufacturerName.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmStockManufacturerName.php deleted file mode 100644 index af340e5ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmStockManufacturerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmStockManufacturerName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilmStockManufacturerName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Film Stock Manufacturer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmTestParameter.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmTestParameter.php deleted file mode 100644 index 9548924b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmTestParameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmTestParameter extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04011002.01000000'; - - protected $Name = 'FilmTestParameter'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Film Test Parameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmTestResult.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmTestResult.php deleted file mode 100644 index 4c5732dbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmTestResult.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmTestResult extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FilmTestResult'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Film Test Result'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferDirection.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferDirection.php deleted file mode 100644 index cc331b4aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmToVideoTransferDirection extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05401001.01000000'; - - protected $Name = 'FilmToVideoTransferDirection'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film To Video Transfer Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferKind.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferKind.php deleted file mode 100644 index 6cff5b672..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmToVideoTransferKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05401001.02000000'; - - protected $Name = 'FilmToVideoTransferKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film To Video Transfer Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferPhase.php b/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferPhase.php deleted file mode 100644 index ff5eb0569..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilmToVideoTransferPhase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmToVideoTransferPhase extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05401001.03000000'; - - protected $Name = 'FilmToVideoTransferPhase'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film To Video Transfer Phase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilteringApplied.php b/lib/PHPExiftool/Driver/Tag/MXF/FilteringApplied.php deleted file mode 100644 index baebbe44e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilteringApplied.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilteringApplied extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020101.02000000'; - - protected $Name = 'FilteringApplied'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Filtering Applied'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FilteringCode.php b/lib/PHPExiftool/Driver/Tag/MXF/FilteringCode.php deleted file mode 100644 index 8c73ab578..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FilteringCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilteringCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.0f000000'; - - protected $Name = 'FilteringCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Filtering Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FirstBroadcastFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/FirstBroadcastFlag.php deleted file mode 100644 index 2a0bca911..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FirstBroadcastFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstBroadcastFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02200101.00000000'; - - protected $Name = 'FirstBroadcastFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Broadcast Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FirstGivenName.php b/lib/PHPExiftool/Driver/Tag/MXF/FirstGivenName.php deleted file mode 100644 index 82b553c88..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FirstGivenName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstGivenName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirstGivenName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'First Given Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FirstNumberInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/FirstNumberInSequence.php deleted file mode 100644 index f47bb3da5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FirstNumberInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstNumberInSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirstNumberInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'First Number In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FirstTransmissionInfo.php b/lib/PHPExiftool/Driver/Tag/MXF/FirstTransmissionInfo.php deleted file mode 100644 index b84867760..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FirstTransmissionInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstTransmissionInfo extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0604.00000000'; - - protected $Name = 'FirstTransmissionInfo'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Transmission Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FixedArrayElementType.php b/lib/PHPExiftool/Driver/Tag/MXF/FixedArrayElementType.php deleted file mode 100644 index aaf3a3ca0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FixedArrayElementType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixedArrayElementType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.0c000000'; - - protected $Name = 'FixedArrayElementType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixed Array Element Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FixedChannelStatusData.php b/lib/PHPExiftool/Driver/Tag/MXF/FixedChannelStatusData.php deleted file mode 100644 index 0b3684990..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FixedChannelStatusData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixedChannelStatusData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020501.03000000'; - - protected $Name = 'FixedChannelStatusData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixed Channel Status Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FixedUserData.php b/lib/PHPExiftool/Driver/Tag/MXF/FixedUserData.php deleted file mode 100644 index 91cce6d1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FixedUserData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FixedUserData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020501.05000000'; - - protected $Name = 'FixedUserData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fixed User Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FocalLength.php b/lib/PHPExiftool/Driver/Tag/MXF/FocalLength.php deleted file mode 100644 index 96b50aaff..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FocalLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Footer.php b/lib/PHPExiftool/Driver/Tag/MXF/Footer.php deleted file mode 100644 index 137d43f9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Footer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Footer extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01040200'; - - protected $Name = 'Footer'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Footer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FooterPosition.php b/lib/PHPExiftool/Driver/Tag/MXF/FooterPosition.php deleted file mode 100644 index 7b4960ae7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FooterPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FooterPosition extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'FooterPosition'; - - protected $FullName = 'MXF::Header'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Footer Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FormatDescriptor.php b/lib/PHPExiftool/Driver/Tag/MXF/FormatDescriptor.php deleted file mode 100644 index 9e7a94eb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FormatDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FormatDescriptor extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FormatDescriptor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Format Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FormerFamilyName.php b/lib/PHPExiftool/Driver/Tag/MXF/FormerFamilyName.php deleted file mode 100644 index 7184bdbf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FormerFamilyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FormerFamilyName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FormerFamilyName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Former Family Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterElevation.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterElevation.php deleted file mode 100644 index 265403e3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterElevation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCenterElevation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.07010201.03160000'; - - protected $Name = 'FrameCenterElevation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Frame Center Elevation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLatitude.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLatitude.php deleted file mode 100644 index 2d95f23be..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCenterLatitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameCenterLatitude'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Frame Center Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLatitudeLongitude.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLatitudeLongitude.php deleted file mode 100644 index 5d86055cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLatitudeLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCenterLatitudeLongitude extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010201.03060000'; - - protected $Name = 'FrameCenterLatitudeLongitude'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Frame Center Latitude Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLongitude.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLongitude.php deleted file mode 100644 index aebfea216..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameCenterLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCenterLongitude extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameCenterLongitude'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Frame Center Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameCode.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameCode.php deleted file mode 100644 index 34f005882..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01040702.00000000'; - - protected $Name = 'FrameCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Frame Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameCount.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameCount.php deleted file mode 100644 index 8560be24d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020201.01010000'; - - protected $Name = 'FrameCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameCountOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameCountOffset.php deleted file mode 100644 index f7752e8e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameCountOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCountOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.10010100'; - - protected $Name = 'FrameCountOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Frame Count Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameLayout.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameLayout.php deleted file mode 100644 index af49a90a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameLayout.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameLayout extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010301.04000000'; - - protected $Name = 'FrameLayout'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Frame Layout'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FramePositionalAccuracy.php b/lib/PHPExiftool/Driver/Tag/MXF/FramePositionalAccuracy.php deleted file mode 100644 index 6f1ea6ca9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FramePositionalAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FramePositionalAccuracy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010201.03010000'; - - protected $Name = 'FramePositionalAccuracy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Frame Positional Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameRate.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameRate.php deleted file mode 100644 index c69c9cdcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010301.03000000'; - - protected $Name = 'FrameRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkExtendedTextLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameworkExtendedTextLanguageCode.php deleted file mode 100644 index 8684c4858..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkExtendedTextLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameworkExtendedTextLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010102.02130000'; - - protected $Name = 'FrameworkExtendedTextLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Framework Extended Text Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkTextLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameworkTextLanguageCode.php deleted file mode 100644 index eb309080e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkTextLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameworkTextLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.03010102.02030000'; - - protected $Name = 'FrameworkTextLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Framework Text Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkThesaurusName.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameworkThesaurusName.php deleted file mode 100644 index 8ea65e64e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkThesaurusName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameworkThesaurusName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameworkThesaurusName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Framework Thesaurus Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/FrameworkTitle.php deleted file mode 100644 index b7d2d7772..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/FrameworkTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameworkTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameworkTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Framework Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GenerationCloneNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/GenerationCloneNumber.php deleted file mode 100644 index c718e5aa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GenerationCloneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenerationCloneNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.05010303.01000000'; - - protected $Name = 'GenerationCloneNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Generation Clone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GenerationCopyNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/GenerationCopyNumber.php deleted file mode 100644 index cf4d9d191..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GenerationCopyNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenerationCopyNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.05010302.01000000'; - - protected $Name = 'GenerationCopyNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Generation Copy Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GenerationID.php b/lib/PHPExiftool/Driver/Tag/MXF/GenerationID.php deleted file mode 100644 index c28d5c4da..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GenerationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenerationID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200701.01000000'; - - protected $Name = 'GenerationID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Generation ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GenericPayloads.php b/lib/PHPExiftool/Driver/Tag/MXF/GenericPayloads.php deleted file mode 100644 index ed9e8f43f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GenericPayloads.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenericPayloads extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.03060000'; - - protected $Name = 'GenericPayloads'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Generic Payloads'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Genre.php b/lib/PHPExiftool/Driver/Tag/MXF/Genre.php deleted file mode 100644 index fe99b70b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Genre'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaNorthwest.php b/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaNorthwest.php deleted file mode 100644 index b72b0f2d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaNorthwest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeographicAreaNorthwest extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07010201.03120000'; - - protected $Name = 'GeographicAreaNorthwest'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geographic Area Northwest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaSourceDatum.php b/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaSourceDatum.php deleted file mode 100644 index 3be8cb521..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaSourceDatum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeographicAreaSourceDatum extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07010201.03140000'; - - protected $Name = 'GeographicAreaSourceDatum'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Geographic Area Source Datum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaSoutheast.php b/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaSoutheast.php deleted file mode 100644 index 695701a44..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GeographicAreaSoutheast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeographicAreaSoutheast extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07010201.03130000'; - - protected $Name = 'GeographicAreaSoutheast'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geographic Area Southeast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GeographicLocation.php b/lib/PHPExiftool/Driver/Tag/MXF/GeographicLocation.php deleted file mode 100644 index e4c635ca2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GeographicLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeographicLocation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07010201.03100000'; - - protected $Name = 'GeographicLocation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geographic Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GeographicPolygonCoordinates.php b/lib/PHPExiftool/Driver/Tag/MXF/GeographicPolygonCoordinates.php deleted file mode 100644 index 052b52fda..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GeographicPolygonCoordinates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeographicPolygonCoordinates extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07010201.03110000'; - - protected $Name = 'GeographicPolygonCoordinates'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geographic Polygon Coordinates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GeographicPolygonSourceDatum.php b/lib/PHPExiftool/Driver/Tag/MXF/GeographicPolygonSourceDatum.php deleted file mode 100644 index 0c431f1fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GeographicPolygonSourceDatum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeographicPolygonSourceDatum extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07010201.03150000'; - - protected $Name = 'GeographicPolygonSourceDatum'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Geographic Polygon Source Datum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GeographicalCoordinates.php b/lib/PHPExiftool/Driver/Tag/MXF/GeographicalCoordinates.php deleted file mode 100644 index 08b768ba9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GeographicalCoordinates.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeographicalCoordinates extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07012001.04011500'; - - protected $Name = 'GeographicalCoordinates'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Geographical Coordinates'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GlobalNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/GlobalNumber.php deleted file mode 100644 index dde05e36b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GlobalNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GlobalNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01011504.00000000'; - - protected $Name = 'GlobalNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Global Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GraphicKind.php b/lib/PHPExiftool/Driver/Tag/MXF/GraphicKind.php deleted file mode 100644 index 29d3f6a7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GraphicKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.05010106.00000000'; - - protected $Name = 'GraphicKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Graphic Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GraphicUsageKind.php b/lib/PHPExiftool/Driver/Tag/MXF/GraphicUsageKind.php deleted file mode 100644 index cb81a7cec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GraphicUsageKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicUsageKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GraphicUsageKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Graphic Usage Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GroupSet.php b/lib/PHPExiftool/Driver/Tag/MXF/GroupSet.php deleted file mode 100644 index 37b134a0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GroupSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GroupSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02400500'; - - protected $Name = 'GroupSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Group Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GroupSets.php b/lib/PHPExiftool/Driver/Tag/MXF/GroupSets.php deleted file mode 100644 index 92567f7ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GroupSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GroupSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400500'; - - protected $Name = 'GroupSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Group Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/GroupSynopsis.php b/lib/PHPExiftool/Driver/Tag/MXF/GroupSynopsis.php deleted file mode 100644 index cdcbe0e8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/GroupSynopsis.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GroupSynopsis extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GroupSynopsis'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Group Synopsis'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HMACAlgorithmSHA1128.php b/lib/PHPExiftool/Driver/Tag/MXF/HMACAlgorithmSHA1128.php deleted file mode 100644 index d31e5733f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HMACAlgorithmSHA1128.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HMACAlgorithmSHA1128 extends AbstractTag -{ - - protected $Id = '060e2b34.0401.0107.02090202.01000000'; - - protected $Name = 'HMACAlgorithmSHA1128'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HMAC Algorithm SHA1128'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HTMLDOCTYPE.php b/lib/PHPExiftool/Driver/Tag/MXF/HTMLDOCTYPE.php deleted file mode 100644 index 6cd2e3bcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HTMLDOCTYPE.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HTMLDOCTYPE extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HTMLDOCTYPE'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'HTMLDOCTYPE'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HTMLMetaDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/HTMLMetaDescription.php deleted file mode 100644 index e579f12f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HTMLMetaDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HTMLMetaDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HTMLMetaDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'HTML Meta Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HardwareAcceleratorFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/HardwareAcceleratorFlag.php deleted file mode 100644 index 1d9c4c94c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HardwareAcceleratorFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HardwareAcceleratorFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0520090c.00000000'; - - protected $Name = 'HardwareAcceleratorFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hardware Accelerator Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HasAudioWatermark.php b/lib/PHPExiftool/Driver/Tag/MXF/HasAudioWatermark.php deleted file mode 100644 index b04e91c44..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HasAudioWatermark.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasAudioWatermark extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0106.00000000'; - - protected $Name = 'HasAudioWatermark'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Audio Watermark'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HasVideoWatermark.php b/lib/PHPExiftool/Driver/Tag/MXF/HasVideoWatermark.php deleted file mode 100644 index 9d8628aeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HasVideoWatermark.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasVideoWatermark extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0108.00000000'; - - protected $Name = 'HasVideoWatermark'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Video Watermark'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HeaderByteCount.php b/lib/PHPExiftool/Driver/Tag/MXF/HeaderByteCount.php deleted file mode 100644 index 1b99b2833..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HeaderByteCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeaderByteCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04060901.00000000'; - - protected $Name = 'HeaderByteCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Header Byte Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HeaderSize.php b/lib/PHPExiftool/Driver/Tag/MXF/HeaderSize.php deleted file mode 100644 index d48a3a050..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HeaderSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeaderSize extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'HeaderSize'; - - protected $FullName = 'MXF::Header'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Header Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HistoricalValue.php b/lib/PHPExiftool/Driver/Tag/MXF/HistoricalValue.php deleted file mode 100644 index dabd29047..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HistoricalValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistoricalValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020202.05000000'; - - protected $Name = 'HistoricalValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Historical Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HonorsAndQualifications.php b/lib/PHPExiftool/Driver/Tag/MXF/HonorsAndQualifications.php deleted file mode 100644 index 255694702..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HonorsAndQualifications.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HonorsAndQualifications extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HonorsAndQualifications'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Honors And Qualifications'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalActionSafePercentage.php b/lib/PHPExiftool/Driver/Tag/MXF/HorizontalActionSafePercentage.php deleted file mode 100644 index 32afbdf16..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalActionSafePercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalActionSafePercentage extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010101.04000000'; - - protected $Name = 'HorizontalActionSafePercentage'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Horizontal Action Safe Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalDatum.php b/lib/PHPExiftool/Driver/Tag/MXF/HorizontalDatum.php deleted file mode 100644 index a4173a56f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalDatum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalDatum extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07010103.00000000'; - - protected $Name = 'HorizontalDatum'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Horizontal Datum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalGraphicsSafePercentage.php b/lib/PHPExiftool/Driver/Tag/MXF/HorizontalGraphicsSafePercentage.php deleted file mode 100644 index 10116e286..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalGraphicsSafePercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalGraphicsSafePercentage extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010101.06000000'; - - protected $Name = 'HorizontalGraphicsSafePercentage'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Horizontal Graphics Safe Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalSubsampling.php b/lib/PHPExiftool/Driver/Tag/MXF/HorizontalSubsampling.php deleted file mode 100644 index c00d5b018..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/HorizontalSubsampling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalSubsampling extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.05000000'; - - protected $Name = 'HorizontalSubsampling'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Horizontal Subsampling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IBTN.php b/lib/PHPExiftool/Driver/Tag/MXF/IBTN.php deleted file mode 100644 index 19068ead2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IBTN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IBTN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011004.01010000'; - - protected $Name = 'IBTN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IBTN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IEEEDeviceID.php b/lib/PHPExiftool/Driver/Tag/MXF/IEEEDeviceID.php deleted file mode 100644 index 50b0694b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IEEEDeviceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IEEEDeviceID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01012005.00000000'; - - protected $Name = 'IEEEDeviceID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'IEEE Device ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IEEEManufacturerID.php b/lib/PHPExiftool/Driver/Tag/MXF/IEEEManufacturerID.php deleted file mode 100644 index 97925a831..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IEEEManufacturerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IEEEManufacturerID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.010a0102.00000000'; - - protected $Name = 'IEEEManufacturerID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IEEE Manufacturer ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISAN.php b/lib/PHPExiftool/Driver/Tag/MXF/ISAN.php deleted file mode 100644 index 7ee120953..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISAN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISAN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011101.00000000'; - - protected $Name = 'ISAN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISAN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISBD.php b/lib/PHPExiftool/Driver/Tag/MXF/ISBD.php deleted file mode 100644 index 1da045852..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISBD.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISBD extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011109.00000000'; - - protected $Name = 'ISBD'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISBD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISBN.php b/lib/PHPExiftool/Driver/Tag/MXF/ISBN.php deleted file mode 100644 index 4f2da17b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISBN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISBN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011102.00000000'; - - protected $Name = 'ISBN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISBN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISCI.php b/lib/PHPExiftool/Driver/Tag/MXF/ISCI.php deleted file mode 100644 index 0aea19b1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISCI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISCI extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011106.00000000'; - - protected $Name = 'ISCI'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISCI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISMN.php b/lib/PHPExiftool/Driver/Tag/MXF/ISMN.php deleted file mode 100644 index afb000bc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISMN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISMN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011105.00000000'; - - protected $Name = 'ISMN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISMN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISO3166CountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ISO3166CountryCode.php deleted file mode 100644 index 1e02852d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISO3166CountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO3166CountryCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010101.01000000'; - - protected $Name = 'ISO3166CountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'ISO3166 Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISO6391LanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ISO6391LanguageCode.php deleted file mode 100644 index fedb0eddc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISO6391LanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO6391LanguageCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO639-1LanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'ISO639-1 Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISO639CaptionsLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ISO639CaptionsLanguageCode.php deleted file mode 100644 index 746587482..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISO639CaptionsLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO639CaptionsLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010102.02020000'; - - protected $Name = 'ISO639CaptionsLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'ISO639 Captions Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISO639TextLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ISO639TextLanguageCode.php deleted file mode 100644 index 39eb04057..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISO639TextLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO639TextLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010102.02010000'; - - protected $Name = 'ISO639TextLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'ISO639 Text Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISRC.php b/lib/PHPExiftool/Driver/Tag/MXF/ISRC.php deleted file mode 100644 index 179d6cbb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRC extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011107.00000000'; - - protected $Name = 'ISRC'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISRN.php b/lib/PHPExiftool/Driver/Tag/MXF/ISRN.php deleted file mode 100644 index 9469d518c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISRN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011108.00000000'; - - protected $Name = 'ISRN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISSN.php b/lib/PHPExiftool/Driver/Tag/MXF/ISSN.php deleted file mode 100644 index a98f07724..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISSN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISSN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011103.00000000'; - - protected $Name = 'ISSN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISSN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISTC.php b/lib/PHPExiftool/Driver/Tag/MXF/ISTC.php deleted file mode 100644 index 46b204163..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISTC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISTC extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0101110a.00000000'; - - protected $Name = 'ISTC'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISTC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ISWC.php b/lib/PHPExiftool/Driver/Tag/MXF/ISWC.php deleted file mode 100644 index 8bfb2ec8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ISWC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISWC extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011104.00000000'; - - protected $Name = 'ISWC'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISWC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IdenticalGOPIndicator.php b/lib/PHPExiftool/Driver/Tag/MXF/IdenticalGOPIndicator.php deleted file mode 100644 index 5facaa397..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IdenticalGOPIndicator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdenticalGOPIndicator extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01070000'; - - protected $Name = 'IdenticalGOPIndicator'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identical GOP Indicator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IdentificationList.php b/lib/PHPExiftool/Driver/Tag/MXF/IdentificationList.php deleted file mode 100644 index 7cda6cda5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IdentificationList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06040000'; - - protected $Name = 'IdentificationList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identification List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IdentificationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/IdentificationSets.php deleted file mode 100644 index 8665913d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IdentificationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400600'; - - protected $Name = 'IdentificationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identification Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IdentificationUL.php b/lib/PHPExiftool/Driver/Tag/MXF/IdentificationUL.php deleted file mode 100644 index 81823418b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IdentificationUL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationUL extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01020202.00000000'; - - protected $Name = 'IdentificationUL'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Identification UL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IdentifierIssuingAuthority.php b/lib/PHPExiftool/Driver/Tag/MXF/IdentifierIssuingAuthority.php deleted file mode 100644 index c855dfb99..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IdentifierIssuingAuthority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentifierIssuingAuthority extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IdentifierIssuingAuthority'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Identifier Issuing Authority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IdentifierKind.php b/lib/PHPExiftool/Driver/Tag/MXF/IdentifierKind.php deleted file mode 100644 index 6d21d3c31..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IdentifierKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentifierKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.01080100.00000000'; - - protected $Name = 'IdentifierKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Identifier Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IdentifierValue.php b/lib/PHPExiftool/Driver/Tag/MXF/IdentifierValue.php deleted file mode 100644 index 44bd712d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IdentifierValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentifierValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.01080200.00000000'; - - protected $Name = 'IdentifierValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Identifier Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageAlignmentOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageAlignmentOffset.php deleted file mode 100644 index 0061100d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageAlignmentOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageAlignmentOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04180101.00000000'; - - protected $Name = 'ImageAlignmentOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Alignment Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageCategory.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageCategory.php deleted file mode 100644 index 8a89e3ac7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCategory extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04200101.01000000'; - - protected $Name = 'ImageCategory'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageCoordinateSystem.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageCoordinateSystem.php deleted file mode 100644 index e56674804..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageCoordinateSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCoordinateSystem extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010101.00000000'; - - protected $Name = 'ImageCoordinateSystem'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image Coordinate System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageEndOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageEndOffset.php deleted file mode 100644 index 19f59b005..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageEndOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageEndOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04180103.00000000'; - - protected $Name = 'ImageEndOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image End Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageFormatSet.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageFormatSet.php deleted file mode 100644 index 1615af158..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageFormatSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFormatSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02401d00'; - - protected $Name = 'ImageFormatSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Format Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageHeight.php deleted file mode 100644 index 060d88b2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010502.01000000'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageSourceDeviceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageSourceDeviceKind.php deleted file mode 100644 index d1d7d2beb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageSourceDeviceKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSourceDeviceKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageSourceDeviceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Source Device Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageStartOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageStartOffset.php deleted file mode 100644 index a2345a11e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageStartOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStartOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04180102.00000000'; - - protected $Name = 'ImageStartOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Start Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/MXF/ImageWidth.php deleted file mode 100644 index 15b256e70..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010502.02000000'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IncludeSync.php b/lib/PHPExiftool/Driver/Tag/MXF/IncludeSync.php deleted file mode 100644 index dfa843397..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IncludeSync.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncludeSync extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04040101.04000000'; - - protected $Name = 'IncludeSync'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Include Sync'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndexByteCount.php b/lib/PHPExiftool/Driver/Tag/MXF/IndexByteCount.php deleted file mode 100644 index 8eb6f39d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndexByteCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexByteCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04060902.00000000'; - - protected $Name = 'IndexByteCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Index Byte Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndexDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/IndexDuration.php deleted file mode 100644 index 51f3bb050..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndexDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexDuration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.07020201.01020000'; - - protected $Name = 'IndexDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Index Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndexEditRate.php b/lib/PHPExiftool/Driver/Tag/MXF/IndexEditRate.php deleted file mode 100644 index 45fc27fd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndexEditRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexEditRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.05300406.00000000'; - - protected $Name = 'IndexEditRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Index Edit Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndexEntryArray.php b/lib/PHPExiftool/Driver/Tag/MXF/IndexEntryArray.php deleted file mode 100644 index 780cdef4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndexEntryArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexEntryArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040402.05000000'; - - protected $Name = 'IndexEntryArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Index Entry Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndexStreamID.php b/lib/PHPExiftool/Driver/Tag/MXF/IndexStreamID.php deleted file mode 100644 index 323263927..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndexStreamID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexStreamID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.01030405.00000000'; - - protected $Name = 'IndexStreamID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index Stream ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndexTableSegment.php b/lib/PHPExiftool/Driver/Tag/MXF/IndexTableSegment.php deleted file mode 100644 index 640e9235b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndexTableSegment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexTableSegment extends AbstractTag -{ - - protected $Id = '060e2b34.0253.0101.0d010201.01100100'; - - protected $Name = 'IndexTableSegment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Index Table Segment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndexingStartPosition.php b/lib/PHPExiftool/Driver/Tag/MXF/IndexingStartPosition.php deleted file mode 100644 index a869e4d45..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndexingStartPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexingStartPosition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.07020103.010a0000'; - - protected $Name = 'IndexingStartPosition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Indexing Start Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IndividualAwardName.php b/lib/PHPExiftool/Driver/Tag/MXF/IndividualAwardName.php deleted file mode 100644 index 731385bac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IndividualAwardName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndividualAwardName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020201.01000000'; - - protected $Name = 'IndividualAwardName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Individual Award Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InkNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/InkNumber.php deleted file mode 100644 index d053374c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InkNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InkNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01040704.00000000'; - - protected $Name = 'InkNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Ink Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InputSegment.php b/lib/PHPExiftool/Driver/Tag/MXF/InputSegment.php deleted file mode 100644 index 609e7116f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InputSegment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputSegment extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02070000'; - - protected $Name = 'InputSegment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Input Segment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InputSegmentCount.php b/lib/PHPExiftool/Driver/Tag/MXF/InputSegmentCount.php deleted file mode 100644 index d2e36927b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InputSegmentCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputSegmentCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05300504.00000000'; - - protected $Name = 'InputSegmentCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Input Segment Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InputSegments.php b/lib/PHPExiftool/Driver/Tag/MXF/InputSegments.php deleted file mode 100644 index 65479752e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InputSegments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InputSegments extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06020000'; - - protected $Name = 'InputSegments'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Input Segments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InsertMusicFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/InsertMusicFlag.php deleted file mode 100644 index 3897e2668..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InsertMusicFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InsertMusicFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.05010404.00000000'; - - protected $Name = 'InsertMusicFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Insert Music Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InstallmentNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/InstallmentNumber.php deleted file mode 100644 index 0138dc6b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InstallmentNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstallmentNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02060103.00000000'; - - protected $Name = 'InstallmentNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Installment Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InstanceUID.php b/lib/PHPExiftool/Driver/Tag/MXF/InstanceUID.php deleted file mode 100644 index 33b1c1805..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InstanceUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstanceUID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011502.00000000'; - - protected $Name = 'InstanceUID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Instance UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntegrationIndication.php b/lib/PHPExiftool/Driver/Tag/MXF/IntegrationIndication.php deleted file mode 100644 index c139a0723..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntegrationIndication.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntegrationIndication extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IntegrationIndication'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Integration Indication'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyDescription.php deleted file mode 100644 index d7923b8e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntellectualPropertyDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IntellectualPropertyDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Intellectual Property Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseCountryCode.php deleted file mode 100644 index 0c85f8cc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntellectualPropertyLicenseCountryCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.02050000'; - - protected $Name = 'IntellectualPropertyLicenseCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Intellectual Property License Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseRegionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseRegionCode.php deleted file mode 100644 index 552c8903d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseRegionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntellectualPropertyLicenseRegionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.03050000'; - - protected $Name = 'IntellectualPropertyLicenseRegionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Intellectual Property License Region Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseRegionName.php b/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseRegionName.php deleted file mode 100644 index a20ff168e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyLicenseRegionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntellectualPropertyLicenseRegionName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07012001.03050100'; - - protected $Name = 'IntellectualPropertyLicenseRegionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intellectual Property License Region Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyRights.php b/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyRights.php deleted file mode 100644 index 018a66f42..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntellectualPropertyRights.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntellectualPropertyRights extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IntellectualPropertyRights'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Intellectual Property Rights'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntendedAFD.php b/lib/PHPExiftool/Driver/Tag/MXF/IntendedAFD.php deleted file mode 100644 index d01a5cbdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntendedAFD.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntendedAFD extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010500'; - - protected $Name = 'IntendedAFD'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Intended AFD'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IntentDescriptor.php b/lib/PHPExiftool/Driver/Tag/MXF/IntentDescriptor.php deleted file mode 100644 index b3a036d04..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IntentDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntentDescriptor extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'IntentDescriptor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Intent Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InterestedPartyName.php b/lib/PHPExiftool/Driver/Tag/MXF/InterestedPartyName.php deleted file mode 100644 index d7d79fd29..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InterestedPartyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterestedPartyName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02050303.00000000'; - - protected $Name = 'InterestedPartyName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Interested Party Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Interpolation.php b/lib/PHPExiftool/Driver/Tag/MXF/Interpolation.php deleted file mode 100644 index 82ba45c80..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Interpolation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Interpolation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.01050000'; - - protected $Name = 'Interpolation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpolation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/InterpolationDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/InterpolationDefinitions.php deleted file mode 100644 index e08f2e70e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/InterpolationDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InterpolationDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05090000'; - - protected $Name = 'InterpolationDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Interpolation Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsConcrete.php b/lib/PHPExiftool/Driver/Tag/MXF/IsConcrete.php deleted file mode 100644 index 212d4d142..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsConcrete.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsConcrete extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.03000000'; - - protected $Name = 'IsConcrete'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Concrete'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsDubbed.php b/lib/PHPExiftool/Driver/Tag/MXF/IsDubbed.php deleted file mode 100644 index 5d9c66e5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsDubbed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsDubbed extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0104.00000000'; - - protected $Name = 'IsDubbed'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Dubbed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsLiveProduction.php b/lib/PHPExiftool/Driver/Tag/MXF/IsLiveProduction.php deleted file mode 100644 index 1f91e58bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsLiveProduction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsLiveProduction extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0102.00000000'; - - protected $Name = 'IsLiveProduction'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Live Production'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsLiveTransmission.php b/lib/PHPExiftool/Driver/Tag/MXF/IsLiveTransmission.php deleted file mode 100644 index a95072e7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsLiveTransmission.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsLiveTransmission extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0103.00000000'; - - protected $Name = 'IsLiveTransmission'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Live Transmission'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsOptional.php b/lib/PHPExiftool/Driver/Tag/MXF/IsOptional.php deleted file mode 100644 index 5c71ea8ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsOptional.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsOptional extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010202.01000000'; - - protected $Name = 'IsOptional'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Optional'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsRecording.php b/lib/PHPExiftool/Driver/Tag/MXF/IsRecording.php deleted file mode 100644 index abdb3e167..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsRecording.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsRecording extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0101.00000000'; - - protected $Name = 'IsRecording'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Recording'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsRepeat.php b/lib/PHPExiftool/Driver/Tag/MXF/IsRepeat.php deleted file mode 100644 index 418561bc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsRepeat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsRepeat extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0603.00000000'; - - protected $Name = 'IsRepeat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Repeat'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsSearchable.php b/lib/PHPExiftool/Driver/Tag/MXF/IsSearchable.php deleted file mode 100644 index b31f3d981..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsSearchable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsSearchable extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010202.02000000'; - - protected $Name = 'IsSearchable'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Searchable'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsSigned.php b/lib/PHPExiftool/Driver/Tag/MXF/IsSigned.php deleted file mode 100644 index f49087e99..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsSigned.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsSigned extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.02000000'; - - protected $Name = 'IsSigned'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Signed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsUniqueIdentifier.php b/lib/PHPExiftool/Driver/Tag/MXF/IsUniqueIdentifier.php deleted file mode 100644 index 40efbec68..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsUniqueIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsUniqueIdentifier extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.06000000'; - - protected $Name = 'IsUniqueIdentifier'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Unique Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/IsVoiceover.php b/lib/PHPExiftool/Driver/Tag/MXF/IsVoiceover.php deleted file mode 100644 index 24170f8fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/IsVoiceover.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsVoiceover extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0105.00000000'; - - protected $Name = 'IsVoiceover'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Voiceover'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ItemDesignatorID.php b/lib/PHPExiftool/Driver/Tag/MXF/ItemDesignatorID.php deleted file mode 100644 index b440ab918..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ItemDesignatorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemDesignatorID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01030601.00000000'; - - protected $Name = 'ItemDesignatorID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Item Designator ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ItemID.php b/lib/PHPExiftool/Driver/Tag/MXF/ItemID.php deleted file mode 100644 index a5d7d6313..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ItemID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030103.00000000'; - - protected $Name = 'ItemID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Item ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ItemName.php b/lib/PHPExiftool/Driver/Tag/MXF/ItemName.php deleted file mode 100644 index f163defce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ItemName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ItemName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Item Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ItemValue.php b/lib/PHPExiftool/Driver/Tag/MXF/ItemValue.php deleted file mode 100644 index 634cfb6e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ItemValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ItemValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Item Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/JFIFMarkerDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/JFIFMarkerDescription.php deleted file mode 100644 index 599b16419..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/JFIFMarkerDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JFIFMarkerDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'JFIFMarkerDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'JFIF Marker Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/JPEGTableID.php b/lib/PHPExiftool/Driver/Tag/MXF/JPEGTableID.php deleted file mode 100644 index 82aae174f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/JPEGTableID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGTableID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05020103.01020000'; - - protected $Name = 'JPEGTableID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'JPEG Table ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/JobFunctionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/JobFunctionCode.php deleted file mode 100644 index 6ed870193..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/JobFunctionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobFunctionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02300501.02000000'; - - protected $Name = 'JobFunctionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Job Function Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/JobFunctionName.php b/lib/PHPExiftool/Driver/Tag/MXF/JobFunctionName.php deleted file mode 100644 index d0a282542..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/JobFunctionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobFunctionName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'JobFunctionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Job Function Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/JobTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/JobTitle.php deleted file mode 100644 index c44eef762..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/JobTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'JobTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Job Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Jurisdiction.php b/lib/PHPExiftool/Driver/Tag/MXF/Jurisdiction.php deleted file mode 100644 index 96404cf06..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Jurisdiction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Jurisdiction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Jurisdiction'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Jurisdiction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KAGSize.php b/lib/PHPExiftool/Driver/Tag/MXF/KAGSize.php deleted file mode 100644 index 904e4efad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KAGSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KAGSize extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.03010201.09000000'; - - protected $Name = 'KAGSize'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'KAG Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/KLVDataDefinitions.php deleted file mode 100644 index ae96f8640..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KLVDataDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010104.050a0000'; - - protected $Name = 'KLVDataDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'KLV Data Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataParentProperties.php b/lib/PHPExiftool/Driver/Tag/MXF/KLVDataParentProperties.php deleted file mode 100644 index 8831dad8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataParentProperties.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KLVDataParentProperties extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010104.03040000'; - - protected $Name = 'KLVDataParentProperties'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'KLV Data Parent Properties'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataType.php b/lib/PHPExiftool/Driver/Tag/MXF/KLVDataType.php deleted file mode 100644 index 5088cd804..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KLVDataType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010104.01090000'; - - protected $Name = 'KLVDataType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'KLV Data Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataValue.php b/lib/PHPExiftool/Driver/Tag/MXF/KLVDataValue.php deleted file mode 100644 index 78312970e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KLVDataValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KLVDataValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010210.02000000'; - - protected $Name = 'KLVDataValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'KLV Data Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KLVMetadataSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/KLVMetadataSequence.php deleted file mode 100644 index 0c4fc7694..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KLVMetadataSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KLVMetadataSequence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010210.06000000'; - - protected $Name = 'KLVMetadataSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'KLV Metadata Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyCode.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyCode.php deleted file mode 100644 index db0b621e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01040703.00000000'; - - protected $Name = 'KeyCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Key Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyData.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyData.php deleted file mode 100644 index cd806d21a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020102.08000000'; - - protected $Name = 'KeyData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Key Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyDataOrProgram.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyDataOrProgram.php deleted file mode 100644 index b1b831810..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyDataOrProgram.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyDataOrProgram extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01041004.00000000'; - - protected $Name = 'KeyDataOrProgram'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Key Data Or Program'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyFrame.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyFrame.php deleted file mode 100644 index a708287a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyFrame.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyFrame extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01041002.00000000'; - - protected $Name = 'KeyFrame'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Key Frame'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyFrameSampleCount.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyFrameSampleCount.php deleted file mode 100644 index 3152ee0d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyFrameSampleCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyFrameSampleCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03020102.0f000000'; - - protected $Name = 'KeyFrameSampleCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Key Frame Sample Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyFrames.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyFrames.php deleted file mode 100644 index e22284f92..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyFrames extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020102.06000000'; - - protected $Name = 'KeyFrames'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Key Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyPointSets.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyPointSets.php deleted file mode 100644 index b560c1447..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyPointSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyPointSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401200'; - - protected $Name = 'KeyPointSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Key Point Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeySound.php b/lib/PHPExiftool/Driver/Tag/MXF/KeySound.php deleted file mode 100644 index 490b7a648..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeySound.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeySound extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01041003.00000000'; - - protected $Name = 'KeySound'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Key Sound'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeySounds.php b/lib/PHPExiftool/Driver/Tag/MXF/KeySounds.php deleted file mode 100644 index b4ec3668d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeySounds.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeySounds extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020102.07000000'; - - protected $Name = 'KeySounds'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Key Sounds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyText.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyText.php deleted file mode 100644 index 3281f3229..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyText extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01041001.00000000'; - - protected $Name = 'KeyText'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Key Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeyTimePoint.php b/lib/PHPExiftool/Driver/Tag/MXF/KeyTimePoint.php deleted file mode 100644 index e0672607e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeyTimePoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyTimePoint extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07020103.01070000'; - - protected $Name = 'KeyTimePoint'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Key Time Point'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeypointKind.php b/lib/PHPExiftool/Driver/Tag/MXF/KeypointKind.php deleted file mode 100644 index 7ffef5856..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeypointKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeypointKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'KeypointKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Keypoint Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/KeypointValue.php b/lib/PHPExiftool/Driver/Tag/MXF/KeypointValue.php deleted file mode 100644 index 7756edecc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/KeypointValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeypointValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'KeypointValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Keypoint Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Keywords.php b/lib/PHPExiftool/Driver/Tag/MXF/Keywords.php deleted file mode 100644 index 9c930bf0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Keywords'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LUID.php b/lib/PHPExiftool/Driver/Tag/MXF/LUID.php deleted file mode 100644 index 55a0c0356..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LUID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030301.00000000'; - - protected $Name = 'LUID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'LUID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LanguageName.php b/lib/PHPExiftool/Driver/Tag/MXF/LanguageName.php deleted file mode 100644 index 473378616..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LanguageName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LanguageName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LanguageName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Language Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LastNumberInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/LastNumberInSequence.php deleted file mode 100644 index 1a0a88e42..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LastNumberInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastNumberInSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LastNumberInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Last Number In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LayerNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/LayerNumber.php deleted file mode 100644 index fe41bf138..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LayerNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LayerNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04020403.01010000'; - - protected $Name = 'LayerNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Layer Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LeadingLines.php b/lib/PHPExiftool/Driver/Tag/MXF/LeadingLines.php deleted file mode 100644 index 2685bed88..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LeadingLines.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeadingLines extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010302.03000000'; - - protected $Name = 'LeadingLines'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Leading Lines'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LengthSystemName.php b/lib/PHPExiftool/Driver/Tag/MXF/LengthSystemName.php deleted file mode 100644 index 643192553..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LengthSystemName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LengthSystemName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010301.01000000'; - - protected $Name = 'LengthSystemName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Length System Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LengthUnitKind.php b/lib/PHPExiftool/Driver/Tag/MXF/LengthUnitKind.php deleted file mode 100644 index 4d32cdacd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LengthUnitKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LengthUnitKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010301.02000000'; - - protected $Name = 'LengthUnitKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Length Unit Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LicenseOptionsDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/LicenseOptionsDescription.php deleted file mode 100644 index ccb48e9a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LicenseOptionsDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseOptionsDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02050402.00000000'; - - protected $Name = 'LicenseOptionsDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'License Options Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LineNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/LineNumber.php deleted file mode 100644 index 86356e78d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LineNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LineNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010302.0a000000'; - - protected $Name = 'LineNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Line Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkedApplicationPlugInInstanceID.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkedApplicationPlugInInstanceID.php deleted file mode 100644 index 794886ab8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkedApplicationPlugInInstanceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkedApplicationPlugInInstanceID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.05200701.0b000000'; - - protected $Name = 'LinkedApplicationPlug-InInstanceID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Linked Application Plug-In Instance ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkedDescriptiveFrameworkPlugInID.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkedDescriptiveFrameworkPlugInID.php deleted file mode 100644 index 39f63df2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkedDescriptiveFrameworkPlugInID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkedDescriptiveFrameworkPlugInID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.05200701.0c000000'; - - protected $Name = 'LinkedDescriptiveFrameworkPlug-InID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Linked Descriptive Framework Plug-In ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkedDescriptiveObjectPlugInID.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkedDescriptiveObjectPlugInID.php deleted file mode 100644 index fe93685b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkedDescriptiveObjectPlugInID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkedDescriptiveObjectPlugInID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.05200701.11000000'; - - protected $Name = 'LinkedDescriptiveObjectPlug-InID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Linked Descriptive Object Plug-In ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkedGenerationID.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkedGenerationID.php deleted file mode 100644 index 8fce628c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkedGenerationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkedGenerationID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200701.08000000'; - - protected $Name = 'LinkedGenerationID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Linked Generation ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkedPackageID.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkedPackageID.php deleted file mode 100644 index 738b8c0e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkedPackageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkedPackageID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010106.01000000'; - - protected $Name = 'LinkedPackageID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Linked Package ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkedTimecodeTrackID.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkedTimecodeTrackID.php deleted file mode 100644 index f002023c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkedTimecodeTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkedTimecodeTrackID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04020501.07000000'; - - protected $Name = 'LinkedTimecodeTrackID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Linked Timecode Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkedTrackID.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkedTrackID.php deleted file mode 100644 index ad178ce48..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkedTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkedTrackID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010103.05000000'; - - protected $Name = 'LinkedTrackID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Linked Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LinkingName.php b/lib/PHPExiftool/Driver/Tag/MXF/LinkingName.php deleted file mode 100644 index 05056ffe6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LinkingName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkingName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LinkingName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Linking Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalCreationDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalCreationDateTime.php deleted file mode 100644 index 5f671fb39..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalCreationDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalCreationDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020110.01010000'; - - protected $Name = 'LocalCreationDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local Creation Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalDatumAbsolutePositionAccuracy.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalDatumAbsolutePositionAccuracy.php deleted file mode 100644 index c5cdcc32b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalDatumAbsolutePositionAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalDatumAbsolutePositionAccuracy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010201.01010000'; - - protected $Name = 'LocalDatumAbsolutePositionAccuracy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Local Datum Absolute Position Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalDatumRelativePositionAccuracy.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalDatumRelativePositionAccuracy.php deleted file mode 100644 index c2ef33e48..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalDatumRelativePositionAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalDatumRelativePositionAccuracy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010202.01010000'; - - protected $Name = 'LocalDatumRelativePositionAccuracy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Local Datum Relative Position Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalEndDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalEndDateTime.php deleted file mode 100644 index 6b44be218..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalEndDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalEndDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.03020000'; - - protected $Name = 'LocalEndDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local End Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalEventEndDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalEventEndDateTime.php deleted file mode 100644 index 765b88476..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalEventEndDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalEventEndDateTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LocalEventEndDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Local Event End Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalEventStartDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalEventStartDateTime.php deleted file mode 100644 index d69c179a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalEventStartDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalEventStartDateTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LocalEventStartDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Local Event Start Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalFestivalDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalFestivalDateTime.php deleted file mode 100644 index 20ae6cc81..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalFestivalDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalFestivalDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.07020102.07100100'; - - protected $Name = 'LocalFestivalDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local Festival Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalFilePath.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalFilePath.php deleted file mode 100644 index 6922f657b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalFilePath extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LocalFilePath'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Local File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalID.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalID.php deleted file mode 100644 index 4c17723ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.05000000'; - - protected $Name = 'LocalID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Local ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalLastModifyDate.php deleted file mode 100644 index 8c671dad0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalLastModifyDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.05020000'; - - protected $Name = 'LocalLastModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalModifyDate.php deleted file mode 100644 index 01229bd89..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalModifyDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020110.02010000'; - - protected $Name = 'LocalModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalStartDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalStartDateTime.php deleted file mode 100644 index b6aa1ba0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalStartDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalStartDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.01020000'; - - protected $Name = 'LocalStartDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local Start Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalTagEntries.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalTagEntries.php deleted file mode 100644 index c00490a4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalTagEntries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalTagEntries extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010107.15000000'; - - protected $Name = 'LocalTagEntries'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Local Tag Entries'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalTagUniqueID.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalTagUniqueID.php deleted file mode 100644 index c9b7fff1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalTagUniqueID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalTagUniqueID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01030603.00000000'; - - protected $Name = 'LocalTagUniqueID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Local Tag Unique ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalTagValue.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalTagValue.php deleted file mode 100644 index 5ec3dd86f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalTagValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalTagValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01030602.00000000'; - - protected $Name = 'LocalTagValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Local Tag Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalTapeNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalTapeNumber.php deleted file mode 100644 index d343571ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalTapeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalTapeNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030202.01000000'; - - protected $Name = 'LocalTapeNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local Tape Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalTargetID.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalTargetID.php deleted file mode 100644 index 23672a72a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalTargetID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalTargetID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LocalTargetID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Local Target ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocalUserDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/LocalUserDateTime.php deleted file mode 100644 index c1e3e10f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocalUserDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalUserDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020101.01020000'; - - protected $Name = 'LocalUserDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Local User Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocationDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/LocationDescription.php deleted file mode 100644 index 91218bfcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocationDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LocationDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Location Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocationKind.php b/lib/PHPExiftool/Driver/Tag/MXF/LocationKind.php deleted file mode 100644 index 588fa45a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocationKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LocationKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Location Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LocationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/LocationSets.php deleted file mode 100644 index 3093c72ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LocationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.03401600'; - - protected $Name = 'LocationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LockedIndicator.php b/lib/PHPExiftool/Driver/Tag/MXF/LockedIndicator.php deleted file mode 100644 index f9252c2f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LockedIndicator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LockedIndicator extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04020301.04000000'; - - protected $Name = 'LockedIndicator'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Locked Indicator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LogoFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/LogoFlag.php deleted file mode 100644 index e7a4aadf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LogoFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LogoFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.05010104.00000000'; - - protected $Name = 'LogoFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Logo Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LowDelayIndicator.php b/lib/PHPExiftool/Driver/Tag/MXF/LowDelayIndicator.php deleted file mode 100644 index 8a7b99c7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LowDelayIndicator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowDelayIndicator extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01050000'; - - protected $Name = 'LowDelayIndicator'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Low Delay Indicator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LumaEquation.php b/lib/PHPExiftool/Driver/Tag/MXF/LumaEquation.php deleted file mode 100644 index 52b9544f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LumaEquation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LumaEquation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010201.01020000'; - - protected $Name = 'LumaEquation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Luma Equation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/LuminanceSampleRate.php b/lib/PHPExiftool/Driver/Tag/MXF/LuminanceSampleRate.php deleted file mode 100644 index 3fce27022..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/LuminanceSampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceSampleRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.01000000'; - - protected $Name = 'LuminanceSampleRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Luminance Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MIC.php b/lib/PHPExiftool/Driver/Tag/MXF/MIC.php deleted file mode 100644 index 3ecab4a24..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MIC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MIC extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.02090302.02000000'; - - protected $Name = 'MIC'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MIC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MICAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/MICAlgorithm.php deleted file mode 100644 index 5a73fa5c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MICAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MICAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.02090302.01000000'; - - protected $Name = 'MICAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MIC Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MIMECharSet.php b/lib/PHPExiftool/Driver/Tag/MXF/MIMECharSet.php deleted file mode 100644 index 76ada63aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MIMECharSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MIMECharSet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MIMECharSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'MIME Char Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MIMEEncoding.php b/lib/PHPExiftool/Driver/Tag/MXF/MIMEEncoding.php deleted file mode 100644 index ee369352d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MIMEEncoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MIMEEncoding extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MIMEEncoding'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'MIME Encoding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MIMEMediaType.php b/lib/PHPExiftool/Driver/Tag/MXF/MIMEMediaType.php deleted file mode 100644 index db6e2f6de..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MIMEMediaType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MIMEMediaType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MIMEMediaType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'MIME Media Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame1.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame1.php deleted file mode 100644 index 8009c6361..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame1 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020100'; - - protected $Name = 'MPEG7BiMAccessUnitFrame1'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame2.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame2.php deleted file mode 100644 index 0368afb05..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame2 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020200'; - - protected $Name = 'MPEG7BiMAccessUnitFrame2'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame3.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame3.php deleted file mode 100644 index 2ffabca9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame3 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020300'; - - protected $Name = 'MPEG7BiMAccessUnitFrame3'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame4.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame4.php deleted file mode 100644 index 4edd13cf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame4.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame4 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020400'; - - protected $Name = 'MPEG7BiMAccessUnitFrame4'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 4'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame5.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame5.php deleted file mode 100644 index 4e06b0aaf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame5.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame5 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020500'; - - protected $Name = 'MPEG7BiMAccessUnitFrame5'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 5'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame6.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame6.php deleted file mode 100644 index 177f2f8ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame6.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame6 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020600'; - - protected $Name = 'MPEG7BiMAccessUnitFrame6'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 6'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame7.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame7.php deleted file mode 100644 index fccfc4883..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame7.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame7 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020700'; - - protected $Name = 'MPEG7BiMAccessUnitFrame7'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 7'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame8.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame8.php deleted file mode 100644 index 5fcf0ce61..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMAccessUnitFrame8.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMAccessUnitFrame8 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02020800'; - - protected $Name = 'MPEG7BiMAccessUnitFrame8'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Access Unit Frame 8'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame1.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame1.php deleted file mode 100644 index 7eacf70ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame1 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010100'; - - protected $Name = 'MPEG7BiMDecoderInitFrame1'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame2.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame2.php deleted file mode 100644 index 71b95ced2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame2 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010200'; - - protected $Name = 'MPEG7BiMDecoderInitFrame2'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame3.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame3.php deleted file mode 100644 index 2b55c34ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame3 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010300'; - - protected $Name = 'MPEG7BiMDecoderInitFrame3'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame4.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame4.php deleted file mode 100644 index c6dba5c7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame4.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame4 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010400'; - - protected $Name = 'MPEG7BiMDecoderInitFrame4'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 4'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame5.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame5.php deleted file mode 100644 index 87525bc89..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame5.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame5 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010500'; - - protected $Name = 'MPEG7BiMDecoderInitFrame5'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 5'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame6.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame6.php deleted file mode 100644 index 64406bc17..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame6.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame6 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010600'; - - protected $Name = 'MPEG7BiMDecoderInitFrame6'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 6'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame7.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame7.php deleted file mode 100644 index 93a5135de..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame7.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame7 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010700'; - - protected $Name = 'MPEG7BiMDecoderInitFrame7'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 7'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame8.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame8.php deleted file mode 100644 index 257d780f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEG7BiMDecoderInitFrame8.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEG7BiMDecoderInitFrame8 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010220.02010800'; - - protected $Name = 'MPEG7BiMDecoderInitFrame8'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG7 Bi M Decoder Init Frame 8'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEGAudioBitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEGAudioBitrate.php deleted file mode 100644 index 9c711ea79..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEGAudioBitrate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEGAudioBitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04020403.01020000'; - - protected $Name = 'MPEGAudioBitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'MPEG Audio Bitrate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEGAudioRecodingDataset.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEGAudioRecodingDataset.php deleted file mode 100644 index b4109d1e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEGAudioRecodingDataset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEGAudioRecodingDataset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05400202.00000000'; - - protected $Name = 'MPEGAudioRecodingDataset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG Audio Recoding Dataset'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MPEGVideoRecodingDataset.php b/lib/PHPExiftool/Driver/Tag/MXF/MPEGVideoRecodingDataset.php deleted file mode 100644 index 8f834d900..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MPEGVideoRecodingDataset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MPEGVideoRecodingDataset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05400102.00000000'; - - protected $Name = 'MPEGVideoRecodingDataset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MPEG Video Recoding Dataset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MXFVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MXFVersion.php deleted file mode 100644 index d0ac18d57..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MXFVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MXFVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MXFVersion'; - - protected $FullName = 'MXF::Header'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'MXF Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MagneticDiskNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/MagneticDiskNumber.php deleted file mode 100644 index 550f5fb6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MagneticDiskNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagneticDiskNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01030203.01010000'; - - protected $Name = 'MagneticDiskNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Magnetic Disk Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MagneticTrack.php b/lib/PHPExiftool/Driver/Tag/MXF/MagneticTrack.php deleted file mode 100644 index 488e4d5fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MagneticTrack.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagneticTrack extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020802.00000000'; - - protected $Name = 'MagneticTrack'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Magnetic Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MainCatalogNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/MainCatalogNumber.php deleted file mode 100644 index 1b85440da..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MainCatalogNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MainCatalogNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01100304.00000000'; - - protected $Name = 'MainCatalogNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Main Catalog Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MainName.php b/lib/PHPExiftool/Driver/Tag/MXF/MainName.php deleted file mode 100644 index e51377ddd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MainName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MainName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MainName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Main Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MainSponsorName.php b/lib/PHPExiftool/Driver/Tag/MXF/MainSponsorName.php deleted file mode 100644 index 7b1c4e572..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MainSponsorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MainSponsorName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0a06.00000000'; - - protected $Name = 'MainSponsorName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Main Sponsor Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MainTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/MainTitle.php deleted file mode 100644 index 0e2bdf8ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MainTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MainTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MainTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Main Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MajorVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MajorVersion.php deleted file mode 100644 index c74073d85..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MajorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MajorVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010201.06000000'; - - protected $Name = 'MajorVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Major Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaleLeadActorName.php b/lib/PHPExiftool/Driver/Tag/MXF/MaleLeadActorName.php deleted file mode 100644 index fba08a23f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaleLeadActorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaleLeadActorName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0a04.00000000'; - - protected $Name = 'MaleLeadActorName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Male Lead Actor Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ManufacturerID.php b/lib/PHPExiftool/Driver/Tag/MXF/ManufacturerID.php deleted file mode 100644 index e0053380d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ManufacturerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufacturerID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.010a0101.03000000'; - - protected $Name = 'ManufacturerID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manufacturer ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ManufacturerInformationObject.php b/lib/PHPExiftool/Driver/Tag/MXF/ManufacturerInformationObject.php deleted file mode 100644 index 44d89d305..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ManufacturerInformationObject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufacturerInformationObject extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.020b0000'; - - protected $Name = 'ManufacturerInformationObject'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manufacturer Information Object'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MapDatumUsed.php b/lib/PHPExiftool/Driver/Tag/MXF/MapDatumUsed.php deleted file mode 100644 index abed8d108..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MapDatumUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MapDatumUsed extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010102.00000000'; - - protected $Name = 'MapDatumUsed'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Map Datum Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MarkIn.php b/lib/PHPExiftool/Driver/Tag/MXF/MarkIn.php deleted file mode 100644 index 9f848fb8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MarkIn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkIn extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07020103.010c0000'; - - protected $Name = 'MarkIn'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mark In'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MarkOut.php b/lib/PHPExiftool/Driver/Tag/MXF/MarkOut.php deleted file mode 100644 index 2c827468e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MarkOut.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkOut extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07020103.02030000'; - - protected $Name = 'MarkOut'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mark Out'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaterialAbsoluteDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/MaterialAbsoluteDuration.php deleted file mode 100644 index ed7b948d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaterialAbsoluteDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaterialAbsoluteDuration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaterialAbsoluteDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Material Absolute Duration'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaterialEndTimeOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/MaterialEndTimeOffset.php deleted file mode 100644 index 44cd4aaf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaterialEndTimeOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaterialEndTimeOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.02010000'; - - protected $Name = 'MaterialEndTimeOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Material End Time Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaterialEndTimecodeOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/MaterialEndTimecodeOffset.php deleted file mode 100644 index 5e8628fdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaterialEndTimecodeOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaterialEndTimecodeOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.02020000'; - - protected $Name = 'MaterialEndTimecodeOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Material End Timecode Offset'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaximumAPIVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MaximumAPIVersion.php deleted file mode 100644 index 03bb0a73b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaximumAPIVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumAPIVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0520090a.00000000'; - - protected $Name = 'MaximumAPIVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum API Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaximumBPictureCount.php b/lib/PHPExiftool/Driver/Tag/MXF/MaximumBPictureCount.php deleted file mode 100644 index e98125196..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaximumBPictureCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumBPictureCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01090000'; - - protected $Name = 'MaximumBPictureCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Maximum B Picture Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaximumGOPSize.php b/lib/PHPExiftool/Driver/Tag/MXF/MaximumGOPSize.php deleted file mode 100644 index 079fce290..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaximumGOPSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumGOPSize extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01080000'; - - protected $Name = 'MaximumGOPSize'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Maximum GOP Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaximumSupportedEngineVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MaximumSupportedEngineVersion.php deleted file mode 100644 index 7815b1fac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaximumSupportedEngineVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumSupportedEngineVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200907.00000000'; - - protected $Name = 'MaximumSupportedEngineVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Supported Engine Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaximumSupportedPlatformVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MaximumSupportedPlatformVersion.php deleted file mode 100644 index 8271f889b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaximumSupportedPlatformVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumSupportedPlatformVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200904.00000000'; - - protected $Name = 'MaximumSupportedPlatformVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maximum Supported Platform Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MaximumUseCount.php b/lib/PHPExiftool/Driver/Tag/MXF/MaximumUseCount.php deleted file mode 100644 index c6b8687bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MaximumUseCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumUseCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02050401.00000000'; - - protected $Name = 'MaximumUseCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Maximum Use Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MediaLocation.php b/lib/PHPExiftool/Driver/Tag/MXF/MediaLocation.php deleted file mode 100644 index 6336214a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MediaLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaLocation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01040102.01000000'; - - protected $Name = 'MediaLocation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MemberNameList.php b/lib/PHPExiftool/Driver/Tag/MXF/MemberNameList.php deleted file mode 100644 index 4bd515820..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MemberNameList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MemberNameList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.06000000'; - - protected $Name = 'MemberNameList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Member Name List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MemberTypes.php b/lib/PHPExiftool/Driver/Tag/MXF/MemberTypes.php deleted file mode 100644 index 2eebcb3d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MemberTypes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MemberTypes extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.11000000'; - - protected $Name = 'MemberTypes'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Member Types'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MetadataEncodingSchemeCode.php b/lib/PHPExiftool/Driver/Tag/MXF/MetadataEncodingSchemeCode.php deleted file mode 100644 index c4156cd62..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MetadataEncodingSchemeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataEncodingSchemeCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.04060801.00000000'; - - protected $Name = 'MetadataEncodingSchemeCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Metadata Encoding Scheme Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MetadataItemName.php b/lib/PHPExiftool/Driver/Tag/MXF/MetadataItemName.php deleted file mode 100644 index 713864df4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MetadataItemName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataItemName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MetadataItemName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Metadata Item Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MetadataServerLocators.php b/lib/PHPExiftool/Driver/Tag/MXF/MetadataServerLocators.php deleted file mode 100644 index c0526f7fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MetadataServerLocators.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataServerLocators extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.060c0000'; - - protected $Name = 'MetadataServerLocators'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metadata Server Locators'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MicrophonePlacementTechniques.php b/lib/PHPExiftool/Driver/Tag/MXF/MicrophonePlacementTechniques.php deleted file mode 100644 index e5308750e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MicrophonePlacementTechniques.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MicrophonePlacementTechniques extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010204.01000000'; - - protected $Name = 'MicrophonePlacementTechniques'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Microphone Placement Techniques'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MinimumAPIVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MinimumAPIVersion.php deleted file mode 100644 index effa2bc79..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MinimumAPIVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinimumAPIVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200909.00000000'; - - protected $Name = 'MinimumAPIVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Minimum API Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MinimumSupportedEngineVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MinimumSupportedEngineVersion.php deleted file mode 100644 index 37016e531..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MinimumSupportedEngineVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinimumSupportedEngineVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200906.00000000'; - - protected $Name = 'MinimumSupportedEngineVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Minimum Supported Engine Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MinimumSupportedPlatformVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MinimumSupportedPlatformVersion.php deleted file mode 100644 index d30411264..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MinimumSupportedPlatformVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinimumSupportedPlatformVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200903.00000000'; - - protected $Name = 'MinimumSupportedPlatformVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Minimum Supported Platform Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MinorVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/MinorVersion.php deleted file mode 100644 index b90ac3cfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MinorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinorVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010201.07000000'; - - protected $Name = 'MinorVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Minor Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MissionID.php b/lib/PHPExiftool/Driver/Tag/MXF/MissionID.php deleted file mode 100644 index 7ee10da27..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MissionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MissionID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MissionID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Mission ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MobileTelephoneNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/MobileTelephoneNumber.php deleted file mode 100644 index 11553207e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MobileTelephoneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MobileTelephoneNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07012001.10030500'; - - protected $Name = 'MobileTelephoneNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Mobile Telephone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/ModifyDate.php deleted file mode 100644 index 932e381ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020110.02030000'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/MonoSourceTrackIDs.php b/lib/PHPExiftool/Driver/Tag/MXF/MonoSourceTrackIDs.php deleted file mode 100644 index 6654de86a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/MonoSourceTrackIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonoSourceTrackIDs extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.06010103.08000000'; - - protected $Name = 'MonoSourceTrackIDs'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Mono Source Track I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NITFLayerTargetID.php b/lib/PHPExiftool/Driver/Tag/MXF/NITFLayerTargetID.php deleted file mode 100644 index 1e27edbcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NITFLayerTargetID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NITFLayerTargetID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NITFLayerTargetID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'NITF Layer Target ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NMEADocumentText.php b/lib/PHPExiftool/Driver/Tag/MXF/NMEADocumentText.php deleted file mode 100644 index a29d9007e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NMEADocumentText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NMEADocumentText extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07010201.02300000'; - - protected $Name = 'NMEADocumentText'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'NMEA Document Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NOLACode.php b/lib/PHPExiftool/Driver/Tag/MXF/NOLACode.php deleted file mode 100644 index 4ea3f4aff..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NOLACode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NOLACode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010700'; - - protected $Name = 'NOLACode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'NOLA Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NameSuffix.php b/lib/PHPExiftool/Driver/Tag/MXF/NameSuffix.php deleted file mode 100644 index 8086a32b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NameSuffix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NameSuffix extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NameSuffix'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Name Suffix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NamespacePrefix.php b/lib/PHPExiftool/Driver/Tag/MXF/NamespacePrefix.php deleted file mode 100644 index 77aeb3b92..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NamespacePrefix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NamespacePrefix extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NamespacePrefix'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Namespace Prefix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NamespacePrefixes.php b/lib/PHPExiftool/Driver/Tag/MXF/NamespacePrefixes.php deleted file mode 100644 index 2b9d9d134..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NamespacePrefixes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NamespacePrefixes extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NamespacePrefixes'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Namespace Prefixes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NamespaceURI.php b/lib/PHPExiftool/Driver/Tag/MXF/NamespaceURI.php deleted file mode 100644 index 87a406579..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NamespaceURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NamespaceURI extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NamespaceURI'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Namespace URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NamespaceURIs.php b/lib/PHPExiftool/Driver/Tag/MXF/NamespaceURIs.php deleted file mode 100644 index faf3888cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NamespaceURIs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NamespaceURIs extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NamespaceURIs'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Namespace UR Is'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Nationality.php b/lib/PHPExiftool/Driver/Tag/MXF/Nationality.php deleted file mode 100644 index 4774cc9c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Nationality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Nationality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Nationality'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Nationality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NatureOfPersonality.php b/lib/PHPExiftool/Driver/Tag/MXF/NatureOfPersonality.php deleted file mode 100644 index faa61bd92..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NatureOfPersonality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NatureOfPersonality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NatureOfPersonality'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Nature Of Personality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NextNumberInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/NextNumberInSequence.php deleted file mode 100644 index 7fa1a97f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NextNumberInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NextNumberInSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NextNumberInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Next Number In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NielsenStreamIdentifier.php b/lib/PHPExiftool/Driver/Tag/MXF/NielsenStreamIdentifier.php deleted file mode 100644 index 0cba4e3f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NielsenStreamIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NielsenStreamIdentifier extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010900'; - - protected $Name = 'NielsenStreamIdentifier'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nielsen Stream Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NominationCategory.php b/lib/PHPExiftool/Driver/Tag/MXF/NominationCategory.php deleted file mode 100644 index d12eceecf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NominationCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominationCategory extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NominationCategory'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Nomination Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/NonUSClassifyingCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/NonUSClassifyingCountryCode.php deleted file mode 100644 index 41f979cdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/NonUSClassifyingCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NonUSClassifyingCountryCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07012001.02080000'; - - protected $Name = 'Non-USClassifyingCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Non-US Classifying Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectAreaDimension.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectAreaDimension.php deleted file mode 100644 index 70752bee8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectAreaDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectAreaDimension extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03030301.07000000'; - - protected $Name = 'ObjectAreaDimension'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Object Area Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectClass.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectClass.php deleted file mode 100644 index 0f24b02ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectClass extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.01010000'; - - protected $Name = 'ObjectClass'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Object Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectClassDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectClassDefinition.php deleted file mode 100644 index 85cd91d49..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectClassDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectClassDefinition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.010b0000'; - - protected $Name = 'ObjectClassDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Object Class Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectCountryCode.php deleted file mode 100644 index a206a8cf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectCountryCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ObjectCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Object Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectCountryCodeMethod.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectCountryCodeMethod.php deleted file mode 100644 index 1607ce127..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectCountryCodeMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectCountryCodeMethod extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07012001.02060000'; - - protected $Name = 'ObjectCountryCodeMethod'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Object Country Code Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectDescription.php deleted file mode 100644 index f9c1a154a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ObjectDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Object Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectDescriptionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectDescriptionCode.php deleted file mode 100644 index 513acac02..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectDescriptionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectDescriptionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03020301.02020000'; - - protected $Name = 'ObjectDescriptionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Object Description Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectHorizontalAverageDimension.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectHorizontalAverageDimension.php deleted file mode 100644 index 7ee948873..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectHorizontalAverageDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectHorizontalAverageDimension extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03030301.05000000'; - - protected $Name = 'ObjectHorizontalAverageDimension'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Object Horizontal Average Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectIdentificationConfidence.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectIdentificationConfidence.php deleted file mode 100644 index 6dcb56f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectIdentificationConfidence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectIdentificationConfidence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03030301.04000000'; - - protected $Name = 'ObjectIdentificationConfidence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Object Identification Confidence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectKind.php deleted file mode 100644 index 881d3e0ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ObjectKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Object Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectModelVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectModelVersion.php deleted file mode 100644 index a95e9ed68..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectModelVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectModelVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010201.04000000'; - - protected $Name = 'ObjectModelVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Object Model Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectName.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectName.php deleted file mode 100644 index 5a191716f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03020401.01010000'; - - protected $Name = 'ObjectName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Object Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectRegionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectRegionCode.php deleted file mode 100644 index b5f17e9d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectRegionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectRegionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.03010000'; - - protected $Name = 'ObjectRegionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Object Region Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectRegionName.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectRegionName.php deleted file mode 100644 index 86ea1f732..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectRegionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectRegionName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07012001.03010100'; - - protected $Name = 'ObjectRegionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Object Region Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObjectVerticalAverageDimension.php b/lib/PHPExiftool/Driver/Tag/MXF/ObjectVerticalAverageDimension.php deleted file mode 100644 index 4de18d369..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObjectVerticalAverageDimension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObjectVerticalAverageDimension extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03030301.06000000'; - - protected $Name = 'ObjectVerticalAverageDimension'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Object Vertical Average Dimension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ObliquityAngle.php b/lib/PHPExiftool/Driver/Tag/MXF/ObliquityAngle.php deleted file mode 100644 index d4b94c729..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ObliquityAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObliquityAngle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07011001.03000000'; - - protected $Name = 'ObliquityAngle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Obliquity Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OffsetToIndexTable.php b/lib/PHPExiftool/Driver/Tag/MXF/OffsetToIndexTable.php deleted file mode 100644 index ec9b668b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OffsetToIndexTable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetToIndexTable extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OffsetToIndexTable'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Offset To Index Table'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OffsetToMetadata.php b/lib/PHPExiftool/Driver/Tag/MXF/OffsetToMetadata.php deleted file mode 100644 index 18fa827f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OffsetToMetadata.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OffsetToMetadata extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OffsetToMetadata'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Offset To Metadata'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OpenBodyPartition.php b/lib/PHPExiftool/Driver/Tag/MXF/OpenBodyPartition.php deleted file mode 100644 index c68998969..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OpenBodyPartition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpenBodyPartition extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01030100'; - - protected $Name = 'OpenBodyPartition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Open Body Partition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OpenCompleteBodyPartition.php b/lib/PHPExiftool/Driver/Tag/MXF/OpenCompleteBodyPartition.php deleted file mode 100644 index acb19ef30..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OpenCompleteBodyPartition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpenCompleteBodyPartition extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01030300'; - - protected $Name = 'OpenCompleteBodyPartition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Open Complete Body Partition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OperatingSystemInterpretations.php b/lib/PHPExiftool/Driver/Tag/MXF/OperatingSystemInterpretations.php deleted file mode 100644 index 73a1942a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OperatingSystemInterpretations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperatingSystemInterpretations extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010201.01000000'; - - protected $Name = 'OperatingSystemInterpretations'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Operating System Interpretations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OperationCategory.php b/lib/PHPExiftool/Driver/Tag/MXF/OperationCategory.php deleted file mode 100644 index 910543901..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OperationCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationCategory extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0530050a.00000000'; - - protected $Name = 'OperationCategory'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OperationDataDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/OperationDataDefinition.php deleted file mode 100644 index 53416ab94..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OperationDataDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationDataDefinition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05300509.00000000'; - - protected $Name = 'OperationDataDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation Data Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OperationDefinitionID.php b/lib/PHPExiftool/Driver/Tag/MXF/OperationDefinitionID.php deleted file mode 100644 index 95b27286d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OperationDefinitionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationDefinitionID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05300506.00000000'; - - protected $Name = 'OperationDefinitionID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation Definition ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OperationDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/OperationDefinitions.php deleted file mode 100644 index 915945f82..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OperationDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05030000'; - - protected $Name = 'OperationDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OperationParameters.php b/lib/PHPExiftool/Driver/Tag/MXF/OperationParameters.php deleted file mode 100644 index 4287794fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OperationParameters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationParameters extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.03020000'; - - protected $Name = 'OperationParameters'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operation Parameters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OperationalPatternUL.php b/lib/PHPExiftool/Driver/Tag/MXF/OperationalPatternUL.php deleted file mode 100644 index 5f5f4923f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OperationalPatternUL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperationalPatternUL extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01020203.00000000'; - - protected $Name = 'OperationalPatternUL'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Operational Pattern UL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OpticalDiscNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/OpticalDiscNumber.php deleted file mode 100644 index d62c23fa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OpticalDiscNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalDiscNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01030203.02010000'; - - protected $Name = 'OpticalDiscNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Optical Disc Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OpticalTestParameterName.php b/lib/PHPExiftool/Driver/Tag/MXF/OpticalTestParameterName.php deleted file mode 100644 index 427e1e1b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OpticalTestParameterName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalTestParameterName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04200201.01010000'; - - protected $Name = 'OpticalTestParameterName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Optical Test Parameter Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OpticalTestResult.php b/lib/PHPExiftool/Driver/Tag/MXF/OpticalTestResult.php deleted file mode 100644 index 8748d7fec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OpticalTestResult.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalTestResult extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OpticalTestResult'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Optical Test Result'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OpticalTrack.php b/lib/PHPExiftool/Driver/Tag/MXF/OpticalTrack.php deleted file mode 100644 index bf2d48f64..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OpticalTrack.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalTrack extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020801.00000000'; - - protected $Name = 'OpticalTrack'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Optical Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationCode.php b/lib/PHPExiftool/Driver/Tag/MXF/OrganizationCode.php deleted file mode 100644 index 71e0791a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizationCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OrganizationCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Organization Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationID.php b/lib/PHPExiftool/Driver/Tag/MXF/OrganizationID.php deleted file mode 100644 index 527fe8e09..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizationID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OrganizationID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Organization ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationIDKind.php b/lib/PHPExiftool/Driver/Tag/MXF/OrganizationIDKind.php deleted file mode 100644 index 3bb7b821b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationIDKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizationIDKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OrganizationIDKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Organization ID Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationKind.php b/lib/PHPExiftool/Driver/Tag/MXF/OrganizationKind.php deleted file mode 100644 index 52a05480b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizationKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OrganizationKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Organization Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationMainName.php b/lib/PHPExiftool/Driver/Tag/MXF/OrganizationMainName.php deleted file mode 100644 index 018137671..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationMainName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizationMainName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OrganizationMainName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Organization Main Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/OrganizationSets.php deleted file mode 100644 index 5fb65b9b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401500'; - - protected $Name = 'OrganizationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organization Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationalProgramNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/OrganizationalProgramNumber.php deleted file mode 100644 index f53610e8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OrganizationalProgramNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizationalProgramNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OrganizationalProgramNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Organizational Program Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Origin.php b/lib/PHPExiftool/Driver/Tag/MXF/Origin.php deleted file mode 100644 index e8d6975a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Origin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Origin extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020103.01030000'; - - protected $Name = 'Origin'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64s'; - - protected $Writable = false; - - protected $Description = 'Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OriginCode.php b/lib/PHPExiftool/Driver/Tag/MXF/OriginCode.php deleted file mode 100644 index 92f072507..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OriginCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01100303.00000000'; - - protected $Name = 'OriginCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Origin Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OriginalExtendedSpokenPrimaryLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/OriginalExtendedSpokenPrimaryLanguageCode.php deleted file mode 100644 index b82edceb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OriginalExtendedSpokenPrimaryLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalExtendedSpokenPrimaryLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010102.03130000'; - - protected $Name = 'OriginalExtendedSpokenPrimaryLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Original Extended Spoken Primary Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OriginalProducerName.php b/lib/PHPExiftool/Driver/Tag/MXF/OriginalProducerName.php deleted file mode 100644 index b59bae690..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OriginalProducerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalProducerName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OriginalProducerName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Original Producer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OriginalTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/OriginalTitle.php deleted file mode 100644 index 024007259..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OriginalTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OriginalTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Original Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OtherGivenNames.php b/lib/PHPExiftool/Driver/Tag/MXF/OtherGivenNames.php deleted file mode 100644 index 815df5ef0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OtherGivenNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherGivenNames extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OtherGivenNames'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Other Given Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/OtherValues.php b/lib/PHPExiftool/Driver/Tag/MXF/OtherValues.php deleted file mode 100644 index 4d8b2f538..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/OtherValues.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherValues extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020202.07000000'; - - protected $Name = 'OtherValues'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Other Values'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PII.php b/lib/PHPExiftool/Driver/Tag/MXF/PII.php deleted file mode 100644 index a6664414b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PII.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PII extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011304.00000000'; - - protected $Name = 'PII'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PII'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/POSIXMicroseconds.php b/lib/PHPExiftool/Driver/Tag/MXF/POSIXMicroseconds.php deleted file mode 100644 index bcf377198..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/POSIXMicroseconds.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class POSIXMicroseconds extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07020101.01050000'; - - protected $Name = 'POSIXMicroseconds'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'POSIX Microseconds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PURL.php b/lib/PHPExiftool/Driver/Tag/MXF/PURL.php deleted file mode 100644 index 7f21e1cc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PURL extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01020102.00000000'; - - protected $Name = 'PURL'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'PURL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackLength.php b/lib/PHPExiftool/Driver/Tag/MXF/PackLength.php deleted file mode 100644 index ba5dcf1c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackLength extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04061001.00000000'; - - protected $Name = 'PackLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Pack Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageAttributes.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageAttributes.php deleted file mode 100644 index 278ded608..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageAttributes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageAttributes extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010210.07000000'; - - protected $Name = 'PackageAttributes'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Attributes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageID.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageID.php deleted file mode 100644 index 35f9f258f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011510.00000000'; - - protected $Name = 'PackageID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageKLVData.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageKLVData.php deleted file mode 100644 index 0bcf5ed96..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageKLVData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageKLVData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010210.03000000'; - - protected $Name = 'PackageKLVData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package KLV Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageLastModifyDate.php deleted file mode 100644 index 2a1955a56..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageLastModifyDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020110.02050000'; - - protected $Name = 'PackageLastModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageMarkInPosition.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageMarkInPosition.php deleted file mode 100644 index 34abb2c9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageMarkInPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageMarkInPosition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.07020103.010e0000'; - - protected $Name = 'PackageMarkInPosition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Mark In Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageMarkOutPosition.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageMarkOutPosition.php deleted file mode 100644 index b374df27c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageMarkOutPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageMarkOutPosition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.07020103.02040000'; - - protected $Name = 'PackageMarkOutPosition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Mark Out Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageMarker.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageMarker.php deleted file mode 100644 index 3c38f3267..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageMarker.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageMarker extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.020f0000'; - - protected $Name = 'PackageMarker'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Marker'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageName.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageName.php deleted file mode 100644 index 18bfa38d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PackageName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Package Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageTimelineMarkerRef.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageTimelineMarkerRef.php deleted file mode 100644 index 4bb2880a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageTimelineMarkerRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageTimelineMarkerRef extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.02100000'; - - protected $Name = 'PackageTimelineMarkerRef'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Timeline Marker Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageTracks.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageTracks.php deleted file mode 100644 index 39c55844b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageTracks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageTracks extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06070000'; - - protected $Name = 'PackageTracks'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Tracks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageUsageKind.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageUsageKind.php deleted file mode 100644 index fae2e8b76..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageUsageKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageUsageKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.05010108.00000000'; - - protected $Name = 'PackageUsageKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package Usage Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PackageUserComments.php b/lib/PHPExiftool/Driver/Tag/MXF/PackageUserComments.php deleted file mode 100644 index 6d780017b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PackageUserComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackageUserComments extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03020102.0c000000'; - - protected $Name = 'PackageUserComments'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Package User Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Packages.php b/lib/PHPExiftool/Driver/Tag/MXF/Packages.php deleted file mode 100644 index fb8cde952..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Packages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Packages extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05010000'; - - protected $Name = 'Packages'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Packages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PaddingBits.php b/lib/PHPExiftool/Driver/Tag/MXF/PaddingBits.php deleted file mode 100644 index 50881ae2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PaddingBits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaddingBits extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04180104.00000000'; - - protected $Name = 'PaddingBits'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Padding Bits'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Palette.php b/lib/PHPExiftool/Driver/Tag/MXF/Palette.php deleted file mode 100644 index 9af31c3af..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Palette.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Palette extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010503.08000000'; - - protected $Name = 'Palette'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Palette'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PaletteLayout.php b/lib/PHPExiftool/Driver/Tag/MXF/PaletteLayout.php deleted file mode 100644 index 636c24f72..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PaletteLayout.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteLayout extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010503.09000000'; - - protected $Name = 'PaletteLayout'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Palette Layout'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PanScanInformation.php b/lib/PHPExiftool/Driver/Tag/MXF/PanScanInformation.php deleted file mode 100644 index bfee80db8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PanScanInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanScanInformation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010101.0a000000'; - - protected $Name = 'PanScanInformation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pan Scan Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ParameterDataType.php b/lib/PHPExiftool/Driver/Tag/MXF/ParameterDataType.php deleted file mode 100644 index 84f449a8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ParameterDataType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParameterDataType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.01060000'; - - protected $Name = 'ParameterDataType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parameter Data Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ParameterDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/ParameterDefinition.php deleted file mode 100644 index 5be1c8e37..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ParameterDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParameterDefinition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.01040000'; - - protected $Name = 'ParameterDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parameter Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ParameterDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/ParameterDefinitions.php deleted file mode 100644 index dad2154dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ParameterDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParameterDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05040000'; - - protected $Name = 'ParameterDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parameter Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Parameters.php b/lib/PHPExiftool/Driver/Tag/MXF/Parameters.php deleted file mode 100644 index bb442afb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Parameters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Parameters extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.060a0000'; - - protected $Name = 'Parameters'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parameters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ParentClass.php b/lib/PHPExiftool/Driver/Tag/MXF/ParentClass.php deleted file mode 100644 index b088e3402..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ParentClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentClass extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.01000000'; - - protected $Name = 'ParentClass'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parent Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ParticipantID.php b/lib/PHPExiftool/Driver/Tag/MXF/ParticipantID.php deleted file mode 100644 index 9d972ef3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ParticipantID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParticipantID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.01011540.01010000'; - - protected $Name = 'ParticipantID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Participant ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ParticipantOrganizationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ParticipantOrganizationSets.php deleted file mode 100644 index 5efe4f76f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ParticipantOrganizationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParticipantOrganizationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.03401501'; - - protected $Name = 'ParticipantOrganizationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Participant Organization Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PartitionMetadata.php b/lib/PHPExiftool/Driver/Tag/MXF/PartitionMetadata.php deleted file mode 100644 index 24bfc7c7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PartitionMetadata.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartitionMetadata extends AbstractTag -{ - - protected $Id = '060e2b34.0206.0101.0d010200.00000000'; - - protected $Name = 'PartitionMetadata'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partition Metadata'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Password.php b/lib/PHPExiftool/Driver/Tag/MXF/Password.php deleted file mode 100644 index 1281685e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Password.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Password extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Password'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Password'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountName.php b/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountName.php deleted file mode 100644 index 9b159139f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PayeeAccountName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060203.00000000'; - - protected $Name = 'PayeeAccountName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Payee Account Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountNumber.php deleted file mode 100644 index bf4e06928..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PayeeAccountNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060204.00000000'; - - protected $Name = 'PayeeAccountNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Payee Account Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountSortCode.php b/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountSortCode.php deleted file mode 100644 index e505b3c6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PayeeAccountSortCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PayeeAccountSortCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060205.00000000'; - - protected $Name = 'PayeeAccountSortCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Payee Account Sort Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountName.php b/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountName.php deleted file mode 100644 index 45a78f045..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PayerAccountName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060303.00000000'; - - protected $Name = 'PayerAccountName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Payer Account Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountNumber.php deleted file mode 100644 index 73b6a0f61..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PayerAccountNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060304.00000000'; - - protected $Name = 'PayerAccountNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Payer Account Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountSortCode.php b/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountSortCode.php deleted file mode 100644 index 866ac7cd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PayerAccountSortCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PayerAccountSortCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060305.00000000'; - - protected $Name = 'PayerAccountSortCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Payer Account Sort Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PaymentDueDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/PaymentDueDateTime.php deleted file mode 100644 index 4093608b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PaymentDueDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaymentDueDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07020120.04000000'; - - protected $Name = 'PaymentDueDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Payment Due Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PaymentsSets.php b/lib/PHPExiftool/Driver/Tag/MXF/PaymentsSets.php deleted file mode 100644 index da2621d6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PaymentsSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaymentsSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401b00'; - - protected $Name = 'PaymentsSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Payments Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakChannelCount.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakChannelCount.php deleted file mode 100644 index 568a7a3fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakChannelCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakChannelCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.0a000000'; - - protected $Name = 'PeakChannelCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Peak Channel Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelope.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelope.php deleted file mode 100644 index fd6fe8d80..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelope.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakEnvelope extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020301.05000000'; - - protected $Name = 'PeakEnvelope'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Peak Envelope'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeBlockSize.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeBlockSize.php deleted file mode 100644 index d2900bbff..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeBlockSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakEnvelopeBlockSize extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.09000000'; - - protected $Name = 'PeakEnvelopeBlockSize'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Peak Envelope Block Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeData.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeData.php deleted file mode 100644 index e97b514e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakEnvelopeData extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PeakEnvelopeData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Envelope Data'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeFormat.php deleted file mode 100644 index 77eb2dac8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakEnvelopeFormat extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.07000000'; - - protected $Name = 'PeakEnvelopeFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Peak Envelope Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeTimestamp.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeTimestamp.php deleted file mode 100644 index ecfbdabd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeTimestamp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakEnvelopeTimestamp extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.0d000000'; - - protected $Name = 'PeakEnvelopeTimestamp'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Peak Envelope Timestamp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeVersion.php deleted file mode 100644 index 6c1142916..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakEnvelopeVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakEnvelopeVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.06000000'; - - protected $Name = 'PeakEnvelopeVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Peak Envelope Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakFrameCount.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakFrameCount.php deleted file mode 100644 index 00523a38a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakFrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakFrameCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.0b000000'; - - protected $Name = 'PeakFrameCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Peak Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PeakOfPeaksPosition.php b/lib/PHPExiftool/Driver/Tag/MXF/PeakOfPeaksPosition.php deleted file mode 100644 index 36a45bc58..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PeakOfPeaksPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakOfPeaksPosition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.0c000000'; - - protected $Name = 'PeakOfPeaksPosition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Of Peaks Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PerceivedDisplayFormatCode.php b/lib/PHPExiftool/Driver/Tag/MXF/PerceivedDisplayFormatCode.php deleted file mode 100644 index 9566bbc00..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PerceivedDisplayFormatCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerceivedDisplayFormatCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010101.08010000'; - - protected $Name = 'PerceivedDisplayFormatCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Perceived Display Format Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PerceivedDisplayFormatName.php b/lib/PHPExiftool/Driver/Tag/MXF/PerceivedDisplayFormatName.php deleted file mode 100644 index 0cc86af92..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PerceivedDisplayFormatName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerceivedDisplayFormatName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010101.08000000'; - - protected $Name = 'PerceivedDisplayFormatName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Perceived Display Format Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PerforationsPerFrame.php b/lib/PHPExiftool/Driver/Tag/MXF/PerforationsPerFrame.php deleted file mode 100644 index 8c4415d12..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PerforationsPerFrame.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerforationsPerFrame extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PerforationsPerFrame'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Perforations Per Frame'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PersonDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/PersonDescription.php deleted file mode 100644 index 662405bd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PersonDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PersonDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Person Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PersonOrganizationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/PersonOrganizationSets.php deleted file mode 100644 index b43e6c08d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PersonOrganizationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonOrganizationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.03401502'; - - protected $Name = 'PersonOrganizationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Person Organization Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PersonSets.php b/lib/PHPExiftool/Driver/Tag/MXF/PersonSets.php deleted file mode 100644 index e67e00456..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PersonSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.03401400'; - - protected $Name = 'PersonSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Person Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PhysicalInstanceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/PhysicalInstanceKind.php deleted file mode 100644 index b359fb148..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PhysicalInstanceKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalInstanceKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010105.00000000'; - - protected $Name = 'PhysicalInstanceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Physical Instance Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PhysicalMediaLength.php b/lib/PHPExiftool/Driver/Tag/MXF/PhysicalMediaLength.php deleted file mode 100644 index f7adb246e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PhysicalMediaLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalMediaLength extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04100103.02010000'; - - protected $Name = 'PhysicalMediaLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Physical Media Length'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PhysicalMediaLocation.php b/lib/PHPExiftool/Driver/Tag/MXF/PhysicalMediaLocation.php deleted file mode 100644 index f71de8f9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PhysicalMediaLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalMediaLocation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01040102.00000000'; - - protected $Name = 'PhysicalMediaLocation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Physical Media Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PictureComponentSizing.php b/lib/PHPExiftool/Driver/Tag/MXF/PictureComponentSizing.php deleted file mode 100644 index bd3540dce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PictureComponentSizing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureComponentSizing extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.0b000000'; - - protected $Name = 'PictureComponentSizing'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Picture Component Sizing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PictureDisplayRate.php b/lib/PHPExiftool/Driver/Tag/MXF/PictureDisplayRate.php deleted file mode 100644 index 234e4cf9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PictureDisplayRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureDisplayRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010301.07000000'; - - protected $Name = 'PictureDisplayRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Picture Display Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PixelLayout.php b/lib/PHPExiftool/Driver/Tag/MXF/PixelLayout.php deleted file mode 100644 index 58d64e88b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PixelLayout.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelLayout extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010503.06000000'; - - protected $Name = 'PixelLayout'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Layout'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlaceKeyword.php b/lib/PHPExiftool/Driver/Tag/MXF/PlaceKeyword.php deleted file mode 100644 index ddfac6efc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlaceKeyword.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaceKeyword extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PlaceKeyword'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Place Keyword'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlaceName.php b/lib/PHPExiftool/Driver/Tag/MXF/PlaceName.php deleted file mode 100644 index 084dd4c9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlaceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaceName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PlaceName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Place Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlaintextOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/PlaintextOffset.php deleted file mode 100644 index b517a3541..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlaintextOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaintextOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06090201.03000000'; - - protected $Name = 'PlaintextOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Plaintext Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlatformDesignation.php b/lib/PHPExiftool/Driver/Tag/MXF/PlatformDesignation.php deleted file mode 100644 index 9b7321a9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlatformDesignation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlatformDesignation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PlatformDesignation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Platform Designation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlatformHeadingAngle.php b/lib/PHPExiftool/Driver/Tag/MXF/PlatformHeadingAngle.php deleted file mode 100644 index 02564c5e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlatformHeadingAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlatformHeadingAngle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07011001.06000000'; - - protected $Name = 'PlatformHeadingAngle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Platform Heading Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlatformModel.php b/lib/PHPExiftool/Driver/Tag/MXF/PlatformModel.php deleted file mode 100644 index 845fef9ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlatformModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlatformModel extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01012102.00000000'; - - protected $Name = 'PlatformModel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Platform Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlatformPitchAngle.php b/lib/PHPExiftool/Driver/Tag/MXF/PlatformPitchAngle.php deleted file mode 100644 index 9d794cc59..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlatformPitchAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlatformPitchAngle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07011001.05000000'; - - protected $Name = 'PlatformPitchAngle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Platform Pitch Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlatformRollAngle.php b/lib/PHPExiftool/Driver/Tag/MXF/PlatformRollAngle.php deleted file mode 100644 index 78e1d47b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlatformRollAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlatformRollAngle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07011001.04000000'; - - protected $Name = 'PlatformRollAngle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Platform Roll Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlatformSerialNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/PlatformSerialNumber.php deleted file mode 100644 index d8073cf46..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlatformSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlatformSerialNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01012103.00000000'; - - protected $Name = 'PlatformSerialNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Platform Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlugInAPIID.php b/lib/PHPExiftool/Driver/Tag/MXF/PlugInAPIID.php deleted file mode 100644 index cf833c474..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlugInAPIID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlugInAPIID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200908.00000000'; - - protected $Name = 'Plug-InAPIID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plug-In APIID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlugInCategoryID.php b/lib/PHPExiftool/Driver/Tag/MXF/PlugInCategoryID.php deleted file mode 100644 index 3965c1909..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlugInCategoryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlugInCategoryID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200901.00000000'; - - protected $Name = 'Plug-InCategoryID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plug-In Category ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlugInDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/PlugInDefinitions.php deleted file mode 100644 index 7e481b450..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlugInDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlugInDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.05060000'; - - protected $Name = 'Plug-InDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plug-In Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlugInEngineID.php b/lib/PHPExiftool/Driver/Tag/MXF/PlugInEngineID.php deleted file mode 100644 index a4c57206f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlugInEngineID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlugInEngineID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200905.00000000'; - - protected $Name = 'Plug-InEngineID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plug-In Engine ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlugInLocatorSet.php b/lib/PHPExiftool/Driver/Tag/MXF/PlugInLocatorSet.php deleted file mode 100644 index 1f5c5ea25..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlugInLocatorSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlugInLocatorSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0520090d.00000000'; - - protected $Name = 'Plug-InLocatorSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plug-In Locator Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PlugInPlatformID.php b/lib/PHPExiftool/Driver/Tag/MXF/PlugInPlatformID.php deleted file mode 100644 index b884b3433..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PlugInPlatformID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlugInPlatformID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200902.00000000'; - - protected $Name = 'Plug-InPlatformID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Plug-In Platform ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PointsPerPeakValue.php b/lib/PHPExiftool/Driver/Tag/MXF/PointsPerPeakValue.php deleted file mode 100644 index 24ee4c5dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PointsPerPeakValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PointsPerPeakValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04020301.08000000'; - - protected $Name = 'PointsPerPeakValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Points Per Peak Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PolarCharacteristic.php b/lib/PHPExiftool/Driver/Tag/MXF/PolarCharacteristic.php deleted file mode 100644 index a5dbab411..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PolarCharacteristic.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PolarCharacteristic extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04200302.00000000'; - - protected $Name = 'PolarCharacteristic'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Polar Characteristic'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PosTableArray.php b/lib/PHPExiftool/Driver/Tag/MXF/PosTableArray.php deleted file mode 100644 index c3f2fe310..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PosTableArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PosTableArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040401.08000000'; - - protected $Name = 'PosTableArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pos Table Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PositionInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/PositionInSequence.php deleted file mode 100644 index 932921799..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PositionInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionInSequence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.06100100.00000000'; - - protected $Name = 'PositionInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Position In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PositionTable.php b/lib/PHPExiftool/Driver/Tag/MXF/PositionTable.php deleted file mode 100644 index e2dc663e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PositionTable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionTable extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040401.08000000'; - - protected $Name = 'PositionTable'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Position Table'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PositionTableCount.php b/lib/PHPExiftool/Driver/Tag/MXF/PositionTableCount.php deleted file mode 100644 index 71c872946..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PositionTableCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionTableCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04040401.07000000'; - - protected $Name = 'PositionTableCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Position Table Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PositionTableIndexing.php b/lib/PHPExiftool/Driver/Tag/MXF/PositionTableIndexing.php deleted file mode 100644 index 112f2956a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PositionTableIndexing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionTableIndexing extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040401.04000000'; - - protected $Name = 'PositionTableIndexing'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Position Table Indexing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PositionWithinViewportImageXCoordinate.php b/lib/PHPExiftool/Driver/Tag/MXF/PositionWithinViewportImageXCoordinate.php deleted file mode 100644 index 660d4bc94..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PositionWithinViewportImageXCoordinate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionWithinViewportImageXCoordinate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010203.01000000'; - - protected $Name = 'PositionWithinViewportImageXCoordinate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Position Within Viewport Image X Coordinate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PositionWithinViewportImageYCoordinate.php b/lib/PHPExiftool/Driver/Tag/MXF/PositionWithinViewportImageYCoordinate.php deleted file mode 100644 index 365a89aff..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PositionWithinViewportImageYCoordinate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PositionWithinViewportImageYCoordinate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010203.02000000'; - - protected $Name = 'PositionWithinViewportImageYCoordinate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Position Within Viewport Image Y Coordinate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PostCodeForPostbox.php b/lib/PHPExiftool/Driver/Tag/MXF/PostCodeForPostbox.php deleted file mode 100644 index 884db6eb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PostCodeForPostbox.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostCodeForPostbox extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0b02.00000000'; - - protected $Name = 'PostCodeForPostbox'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Post Code For Postbox'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PostalCode.php b/lib/PHPExiftool/Driver/Tag/MXF/PostalCode.php deleted file mode 100644 index 5f2e8cc19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostalCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PostalCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PostalTown.php b/lib/PHPExiftool/Driver/Tag/MXF/PostalTown.php deleted file mode 100644 index f14482968..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PostalTown.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostalTown extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PostalTown'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Postal Town'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PostboxNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/PostboxNumber.php deleted file mode 100644 index b44d9afbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PostboxNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostboxNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0b01.00000000'; - - protected $Name = 'PostboxNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Postbox Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PresentationAspectRatio.php b/lib/PHPExiftool/Driver/Tag/MXF/PresentationAspectRatio.php deleted file mode 100644 index e6229bfe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PresentationAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationAspectRatio extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010101.01000000'; - - protected $Name = 'PresentationAspectRatio'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Presentation Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PresentationGammaEquation.php b/lib/PHPExiftool/Driver/Tag/MXF/PresentationGammaEquation.php deleted file mode 100644 index 15d114eec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PresentationGammaEquation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationGammaEquation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PresentationGammaEquation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Presentation Gamma Equation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PresenterName.php b/lib/PHPExiftool/Driver/Tag/MXF/PresenterName.php deleted file mode 100644 index 4944799b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PresenterName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresenterName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0a05.00000000'; - - protected $Name = 'PresenterName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presenter Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PreviousNumberInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/PreviousNumberInSequence.php deleted file mode 100644 index e708133e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PreviousNumberInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviousNumberInSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviousNumberInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Previous Number In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PreviousRepeatNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/PreviousRepeatNumber.php deleted file mode 100644 index d029fa4aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PreviousRepeatNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviousRepeatNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02200202.00000000'; - - protected $Name = 'PreviousRepeatNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Previous Repeat Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PrimaryExtendedSpokenLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/PrimaryExtendedSpokenLanguageCode.php deleted file mode 100644 index ac2cd9fd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PrimaryExtendedSpokenLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryExtendedSpokenLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010102.03110000'; - - protected $Name = 'PrimaryExtendedSpokenLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Primary Extended Spoken Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PrimaryOriginalLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/PrimaryOriginalLanguageCode.php deleted file mode 100644 index 81c84d8fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PrimaryOriginalLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryOriginalLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010102.03030000'; - - protected $Name = 'PrimaryOriginalLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Primary Original Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PrimaryPackage.php b/lib/PHPExiftool/Driver/Tag/MXF/PrimaryPackage.php deleted file mode 100644 index 256b87333..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PrimaryPackage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryPackage extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.06010104.01080000'; - - protected $Name = 'PrimaryPackage'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Package'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PrimarySpokenLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/PrimarySpokenLanguageCode.php deleted file mode 100644 index 7df4fbcf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PrimarySpokenLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimarySpokenLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010102.03010000'; - - protected $Name = 'PrimarySpokenLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Primary Spoken Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProcessingSet.php b/lib/PHPExiftool/Driver/Tag/MXF/ProcessingSet.php deleted file mode 100644 index d5e6a9eee..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProcessingSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcessingSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02402000'; - - protected $Name = 'ProcessingSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Processing Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProducerName.php b/lib/PHPExiftool/Driver/Tag/MXF/ProducerName.php deleted file mode 100644 index 5dbad5540..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProducerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProducerName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0a02.00000000'; - - protected $Name = 'ProducerName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProductFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/ProductFormat.php deleted file mode 100644 index abfc6e161..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProductFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductFormat extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ProductFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Product Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProductionOrganizationRole.php b/lib/PHPExiftool/Driver/Tag/MXF/ProductionOrganizationRole.php deleted file mode 100644 index 7ccfa268c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProductionOrganizationRole.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionOrganizationRole extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ProductionOrganizationRole'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Production Organization Role'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProductionScriptReference.php b/lib/PHPExiftool/Driver/Tag/MXF/ProductionScriptReference.php deleted file mode 100644 index 707c62272..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProductionScriptReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionScriptReference extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ProductionScriptReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Production Script Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProductionSettingPeriodSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ProductionSettingPeriodSets.php deleted file mode 100644 index 946e0dc65..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProductionSettingPeriodSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionSettingPeriodSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400e01'; - - protected $Name = 'ProductionSettingPeriodSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Production Setting Period Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProfileAndLevel.php b/lib/PHPExiftool/Driver/Tag/MXF/ProfileAndLevel.php deleted file mode 100644 index 5b13bf3ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProfileAndLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileAndLevel extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.010a0000'; - - protected $Name = 'ProfileAndLevel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Profile And Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramAwardName.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramAwardName.php deleted file mode 100644 index fdef6c080..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramAwardName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramAwardName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020201.02000000'; - - protected $Name = 'ProgramAwardName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Program Award Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramCommercialMaterialReference.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramCommercialMaterialReference.php deleted file mode 100644 index 6e300c308..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramCommercialMaterialReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramCommercialMaterialReference extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.06020300.00000000'; - - protected $Name = 'ProgramCommercialMaterialReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Program Commercial Material Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramIdentifier.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramIdentifier.php deleted file mode 100644 index 309ce3887..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramIdentifier extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010100'; - - protected $Name = 'ProgramIdentifier'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Program Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramIdentifierString.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramIdentifierString.php deleted file mode 100644 index c0024efdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramIdentifierString.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramIdentifierString extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010200'; - - protected $Name = 'ProgramIdentifierString'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Program Identifier String'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramKind.php deleted file mode 100644 index f84fc7467..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020101.02000000'; - - protected $Name = 'ProgramKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Program Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramMaterialClassificationCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramMaterialClassificationCode.php deleted file mode 100644 index 45d6cc25a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramMaterialClassificationCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramMaterialClassificationCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03020101.10000000'; - - protected $Name = 'ProgramMaterialClassificationCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Program Material Classification Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramNumber.php deleted file mode 100644 index f7aac7c46..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01011003.03000000'; - - protected $Name = 'ProgramNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Program Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgramSupportMaterialReference.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgramSupportMaterialReference.php deleted file mode 100644 index 2ad96aead..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgramSupportMaterialReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramSupportMaterialReference extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.06020100.00000000'; - - protected $Name = 'ProgramSupportMaterialReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Program Support Material Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgrammingGroupKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgrammingGroupKind.php deleted file mode 100644 index 099bba300..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgrammingGroupKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgrammingGroupKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ProgrammingGroupKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Programming Group Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProgrammingGroupTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/ProgrammingGroupTitle.php deleted file mode 100644 index 83477a783..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProgrammingGroupTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgrammingGroupTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ProgrammingGroupTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Programming Group Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProjectName.php b/lib/PHPExiftool/Driver/Tag/MXF/ProjectName.php deleted file mode 100644 index e8d33c465..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProjectName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ProjectName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Project Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProjectNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/ProjectNumber.php deleted file mode 100644 index 40bd9983e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProjectNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01030106.00000000'; - - protected $Name = 'ProjectNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Project Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ProjectSet.php b/lib/PHPExiftool/Driver/Tag/MXF/ProjectSet.php deleted file mode 100644 index 039f5b59f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ProjectSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02402100'; - - protected $Name = 'ProjectSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Project Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Properties.php b/lib/PHPExiftool/Driver/Tag/MXF/Properties.php deleted file mode 100644 index 7b7ddafc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Properties.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Properties extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.02000000'; - - protected $Name = 'Properties'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Properties'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PropertyType.php b/lib/PHPExiftool/Driver/Tag/MXF/PropertyType.php deleted file mode 100644 index ee8b136dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PropertyType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PropertyType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.04000000'; - - protected $Name = 'PropertyType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Property Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PublicationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/PublicationSets.php deleted file mode 100644 index 79f9926ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PublicationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublicationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400a00'; - - protected $Name = 'PublicationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publication Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PublishingMediumName.php b/lib/PHPExiftool/Driver/Tag/MXF/PublishingMediumName.php deleted file mode 100644 index 40e276c73..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PublishingMediumName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublishingMediumName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PublishingMediumName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Publishing Medium Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PublishingOrganizationName.php b/lib/PHPExiftool/Driver/Tag/MXF/PublishingOrganizationName.php deleted file mode 100644 index 0ed2e5b3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PublishingOrganizationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublishingOrganizationName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PublishingOrganizationName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Publishing Organization Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PublishingRegionName.php b/lib/PHPExiftool/Driver/Tag/MXF/PublishingRegionName.php deleted file mode 100644 index a833d3531..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PublishingRegionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublishingRegionName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PublishingRegionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Publishing Region Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PublishingServiceName.php b/lib/PHPExiftool/Driver/Tag/MXF/PublishingServiceName.php deleted file mode 100644 index 1fdbf99b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PublishingServiceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublishingServiceName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PublishingServiceName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Publishing Service Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PulldownFieldDominance.php b/lib/PHPExiftool/Driver/Tag/MXF/PulldownFieldDominance.php deleted file mode 100644 index e7d4ad6a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PulldownFieldDominance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulldownFieldDominance extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010801.02000000'; - - protected $Name = 'PulldownFieldDominance'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulldown Field Dominance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PulldownSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/PulldownSequence.php deleted file mode 100644 index 3c630db49..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PulldownSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PulldownSequence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010801.01000000'; - - protected $Name = 'PulldownSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pulldown Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserAccountName.php b/lib/PHPExiftool/Driver/Tag/MXF/PurchaserAccountName.php deleted file mode 100644 index 12ad3e093..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserAccountName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchaserAccountName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PurchaserAccountName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Purchaser Account Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserAccountNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/PurchaserAccountNumber.php deleted file mode 100644 index ee94ada0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserAccountNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchaserAccountNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02030700.00000000'; - - protected $Name = 'PurchaserAccountNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Purchaser Account Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserIdentificationKind.php b/lib/PHPExiftool/Driver/Tag/MXF/PurchaserIdentificationKind.php deleted file mode 100644 index 95fd9288b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserIdentificationKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchaserIdentificationKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02030500.00000000'; - - protected $Name = 'PurchaserIdentificationKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Purchaser Identification Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserIdentificationValue.php b/lib/PHPExiftool/Driver/Tag/MXF/PurchaserIdentificationValue.php deleted file mode 100644 index 22be58368..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PurchaserIdentificationValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchaserIdentificationValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02030600.00000000'; - - protected $Name = 'PurchaserIdentificationValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Purchaser Identification Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PurchasingDepartment.php b/lib/PHPExiftool/Driver/Tag/MXF/PurchasingDepartment.php deleted file mode 100644 index 5fe68f2b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PurchasingDepartment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchasingDepartment extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02030400.00000000'; - - protected $Name = 'PurchasingDepartment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Purchasing Department'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/PurchasingOrganizationName.php b/lib/PHPExiftool/Driver/Tag/MXF/PurchasingOrganizationName.php deleted file mode 100644 index c35d7df68..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/PurchasingOrganizationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchasingOrganizationName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02030100.00000000'; - - protected $Name = 'PurchasingOrganizationName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Purchasing Organization Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Purpose.php b/lib/PHPExiftool/Driver/Tag/MXF/Purpose.php deleted file mode 100644 index 1653ea70a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Purpose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Purpose extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Purpose'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Purpose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QltyBasicData.php b/lib/PHPExiftool/Driver/Tag/MXF/QltyBasicData.php deleted file mode 100644 index 1c403f53f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QltyBasicData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QltyBasicData extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'QltyBasicData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Qlty Basic Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QltyCueSheet.php b/lib/PHPExiftool/Driver/Tag/MXF/QltyCueSheet.php deleted file mode 100644 index f7d2accb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QltyCueSheet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QltyCueSheet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'QltyCueSheet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Qlty Cue Sheet'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QltyEndOfModulation.php b/lib/PHPExiftool/Driver/Tag/MXF/QltyEndOfModulation.php deleted file mode 100644 index 8232e97b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QltyEndOfModulation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QltyEndOfModulation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'QltyEndOfModulation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Qlty End Of Modulation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QltyOperatorComment.php b/lib/PHPExiftool/Driver/Tag/MXF/QltyOperatorComment.php deleted file mode 100644 index c6c62a26d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QltyOperatorComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QltyOperatorComment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'QltyOperatorComment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Qlty Operator Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QltyQualityEvent.php b/lib/PHPExiftool/Driver/Tag/MXF/QltyQualityEvent.php deleted file mode 100644 index e528c3272..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QltyQualityEvent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QltyQualityEvent extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'QltyQualityEvent'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Qlty Quality Event'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QltyQualityParameter.php b/lib/PHPExiftool/Driver/Tag/MXF/QltyQualityParameter.php deleted file mode 100644 index b5654663e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QltyQualityParameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QltyQualityParameter extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'QltyQualityParameter'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Qlty Quality Parameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QltyStartOfModulation.php b/lib/PHPExiftool/Driver/Tag/MXF/QltyStartOfModulation.php deleted file mode 100644 index 725603bad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QltyStartOfModulation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QltyStartOfModulation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'QltyStartOfModulation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Qlty Start Of Modulation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QualityFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/QualityFlag.php deleted file mode 100644 index c1059f671..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QualityFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QualityFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010103.00000000'; - - protected $Name = 'QualityFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quality Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/QuantizationDefault.php b/lib/PHPExiftool/Driver/Tag/MXF/QuantizationDefault.php deleted file mode 100644 index 076d12b36..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/QuantizationDefault.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuantizationDefault extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.0d000000'; - - protected $Name = 'QuantizationDefault'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quantization Default'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkData.php b/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkData.php deleted file mode 100644 index 8c5288f2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RIFFChunkData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04070400.00000000'; - - protected $Name = 'RIFFChunkData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'RIFF Chunk Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkID.php b/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkID.php deleted file mode 100644 index 1b30d5583..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RIFFChunkID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04060802.00000000'; - - protected $Name = 'RIFFChunkID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'RIFF Chunk ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkLength.php b/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkLength.php deleted file mode 100644 index 97d4e1864..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RIFFChunkLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RIFFChunkLength extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.04060903.00000000'; - - protected $Name = 'RIFFChunkLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'RIFF Chunk Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RP217DataStreamPID.php b/lib/PHPExiftool/Driver/Tag/MXF/RP217DataStreamPID.php deleted file mode 100644 index 8162d245f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RP217DataStreamPID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RP217DataStreamPID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.01030406.00000000'; - - protected $Name = 'RP217DataStreamPID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'RP217 Data Stream PID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RP217VideoStreamPID.php b/lib/PHPExiftool/Driver/Tag/MXF/RP217VideoStreamPID.php deleted file mode 100644 index 36ca4d4b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RP217VideoStreamPID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RP217VideoStreamPID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.01030407.00000000'; - - protected $Name = 'RP217VideoStreamPID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'RP217 Video Stream PID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RandomIndexMetadata.php b/lib/PHPExiftool/Driver/Tag/MXF/RandomIndexMetadata.php deleted file mode 100644 index bd1097842..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RandomIndexMetadata.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RandomIndexMetadata extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01110100'; - - protected $Name = 'RandomIndexMetadata'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Random Index Metadata'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RandomIndexMetadataV10.php b/lib/PHPExiftool/Driver/Tag/MXF/RandomIndexMetadataV10.php deleted file mode 100644 index 98245da77..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RandomIndexMetadataV10.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RandomIndexMetadataV10 extends AbstractTag -{ - - protected $Id = '060e2b34.0205.0101.0d010201.01110000'; - - protected $Name = 'RandomIndexMetadataV10'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Random Index Metadata V10'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Rating.php b/lib/PHPExiftool/Driver/Tag/MXF/Rating.php deleted file mode 100644 index 0df2be240..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Rating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010800'; - - protected $Name = 'Rating'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RecordedFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/RecordedFormat.php deleted file mode 100644 index 35579e949..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RecordedFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedFormat extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RecordedFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Recorded Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RecordedTrackNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/RecordedTrackNumber.php deleted file mode 100644 index f51e960d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RecordedTrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedTrackNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01100307.00000000'; - - protected $Name = 'RecordedTrackNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Recorded Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RecordingLabelName.php b/lib/PHPExiftool/Driver/Tag/MXF/RecordingLabelName.php deleted file mode 100644 index 155ff2048..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RecordingLabelName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingLabelName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RecordingLabelName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Recording Label Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ReelOrRollNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/ReelOrRollNumber.php deleted file mode 100644 index 6eaa6af16..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ReelOrRollNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReelOrRollNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030201.01000000'; - - protected $Name = 'ReelOrRollNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Reel Or Roll Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/RegionCode.php deleted file mode 100644 index 82ac21680..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03010101.02000000'; - - protected $Name = 'RegionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Region Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegionName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegionName.php deleted file mode 100644 index 09b656f1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RegionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Region Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAction.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterAction.php deleted file mode 100644 index 27f5afef4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterAction extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.01000000'; - - protected $Name = 'RegisterAction'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Action'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationArray.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationArray.php deleted file mode 100644 index 7048140e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterAdministrationArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.06120000'; - - protected $Name = 'RegisterAdministrationArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Administration Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationNotes.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationNotes.php deleted file mode 100644 index 7550e0c5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterAdministrationNotes extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.08000000'; - - protected $Name = 'RegisterAdministrationNotes'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Administration Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationObject.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationObject.php deleted file mode 100644 index 11a4bda89..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterAdministrationObject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterAdministrationObject extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.02110000'; - - protected $Name = 'RegisterAdministrationObject'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Administration Object'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterApproverName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterApproverName.php deleted file mode 100644 index 717b7473e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterApproverName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterApproverName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.02000000'; - - protected $Name = 'RegisterApproverName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Approver Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterChildEntryArray.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterChildEntryArray.php deleted file mode 100644 index 68758a3b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterChildEntryArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterChildEntryArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.06140000'; - - protected $Name = 'RegisterChildEntryArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Child Entry Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterCreationTime.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterCreationTime.php deleted file mode 100644 index 813d5ea4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterCreationTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterCreationTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.03000000'; - - protected $Name = 'RegisterCreationTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Creation Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEditorName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterEditorName.php deleted file mode 100644 index 0bee76549..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEditorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterEditorName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100202.03000000'; - - protected $Name = 'RegisterEditorName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Editor Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryAdministrationObject.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryAdministrationObject.php deleted file mode 100644 index a80ad3264..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryAdministrationObject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterEntryAdministrationObject extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.02120000'; - - protected $Name = 'RegisterEntryAdministrationObject'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Entry Administration Object'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryArray.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryArray.php deleted file mode 100644 index d4c2d691c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterEntryArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010104.06110000'; - - protected $Name = 'RegisterEntryArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Entry Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryStatus.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryStatus.php deleted file mode 100644 index 3c62589e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterEntryStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterEntryStatus extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.0a000000'; - - protected $Name = 'RegisterEntryStatus'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Entry Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemDefiningDocumentName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemDefiningDocumentName.php deleted file mode 100644 index 344e694be..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemDefiningDocumentName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemDefiningDocumentName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.04000000'; - - protected $Name = 'RegisterItemDefiningDocumentName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item Defining Document Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemDefinition.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemDefinition.php deleted file mode 100644 index 441b5b856..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemDefinition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemDefinition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.02000000'; - - protected $Name = 'RegisterItemDefinition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item Definition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemHierarchyLevel.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemHierarchyLevel.php deleted file mode 100644 index 562a8cc93..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemHierarchyLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemHierarchyLevel extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.08000000'; - - protected $Name = 'RegisterItemHierarchyLevel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Register Item Hierarchy Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemIntroductionVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemIntroductionVersion.php deleted file mode 100644 index 80280c35e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemIntroductionVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemIntroductionVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.07000000'; - - protected $Name = 'RegisterItemIntroductionVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Register Item Introduction Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemName.php deleted file mode 100644 index 90baadf1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.01000000'; - - protected $Name = 'RegisterItemName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemNotes.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemNotes.php deleted file mode 100644 index eb7a3d708..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemNotes extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.06000000'; - - protected $Name = 'RegisterItemNotes'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemOriginatorName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemOriginatorName.php deleted file mode 100644 index dbc8ad6e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemOriginatorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemOriginatorName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.05000000'; - - protected $Name = 'RegisterItemOriginatorName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item Originator Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemStatusChangeDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemStatusChangeDateTime.php deleted file mode 100644 index 4ed1687a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemStatusChangeDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemStatusChangeDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.07020101.01070000'; - - protected $Name = 'RegisterItemStatusChangeDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item Status Change Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemSymbol.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemSymbol.php deleted file mode 100644 index c0641068d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemSymbol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemSymbol extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.03000000'; - - protected $Name = 'RegisterItemSymbol'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item Symbol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemUL.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemUL.php deleted file mode 100644 index b13411589..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterItemUL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterItemUL extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100203.05000000'; - - protected $Name = 'RegisterItemUL'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Item UL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterKind.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterKind.php deleted file mode 100644 index e6ebec738..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100202.01000000'; - - protected $Name = 'RegisterKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterReleaseDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterReleaseDateTime.php deleted file mode 100644 index 849de53f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterReleaseDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterReleaseDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.07020101.01060000'; - - protected $Name = 'RegisterReleaseDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Release Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterStatusKind.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterStatusKind.php deleted file mode 100644 index 846c55b15..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterStatusKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterStatusKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100202.04000000'; - - protected $Name = 'RegisterStatusKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Status Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterUserName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterUserName.php deleted file mode 100644 index 70d5a2ad0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterUserName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterUserName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.06000000'; - - protected $Name = 'RegisterUserName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register User Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterUserTime.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterUserTime.php deleted file mode 100644 index 68ebe7592..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterUserTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterUserTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.07000000'; - - protected $Name = 'RegisterUserTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register User Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegisterVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/RegisterVersion.php deleted file mode 100644 index 3e82c1536..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegisterVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegisterVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100202.02000000'; - - protected $Name = 'RegisterVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Register Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RegistrantName.php b/lib/PHPExiftool/Driver/Tag/MXF/RegistrantName.php deleted file mode 100644 index 572a3ec70..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RegistrantName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegistrantName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.02100204.04000000'; - - protected $Name = 'RegistrantName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Registrant Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RelatedMaterialDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/RelatedMaterialDescription.php deleted file mode 100644 index 049ec4632..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RelatedMaterialDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedMaterialDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RelatedMaterialDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Related Material Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RelatedMaterialLocators.php b/lib/PHPExiftool/Driver/Tag/MXF/RelatedMaterialLocators.php deleted file mode 100644 index 9c8eb8443..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RelatedMaterialLocators.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedMaterialLocators extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.060d0000'; - - protected $Name = 'RelatedMaterialLocators'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related Material Locators'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RelativePositionInSequenceName.php b/lib/PHPExiftool/Driver/Tag/MXF/RelativePositionInSequenceName.php deleted file mode 100644 index bd2eebe11..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RelativePositionInSequenceName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativePositionInSequenceName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.06100300.00000000'; - - protected $Name = 'RelativePositionInSequenceName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Relative Position In Sequence Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RelativePositionInSequenceOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/RelativePositionInSequenceOffset.php deleted file mode 100644 index b0311e2c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RelativePositionInSequenceOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativePositionInSequenceOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.06100200.00000000'; - - protected $Name = 'RelativePositionInSequenceOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Relative Position In Sequence Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RelativeScope.php b/lib/PHPExiftool/Driver/Tag/MXF/RelativeScope.php deleted file mode 100644 index da10794e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RelativeScope.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeScope extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010103.03000000'; - - protected $Name = 'RelativeScope'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Relative Scope'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RelativeTrack.php b/lib/PHPExiftool/Driver/Tag/MXF/RelativeTrack.php deleted file mode 100644 index 397972292..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RelativeTrack.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeTrack extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010103.04000000'; - - protected $Name = 'RelativeTrack'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Relative Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ReleasableCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ReleasableCountryCode.php deleted file mode 100644 index de72dae97..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ReleasableCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleasableCountryCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReleasableCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Releasable Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RenamedType.php b/lib/PHPExiftool/Driver/Tag/MXF/RenamedType.php deleted file mode 100644 index 0f4b99c19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RenamedType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenamedType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.12000000'; - - protected $Name = 'RenamedType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Renamed Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ResourceID.php b/lib/PHPExiftool/Driver/Tag/MXF/ResourceID.php deleted file mode 100644 index d6bb992ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ResourceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResourceID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.01011512.00000000'; - - protected $Name = 'ResourceID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resource ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RestrictionsonUse.php b/lib/PHPExiftool/Driver/Tag/MXF/RestrictionsonUse.php deleted file mode 100644 index 8ba37c819..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RestrictionsonUse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RestrictionsonUse extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02070100.00000000'; - - protected $Name = 'RestrictionsonUse'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Restrictionson Use'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ReversePlay.php b/lib/PHPExiftool/Driver/Tag/MXF/ReversePlay.php deleted file mode 100644 index 05f8e102a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ReversePlay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReversePlay extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.06090201.02000000'; - - protected $Name = 'ReversePlay'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Reverse Play'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ReversedByteOrder.php b/lib/PHPExiftool/Driver/Tag/MXF/ReversedByteOrder.php deleted file mode 100644 index 5c0afb2e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ReversedByteOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReversedByteOrder extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.03010201.0a000000'; - - protected $Name = 'ReversedByteOrder'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reversed Byte Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RightsComment.php b/lib/PHPExiftool/Driver/Tag/MXF/RightsComment.php deleted file mode 100644 index d3a9801ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RightsComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsComment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RightsComment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Rights Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RightsConditionDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/RightsConditionDescription.php deleted file mode 100644 index 2b0eadded..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RightsConditionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsConditionDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RightsConditionDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Rights Condition Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RightsManagementAuthority.php b/lib/PHPExiftool/Driver/Tag/MXF/RightsManagementAuthority.php deleted file mode 100644 index 7fc619f7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RightsManagementAuthority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsManagementAuthority extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RightsManagementAuthority'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Rights Management Authority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RightsSets.php b/lib/PHPExiftool/Driver/Tag/MXF/RightsSets.php deleted file mode 100644 index 61d96e5ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RightsSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401a00'; - - protected $Name = 'RightsSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rights Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RightsStartDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/RightsStartDateTime.php deleted file mode 100644 index 621a8b07a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RightsStartDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsStartDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07020120.02000000'; - - protected $Name = 'RightsStartDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rights Start Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RightsStopDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/RightsStopDateTime.php deleted file mode 100644 index 759cda35a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RightsStopDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsStopDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07020120.03000000'; - - protected $Name = 'RightsStopDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rights Stop Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Rightsholder.php b/lib/PHPExiftool/Driver/Tag/MXF/Rightsholder.php deleted file mode 100644 index 1a1370576..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Rightsholder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rightsholder extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Rightsholder'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Rightsholder'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoleName.php b/lib/PHPExiftool/Driver/Tag/MXF/RoleName.php deleted file mode 100644 index 682153b67..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoleName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoleName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RoleName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Role Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoomNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/RoomNumber.php deleted file mode 100644 index 39274a5f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoomNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoomNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RoomNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Room Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoomOrSuiteName.php b/lib/PHPExiftool/Driver/Tag/MXF/RoomOrSuiteName.php deleted file mode 100644 index 7b9ffbead..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoomOrSuiteName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoomOrSuiteName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RoomOrSuiteName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Room Or Suite Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RootFormatVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/RootFormatVersion.php deleted file mode 100644 index 02c7d71f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RootFormatVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RootFormatVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.06010107.19000000'; - - protected $Name = 'RootFormatVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Root Format Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RootMetaDictionary.php b/lib/PHPExiftool/Driver/Tag/MXF/RootMetaDictionary.php deleted file mode 100644 index 22efec289..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RootMetaDictionary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RootMetaDictionary extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.06010107.16000000'; - - protected $Name = 'RootMetaDictionary'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Root Meta Dictionary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RootObjectDirectory.php b/lib/PHPExiftool/Driver/Tag/MXF/RootObjectDirectory.php deleted file mode 100644 index cf9ac25d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RootObjectDirectory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RootObjectDirectory extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.06010107.18000000'; - - protected $Name = 'RootObjectDirectory'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Root Object Directory'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RootPreface.php b/lib/PHPExiftool/Driver/Tag/MXF/RootPreface.php deleted file mode 100644 index 3e298c47c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RootPreface.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RootPreface extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.06010107.17000000'; - - protected $Name = 'RootPreface'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Root Preface'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoundedCaptureFilmFrameRate.php b/lib/PHPExiftool/Driver/Tag/MXF/RoundedCaptureFilmFrameRate.php deleted file mode 100644 index 3a35ccac1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoundedCaptureFilmFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoundedCaptureFilmFrameRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010802.03000000'; - - protected $Name = 'RoundedCaptureFilmFrameRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Rounded Capture Film Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoundedTimecodeTimebase.php b/lib/PHPExiftool/Driver/Tag/MXF/RoundedTimecodeTimebase.php deleted file mode 100644 index 881f0091e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoundedTimecodeTimebase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoundedTimecodeTimebase extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04040101.02060000'; - - protected $Name = 'RoundedTimecodeTimebase'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Rounded Timecode Timebase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoundingLaw.php b/lib/PHPExiftool/Driver/Tag/MXF/RoundingLaw.php deleted file mode 100644 index d73bb4c95..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoundingLaw.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoundingLaw extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04020303.02000000'; - - protected $Name = 'RoundingLaw'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Rounding Law'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoundingMethodCode.php b/lib/PHPExiftool/Driver/Tag/MXF/RoundingMethodCode.php deleted file mode 100644 index 84dd3651b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoundingMethodCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoundingMethodCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010503.02000000'; - - protected $Name = 'RoundingMethodCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Rounding Method Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoyaltyIncomeInformation.php b/lib/PHPExiftool/Driver/Tag/MXF/RoyaltyIncomeInformation.php deleted file mode 100644 index c2a9a73a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoyaltyIncomeInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoyaltyIncomeInformation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02060301.00000000'; - - protected $Name = 'RoyaltyIncomeInformation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Royalty Income Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/RoyaltyPaymentInformation.php b/lib/PHPExiftool/Driver/Tag/MXF/RoyaltyPaymentInformation.php deleted file mode 100644 index fc6993867..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/RoyaltyPaymentInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoyaltyPaymentInformation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02060201.00000000'; - - protected $Name = 'RoyaltyPaymentInformation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Royalty Payment Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Rsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/Rsiz.php deleted file mode 100644 index ee9a61ecf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Rsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.01000000'; - - protected $Name = 'Rsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Rsiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SDKVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/SDKVersion.php deleted file mode 100644 index ba64a7846..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SDKVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SDKVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010201.05000000'; - - protected $Name = 'SDKVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SDK Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SICI.php b/lib/PHPExiftool/Driver/Tag/MXF/SICI.php deleted file mode 100644 index d42f715a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SICI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SICI extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011301.00000000'; - - protected $Name = 'SICI'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SICI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SMPTE12MUserDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/SMPTE12MUserDateTime.php deleted file mode 100644 index b6f0e320a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SMPTE12MUserDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SMPTE12MUserDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020101.01040000'; - - protected $Name = 'SMPTE12MUserDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SMPTE12M User Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SMPTE309MUserDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/SMPTE309MUserDateTime.php deleted file mode 100644 index 4ab6d0059..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SMPTE309MUserDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SMPTE309MUserDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020101.01030000'; - - protected $Name = 'SMPTE309MUserDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SMPTE309M User Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SMPTE337MDataStreamNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SMPTE337MDataStreamNumber.php deleted file mode 100644 index 34d5fe936..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SMPTE337MDataStreamNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SMPTE337MDataStreamNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04020501.08000000'; - - protected $Name = 'SMPTE337MDataStreamNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'SMPTE337M Data Stream Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SMPTEUL.php b/lib/PHPExiftool/Driver/Tag/MXF/SMPTEUL.php deleted file mode 100644 index d185009ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SMPTEUL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SMPTEUL extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.01020201.00000000'; - - protected $Name = 'SMPTEUL'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SMPTEUL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SalesContractNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SalesContractNumber.php deleted file mode 100644 index 9640d5841..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SalesContractNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SalesContractNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02030200.00000000'; - - protected $Name = 'SalesContractNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sales Contract Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Salutation.php b/lib/PHPExiftool/Driver/Tag/MXF/Salutation.php deleted file mode 100644 index 8b92e6d1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Salutation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Salutation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Salutation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Salutation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SampleIndex.php b/lib/PHPExiftool/Driver/Tag/MXF/SampleIndex.php deleted file mode 100644 index c7a1028d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SampleIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleIndex extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010102.01000000'; - - protected $Name = 'SampleIndex'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SampleRate.php b/lib/PHPExiftool/Driver/Tag/MXF/SampleRate.php deleted file mode 100644 index 4deea60b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04060101.00000000'; - - protected $Name = 'SampleRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SampledHeight.php b/lib/PHPExiftool/Driver/Tag/MXF/SampledHeight.php deleted file mode 100644 index 3c8285528..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SampledHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampledHeight extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.07000000'; - - protected $Name = 'SampledHeight'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sampled Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SampledWidth.php b/lib/PHPExiftool/Driver/Tag/MXF/SampledWidth.php deleted file mode 100644 index 0b1505556..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SampledWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampledWidth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.08000000'; - - protected $Name = 'SampledWidth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sampled Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SampledXOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/SampledXOffset.php deleted file mode 100644 index c2da62f2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SampledXOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampledXOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.09000000'; - - protected $Name = 'SampledXOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Sampled X Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SampledYOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/SampledYOffset.php deleted file mode 100644 index 63b2a8bb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SampledYOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampledYOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.0a000000'; - - protected $Name = 'SampledYOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Sampled Y Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SamplingHierarchyCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SamplingHierarchyCode.php deleted file mode 100644 index ef5980a64..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SamplingHierarchyCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamplingHierarchyCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.04000000'; - - protected $Name = 'SamplingHierarchyCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sampling Hierarchy Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SamplingStructureCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SamplingStructureCode.php deleted file mode 100644 index daed6dca3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SamplingStructureCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamplingStructureCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010301.05000000'; - - protected $Name = 'SamplingStructureCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sampling Structure Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ScanningDirection.php b/lib/PHPExiftool/Driver/Tag/MXF/ScanningDirection.php deleted file mode 100644 index 33e9c4614..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ScanningDirection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanningDirection extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010404.01000000'; - - protected $Name = 'ScanningDirection'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Scanning Direction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SceneNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SceneNumber.php deleted file mode 100644 index af8c13c8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SceneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SceneNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Scene Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SceneSettingPeriodSets.php b/lib/PHPExiftool/Driver/Tag/MXF/SceneSettingPeriodSets.php deleted file mode 100644 index a40a43399..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SceneSettingPeriodSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneSettingPeriodSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400e02'; - - protected $Name = 'SceneSettingPeriodSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scene Setting Period Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SceneShotSets.php b/lib/PHPExiftool/Driver/Tag/MXF/SceneShotSets.php deleted file mode 100644 index 0c0854e13..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SceneShotSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneShotSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401101'; - - protected $Name = 'SceneShotSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scene Shot Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ScramblingKeyKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ScramblingKeyKind.php deleted file mode 100644 index 008490bac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ScramblingKeyKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScramblingKeyKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02090101.01000000'; - - protected $Name = 'ScramblingKeyKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scrambling Key Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ScramblingKeyValue.php b/lib/PHPExiftool/Driver/Tag/MXF/ScramblingKeyValue.php deleted file mode 100644 index be889d886..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ScramblingKeyValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScramblingKeyValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02090101.02000000'; - - protected $Name = 'ScramblingKeyValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Scrambling Key Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ScriptingKind.php deleted file mode 100644 index 064ff85bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScriptingKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ScriptingKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Scripting Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingLocators.php b/lib/PHPExiftool/Driver/Tag/MXF/ScriptingLocators.php deleted file mode 100644 index 732a5db3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingLocators.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScriptingLocators extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.06010104.060e0000'; - - protected $Name = 'ScriptingLocators'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scripting Locators'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ScriptingSets.php deleted file mode 100644 index 2cd2e2e2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScriptingSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400f00'; - - protected $Name = 'ScriptingSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scripting Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingText.php b/lib/PHPExiftool/Driver/Tag/MXF/ScriptingText.php deleted file mode 100644 index 7e38c0d44..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ScriptingText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScriptingText extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ScriptingText'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Scripting Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SeasonEpisodeNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SeasonEpisodeNumber.php deleted file mode 100644 index 9c15d127c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SeasonEpisodeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeasonEpisodeNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0606.00000000'; - - protected $Name = 'SeasonEpisodeNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Season Episode Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SeasonEpisodeTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/SeasonEpisodeTitle.php deleted file mode 100644 index 5811ec733..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SeasonEpisodeTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeasonEpisodeTitle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0607.00000000'; - - protected $Name = 'SeasonEpisodeTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Season Episode Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecondGivenName.php b/lib/PHPExiftool/Driver/Tag/MXF/SecondGivenName.php deleted file mode 100644 index 34fa9144e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecondGivenName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondGivenName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SecondGivenName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Second Given Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryExtendedSpokenLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SecondaryExtendedSpokenLanguageCode.php deleted file mode 100644 index 4121cff00..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryExtendedSpokenLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryExtendedSpokenLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010102.03120000'; - - protected $Name = 'SecondaryExtendedSpokenLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Secondary Extended Spoken Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryOriginalExtendedSpokenLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SecondaryOriginalExtendedSpokenLanguageCode.php deleted file mode 100644 index 4a38b5e7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryOriginalExtendedSpokenLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryOriginalExtendedSpokenLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.03010102.03140000'; - - protected $Name = 'SecondaryOriginalExtendedSpokenLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Secondary Original Extended Spoken Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryOriginalLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SecondaryOriginalLanguageCode.php deleted file mode 100644 index de986e855..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryOriginalLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryOriginalLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010102.03040000'; - - protected $Name = 'SecondaryOriginalLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Secondary Original Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecondarySpokenLanguageCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SecondarySpokenLanguageCode.php deleted file mode 100644 index 71f6ffe2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecondarySpokenLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondarySpokenLanguageCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010102.03020000'; - - protected $Name = 'SecondarySpokenLanguageCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Secondary Spoken Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/SecondaryTitle.php deleted file mode 100644 index b64995237..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecondaryTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SecondaryTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Secondary Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SectorSize.php b/lib/PHPExiftool/Driver/Tag/MXF/SectorSize.php deleted file mode 100644 index 9abe07a0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SectorSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SectorSize extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03010201.08000000'; - - protected $Name = 'SectorSize'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sector Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecurityClassification.php b/lib/PHPExiftool/Driver/Tag/MXF/SecurityClassification.php deleted file mode 100644 index a38d3e86a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecurityClassification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecurityClassification extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SecurityClassification'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Security Classification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SecurityClassificationCaveats.php b/lib/PHPExiftool/Driver/Tag/MXF/SecurityClassificationCaveats.php deleted file mode 100644 index 65dc30864..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SecurityClassificationCaveats.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecurityClassificationCaveats extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SecurityClassificationCaveats'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Security Classification Caveats'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Selected.php b/lib/PHPExiftool/Driver/Tag/MXF/Selected.php deleted file mode 100644 index 6aee35592..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Selected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Selected extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02090000'; - - protected $Name = 'Selected'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Selected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SensorMode.php b/lib/PHPExiftool/Driver/Tag/MXF/SensorMode.php deleted file mode 100644 index 06b0e7994..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SensorMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorMode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.04010202.01000000'; - - protected $Name = 'SensorMode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sensor Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SensorRollAngle.php b/lib/PHPExiftool/Driver/Tag/MXF/SensorRollAngle.php deleted file mode 100644 index 047e015ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SensorRollAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorRollAngle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07011001.01000000'; - - protected $Name = 'SensorRollAngle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Sensor Roll Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SensorSize.php b/lib/PHPExiftool/Driver/Tag/MXF/SensorSize.php deleted file mode 100644 index 801633c6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SensorSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorSize extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04200201.01050000'; - - protected $Name = 'SensorSize'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sensor Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SensorType.php b/lib/PHPExiftool/Driver/Tag/MXF/SensorType.php deleted file mode 100644 index 839060b47..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SensorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04200301.00000000'; - - protected $Name = 'SensorType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sensor Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SensorTypeCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SensorTypeCode.php deleted file mode 100644 index 2c873b072..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SensorTypeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTypeCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04200201.01070000'; - - protected $Name = 'SensorTypeCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sensor Type Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Sequence.php b/lib/PHPExiftool/Driver/Tag/MXF/Sequence.php deleted file mode 100644 index 0fdef1d05..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Sequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sequence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02040000'; - - protected $Name = 'Sequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SequenceOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/SequenceOffset.php deleted file mode 100644 index b28400605..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SequenceOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020302.02000000'; - - protected $Name = 'SequenceOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Sequence Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SeriesNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SeriesNumber.php deleted file mode 100644 index 338751f81..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SeriesNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SeriesNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Series Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SeriesinaSeriesGroupCount.php b/lib/PHPExiftool/Driver/Tag/MXF/SeriesinaSeriesGroupCount.php deleted file mode 100644 index d58c99087..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SeriesinaSeriesGroupCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesinaSeriesGroupCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02020200.00000000'; - - protected $Name = 'SeriesinaSeriesGroupCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Seriesina Series Group Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SetElementType.php b/lib/PHPExiftool/Driver/Tag/MXF/SetElementType.php deleted file mode 100644 index 338145bd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SetElementType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SetElementType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.0e000000'; - - protected $Name = 'SetElementType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Set Element Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingCityName.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingCityName.php deleted file mode 100644 index 4aebde2ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingCityName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingCityName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingCityName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting City Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingCountryCode.php deleted file mode 100644 index 779de668f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingCountryCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.02030000'; - - protected $Name = 'SettingCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Setting Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingCountryName.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingCountryName.php deleted file mode 100644 index e5540b721..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingCountryName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingCountryName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingCountryName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Country Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingDateTime.php deleted file mode 100644 index 1654cc673..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.07020108.02000000'; - - protected $Name = 'SettingDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setting Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingDescription.php deleted file mode 100644 index c90955ccf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingPeriodDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingPeriodDescription.php deleted file mode 100644 index 312cee968..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingPeriodDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingPeriodDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingPeriodDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Period Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingPostalCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingPostalCode.php deleted file mode 100644 index 4c791fb17..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingPostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingPostalCode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingPostalCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingRegionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingRegionCode.php deleted file mode 100644 index 5374e3b60..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingRegionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingRegionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.03030000'; - - protected $Name = 'SettingRegionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Setting Region Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingRegionName.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingRegionName.php deleted file mode 100644 index 994ef5457..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingRegionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingRegionName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07012001.03030100'; - - protected $Name = 'SettingRegionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Setting Region Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingRoomNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingRoomNumber.php deleted file mode 100644 index 0508fdcb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingRoomNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingRoomNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingRoomNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Room Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingStateOrProvinceOrCountyName.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingStateOrProvinceOrCountyName.php deleted file mode 100644 index af90a2eda..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingStateOrProvinceOrCountyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingStateOrProvinceOrCountyName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingStateOrProvinceOrCountyName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting State Or Province Or County Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingStreetName.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingStreetName.php deleted file mode 100644 index d4c4fef79..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingStreetName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingStreetName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingStreetName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Street Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingStreetNumberOrBuildingName.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingStreetNumberOrBuildingName.php deleted file mode 100644 index 40f7cb002..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingStreetNumberOrBuildingName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingStreetNumberOrBuildingName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingStreetNumberOrBuildingName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Street Number Or Building Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SettingTownName.php b/lib/PHPExiftool/Driver/Tag/MXF/SettingTownName.php deleted file mode 100644 index dfee4f66d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SettingTownName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SettingTownName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SettingTownName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Setting Town Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShimName.php b/lib/PHPExiftool/Driver/Tag/MXF/ShimName.php deleted file mode 100644 index aa12b0c32..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShimName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShimName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010300'; - - protected $Name = 'ShimName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shim Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShootingCountryCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ShootingCountryCode.php deleted file mode 100644 index 0b56eab22..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShootingCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingCountryCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.02020000'; - - protected $Name = 'ShootingCountryCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Shooting Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShootingRegionCode.php b/lib/PHPExiftool/Driver/Tag/MXF/ShootingRegionCode.php deleted file mode 100644 index 2a3dd406c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShootingRegionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingRegionCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07012001.03020000'; - - protected $Name = 'ShootingRegionCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Shooting Region Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShootingRegionName.php b/lib/PHPExiftool/Driver/Tag/MXF/ShootingRegionName.php deleted file mode 100644 index fa8860569..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShootingRegionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingRegionName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07012001.03020100'; - - protected $Name = 'ShootingRegionName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shooting Region Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotComment.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotComment.php deleted file mode 100644 index ec718e24c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotComment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShotComment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Shot Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotCommentKind.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotCommentKind.php deleted file mode 100644 index c201cc651..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotCommentKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotCommentKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShotCommentKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Shot Comment Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotCueWordsSet.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotCueWordsSet.php deleted file mode 100644 index 554df8531..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotCueWordsSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotCueWordsSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.02402302'; - - protected $Name = 'ShotCueWordsSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shot Cue Words Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotDescription.php deleted file mode 100644 index 8e82bbcd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotDescription extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShotDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Shot Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotDuration.php deleted file mode 100644 index c4ed3db9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotDuration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.07020201.02040000'; - - protected $Name = 'ShotDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shot Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotList.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotList.php deleted file mode 100644 index 736387a0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03020102.0b000000'; - - protected $Name = 'ShotList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Shot List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotLocationSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotLocationSets.php deleted file mode 100644 index bdeb87c15..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotLocationSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotLocationSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401600'; - - protected $Name = 'ShotLocationSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shot Location Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotParticipantRoleSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotParticipantRoleSets.php deleted file mode 100644 index 3adf0cc54..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotParticipantRoleSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotParticipantRoleSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401300'; - - protected $Name = 'ShotParticipantRoleSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shot Participant Role Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotPersonSets.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotPersonSets.php deleted file mode 100644 index 1e07e5807..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotPersonSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotPersonSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05401400'; - - protected $Name = 'ShotPersonSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shot Person Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotStartPosition.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotStartPosition.php deleted file mode 100644 index 1e96dac41..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotStartPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotStartPosition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.07020103.01090000'; - - protected $Name = 'ShotStartPosition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shot Start Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ShotTrackIDs.php b/lib/PHPExiftool/Driver/Tag/MXF/ShotTrackIDs.php deleted file mode 100644 index 0a15bec6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ShotTrackIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotTrackIDs extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01070107.00000000'; - - protected $Name = 'ShotTrackIDs'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Shot Track I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SideNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SideNumber.php deleted file mode 100644 index 700eaefaa..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SideNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SideNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01100306.00000000'; - - protected $Name = 'SideNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Side Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SignalFormCode.php b/lib/PHPExiftool/Driver/Tag/MXF/SignalFormCode.php deleted file mode 100644 index 181b86c1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SignalFormCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignalFormCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010201.01040000'; - - protected $Name = 'SignalFormCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Signal Form Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SignalStandard.php b/lib/PHPExiftool/Driver/Tag/MXF/SignalStandard.php deleted file mode 100644 index f6000490c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SignalStandard.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignalStandard extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SignalStandard'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Signal Standard'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SignalToNoiseRatio.php b/lib/PHPExiftool/Driver/Tag/MXF/SignalToNoiseRatio.php deleted file mode 100644 index 039c19bd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SignalToNoiseRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignalToNoiseRatio extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04021001.00000000'; - - protected $Name = 'Signal-to-NoiseRatio'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Signal-to-Noise Ratio'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SignatureTuneFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/SignatureTuneFlag.php deleted file mode 100644 index b1ca6ab35..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SignatureTuneFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignatureTuneFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.05010401.00000000'; - - protected $Name = 'SignatureTuneFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signature Tune Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SimpleFlaggingCount.php b/lib/PHPExiftool/Driver/Tag/MXF/SimpleFlaggingCount.php deleted file mode 100644 index cdc173215..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SimpleFlaggingCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SimpleFlaggingCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010301.00000000'; - - protected $Name = 'SimpleFlaggingCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Simple Flagging Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SingleSequenceFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/SingleSequenceFlag.php deleted file mode 100644 index 9addae7dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SingleSequenceFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SingleSequenceFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010602.01020000'; - - protected $Name = 'SingleSequenceFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Single Sequence Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Size.php b/lib/PHPExiftool/Driver/Tag/MXF/Size.php deleted file mode 100644 index 6ae0de39b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Size.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Size extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.01000000'; - - protected $Name = 'Size'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SlantRange.php b/lib/PHPExiftool/Driver/Tag/MXF/SlantRange.php deleted file mode 100644 index 30fddaf7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SlantRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlantRange extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010801.01000000'; - - protected $Name = 'SlantRange'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Slant Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SlateInformation.php b/lib/PHPExiftool/Driver/Tag/MXF/SlateInformation.php deleted file mode 100644 index 46e4c83c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SlateInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlateInformation extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.03020503.00000000'; - - protected $Name = 'SlateInformation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slate Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SlateTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/SlateTitle.php deleted file mode 100644 index 809bd4cbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SlateTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlateTitle extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d010401.03010600'; - - protected $Name = 'SlateTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slate Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SliceCount.php b/lib/PHPExiftool/Driver/Tag/MXF/SliceCount.php deleted file mode 100644 index 0a3e09d84..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SliceCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040401.01000000'; - - protected $Name = 'SliceCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Slice Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SliceNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SliceNumber.php deleted file mode 100644 index ce639581c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SliceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040401.02000000'; - - protected $Name = 'SliceNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Slice Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SliceOffsetList.php b/lib/PHPExiftool/Driver/Tag/MXF/SliceOffsetList.php deleted file mode 100644 index b78673f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SliceOffsetList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SliceOffsetList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040401.05000000'; - - protected $Name = 'SliceOffsetList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slice Offset List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SoftwareOnlySupportFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/SoftwareOnlySupportFlag.php deleted file mode 100644 index b05cc7a9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SoftwareOnlySupportFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftwareOnlySupportFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0520090b.00000000'; - - protected $Name = 'Software-OnlySupportFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software-Only Support Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceClip.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceClip.php deleted file mode 100644 index c687b8650..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceClip.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceClip extends AbstractTag -{ - - protected $Id = '060e2b34.0253.0101.0d010101.01011100'; - - protected $Name = 'SourceClip'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Clip'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceContainerFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceContainerFormat.php deleted file mode 100644 index a8ccc44a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceContainerFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceContainerFormat extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010102.02000000'; - - protected $Name = 'SourceContainerFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Container Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceImageCenterXCoordinate.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceImageCenterXCoordinate.php deleted file mode 100644 index b7d332aa5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceImageCenterXCoordinate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageCenterXCoordinate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010203.03000000'; - - protected $Name = 'SourceImageCenterXCoordinate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Source Image Center X Coordinate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceImageCenterYCoordinate.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceImageCenterYCoordinate.php deleted file mode 100644 index 68aff2025..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceImageCenterYCoordinate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageCenterYCoordinate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010203.04000000'; - - protected $Name = 'SourceImageCenterYCoordinate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Source Image Center Y Coordinate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceIndex.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceIndex.php deleted file mode 100644 index efd5c8ac6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceIndex extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010103.0b000000'; - - protected $Name = 'SourceIndex'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceKey.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceKey.php deleted file mode 100644 index 737f5743d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceKey extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010102.03000000'; - - protected $Name = 'SourceKey'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceLength.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceLength.php deleted file mode 100644 index b947ca853..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceLength extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.04061002.00000000'; - - protected $Name = 'SourceLength'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Source Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceOrganization.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceOrganization.php deleted file mode 100644 index 4202af8d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceOrganization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceOrganization extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SourceOrganization'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Source Organization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourcePackageID.php b/lib/PHPExiftool/Driver/Tag/MXF/SourcePackageID.php deleted file mode 100644 index f63a73b34..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourcePackageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourcePackageID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010103.01000000'; - - protected $Name = 'SourcePackageID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Package ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceSpecies.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceSpecies.php deleted file mode 100644 index c9f8f6a31..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceSpecies.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceSpecies extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010103.0c000000'; - - protected $Name = 'SourceSpecies'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Species'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceTrackID.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceTrackID.php deleted file mode 100644 index f3488d2ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceTrackID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010103.02000000'; - - protected $Name = 'SourceTrackID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Source Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceTrackIDs.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceTrackIDs.php deleted file mode 100644 index 969cebcc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceTrackIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceTrackIDs extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.01070106.00000000'; - - protected $Name = 'SourceTrackIDs'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Source Track I Ds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SourceValue.php b/lib/PHPExiftool/Driver/Tag/MXF/SourceValue.php deleted file mode 100644 index 3167a2974..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SourceValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06010103.0d000000'; - - protected $Name = 'SourceValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SpeedChangeEffectFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/SpeedChangeEffectFlag.php deleted file mode 100644 index ff59840e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SpeedChangeEffectFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpeedChangeEffectFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05300503.00000000'; - - protected $Name = 'SpeedChangeEffectFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Speed Change Effect Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SplicingMetadata.php b/lib/PHPExiftool/Driver/Tag/MXF/SplicingMetadata.php deleted file mode 100644 index 90a591949..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SplicingMetadata.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SplicingMetadata extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05020102.01010000'; - - protected $Name = 'SplicingMetadata'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Splicing Metadata'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StartTimeRelativeToReference.php b/lib/PHPExiftool/Driver/Tag/MXF/StartTimeRelativeToReference.php deleted file mode 100644 index b4154ebf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StartTimeRelativeToReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimeRelativeToReference extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'StartTimeRelativeToReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Start Time Relative To Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StartTimecode.php b/lib/PHPExiftool/Driver/Tag/MXF/StartTimecode.php deleted file mode 100644 index 72b1b48fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StartTimecode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimecode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.07020103.01050000'; - - protected $Name = 'StartTimecode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64s'; - - protected $Writable = false; - - protected $Description = 'Start Timecode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StartTimecodeRelativeToReference.php b/lib/PHPExiftool/Driver/Tag/MXF/StartTimecodeRelativeToReference.php deleted file mode 100644 index 5797c4142..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StartTimecodeRelativeToReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimecodeRelativeToReference extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020103.01020000'; - - protected $Name = 'StartTimecodeRelativeToReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Timecode Relative To Reference'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StateOrProvinceOrCountyName.php b/lib/PHPExiftool/Driver/Tag/MXF/StateOrProvinceOrCountyName.php deleted file mode 100644 index 2b126836e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StateOrProvinceOrCountyName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StateOrProvinceOrCountyName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'StateOrProvinceOrCountyName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'State Or Province Or County Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StillFrame.php b/lib/PHPExiftool/Driver/Tag/MXF/StillFrame.php deleted file mode 100644 index 3bb75d189..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StillFrame.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StillFrame extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02080000'; - - protected $Name = 'StillFrame'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Still Frame'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StorageDeviceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/StorageDeviceKind.php deleted file mode 100644 index 765587fe3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StorageDeviceKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageDeviceKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0501.00000000'; - - protected $Name = 'StorageDeviceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Storage Device Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StorageKind.php b/lib/PHPExiftool/Driver/Tag/MXF/StorageKind.php deleted file mode 100644 index 91fe45b98..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StorageKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'StorageKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Storage Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StorageKindCode.php b/lib/PHPExiftool/Driver/Tag/MXF/StorageKindCode.php deleted file mode 100644 index 1ba0269f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StorageKindCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageKindCode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.040f0102.00000000'; - - protected $Name = 'StorageKindCode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Storage Kind Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StorageMediaID.php b/lib/PHPExiftool/Driver/Tag/MXF/StorageMediaID.php deleted file mode 100644 index 2cd5800b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StorageMediaID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageMediaID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0503.00000000'; - - protected $Name = 'StorageMediaID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Storage Media ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StorageMediaKind.php b/lib/PHPExiftool/Driver/Tag/MXF/StorageMediaKind.php deleted file mode 100644 index f334674df..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StorageMediaKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageMediaKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0502.00000000'; - - protected $Name = 'StorageMediaKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Storage Media Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StoredANCLineNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/StoredANCLineNumber.php deleted file mode 100644 index a0e21896a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StoredANCLineNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StoredANCLineNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.09000000'; - - protected $Name = 'StoredANCLineNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Stored ANC Line Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StoredF2Offset.php b/lib/PHPExiftool/Driver/Tag/MXF/StoredF2Offset.php deleted file mode 100644 index 5aaafd2a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StoredF2Offset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StoredF2Offset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010302.08000000'; - - protected $Name = 'StoredF2Offset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Stored F2 Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StoredVBILineNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/StoredVBILineNumber.php deleted file mode 100644 index 2fa952f24..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StoredVBILineNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StoredVBILineNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.04000000'; - - protected $Name = 'StoredVBILineNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Stored VBI Line Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StratumKind.php b/lib/PHPExiftool/Driver/Tag/MXF/StratumKind.php deleted file mode 100644 index 07510de41..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StratumKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StratumKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020107.01000000'; - - protected $Name = 'StratumKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Stratum Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StreamData.php b/lib/PHPExiftool/Driver/Tag/MXF/StreamData.php deleted file mode 100644 index 28b197ad5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StreamData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04070200.00000000'; - - protected $Name = 'StreamData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stream Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StreamElementType.php b/lib/PHPExiftool/Driver/Tag/MXF/StreamElementType.php deleted file mode 100644 index 24447bad9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StreamElementType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamElementType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.10000000'; - - protected $Name = 'StreamElementType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stream Element Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StreamID.php b/lib/PHPExiftool/Driver/Tag/MXF/StreamID.php deleted file mode 100644 index af040df3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StreamID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01030402.00000000'; - - protected $Name = 'StreamID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Stream ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StreamOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/StreamOffset.php deleted file mode 100644 index 8a33a3308..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StreamOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040402.01000000'; - - protected $Name = 'StreamOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Stream Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StreamPositionIndicator.php b/lib/PHPExiftool/Driver/Tag/MXF/StreamPositionIndicator.php deleted file mode 100644 index cada4902b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StreamPositionIndicator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamPositionIndicator extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'StreamPositionIndicator'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Stream Position Indicator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StreetName.php b/lib/PHPExiftool/Driver/Tag/MXF/StreetName.php deleted file mode 100644 index 4c82467e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StreetName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreetName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'StreetName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Street Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StreetNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/StreetNumber.php deleted file mode 100644 index 122972308..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StreetNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreetNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'StreetNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Street Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/StringElementType.php b/lib/PHPExiftool/Driver/Tag/MXF/StringElementType.php deleted file mode 100644 index 2dcaeb3b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/StringElementType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StringElementType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.0f000000'; - - protected $Name = 'StringElementType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'String Element Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubDescriptor.php b/lib/PHPExiftool/Driver/Tag/MXF/SubDescriptor.php deleted file mode 100644 index 6aebbe667..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubDescriptor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubDescriptor extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.06010104.02100000'; - - protected $Name = 'SubDescriptor'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub Descriptor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubDescriptors.php b/lib/PHPExiftool/Driver/Tag/MXF/SubDescriptors.php deleted file mode 100644 index 495a54b8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubDescriptors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubDescriptors extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'mixed'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubjectAbsoluteHeading.php b/lib/PHPExiftool/Driver/Tag/MXF/SubjectAbsoluteHeading.php deleted file mode 100644 index 9d5f7c47d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubjectAbsoluteHeading.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectAbsoluteHeading extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010301.02020000'; - - protected $Name = 'SubjectAbsoluteHeading'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Subject Absolute Heading'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubjectAbsoluteSpeed.php b/lib/PHPExiftool/Driver/Tag/MXF/SubjectAbsoluteSpeed.php deleted file mode 100644 index fc7b793d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubjectAbsoluteSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectAbsoluteSpeed extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010301.02010000'; - - protected $Name = 'SubjectAbsoluteSpeed'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Subject Absolute Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubjectDistance.php b/lib/PHPExiftool/Driver/Tag/MXF/SubjectDistance.php deleted file mode 100644 index 0b95ab602..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubjectDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistance extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07010801.02000000'; - - protected $Name = 'SubjectDistance'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Subject Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubjectName.php b/lib/PHPExiftool/Driver/Tag/MXF/SubjectName.php deleted file mode 100644 index 3d5c0cf14..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubjectName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SubjectName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Subject Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativeHeading.php b/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativeHeading.php deleted file mode 100644 index 65533941e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativeHeading.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectRelativeHeading extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010302.02020000'; - - protected $Name = 'SubjectRelativeHeading'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Subject Relative Heading'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativePositionalAccuracy.php b/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativePositionalAccuracy.php deleted file mode 100644 index f9e68a694..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativePositionalAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectRelativePositionalAccuracy extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010202.03010000'; - - protected $Name = 'SubjectRelativePositionalAccuracy'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Subject Relative Positional Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativeSpeed.php b/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativeSpeed.php deleted file mode 100644 index 48f7826b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubjectRelativeSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectRelativeSpeed extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010302.02010000'; - - protected $Name = 'SubjectRelativeSpeed'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Subject Relative Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubtitleDatafileFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/SubtitleDatafileFlag.php deleted file mode 100644 index c9c3de3a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubtitleDatafileFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubtitleDatafileFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010101.02000000'; - - protected $Name = 'SubtitleDatafileFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtitle Datafile Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SubtitlesPresent.php b/lib/PHPExiftool/Driver/Tag/MXF/SubtitlesPresent.php deleted file mode 100644 index 54e9d18db..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SubtitlesPresent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubtitlesPresent extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0201.00000000'; - - protected $Name = 'SubtitlesPresent'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtitles Present'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplementaryName.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplementaryName.php deleted file mode 100644 index 4acfab2f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplementaryName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplementaryName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SupplementaryName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Supplementary Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplementaryOrganizationName.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplementaryOrganizationName.php deleted file mode 100644 index ce92b800d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplementaryOrganizationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplementaryOrganizationName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SupplementaryOrganizationName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Supplementary Organization Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplierAccountName.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplierAccountName.php deleted file mode 100644 index 95164af75..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplierAccountName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplierAccountName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SupplierAccountName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Supplier Account Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplierAccountNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplierAccountNumber.php deleted file mode 100644 index 8232924e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplierAccountNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplierAccountNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02010700.00000000'; - - protected $Name = 'SupplierAccountNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Supplier Account Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplierIdentificationKind.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplierIdentificationKind.php deleted file mode 100644 index ceae83f58..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplierIdentificationKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplierIdentificationKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02010500.00000000'; - - protected $Name = 'SupplierIdentificationKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Supplier Identification Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplierIdentificationValue.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplierIdentificationValue.php deleted file mode 100644 index 5906038c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplierIdentificationValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplierIdentificationValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02010600.00000000'; - - protected $Name = 'SupplierIdentificationValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Supplier Identification Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplyContractNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplyContractNumber.php deleted file mode 100644 index da98543e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplyContractNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplyContractNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02010200.00000000'; - - protected $Name = 'SupplyContractNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Supply Contract Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupplyingDepartmentName.php b/lib/PHPExiftool/Driver/Tag/MXF/SupplyingDepartmentName.php deleted file mode 100644 index d56e1531c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupplyingDepartmentName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplyingDepartmentName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.02010400.00000000'; - - protected $Name = 'SupplyingDepartmentName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Supplying Department Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupportOrAdministrationStatus.php b/lib/PHPExiftool/Driver/Tag/MXF/SupportOrAdministrationStatus.php deleted file mode 100644 index 9adf509f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupportOrAdministrationStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupportOrAdministrationStatus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SupportOrAdministrationStatus'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Support Or Administration Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SupportOrganizationRole.php b/lib/PHPExiftool/Driver/Tag/MXF/SupportOrganizationRole.php deleted file mode 100644 index 2039345cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SupportOrganizationRole.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupportOrganizationRole extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SupportOrganizationRole'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Support Organization Role'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/SystemNameOrNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/SystemNameOrNumber.php deleted file mode 100644 index a2d66b15d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/SystemNameOrNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SystemNameOrNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04300100.00000000'; - - protected $Name = 'SystemNameOrNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'System Name Or Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TIFFSummary.php b/lib/PHPExiftool/Driver/Tag/MXF/TIFFSummary.php deleted file mode 100644 index caf09a642..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TIFFSummary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TIFFSummary extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03030302.03000000'; - - protected $Name = 'TIFFSummary'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TIFF Summary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TaggedValueDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/TaggedValueDefinitions.php deleted file mode 100644 index 5486025a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TaggedValueDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaggedValueDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010104.050b0000'; - - protected $Name = 'TaggedValueDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tagged Value Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TaggedValueParentProperties.php b/lib/PHPExiftool/Driver/Tag/MXF/TaggedValueParentProperties.php deleted file mode 100644 index f83b059b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TaggedValueParentProperties.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaggedValueParentProperties extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.06010104.03050000'; - - protected $Name = 'TaggedValueParentProperties'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tagged Value Parent Properties'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TakeNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/TakeNumber.php deleted file mode 100644 index 7a62318ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TakeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TakeNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01050700.00000000'; - - protected $Name = 'TakeNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Take Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapeBatchNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/TapeBatchNumber.php deleted file mode 100644 index c5797b78f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapeBatchNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeBatchNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TapeBatchNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Tape Batch Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapeCapacity.php b/lib/PHPExiftool/Driver/Tag/MXF/TapeCapacity.php deleted file mode 100644 index dfe58b5f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapeCapacity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeCapacity extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04100101.03000000'; - - protected $Name = 'TapeCapacity'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Tape Capacity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapeFormat.php b/lib/PHPExiftool/Driver/Tag/MXF/TapeFormat.php deleted file mode 100644 index aafeb97fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapeFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeFormat extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0d010101.01010100'; - - protected $Name = 'TapeFormat'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tape Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapeFormulation.php b/lib/PHPExiftool/Driver/Tag/MXF/TapeFormulation.php deleted file mode 100644 index ce630a8ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapeFormulation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeFormulation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TapeFormulation'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Tape Formulation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapeManufacturer.php b/lib/PHPExiftool/Driver/Tag/MXF/TapeManufacturer.php deleted file mode 100644 index 4862ceb83..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapeManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeManufacturer extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TapeManufacturer'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Tape Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapePartitionCapacity.php b/lib/PHPExiftool/Driver/Tag/MXF/TapePartitionCapacity.php deleted file mode 100644 index fa66e8f13..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapePartitionCapacity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapePartitionCapacity extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04100101.10010000'; - - protected $Name = 'TapePartitionCapacity'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Tape Partition Capacity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapeShellKind.php b/lib/PHPExiftool/Driver/Tag/MXF/TapeShellKind.php deleted file mode 100644 index 8eabf7ccf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapeShellKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeShellKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TapeShellKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Tape Shell Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TapeStock.php b/lib/PHPExiftool/Driver/Tag/MXF/TapeStock.php deleted file mode 100644 index f880df0e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TapeStock.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeStock extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TapeStock'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Tape Stock'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TargetAudience.php b/lib/PHPExiftool/Driver/Tag/MXF/TargetAudience.php deleted file mode 100644 index af7bc7033..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TargetAudience.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetAudience extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TargetAudience'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Target Audience'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TargetClassOfStrongReference.php b/lib/PHPExiftool/Driver/Tag/MXF/TargetClassOfStrongReference.php deleted file mode 100644 index 0f3ec319f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TargetClassOfStrongReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetClassOfStrongReference extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.09000000'; - - protected $Name = 'TargetClassOfStrongReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Class Of Strong Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TargetClassOfWeakReference.php b/lib/PHPExiftool/Driver/Tag/MXF/TargetClassOfWeakReference.php deleted file mode 100644 index b3cbb8222..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TargetClassOfWeakReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetClassOfWeakReference extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.0a000000'; - - protected $Name = 'TargetClassOfWeakReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Class Of Weak Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TargetSet.php b/lib/PHPExiftool/Driver/Tag/MXF/TargetSet.php deleted file mode 100644 index 64d28c395..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TargetSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetSet extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.0b000000'; - - protected $Name = 'TargetSet'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TargetWidth.php b/lib/PHPExiftool/Driver/Tag/MXF/TargetWidth.php deleted file mode 100644 index 1d86ecce8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TargetWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetWidth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010902.01000000'; - - protected $Name = 'TargetWidth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Target Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TechnicalValue.php b/lib/PHPExiftool/Driver/Tag/MXF/TechnicalValue.php deleted file mode 100644 index a7ea3aa4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TechnicalValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TechnicalValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03020202.06000000'; - - protected $Name = 'TechnicalValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Technical Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TelephoneNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/TelephoneNumber.php deleted file mode 100644 index 012ff0568..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TelephoneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TelephoneNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TelephoneNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Telephone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TeletextSubtitlesAvailable.php b/lib/PHPExiftool/Driver/Tag/MXF/TeletextSubtitlesAvailable.php deleted file mode 100644 index 434d9aba8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TeletextSubtitlesAvailable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TeletextSubtitlesAvailable extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0605.00000000'; - - protected $Name = 'TeletextSubtitlesAvailable'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Teletext Subtitles Available'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TeletextSubtitlesFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/TeletextSubtitlesFlag.php deleted file mode 100644 index c1fabbf4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TeletextSubtitlesFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TeletextSubtitlesFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010101.01000000'; - - protected $Name = 'TeletextSubtitlesFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Teletext Subtitles Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TemporalOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/TemporalOffset.php deleted file mode 100644 index 511e04963..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TemporalOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TemporalOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.04040402.03000000'; - - protected $Name = 'TemporalOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8s'; - - protected $Writable = false; - - protected $Description = 'Temporal Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TerminatingFillerData.php b/lib/PHPExiftool/Driver/Tag/MXF/TerminatingFillerData.php deleted file mode 100644 index 3ae454138..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TerminatingFillerData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TerminatingFillerData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03010210.05000000'; - - protected $Name = 'TerminatingFillerData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Terminating Filler Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TextlessBlackDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/TextlessBlackDuration.php deleted file mode 100644 index f5c36ba01..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TextlessBlackDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextlessBlackDuration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020201.02030000'; - - protected $Name = 'TextlessBlackDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Textless Black Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TextlessMaterial.php b/lib/PHPExiftool/Driver/Tag/MXF/TextlessMaterial.php deleted file mode 100644 index e99034ef4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TextlessMaterial.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextlessMaterial extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0303.00000000'; - - protected $Name = 'TextlessMaterial'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Textless Material'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TextualDescriptionKind.php b/lib/PHPExiftool/Driver/Tag/MXF/TextualDescriptionKind.php deleted file mode 100644 index 67c00ec40..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TextualDescriptionKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextualDescriptionKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TextualDescriptionKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Textual Description Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Theme.php b/lib/PHPExiftool/Driver/Tag/MXF/Theme.php deleted file mode 100644 index a9a47a1fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Theme.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Theme extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Theme'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Theme'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ThemeMusicFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/ThemeMusicFlag.php deleted file mode 100644 index f950ec5e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ThemeMusicFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThemeMusicFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.05010403.00000000'; - - protected $Name = 'ThemeMusicFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Theme Music Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ThesaurusName.php b/lib/PHPExiftool/Driver/Tag/MXF/ThesaurusName.php deleted file mode 100644 index 7d9e976c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ThesaurusName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThesaurusName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThesaurusName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Thesaurus Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ThirdGivenName.php b/lib/PHPExiftool/Driver/Tag/MXF/ThirdGivenName.php deleted file mode 100644 index f91ee2d50..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ThirdGivenName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThirdGivenName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThirdGivenName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Third Given Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimePeriodName.php b/lib/PHPExiftool/Driver/Tag/MXF/TimePeriodName.php deleted file mode 100644 index 77f8c9de9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimePeriodName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimePeriodName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TimePeriodName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Time Period Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimeSystemOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/TimeSystemOffset.php deleted file mode 100644 index d72eeaee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimeSystemOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSystemOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010303.01000000'; - - protected $Name = 'TimeSystemOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Time System Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimeUnitKind.php b/lib/PHPExiftool/Driver/Tag/MXF/TimeUnitKind.php deleted file mode 100644 index 1bd70609f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimeUnitKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeUnitKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.03010303.02000000'; - - protected $Name = 'TimeUnitKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Time Unit Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimebaseReferenceTrackID.php b/lib/PHPExiftool/Driver/Tag/MXF/TimebaseReferenceTrackID.php deleted file mode 100644 index d077d6bf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimebaseReferenceTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimebaseReferenceTrackID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.06010103.0e000000'; - - protected $Name = 'TimebaseReferenceTrackID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Timebase Reference Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeArray.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeArray.php deleted file mode 100644 index af7e300b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07020102.08020000'; - - protected $Name = 'TimecodeArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeCreationDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeCreationDateTime.php deleted file mode 100644 index b5f2634b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeCreationDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeCreationDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020110.01020000'; - - protected $Name = 'TimecodeCreationDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Creation Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEndDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEndDateTime.php deleted file mode 100644 index 603234257..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEndDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeEndDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.04010000'; - - protected $Name = 'TimecodeEndDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode End Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEventEndDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEventEndDateTime.php deleted file mode 100644 index 32f0811ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEventEndDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeEventEndDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.0a010000'; - - protected $Name = 'TimecodeEventEndDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Event End Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEventStartDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEventStartDateTime.php deleted file mode 100644 index ec5451a76..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeEventStartDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeEventStartDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.08010000'; - - protected $Name = 'TimecodeEventStartDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Event Start Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeKind.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeKind.php deleted file mode 100644 index c6f239796..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04040101.01000000'; - - protected $Name = 'TimecodeKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Timecode Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeLastModifyDate.php deleted file mode 100644 index 3d9308570..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeLastModifyDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.06010000'; - - protected $Name = 'TimecodeLastModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeModifyDate.php deleted file mode 100644 index b62ce4483..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeModifyDate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020110.02020000'; - - protected $Name = 'TimecodeModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeSourceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeSourceKind.php deleted file mode 100644 index 48a4f5b6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeSourceKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeSourceKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04040201.00000000'; - - protected $Name = 'TimecodeSourceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Timecode Source Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeStartDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeStartDateTime.php deleted file mode 100644 index 4694869a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeStartDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeStartDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.02010000'; - - protected $Name = 'TimecodeStartDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Start Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeStreamData.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeStreamData.php deleted file mode 100644 index cbab2f9d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeStreamData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeStreamData extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04070300.00000000'; - - protected $Name = 'TimecodeStreamData'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode Stream Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeTimebase.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeTimebase.php deleted file mode 100644 index c01439d11..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeTimebase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeTimebase extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TimecodeTimebase'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Timecode Timebase'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeUserBitsFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/TimecodeUserBitsFlag.php deleted file mode 100644 index 78e5263c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimecodeUserBitsFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeUserBitsFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04040101.03000000'; - - protected $Name = 'TimecodeUserBitsFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode User Bits Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimepointValue.php b/lib/PHPExiftool/Driver/Tag/MXF/TimepointValue.php deleted file mode 100644 index b0b0fed04..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimepointValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimepointValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.0530050d.00000000'; - - protected $Name = 'TimepointValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timepoint Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimingBiasCorrection.php b/lib/PHPExiftool/Driver/Tag/MXF/TimingBiasCorrection.php deleted file mode 100644 index 9a6826b93..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimingBiasCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimingBiasCorrection extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03010303.03000000'; - - protected $Name = 'TimingBiasCorrection'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Timing Bias Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TimingBiasCorrectionDescription.php b/lib/PHPExiftool/Driver/Tag/MXF/TimingBiasCorrectionDescription.php deleted file mode 100644 index f94baef02..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TimingBiasCorrectionDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimingBiasCorrectionDescription extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.03010303.04000000'; - - protected $Name = 'TimingBiasCorrectionDescription'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Timing Bias Correction Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TitleKind.php b/lib/PHPExiftool/Driver/Tag/MXF/TitleKind.php deleted file mode 100644 index 50b9c8aad..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TitleKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleKind extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TitleKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Title Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TitlesSets.php b/lib/PHPExiftool/Driver/Tag/MXF/TitlesSets.php deleted file mode 100644 index 2663ae255..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TitlesSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitlesSets extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06010104.05400400'; - - protected $Name = 'TitlesSets'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Titles Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ToleranceInterpolationMethod.php b/lib/PHPExiftool/Driver/Tag/MXF/ToleranceInterpolationMethod.php deleted file mode 100644 index 9c6e4e49a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ToleranceInterpolationMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToleranceInterpolationMethod extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07020503.00000000'; - - protected $Name = 'ToleranceInterpolationMethod'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tolerance Interpolation Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ToleranceMode.php b/lib/PHPExiftool/Driver/Tag/MXF/ToleranceMode.php deleted file mode 100644 index 59071181e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ToleranceMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToleranceMode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07020501.00000000'; - - protected $Name = 'ToleranceMode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tolerance Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ToleranceWindow.php b/lib/PHPExiftool/Driver/Tag/MXF/ToleranceWindow.php deleted file mode 100644 index aa05ba4a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ToleranceWindow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToleranceWindow extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.07020502.00000000'; - - protected $Name = 'ToleranceWindow'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tolerance Window'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ToolkitVersion.php b/lib/PHPExiftool/Driver/Tag/MXF/ToolkitVersion.php deleted file mode 100644 index 978de3fc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ToolkitVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToolkitVersion extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05200701.0a000000'; - - protected $Name = 'ToolkitVersion'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Toolkit Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TotalCurrencyAmount.php b/lib/PHPExiftool/Driver/Tag/MXF/TotalCurrencyAmount.php deleted file mode 100644 index f86fbed98..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TotalCurrencyAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalCurrencyAmount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0104.02060102.00000000'; - - protected $Name = 'TotalCurrencyAmount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'double'; - - protected $Writable = false; - - protected $Description = 'Total Currency Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TotalEpisodeCount.php b/lib/PHPExiftool/Driver/Tag/MXF/TotalEpisodeCount.php deleted file mode 100644 index d79cb542b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TotalEpisodeCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalEpisodeCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.02020100.00000000'; - - protected $Name = 'TotalEpisodeCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Total Episode Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TotalIncome.php b/lib/PHPExiftool/Driver/Tag/MXF/TotalIncome.php deleted file mode 100644 index 49b2ef2b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TotalIncome.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalIncome extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060302.00000000'; - - protected $Name = 'TotalIncome'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Total Income'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TotalLinesperFrame.php b/lib/PHPExiftool/Driver/Tag/MXF/TotalLinesperFrame.php deleted file mode 100644 index ed417435e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TotalLinesperFrame.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalLinesperFrame extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010302.01000000'; - - protected $Name = 'TotalLinesperFrame'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Total Linesper Frame'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TotalNumberInSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/TotalNumberInSequence.php deleted file mode 100644 index d29a69e66..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TotalNumberInSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalNumberInSequence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.06100400.00000000'; - - protected $Name = 'TotalNumberInSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Total Number In Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TotalPayment.php b/lib/PHPExiftool/Driver/Tag/MXF/TotalPayment.php deleted file mode 100644 index b6104480f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TotalPayment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalPayment extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.02060202.00000000'; - - protected $Name = 'TotalPayment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Total Payment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TotalSamplesperLine.php b/lib/PHPExiftool/Driver/Tag/MXF/TotalSamplesperLine.php deleted file mode 100644 index a4a87b63b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TotalSamplesperLine.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalSamplesperLine extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010501.03000000'; - - protected $Name = 'TotalSamplesperLine'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Total Samplesper Line'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TrackID.php b/lib/PHPExiftool/Driver/Tag/MXF/TrackID.php deleted file mode 100644 index c9bddfa5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01070101.00000000'; - - protected $Name = 'TrackID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TrackName.php b/lib/PHPExiftool/Driver/Tag/MXF/TrackName.php deleted file mode 100644 index bf0f25612..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TrackName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TrackName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Track Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/TrackNumber.php deleted file mode 100644 index 7ce939f4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.01040103.00000000'; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TrackNumberBatch.php b/lib/PHPExiftool/Driver/Tag/MXF/TrackNumberBatch.php deleted file mode 100644 index 889cc09a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TrackNumberBatch.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumberBatch extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.01040104.00000000'; - - protected $Name = 'TrackNumberBatch'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Track Number Batch'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Tracks.php b/lib/PHPExiftool/Driver/Tag/MXF/Tracks.php deleted file mode 100644 index a5e979ba8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Tracks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tracks extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.06050000'; - - protected $Name = 'Tracks'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tracks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TrafficID.php b/lib/PHPExiftool/Driver/Tag/MXF/TrafficID.php deleted file mode 100644 index e7c7b7782..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TrafficID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrafficID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030105.00000000'; - - protected $Name = 'TrafficID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Traffic ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TrailingLines.php b/lib/PHPExiftool/Driver/Tag/MXF/TrailingLines.php deleted file mode 100644 index e21113fc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TrailingLines.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrailingLines extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010302.04000000'; - - protected $Name = 'TrailingLines'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Trailing Lines'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TranscriptReference.php b/lib/PHPExiftool/Driver/Tag/MXF/TranscriptReference.php deleted file mode 100644 index f147d4062..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TranscriptReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TranscriptReference extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TranscriptReference'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Transcript Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TransferFilmFrameRate.php b/lib/PHPExiftool/Driver/Tag/MXF/TransferFilmFrameRate.php deleted file mode 100644 index 67f4f8964..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TransferFilmFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransferFilmFrameRate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010802.02000000'; - - protected $Name = 'TransferFilmFrameRate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Transfer Film Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TransitionEffect.php b/lib/PHPExiftool/Driver/Tag/MXF/TransitionEffect.php deleted file mode 100644 index 8e426eb87..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TransitionEffect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransitionEffect extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010104.02050000'; - - protected $Name = 'TransitionEffect'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transition Effect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TransmissionID.php b/lib/PHPExiftool/Driver/Tag/MXF/TransmissionID.php deleted file mode 100644 index ffb7cee11..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TransmissionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmissionID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01030101.00000000'; - - protected $Name = 'TransmissionID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Transmission ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TransportStreamID.php b/lib/PHPExiftool/Driver/Tag/MXF/TransportStreamID.php deleted file mode 100644 index 230336569..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TransportStreamID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransportStreamID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.01030403.00000000'; - - protected $Name = 'TransportStreamID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Transport Stream ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TripletSequenceNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/TripletSequenceNumber.php deleted file mode 100644 index f36ed294a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TripletSequenceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TripletSequenceNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0109.06100500.00000000'; - - protected $Name = 'TripletSequenceNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Triplet Sequence Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitionElementValueList.php b/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitionElementValueList.php deleted file mode 100644 index b0296dc45..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitionElementValueList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeDefinitionElementValueList extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.05000000'; - - protected $Name = 'TypeDefinitionElementValueList'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64s'; - - protected $Writable = false; - - protected $Description = 'Type Definition Element Value List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitionExtendibleElementValues.php b/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitionExtendibleElementValues.php deleted file mode 100644 index f67fdd8ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitionExtendibleElementValues.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeDefinitionExtendibleElementValues extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010203.08000000'; - - protected $Name = 'TypeDefinitionExtendibleElementValues'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Definition Extendible Element Values'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitions.php b/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitions.php deleted file mode 100644 index 34a377f7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/TypeDefinitions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeDefinitions extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.08000000'; - - protected $Name = 'TypeDefinitions'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type Definitions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UCSEncoding.php b/lib/PHPExiftool/Driver/Tag/MXF/UCSEncoding.php deleted file mode 100644 index b52148aac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UCSEncoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UCSEncoding extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04090500.00000000'; - - protected $Name = 'UCSEncoding'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UCS Encoding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UPID.php b/lib/PHPExiftool/Driver/Tag/MXF/UPID.php deleted file mode 100644 index a23386710..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UPID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UPID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011003.01000000'; - - protected $Name = 'UPID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UPID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UPN.php b/lib/PHPExiftool/Driver/Tag/MXF/UPN.php deleted file mode 100644 index 4856cdbe5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UPN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UPN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01011003.02000000'; - - protected $Name = 'UPN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UPN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/URL.php b/lib/PHPExiftool/Driver/Tag/MXF/URL.php deleted file mode 100644 index f5f062614..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'URL'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/URN.php b/lib/PHPExiftool/Driver/Tag/MXF/URN.php deleted file mode 100644 index 417bd553f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/URN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URN extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.01020103.00000000'; - - protected $Name = 'URN'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'URN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UTCEndDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/UTCEndDateTime.php deleted file mode 100644 index 56ebaf7ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UTCEndDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTCEndDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020102.03010000'; - - protected $Name = 'UTCEndDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'UTC End Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UTCEventEndDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/UTCEventEndDateTime.php deleted file mode 100644 index 933adf13c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UTCEventEndDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTCEventEndDateTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UTCEventEndDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'UTC Event End Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UTCEventStartDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/UTCEventStartDateTime.php deleted file mode 100644 index 98feae7a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UTCEventStartDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTCEventStartDateTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UTCEventStartDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'UTC Event Start Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UTCInstantDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/UTCInstantDateTime.php deleted file mode 100644 index a4d2880df..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UTCInstantDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTCInstantDateTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UTCInstantDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'UTC Instant Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UTCLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/MXF/UTCLastModifyDate.php deleted file mode 100644 index a3b04f605..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UTCLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTCLastModifyDate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UTCLastModifyDate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'UTC Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UTCStartDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/UTCStartDateTime.php deleted file mode 100644 index 4bd2dacd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UTCStartDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTCStartDateTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UTCStartDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'UTC Start Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UTCUserDateTime.php b/lib/PHPExiftool/Driver/Tag/MXF/UTCUserDateTime.php deleted file mode 100644 index e96567d65..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UTCUserDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UTCUserDateTime extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07020101.01010000'; - - protected $Name = 'UTCUserDateTime'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'UTC User Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UniformDataFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/UniformDataFlag.php deleted file mode 100644 index f9826b68c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UniformDataFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniformDataFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05020103.01010000'; - - protected $Name = 'UniformDataFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Uniform Data Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UnknownBWFChunks.php b/lib/PHPExiftool/Driver/Tag/MXF/UnknownBWFChunks.php deleted file mode 100644 index c9254922a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UnknownBWFChunks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownBWFChunks extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0108.06010104.060f0000'; - - protected $Name = 'UnknownBWFChunks'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown BWF Chunks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UpstreamAudioCompressionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/UpstreamAudioCompressionAlgorithm.php deleted file mode 100644 index cc73111f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UpstreamAudioCompressionAlgorithm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UpstreamAudioCompressionAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05400201.00000000'; - - protected $Name = 'UpstreamAudioCompressionAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Upstream Audio Compression Algorithm'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UseDefaultValue.php b/lib/PHPExiftool/Driver/Tag/MXF/UseDefaultValue.php deleted file mode 100644 index 131bbab15..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UseDefaultValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UseDefaultValue extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03010202.03010000'; - - protected $Name = 'UseDefaultValue'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Use Default Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UserDataMode.php b/lib/PHPExiftool/Driver/Tag/MXF/UserDataMode.php deleted file mode 100644 index 9c1a48dbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UserDataMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserDataMode extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04020501.04000000'; - - protected $Name = 'UserDataMode'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Data Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/UserPosition.php b/lib/PHPExiftool/Driver/Tag/MXF/UserPosition.php deleted file mode 100644 index 9082c048a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/UserPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPosition extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07020103.010d0000'; - - protected $Name = 'UserPosition'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Username.php b/lib/PHPExiftool/Driver/Tag/MXF/Username.php deleted file mode 100644 index 58b2924bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Username.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Username extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Username'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Username'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/V10IndexTableSegment.php b/lib/PHPExiftool/Driver/Tag/MXF/V10IndexTableSegment.php deleted file mode 100644 index b0174d4a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/V10IndexTableSegment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class V10IndexTableSegment extends AbstractTag -{ - - protected $Id = '060e2b34.0253.0101.0d010201.01100000'; - - protected $Name = 'V10IndexTableSegment'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'V10 Index Table Segment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VBEEndOffset.php b/lib/PHPExiftool/Driver/Tag/MXF/VBEEndOffset.php deleted file mode 100644 index 0ddbdc133..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VBEEndOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBEEndOffset extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04060205.00000000'; - - protected $Name = 'VBEEndOffset'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'VBE End Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VBILineCount.php b/lib/PHPExiftool/Driver/Tag/MXF/VBILineCount.php deleted file mode 100644 index c5c8f8665..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VBILineCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBILineCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.03000000'; - - protected $Name = 'VBILineCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'VBI Line Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadByteArray.php b/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadByteArray.php deleted file mode 100644 index fc4c9f652..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadByteArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBIPayloadByteArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.07000000'; - - protected $Name = 'VBIPayloadByteArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'VBI Payload Byte Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadSampleCoding.php b/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadSampleCoding.php deleted file mode 100644 index 025188a47..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadSampleCoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBIPayloadSampleCoding extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010503.0f000000'; - - protected $Name = 'VBIPayloadSampleCoding'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'VBI Payload Sample Coding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadSampleCount.php b/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadSampleCount.php deleted file mode 100644 index 29ccad505..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VBIPayloadSampleCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBIPayloadSampleCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.06000000'; - - protected $Name = 'VBIPayloadSampleCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'VBI Payload Sample Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VBIWrappingType.php b/lib/PHPExiftool/Driver/Tag/MXF/VBIWrappingType.php deleted file mode 100644 index 1ac0110f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VBIWrappingType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VBIWrappingType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010502.05000000'; - - protected $Name = 'VBIWrappingType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'VBI Wrapping Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1AverageBitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1AverageBitrate.php deleted file mode 100644 index 7f25fd60b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1AverageBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1AverageBitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.07000000'; - - protected $Name = 'VC-1AverageBitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'VC-1 Average Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1BPictureCount.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1BPictureCount.php deleted file mode 100644 index 8305b87dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1BPictureCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1BPictureCount extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.06000000'; - - protected $Name = 'VC-1BPictureCount'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'VC-1B Picture Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1CodedContentType.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1CodedContentType.php deleted file mode 100644 index bc7253f31..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1CodedContentType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1CodedContentType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.03000000'; - - protected $Name = 'VC-1CodedContentType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'VC-1 Coded Content Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1IdenticalGOP.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1IdenticalGOP.php deleted file mode 100644 index e6f9581be..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1IdenticalGOP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1IdenticalGOP extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.04000000'; - - protected $Name = 'VC-1IdenticalGOP'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VC-1 Identical GOP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1InitializationMetadata.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1InitializationMetadata.php deleted file mode 100644 index e15007da1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1InitializationMetadata.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1InitializationMetadata extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.01000000'; - - protected $Name = 'VC-1InitializationMetadata'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VC-1 Initialization Metadata'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1Level.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1Level.php deleted file mode 100644 index 650ec1a70..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1Level.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1Level extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.0a000000'; - - protected $Name = 'VC-1Level'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'VC-1 Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1MaximumBitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1MaximumBitrate.php deleted file mode 100644 index c888a70c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1MaximumBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1MaximumBitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.08000000'; - - protected $Name = 'VC-1MaximumBitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'VC-1 Maximum Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1MaximumGOP.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1MaximumGOP.php deleted file mode 100644 index 51b2d8603..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1MaximumGOP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1MaximumGOP extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.05000000'; - - protected $Name = 'VC-1MaximumGOP'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'VC-1 Maximum GOP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1Profile.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1Profile.php deleted file mode 100644 index d0f414e19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1Profile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1Profile extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.09000000'; - - protected $Name = 'VC-1Profile'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'VC-1 Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VC1SingleSequence.php b/lib/PHPExiftool/Driver/Tag/MXF/VC1SingleSequence.php deleted file mode 100644 index 36f430190..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VC1SingleSequence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VC1SingleSequence extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010c.04010604.02000000'; - - protected $Name = 'VC-1SingleSequence'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'VC-1 Single Sequence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Value.php b/lib/PHPExiftool/Driver/Tag/MXF/Value.php deleted file mode 100644 index c0c2186a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Value.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Value extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.05300507.00000000'; - - protected $Name = 'Value'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VariableArrayElementType.php b/lib/PHPExiftool/Driver/Tag/MXF/VariableArrayElementType.php deleted file mode 100644 index 658dd9b23..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VariableArrayElementType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariableArrayElementType extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.06010107.0d000000'; - - protected $Name = 'VariableArrayElementType'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Variable Array Element Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VersionNumber.php b/lib/PHPExiftool/Driver/Tag/MXF/VersionNumber.php deleted file mode 100644 index cafbad2bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VersionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionNumber extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03030301.03000000'; - - protected $Name = 'VersionNumber'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VersionNumberString.php b/lib/PHPExiftool/Driver/Tag/MXF/VersionNumberString.php deleted file mode 100644 index 2db93e711..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VersionNumberString.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionNumberString extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'VersionNumberString'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Version Number String'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VersionTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/VersionTitle.php deleted file mode 100644 index de0c1973b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VersionTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'VersionTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Version Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VerticalActionSafePercentage.php b/lib/PHPExiftool/Driver/Tag/MXF/VerticalActionSafePercentage.php deleted file mode 100644 index 574a52129..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VerticalActionSafePercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalActionSafePercentage extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010101.05000000'; - - protected $Name = 'VerticalActionSafePercentage'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Vertical Action Safe Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VerticalDatum.php b/lib/PHPExiftool/Driver/Tag/MXF/VerticalDatum.php deleted file mode 100644 index 5fc849732..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VerticalDatum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalDatum extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.07010104.00000000'; - - protected $Name = 'VerticalDatum'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Vertical Datum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VerticalGraphicsSafePercentage.php b/lib/PHPExiftool/Driver/Tag/MXF/VerticalGraphicsSafePercentage.php deleted file mode 100644 index 5ff445412..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VerticalGraphicsSafePercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalGraphicsSafePercentage extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010101.07000000'; - - protected $Name = 'VerticalGraphicsSafePercentage'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Vertical Graphics Safe Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VerticalSubSampling.php b/lib/PHPExiftool/Driver/Tag/MXF/VerticalSubSampling.php deleted file mode 100644 index a2a35a7ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VerticalSubSampling.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalSubSampling extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010501.10000000'; - - protected $Name = 'VerticalSub-sampling'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Vertical Sub-sampling'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoAndFilmFrameRelationship.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoAndFilmFrameRelationship.php deleted file mode 100644 index a6df03c1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoAndFilmFrameRelationship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAndFilmFrameRelationship extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010801.03000000'; - - protected $Name = 'VideoAndFilmFrameRelationship'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Video And Film Frame Relationship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoAverageBitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoAverageBitrate.php deleted file mode 100644 index 2c089e28f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoAverageBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAverageBitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010501.11000000'; - - protected $Name = 'VideoAverageBitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Video Average Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoClipDuration.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoClipDuration.php deleted file mode 100644 index 33e7c0602..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoClipDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoClipDuration extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.07020201.02050000'; - - protected $Name = 'VideoClipDuration'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Clip Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoCodingSchemeID.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoCodingSchemeID.php deleted file mode 100644 index ea774949c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoCodingSchemeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodingSchemeID extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010601.00000000'; - - protected $Name = 'VideoCodingSchemeID'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Coding Scheme ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoColorKind.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoColorKind.php deleted file mode 100644 index 8923128c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoColorKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoColorKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010201.01050000'; - - protected $Name = 'VideoColorKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Color Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoCompressionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoCompressionAlgorithm.php deleted file mode 100644 index 3e22b4c5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoCompressionAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCompressionAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05400101.00000000'; - - protected $Name = 'VideoCompressionAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Compression Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceKind.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceKind.php deleted file mode 100644 index 546580413..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoDeviceKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200201.00000000'; - - protected $Name = 'VideoDeviceKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Device Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceParameterName.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceParameterName.php deleted file mode 100644 index 386696bf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceParameterName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoDeviceParameterName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200202.00000000'; - - protected $Name = 'VideoDeviceParameterName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Device Parameter Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceParameterSetting.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceParameterSetting.php deleted file mode 100644 index 312852d0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoDeviceParameterSetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoDeviceParameterSetting extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05200203.00000000'; - - protected $Name = 'VideoDeviceParameterSetting'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Device Parameter Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoFixedBitrate.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoFixedBitrate.php deleted file mode 100644 index 1e525782f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoFixedBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFixedBitrate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0103.04010501.12000000'; - - protected $Name = 'VideoFixedBitrate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Fixed Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoIndexArray.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoIndexArray.php deleted file mode 100644 index ddd38d6d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoIndexArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoIndexArray extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0107.04040403.01000000'; - - protected $Name = 'VideoIndexArray'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Index Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoLineMap.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoLineMap.php deleted file mode 100644 index bc553affd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoLineMap.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoLineMap extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010302.05000000'; - - protected $Name = 'VideoLineMap'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Video Line Map'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoNoiseReductionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoNoiseReductionAlgorithm.php deleted file mode 100644 index 8625ac0e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoNoiseReductionAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoNoiseReductionAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05030101.00000000'; - - protected $Name = 'VideoNoiseReductionAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Noise Reduction Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoOrImageCompressionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoOrImageCompressionAlgorithm.php deleted file mode 100644 index 8a9ac84f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoOrImageCompressionAlgorithm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoOrImageCompressionAlgorithm extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05020101.00000000'; - - protected $Name = 'VideoOrImageCompressionAlgorithm'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Or Image Compression Algorithm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoPayloadIdentifier.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoPayloadIdentifier.php deleted file mode 100644 index 72a5327c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoPayloadIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoPayloadIdentifier extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010504.01000000'; - - protected $Name = 'VideoPayloadIdentifier'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Video Payload Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoPayloadIdentifier2002.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoPayloadIdentifier2002.php deleted file mode 100644 index 36b89e220..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoPayloadIdentifier2002.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoPayloadIdentifier2002 extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0105.04010504.02000000'; - - protected $Name = 'VideoPayloadIdentifier2002'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Video Payload Identifier 2002'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoTestParameter.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoTestParameter.php deleted file mode 100644 index 997a1fd2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoTestParameter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoTestParameter extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04011001.01000000'; - - protected $Name = 'VideoTestParameter'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Test Parameter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoTestResult.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoTestResult.php deleted file mode 100644 index 6d43cff1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoTestResult.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoTestResult extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'VideoTestResult'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Video Test Result'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VideoWatermarkKind.php b/lib/PHPExiftool/Driver/Tag/MXF/VideoWatermarkKind.php deleted file mode 100644 index 4097fb015..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VideoWatermarkKind.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoWatermarkKind extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0109.00000000'; - - protected $Name = 'VideoWatermarkKind'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Watermark Kind'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ViewportAspectRatio.php b/lib/PHPExiftool/Driver/Tag/MXF/ViewportAspectRatio.php deleted file mode 100644 index 0a1940b99..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ViewportAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewportAspectRatio extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.04010101.03000000'; - - protected $Name = 'ViewportAspectRatio'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Viewport Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ViewportHeight.php b/lib/PHPExiftool/Driver/Tag/MXF/ViewportHeight.php deleted file mode 100644 index f54127bd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ViewportHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewportHeight extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010904.01010100'; - - protected $Name = 'ViewportHeight'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Viewport Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ViewportImageCenterCCoordinate.php b/lib/PHPExiftool/Driver/Tag/MXF/ViewportImageCenterCCoordinate.php deleted file mode 100644 index 457010b11..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ViewportImageCenterCCoordinate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewportImageCenterCCoordinate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010203.05000000'; - - protected $Name = 'ViewportImageCenterCCoordinate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Viewport Image Center C Coordinate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ViewportImageCenterYCoordinate.php b/lib/PHPExiftool/Driver/Tag/MXF/ViewportImageCenterYCoordinate.php deleted file mode 100644 index 31147fd75..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ViewportImageCenterYCoordinate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewportImageCenterYCoordinate extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010203.06000000'; - - protected $Name = 'ViewportImageCenterYCoordinate'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Viewport Image Center Y Coordinate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/ViewportWidth.php b/lib/PHPExiftool/Driver/Tag/MXF/ViewportWidth.php deleted file mode 100644 index 4780d108f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/ViewportWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewportWidth extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.07010904.01010200'; - - protected $Name = 'ViewportWidth'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Viewport Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/VoiceTalentName.php b/lib/PHPExiftool/Driver/Tag/MXF/VoiceTalentName.php deleted file mode 100644 index 7af72a0e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/VoiceTalentName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VoiceTalentName extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.0d0b0a07.00000000'; - - protected $Name = 'VoiceTalentName'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Voice Talent Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/WAVESummary.php b/lib/PHPExiftool/Driver/Tag/MXF/WAVESummary.php deleted file mode 100644 index 09b0a3702..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/WAVESummary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WAVESummary extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0102.03030302.01000000'; - - protected $Name = 'WAVESummary'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WAVE Summary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Weighting.php b/lib/PHPExiftool/Driver/Tag/MXF/Weighting.php deleted file mode 100644 index db04066a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Weighting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Weighting extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04021002.00000000'; - - protected $Name = 'Weighting'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Weighting'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/WhiteReferenceLevel.php b/lib/PHPExiftool/Driver/Tag/MXF/WhiteReferenceLevel.php deleted file mode 100644 index 1d2f67d37..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/WhiteReferenceLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteReferenceLevel extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.04010503.04000000'; - - protected $Name = 'WhiteReferenceLevel'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'White Reference Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/WorkInProgressFlag.php b/lib/PHPExiftool/Driver/Tag/MXF/WorkInProgressFlag.php deleted file mode 100644 index 54d8bed4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/WorkInProgressFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorkInProgressFlag extends AbstractTag -{ - - protected $Id = '060e2b34.0101.0101.05010304.00000000'; - - protected $Name = 'Work-in-ProgressFlag'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Work-in-Progress Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/WorkingTitle.php b/lib/PHPExiftool/Driver/Tag/MXF/WorkingTitle.php deleted file mode 100644 index c6599cfcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/WorkingTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorkingTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WorkingTitle'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Working Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/XMLDocumentText.php b/lib/PHPExiftool/Driver/Tag/MXF/XMLDocumentText.php deleted file mode 100644 index 4d3cc2384..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/XMLDocumentText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMLDocumentText extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'XMLDocumentText'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'XML Document Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/XOsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/XOsiz.php deleted file mode 100644 index 58474ac9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/XOsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XOsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.04000000'; - - protected $Name = 'XOsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'X Osiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/XTOsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/XTOsiz.php deleted file mode 100644 index acab78c19..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/XTOsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XTOsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.08000000'; - - protected $Name = 'XTOsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'XT Osiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/XTsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/XTsiz.php deleted file mode 100644 index 84c167692..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/XTsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XTsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.06000000'; - - protected $Name = 'XTsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'X Tsiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Xsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/Xsiz.php deleted file mode 100644 index d688ec85e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Xsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Xsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.02000000'; - - protected $Name = 'Xsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Xsiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/YOsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/YOsiz.php deleted file mode 100644 index 537eabbae..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/YOsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YOsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.05000000'; - - protected $Name = 'YOsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Y Osiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/YTOsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/YTOsiz.php deleted file mode 100644 index 1e07df980..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/YTOsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YTOsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.09000000'; - - protected $Name = 'YTOsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'YT Osiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/YTsiz.php b/lib/PHPExiftool/Driver/Tag/MXF/YTsiz.php deleted file mode 100644 index 87a9e694a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/YTsiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YTsiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.07000000'; - - protected $Name = 'YTsiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Y Tsiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MXF/Ysiz.php b/lib/PHPExiftool/Driver/Tag/MXF/Ysiz.php deleted file mode 100644 index c825678e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MXF/Ysiz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MXF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ysiz extends AbstractTag -{ - - protected $Id = '060e2b34.0101.010a.04010603.03000000'; - - protected $Name = 'Ysiz'; - - protected $FullName = 'MXF::Main'; - - protected $GroupName = 'MXF'; - - protected $g0 = 'MXF'; - - protected $g1 = 'MXF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Ysiz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImage.php deleted file mode 100644 index 6579915fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MakerNotes; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'QuickTime::Flip'; - - protected $GroupName = 'MakerNotes'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'MakerNotes'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageHeight.php b/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageHeight.php deleted file mode 100644 index eb15aef66..000000000 --- a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MakerNotes; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewImageHeight'; - - protected $FullName = 'QuickTime::Flip'; - - protected $GroupName = 'MakerNotes'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'MakerNotes'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageLength.php deleted file mode 100644 index 0ff2950ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MakerNotes; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'QuickTime::Flip'; - - protected $GroupName = 'MakerNotes'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'MakerNotes'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageWidth.php b/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageWidth.php deleted file mode 100644 index 0048fe47c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MakerNotes/PreviewImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MakerNotes; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PreviewImageWidth'; - - protected $FullName = 'QuickTime::Flip'; - - protected $GroupName = 'MakerNotes'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'MakerNotes'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MakerNotes/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/MakerNotes/SerialNumber.php deleted file mode 100644 index 8d876b94b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MakerNotes/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MakerNotes; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'QuickTime::Flip'; - - protected $GroupName = 'MakerNotes'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'MakerNotes'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - - protected $local_g2 = 'Camera'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AspectRatioType.php b/lib/PHPExiftool/Driver/Tag/Matroska/AspectRatioType.php deleted file mode 100644 index 8aeca45a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AspectRatioType.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatioType extends AbstractTag -{ - - protected $Id = 5299; - - protected $Name = 'AspectRatioType'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Aspect Ratio Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Free Resizing', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Keep Aspect Ratio', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fixed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileData.php b/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileData.php deleted file mode 100644 index fdcf6e396..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttachedFileData extends AbstractTag -{ - - protected $Id = 1628; - - protected $Name = 'AttachedFileData'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attached File Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileDescription.php b/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileDescription.php deleted file mode 100644 index c21922959..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttachedFileDescription extends AbstractTag -{ - - protected $Id = 1662; - - protected $Name = 'AttachedFileDescription'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Attached File Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileMIMEType.php b/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileMIMEType.php deleted file mode 100644 index 1193ebec2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileMIMEType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttachedFileMIMEType extends AbstractTag -{ - - protected $Id = 1632; - - protected $Name = 'AttachedFileMIMEType'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Attached File MIME Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileName.php b/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileName.php deleted file mode 100644 index 5984b6153..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttachedFileName extends AbstractTag -{ - - protected $Id = 1646; - - protected $Name = 'AttachedFileName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Attached File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileReferral.php b/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileReferral.php deleted file mode 100644 index efbe66af9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileReferral.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttachedFileReferral extends AbstractTag -{ - - protected $Id = 1653; - - protected $Name = 'AttachedFileReferral'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attached File Referral'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileUID.php deleted file mode 100644 index 25f1c1387..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AttachedFileUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttachedFileUID extends AbstractTag -{ - - protected $Id = 1710; - - protected $Name = 'AttachedFileUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Attached File UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AudioBitsPerSample.php b/lib/PHPExiftool/Driver/Tag/Matroska/AudioBitsPerSample.php deleted file mode 100644 index 5e3742f9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AudioBitsPerSample.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitsPerSample extends AbstractTag -{ - - protected $Id = 8804; - - protected $Name = 'AudioBitsPerSample'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Audio Bits Per Sample'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/Matroska/AudioChannels.php deleted file mode 100644 index 0ce960d3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AudioChannels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AudioCodecID.php b/lib/PHPExiftool/Driver/Tag/Matroska/AudioCodecID.php deleted file mode 100644 index 8ccc7b561..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AudioCodecID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecID extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AudioCodecID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Codec ID'; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AudioCodecName.php b/lib/PHPExiftool/Driver/Tag/Matroska/AudioCodecName.php deleted file mode 100644 index de271a190..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AudioCodecName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecName extends AbstractTag -{ - - protected $Id = 362120; - - protected $Name = 'AudioCodecName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Audio Codec Name'; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/Matroska/AudioSampleRate.php deleted file mode 100644 index 36eef4656..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/AudioSampleRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 53; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Block.php b/lib/PHPExiftool/Driver/Tag/Matroska/Block.php deleted file mode 100644 index 18f7e1cdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Block.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Block extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'Block'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/BlockAddID.php b/lib/PHPExiftool/Driver/Tag/Matroska/BlockAddID.php deleted file mode 100644 index c23605afc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/BlockAddID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockAddID extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'BlockAddID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Block Add ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/BlockAdditional.php b/lib/PHPExiftool/Driver/Tag/Matroska/BlockAdditional.php deleted file mode 100644 index 19564da38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/BlockAdditional.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockAdditional extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'BlockAdditional'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Additional'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/BlockAdditionalID.php b/lib/PHPExiftool/Driver/Tag/Matroska/BlockAdditionalID.php deleted file mode 100644 index bc8e15485..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/BlockAdditionalID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockAdditionalID extends AbstractTag -{ - - protected $Id = 75; - - protected $Name = 'BlockAdditionalID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Block Additional ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/BlockDuration.php b/lib/PHPExiftool/Driver/Tag/Matroska/BlockDuration.php deleted file mode 100644 index 6f698d75a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/BlockDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockDuration extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'BlockDuration'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Block Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/BlockVirtual.php b/lib/PHPExiftool/Driver/Tag/Matroska/BlockVirtual.php deleted file mode 100644 index cbe2186a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/BlockVirtual.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlockVirtual extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'BlockVirtual'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Block Virtual'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CRC32.php b/lib/PHPExiftool/Driver/Tag/Matroska/CRC32.php deleted file mode 100644 index 337256f63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CRC32.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CRC32 extends AbstractTag -{ - - protected $Id = 63; - - protected $Name = 'CRC-32'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CRC-32'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChannelPositions.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChannelPositions.php deleted file mode 100644 index b192fbf3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChannelPositions.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelPositions extends AbstractTag -{ - - protected $Id = 15739; - - protected $Name = 'ChannelPositions'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Positions'; - - protected $local_g2 = 'Audio'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterCountry.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterCountry.php deleted file mode 100644 index 51cdc08af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterCountry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterCountry extends AbstractTag -{ - - protected $Id = 894; - - protected $Name = 'ChapterCountry'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Chapter Country'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterFlagEnabled.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterFlagEnabled.php deleted file mode 100644 index 47647085d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterFlagEnabled.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterFlagEnabled extends AbstractTag -{ - - protected $Id = 1432; - - protected $Name = 'ChapterFlagEnabled'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Flag Enabled'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterFlagHidden.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterFlagHidden.php deleted file mode 100644 index 9837dcbee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterFlagHidden.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterFlagHidden extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'ChapterFlagHidden'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Flag Hidden'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterLanguage.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterLanguage.php deleted file mode 100644 index 8dc8235f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterLanguage extends AbstractTag -{ - - protected $Id = 892; - - protected $Name = 'ChapterLanguage'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Chapter Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterPhysicalEquivalent.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterPhysicalEquivalent.php deleted file mode 100644 index def785b8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterPhysicalEquivalent.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterPhysicalEquivalent extends AbstractTag -{ - - protected $Id = 9155; - - protected $Name = 'ChapterPhysicalEquivalent'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Physical Equivalent'; - - protected $Values = array( - 10 => array( - 'Id' => 10, - 'Label' => 'Index', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Track', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Session', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Layer', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Side', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'CD / DVD', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Set / Package', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessCodecID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessCodecID.php deleted file mode 100644 index d35306c91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessCodecID.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterProcessCodecID extends AbstractTag -{ - - protected $Id = 10581; - - protected $Name = 'ChapterProcessCodecID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Process Codec ID'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Matroska', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'DVD', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessData.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessData.php deleted file mode 100644 index e654e030a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterProcessData extends AbstractTag -{ - - protected $Id = 10547; - - protected $Name = 'ChapterProcessData'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter Process Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessPrivate.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessPrivate.php deleted file mode 100644 index c7969fee5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessPrivate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterProcessPrivate extends AbstractTag -{ - - protected $Id = 1293; - - protected $Name = 'ChapterProcessPrivate'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter Process Private'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessTime.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessTime.php deleted file mode 100644 index aa4ca9339..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterProcessTime.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterProcessTime extends AbstractTag -{ - - protected $Id = 10530; - - protected $Name = 'ChapterProcessTime'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Process Time'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'For Duration of Chapter', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Before Chapter', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'After Chapter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterSegmentEditionUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterSegmentEditionUID.php deleted file mode 100644 index a566390f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterSegmentEditionUID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterSegmentEditionUID extends AbstractTag -{ - - protected $Id = 11964; - - protected $Name = 'ChapterSegmentEditionUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter Segment Edition UID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterSegmentUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterSegmentUID.php deleted file mode 100644 index 769dd07e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterSegmentUID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterSegmentUID extends AbstractTag -{ - - protected $Id = 11879; - - protected $Name = 'ChapterSegmentUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter Segment UID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterString.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterString.php deleted file mode 100644 index 6b9010d0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterString.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterString extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ChapterString'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Chapter String'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTimeEnd.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTimeEnd.php deleted file mode 100644 index 8a6329745..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTimeEnd.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterTimeEnd extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'ChapterTimeEnd'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Time End'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTimeStart.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTimeStart.php deleted file mode 100644 index e5bddecc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTimeStart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterTimeStart extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'ChapterTimeStart'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Time Start'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTrackNumber.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTrackNumber.php deleted file mode 100644 index de47fe7c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterTrackNumber extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'ChapterTrackNumber'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateCodec.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateCodec.php deleted file mode 100644 index 4b0efa861..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateCodec.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterTranslateCodec extends AbstractTag -{ - - protected $Id = 10687; - - protected $Name = 'ChapterTranslateCodec'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Translate Codec'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Matroska Script', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'DVD Menu', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateEditionUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateEditionUID.php deleted file mode 100644 index bc37efd8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateEditionUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterTranslateEditionUID extends AbstractTag -{ - - protected $Id = 10748; - - protected $Name = 'ChapterTranslateEditionUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter Translate Edition UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateID.php deleted file mode 100644 index 5fc64172b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterTranslateID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterTranslateID extends AbstractTag -{ - - protected $Id = 10661; - - protected $Name = 'ChapterTranslateID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter Translate ID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ChapterUID.php deleted file mode 100644 index 49eca8f24..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ChapterUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterUID extends AbstractTag -{ - - protected $Id = 13252; - - protected $Name = 'ChapterUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Chapter UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ClusterDuration.php b/lib/PHPExiftool/Driver/Tag/Matroska/ClusterDuration.php deleted file mode 100644 index c4d611afd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ClusterDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClusterDuration extends AbstractTag -{ - - protected $Id = 79; - - protected $Name = 'ClusterDuration'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cluster Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecDecodeAll.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecDecodeAll.php deleted file mode 100644 index 78b6f9a15..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecDecodeAll.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecDecodeAll extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'CodecDecodeAll'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Codec Decode All'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecDownloadURL.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecDownloadURL.php deleted file mode 100644 index 30be704ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecDownloadURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecDownloadURL extends AbstractTag -{ - - protected $Id = 438848; - - protected $Name = 'CodecDownloadURL'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Codec Download URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecID.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecID.php deleted file mode 100644 index a50351b37..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecID extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CodecID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Codec ID'; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecInfoURL.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecInfoURL.php deleted file mode 100644 index 6e85c35c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecInfoURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecInfoURL extends AbstractTag -{ - - protected $Id = 1785920; - - protected $Name = 'CodecInfoURL'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Codec Info URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecName.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecName.php deleted file mode 100644 index addd39697..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecName extends AbstractTag -{ - - protected $Id = 362120; - - protected $Name = 'CodecName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Codec Name'; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecPrivate.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecPrivate.php deleted file mode 100644 index abd6fdaad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecPrivate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecPrivate extends AbstractTag -{ - - protected $Id = 9122; - - protected $Name = 'CodecPrivate'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codec Private'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecSettings.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecSettings.php deleted file mode 100644 index db6da6c7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecSettings.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecSettings extends AbstractTag -{ - - protected $Id = 1742487; - - protected $Name = 'CodecSettings'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Codec Settings'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CodecState.php b/lib/PHPExiftool/Driver/Tag/Matroska/CodecState.php deleted file mode 100644 index bd37a4bc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CodecState.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecState extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'CodecState'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codec State'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Matroska/ColorSpace.php deleted file mode 100644 index 8b5fbd79f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ColorSpace.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 963876; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Space'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentCompressionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentCompressionAlgorithm.php deleted file mode 100644 index b1867461f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentCompressionAlgorithm.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentCompressionAlgorithm extends AbstractTag -{ - - protected $Id = 596; - - protected $Name = 'ContentCompressionAlgorithm'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Content Compression Algorithm'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'zlib', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'bzlib', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'lzo1x', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Header Stripping', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentCompressionSettings.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentCompressionSettings.php deleted file mode 100644 index bed2bb646..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentCompressionSettings.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentCompressionSettings extends AbstractTag -{ - - protected $Id = 597; - - protected $Name = 'ContentCompressionSettings'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Compression Settings'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingOrder.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingOrder.php deleted file mode 100644 index c7647ee19..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentEncodingOrder extends AbstractTag -{ - - protected $Id = 4145; - - protected $Name = 'ContentEncodingOrder'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Content Encoding Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingScope.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingScope.php deleted file mode 100644 index 5f40868d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingScope.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentEncodingScope extends AbstractTag -{ - - protected $Id = 4146; - - protected $Name = 'ContentEncodingScope'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Content Encoding Scope'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingType.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingType.php deleted file mode 100644 index a6d043aad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncodingType.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentEncodingType extends AbstractTag -{ - - protected $Id = 4147; - - protected $Name = 'ContentEncodingType'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Content Encoding Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Compression', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Encryption', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncryptionAlgorithm.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncryptionAlgorithm.php deleted file mode 100644 index f1520e611..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncryptionAlgorithm.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentEncryptionAlgorithm extends AbstractTag -{ - - protected $Id = 2017; - - protected $Name = 'ContentEncryptionAlgorithm'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Content Encryption Algorithm'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Encrypted', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'DES', - ), - 2 => array( - 'Id' => 2, - 'Label' => '3DES', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Twofish', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Blowfish', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'AES', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncryptionKeyID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncryptionKeyID.php deleted file mode 100644 index 7a5ebbf39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentEncryptionKeyID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentEncryptionKeyID extends AbstractTag -{ - - protected $Id = 2018; - - protected $Name = 'ContentEncryptionKeyID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Encryption Key ID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignature.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignature.php deleted file mode 100644 index 987a505ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentSignature extends AbstractTag -{ - - protected $Id = 2019; - - protected $Name = 'ContentSignature'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Signature'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureAlgorithm.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureAlgorithm.php deleted file mode 100644 index fa87b5450..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureAlgorithm.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentSignatureAlgorithm extends AbstractTag -{ - - protected $Id = 2021; - - protected $Name = 'ContentSignatureAlgorithm'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Content Signature Algorithm'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Signed', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'RSA', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureHashAlgorithm.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureHashAlgorithm.php deleted file mode 100644 index 89f773b6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureHashAlgorithm.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentSignatureHashAlgorithm extends AbstractTag -{ - - protected $Id = 2022; - - protected $Name = 'ContentSignatureHashAlgorithm'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Content Signature Hash Algorithm'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Signed', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'SHA1-160', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'MD5', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureKeyID.php b/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureKeyID.php deleted file mode 100644 index 2ab28d9c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ContentSignatureKeyID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentSignatureKeyID extends AbstractTag -{ - - protected $Id = 2020; - - protected $Name = 'ContentSignatureKeyID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Signature Key ID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CropBottom.php b/lib/PHPExiftool/Driver/Tag/Matroska/CropBottom.php deleted file mode 100644 index 0c62e065c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CropBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropBottom extends AbstractTag -{ - - protected $Id = 5290; - - protected $Name = 'CropBottom'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Crop Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CropLeft.php b/lib/PHPExiftool/Driver/Tag/Matroska/CropLeft.php deleted file mode 100644 index 08a430717..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CropLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeft extends AbstractTag -{ - - protected $Id = 5324; - - protected $Name = 'CropLeft'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Crop Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CropRight.php b/lib/PHPExiftool/Driver/Tag/Matroska/CropRight.php deleted file mode 100644 index 9b74c8a25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CropRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropRight extends AbstractTag -{ - - protected $Id = 5341; - - protected $Name = 'CropRight'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Crop Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CropTop.php b/lib/PHPExiftool/Driver/Tag/Matroska/CropTop.php deleted file mode 100644 index 0cd089de0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CropTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTop extends AbstractTag -{ - - protected $Id = 5307; - - protected $Name = 'CropTop'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Crop Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueBlockNumber.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueBlockNumber.php deleted file mode 100644 index 197199e9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueBlockNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueBlockNumber extends AbstractTag -{ - - protected $Id = 4984; - - protected $Name = 'CueBlockNumber'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Block Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueClusterPosition.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueClusterPosition.php deleted file mode 100644 index b66428d3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueClusterPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueClusterPosition extends AbstractTag -{ - - protected $Id = 113; - - protected $Name = 'CueClusterPosition'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Cluster Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueCodecState.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueCodecState.php deleted file mode 100644 index 912f6a6ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueCodecState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueCodecState extends AbstractTag -{ - - protected $Id = 106; - - protected $Name = 'CueCodecState'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Codec State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefCluster.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueRefCluster.php deleted file mode 100644 index 7f82bc7c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefCluster.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueRefCluster extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'CueRefCluster'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Ref Cluster'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefCodecState.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueRefCodecState.php deleted file mode 100644 index e7b5f77a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefCodecState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueRefCodecState extends AbstractTag -{ - - protected $Id = 107; - - protected $Name = 'CueRefCodecState'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Ref Codec State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefNumber.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueRefNumber.php deleted file mode 100644 index 4b3ee1a5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueRefNumber extends AbstractTag -{ - - protected $Id = 4959; - - protected $Name = 'CueRefNumber'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Ref Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefTime.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueRefTime.php deleted file mode 100644 index b20806b8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueRefTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueRefTime extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'CueRefTime'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Ref Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueTime.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueTime.php deleted file mode 100644 index fd755856a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueTime extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'CueTime'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/CueTrack.php b/lib/PHPExiftool/Driver/Tag/Matroska/CueTrack.php deleted file mode 100644 index 8e4d90734..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/CueTrack.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CueTrack extends AbstractTag -{ - - protected $Id = 119; - - protected $Name = 'CueTrack'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Cue Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Matroska/DateTimeOriginal.php deleted file mode 100644 index 184ad22a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 1121; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DefaultDuration.php b/lib/PHPExiftool/Driver/Tag/Matroska/DefaultDuration.php deleted file mode 100644 index badf06592..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DefaultDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultDuration extends AbstractTag -{ - - protected $Id = 254851; - - protected $Name = 'DefaultDuration'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Default Duration'; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Delay.php b/lib/PHPExiftool/Driver/Tag/Matroska/Delay.php deleted file mode 100644 index 3d8610760..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Delay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Delay extends AbstractTag -{ - - protected $Id = 78; - - protected $Name = 'Delay'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Delay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DisplayHeight.php b/lib/PHPExiftool/Driver/Tag/Matroska/DisplayHeight.php deleted file mode 100644 index a178252a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DisplayHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayHeight extends AbstractTag -{ - - protected $Id = 5306; - - protected $Name = 'DisplayHeight'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Display Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DisplayUnit.php b/lib/PHPExiftool/Driver/Tag/Matroska/DisplayUnit.php deleted file mode 100644 index 4e43d9814..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DisplayUnit.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayUnit extends AbstractTag -{ - - protected $Id = 5298; - - protected $Name = 'DisplayUnit'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Display Unit'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Pixels', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'cm', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'inches', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DisplayWidth.php b/lib/PHPExiftool/Driver/Tag/Matroska/DisplayWidth.php deleted file mode 100644 index f114568d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DisplayWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayWidth extends AbstractTag -{ - - protected $Id = 5296; - - protected $Name = 'DisplayWidth'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Display Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DocType.php b/lib/PHPExiftool/Driver/Tag/Matroska/DocType.php deleted file mode 100644 index f89bacef9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DocType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocType extends AbstractTag -{ - - protected $Id = 642; - - protected $Name = 'DocType'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Doc Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DocTypeReadVersion.php b/lib/PHPExiftool/Driver/Tag/Matroska/DocTypeReadVersion.php deleted file mode 100644 index f83d975a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DocTypeReadVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocTypeReadVersion extends AbstractTag -{ - - protected $Id = 645; - - protected $Name = 'DocTypeReadVersion'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Doc Type Read Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/DocTypeVersion.php b/lib/PHPExiftool/Driver/Tag/Matroska/DocTypeVersion.php deleted file mode 100644 index bcf13dafd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/DocTypeVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocTypeVersion extends AbstractTag -{ - - protected $Id = 647; - - protected $Name = 'DocTypeVersion'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Doc Type Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Duration.php b/lib/PHPExiftool/Driver/Tag/Matroska/Duration.php deleted file mode 100644 index ea191b133..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 1161; - - protected $Name = 'Duration'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLMaxIDLength.php b/lib/PHPExiftool/Driver/Tag/Matroska/EBMLMaxIDLength.php deleted file mode 100644 index 30f696df5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLMaxIDLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EBMLMaxIDLength extends AbstractTag -{ - - protected $Id = 754; - - protected $Name = 'EBMLMaxIDLength'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'EBML Max ID Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLMaxSizeLength.php b/lib/PHPExiftool/Driver/Tag/Matroska/EBMLMaxSizeLength.php deleted file mode 100644 index 12d6f528b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLMaxSizeLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EBMLMaxSizeLength extends AbstractTag -{ - - protected $Id = 755; - - protected $Name = 'EBMLMaxSizeLength'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'EBML Max Size Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLReadVersion.php b/lib/PHPExiftool/Driver/Tag/Matroska/EBMLReadVersion.php deleted file mode 100644 index 46f363a12..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLReadVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EBMLReadVersion extends AbstractTag -{ - - protected $Id = 759; - - protected $Name = 'EBMLReadVersion'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'EBML Read Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLVersion.php b/lib/PHPExiftool/Driver/Tag/Matroska/EBMLVersion.php deleted file mode 100644 index d3d2f1730..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EBMLVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EBMLVersion extends AbstractTag -{ - - protected $Id = 646; - - protected $Name = 'EBMLVersion'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'EBML Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagDefault.php b/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagDefault.php deleted file mode 100644 index baa915cd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagDefault.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditionFlagDefault extends AbstractTag -{ - - protected $Id = 1499; - - protected $Name = 'EditionFlagDefault'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Edition Flag Default'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagHidden.php b/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagHidden.php deleted file mode 100644 index 7deb5188f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagHidden.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditionFlagHidden extends AbstractTag -{ - - protected $Id = 1469; - - protected $Name = 'EditionFlagHidden'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Edition Flag Hidden'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagOrdered.php b/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagOrdered.php deleted file mode 100644 index b05dca3c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EditionFlagOrdered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditionFlagOrdered extends AbstractTag -{ - - protected $Id = 1501; - - protected $Name = 'EditionFlagOrdered'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Edition Flag Ordered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EditionUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/EditionUID.php deleted file mode 100644 index 2cee73eba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EditionUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditionUID extends AbstractTag -{ - - protected $Id = 1468; - - protected $Name = 'EditionUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Edition UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/EncryptedBlock.php b/lib/PHPExiftool/Driver/Tag/Matroska/EncryptedBlock.php deleted file mode 100644 index 0dfcdf52a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/EncryptedBlock.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptedBlock extends AbstractTag -{ - - protected $Id = 47; - - protected $Name = 'EncryptedBlock'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encrypted Block'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/FrameNumber.php b/lib/PHPExiftool/Driver/Tag/Matroska/FrameNumber.php deleted file mode 100644 index 7e848d18c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/FrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameNumber extends AbstractTag -{ - - protected $Id = 77; - - protected $Name = 'FrameNumber'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/FrameRate.php b/lib/PHPExiftool/Driver/Tag/Matroska/FrameRate.php deleted file mode 100644 index a1bead70b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 230371; - - protected $Name = 'FrameRate'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Gamma.php b/lib/PHPExiftool/Driver/Tag/Matroska/Gamma.php deleted file mode 100644 index 62942274c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 1029411; - - protected $Name = 'Gamma'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/Matroska/ImageHeight.php deleted file mode 100644 index 4992890ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/Matroska/ImageWidth.php deleted file mode 100644 index 8c6bcc08c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/LaceNumber.php b/lib/PHPExiftool/Driver/Tag/Matroska/LaceNumber.php deleted file mode 100644 index c8867bd66..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/LaceNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LaceNumber extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'LaceNumber'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Lace Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/MaxBlockAdditionID.php b/lib/PHPExiftool/Driver/Tag/Matroska/MaxBlockAdditionID.php deleted file mode 100644 index a7ee53a91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/MaxBlockAdditionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxBlockAdditionID extends AbstractTag -{ - - protected $Id = 5614; - - protected $Name = 'MaxBlockAdditionID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Max Block Addition ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/MaxCache.php b/lib/PHPExiftool/Driver/Tag/Matroska/MaxCache.php deleted file mode 100644 index bf24f5fcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/MaxCache.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxCache extends AbstractTag -{ - - protected $Id = 11768; - - protected $Name = 'MaxCache'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Max Cache'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/MinCache.php b/lib/PHPExiftool/Driver/Tag/Matroska/MinCache.php deleted file mode 100644 index 782504bd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/MinCache.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinCache extends AbstractTag -{ - - protected $Id = 11751; - - protected $Name = 'MinCache'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Min Cache'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/MuxingApp.php b/lib/PHPExiftool/Driver/Tag/Matroska/MuxingApp.php deleted file mode 100644 index 7abbc8fe3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/MuxingApp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MuxingApp extends AbstractTag -{ - - protected $Id = 3456; - - protected $Name = 'MuxingApp'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Muxing App'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/NextFileName.php b/lib/PHPExiftool/Driver/Tag/Matroska/NextFileName.php deleted file mode 100644 index 85ff5c0ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/NextFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NextFileName extends AbstractTag -{ - - protected $Id = 1999803; - - protected $Name = 'NextFileName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Next File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/NextUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/NextUID.php deleted file mode 100644 index 1bab7d108..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/NextUID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NextUID extends AbstractTag -{ - - protected $Id = 2013475; - - protected $Name = 'NextUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Next UID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/OutputAudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/Matroska/OutputAudioSampleRate.php deleted file mode 100644 index 2e51f37e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/OutputAudioSampleRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputAudioSampleRate extends AbstractTag -{ - - protected $Id = 14517; - - protected $Name = 'OutputAudioSampleRate'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Output Audio Sample Rate'; - - protected $local_g2 = 'Audio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Position.php b/lib/PHPExiftool/Driver/Tag/Matroska/Position.php deleted file mode 100644 index cef470cb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Position.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Position extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'Position'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/PrevFileName.php b/lib/PHPExiftool/Driver/Tag/Matroska/PrevFileName.php deleted file mode 100644 index fab017707..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/PrevFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrevFileName extends AbstractTag -{ - - protected $Id = 1868715; - - protected $Name = 'PrevFileName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Prev File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/PrevSize.php b/lib/PHPExiftool/Driver/Tag/Matroska/PrevSize.php deleted file mode 100644 index 48149cc1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/PrevSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrevSize extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'PrevSize'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Prev Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/PrevUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/PrevUID.php deleted file mode 100644 index 7a10a5576..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/PrevUID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrevUID extends AbstractTag -{ - - protected $Id = 1882403; - - protected $Name = 'PrevUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prev UID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ReferenceBlock.php b/lib/PHPExiftool/Driver/Tag/Matroska/ReferenceBlock.php deleted file mode 100644 index 57fc52f96..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ReferenceBlock.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceBlock extends AbstractTag -{ - - protected $Id = 123; - - protected $Name = 'ReferenceBlock'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'signed'; - - protected $Writable = false; - - protected $Description = 'Reference Block'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ReferencePriority.php b/lib/PHPExiftool/Driver/Tag/Matroska/ReferencePriority.php deleted file mode 100644 index 461b091fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ReferencePriority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferencePriority extends AbstractTag -{ - - protected $Id = 122; - - protected $Name = 'ReferencePriority'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Reference Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/ReferenceVirtual.php b/lib/PHPExiftool/Driver/Tag/Matroska/ReferenceVirtual.php deleted file mode 100644 index 9289d466d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/ReferenceVirtual.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceVirtual extends AbstractTag -{ - - protected $Id = 125; - - protected $Name = 'ReferenceVirtual'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'signed'; - - protected $Writable = false; - - protected $Description = 'Reference Virtual'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SeekID.php b/lib/PHPExiftool/Driver/Tag/Matroska/SeekID.php deleted file mode 100644 index 0c665b5a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SeekID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeekID extends AbstractTag -{ - - protected $Id = 5035; - - protected $Name = 'SeekID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Seek ID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SeekPosition.php b/lib/PHPExiftool/Driver/Tag/Matroska/SeekPosition.php deleted file mode 100644 index f3f699101..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SeekPosition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeekPosition extends AbstractTag -{ - - protected $Id = 5036; - - protected $Name = 'SeekPosition'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Seek Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SegmentFamily.php b/lib/PHPExiftool/Driver/Tag/Matroska/SegmentFamily.php deleted file mode 100644 index 9335d0652..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SegmentFamily.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentFamily extends AbstractTag -{ - - protected $Id = 1092; - - protected $Name = 'SegmentFamily'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment Family'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SegmentFileName.php b/lib/PHPExiftool/Driver/Tag/Matroska/SegmentFileName.php deleted file mode 100644 index c01f86742..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SegmentFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentFileName extends AbstractTag -{ - - protected $Id = 13188; - - protected $Name = 'SegmentFileName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Segment File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SegmentUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/SegmentUID.php deleted file mode 100644 index 4f5d24d62..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SegmentUID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SegmentUID extends AbstractTag -{ - - protected $Id = 13220; - - protected $Name = 'SegmentUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Segment UID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Signature.php b/lib/PHPExiftool/Driver/Tag/Matroska/Signature.php deleted file mode 100644 index e1ba084fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Signature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Signature extends AbstractTag -{ - - protected $Id = 16053; - - protected $Name = 'Signature'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signature'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SignatureAlgo.php b/lib/PHPExiftool/Driver/Tag/Matroska/SignatureAlgo.php deleted file mode 100644 index 034c04abe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SignatureAlgo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignatureAlgo extends AbstractTag -{ - - protected $Id = 16010; - - protected $Name = 'SignatureAlgo'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Signature Algo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SignatureHash.php b/lib/PHPExiftool/Driver/Tag/Matroska/SignatureHash.php deleted file mode 100644 index 8ed6dee57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SignatureHash.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignatureHash extends AbstractTag -{ - - protected $Id = 16026; - - protected $Name = 'SignatureHash'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Signature Hash'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SignaturePublicKey.php b/lib/PHPExiftool/Driver/Tag/Matroska/SignaturePublicKey.php deleted file mode 100644 index bd7ec5630..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SignaturePublicKey.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignaturePublicKey extends AbstractTag -{ - - protected $Id = 16037; - - protected $Name = 'SignaturePublicKey'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signature Public Key'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SignedElement.php b/lib/PHPExiftool/Driver/Tag/Matroska/SignedElement.php deleted file mode 100644 index 229b23cb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SignedElement.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignedElement extends AbstractTag -{ - - protected $Id = 9522; - - protected $Name = 'SignedElement'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signed Element'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SilentTrackNumber.php b/lib/PHPExiftool/Driver/Tag/Matroska/SilentTrackNumber.php deleted file mode 100644 index 4d615089d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SilentTrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SilentTrackNumber extends AbstractTag -{ - - protected $Id = 6359; - - protected $Name = 'SilentTrackNumber'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Silent Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/SimpleBlock.php b/lib/PHPExiftool/Driver/Tag/Matroska/SimpleBlock.php deleted file mode 100644 index d343f4175..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/SimpleBlock.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SimpleBlock extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'SimpleBlock'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Simple Block'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Stereo3DMode.php b/lib/PHPExiftool/Driver/Tag/Matroska/Stereo3DMode.php deleted file mode 100644 index e78121b1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Stereo3DMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Stereo3DMode extends AbstractTag -{ - - protected $Id = 5048; - - protected $Name = 'Stereo3DMode'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Stereo 3D Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagAttachmentUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagAttachmentUID.php deleted file mode 100644 index 3852af58c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagAttachmentUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagAttachmentUID extends AbstractTag -{ - - protected $Id = 9158; - - protected $Name = 'TagAttachmentUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Tag Attachment UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagBinary.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagBinary.php deleted file mode 100644 index e7ac4b57c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagBinary.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagBinary extends AbstractTag -{ - - protected $Id = 1157; - - protected $Name = 'TagBinary'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tag Binary'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagChapterUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagChapterUID.php deleted file mode 100644 index 327cc8994..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagChapterUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagChapterUID extends AbstractTag -{ - - protected $Id = 9156; - - protected $Name = 'TagChapterUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Tag Chapter UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagDefault.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagDefault.php deleted file mode 100644 index ce52192ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagDefault.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagDefault extends AbstractTag -{ - - protected $Id = 1156; - - protected $Name = 'TagDefault'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Tag Default'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagEditionUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagEditionUID.php deleted file mode 100644 index f16977146..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagEditionUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagEditionUID extends AbstractTag -{ - - protected $Id = 9161; - - protected $Name = 'TagEditionUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Tag Edition UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagLanguage.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagLanguage.php deleted file mode 100644 index 815cfa03b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagLanguage extends AbstractTag -{ - - protected $Id = 1146; - - protected $Name = 'TagLanguage'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Tag Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagName.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagName.php deleted file mode 100644 index 9bbae2be6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagName extends AbstractTag -{ - - protected $Id = 1443; - - protected $Name = 'TagName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Tag Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagString.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagString.php deleted file mode 100644 index 8bbac50a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagString.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagString extends AbstractTag -{ - - protected $Id = 1159; - - protected $Name = 'TagString'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Tag String'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TagTrackUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TagTrackUID.php deleted file mode 100644 index 9f614f488..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TagTrackUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagTrackUID extends AbstractTag -{ - - protected $Id = 9157; - - protected $Name = 'TagTrackUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Tag Track UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TargetType.php b/lib/PHPExiftool/Driver/Tag/Matroska/TargetType.php deleted file mode 100644 index 88073260c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TargetType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetType extends AbstractTag -{ - - protected $Id = 9162; - - protected $Name = 'TargetType'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Target Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TargetTypeValue.php b/lib/PHPExiftool/Driver/Tag/Matroska/TargetTypeValue.php deleted file mode 100644 index 50ccee43f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TargetTypeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetTypeValue extends AbstractTag -{ - - protected $Id = 10442; - - protected $Name = 'TargetTypeValue'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Target Type Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Timecode.php b/lib/PHPExiftool/Driver/Tag/Matroska/Timecode.php deleted file mode 100644 index f29c55c5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Timecode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Timecode extends AbstractTag -{ - - protected $Id = 103; - - protected $Name = 'Timecode'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Timecode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TimecodeScale.php b/lib/PHPExiftool/Driver/Tag/Matroska/TimecodeScale.php deleted file mode 100644 index 03b7bc40c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TimecodeScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimecodeScale extends AbstractTag -{ - - protected $Id = 710577; - - protected $Name = 'TimecodeScale'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Timecode Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Title.php b/lib/PHPExiftool/Driver/Tag/Matroska/Title.php deleted file mode 100644 index f1b5faea1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 15273; - - protected $Name = 'Title'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackAttachmentUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackAttachmentUID.php deleted file mode 100644 index 7549b98b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackAttachmentUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackAttachmentUID extends AbstractTag -{ - - protected $Id = 13382; - - protected $Name = 'TrackAttachmentUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Attachment UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackDefault.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackDefault.php deleted file mode 100644 index 5955de052..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackDefault.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackDefault extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'TrackDefault'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Default'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackForced.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackForced.php deleted file mode 100644 index 2f2df0d32..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackForced.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackForced extends AbstractTag -{ - - protected $Id = 5546; - - protected $Name = 'TrackForced'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Forced'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackLacing.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackLacing.php deleted file mode 100644 index 985bf5bfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackLacing.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackLacing extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'TrackLacing'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Lacing'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackLanguage.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackLanguage.php deleted file mode 100644 index 29d0d75af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackLanguage extends AbstractTag -{ - - protected $Id = 177564; - - protected $Name = 'TrackLanguage'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Track Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackName.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackName.php deleted file mode 100644 index 3e8304564..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackName extends AbstractTag -{ - - protected $Id = 4974; - - protected $Name = 'TrackName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Track Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackNumber.php deleted file mode 100644 index 6a7f2061d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = 87; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackOffset.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackOffset.php deleted file mode 100644 index 3ec28ea85..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackOffset extends AbstractTag -{ - - protected $Id = 4991; - - protected $Name = 'TrackOffset'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'signed'; - - protected $Writable = false; - - protected $Description = 'Track Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackOverlay.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackOverlay.php deleted file mode 100644 index cdd7ab20a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackOverlay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackOverlay extends AbstractTag -{ - - protected $Id = 12203; - - protected $Name = 'TrackOverlay'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Overlay'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTimecodeScale.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackTimecodeScale.php deleted file mode 100644 index e947a4fcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTimecodeScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackTimecodeScale extends AbstractTag -{ - - protected $Id = 209231; - - protected $Name = 'TrackTimecodeScale'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Track Timecode Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateCodec.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateCodec.php deleted file mode 100644 index 845ad686d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateCodec.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackTranslateCodec extends AbstractTag -{ - - protected $Id = 9919; - - protected $Name = 'TrackTranslateCodec'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Translate Codec'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Matroska Script', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'DVD Menu', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateEditionUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateEditionUID.php deleted file mode 100644 index 05adb07e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateEditionUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackTranslateEditionUID extends AbstractTag -{ - - protected $Id = 9980; - - protected $Name = 'TrackTranslateEditionUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Translate Edition UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateTrackID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateTrackID.php deleted file mode 100644 index e838357a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackTranslateTrackID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackTranslateTrackID extends AbstractTag -{ - - protected $Id = 9893; - - protected $Name = 'TrackTranslateTrackID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Translate Track ID'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackType.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackType.php deleted file mode 100644 index 4e6f6a8e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackType.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackType extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'TrackType'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Type'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Video', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Audio', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Complex', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Logo', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Subtitle', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Buttons', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Control', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackUID.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackUID.php deleted file mode 100644 index d877f88d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackUID extends AbstractTag -{ - - protected $Id = 13253; - - protected $Name = 'TrackUID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track UID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/TrackUsed.php b/lib/PHPExiftool/Driver/Tag/Matroska/TrackUsed.php deleted file mode 100644 index ca50bdb7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/TrackUsed.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackUsed extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'TrackUsed'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Track Used'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/VideoCodecID.php b/lib/PHPExiftool/Driver/Tag/Matroska/VideoCodecID.php deleted file mode 100644 index dcddbe740..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/VideoCodecID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodecID extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'VideoCodecID'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Codec ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/VideoCodecName.php b/lib/PHPExiftool/Driver/Tag/Matroska/VideoCodecName.php deleted file mode 100644 index 517369a0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/VideoCodecName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodecName extends AbstractTag -{ - - protected $Id = 362120; - - protected $Name = 'VideoCodecName'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Video Codec Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/VideoFrameRate.php b/lib/PHPExiftool/Driver/Tag/Matroska/VideoFrameRate.php deleted file mode 100644 index 8810be289..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/VideoFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameRate extends AbstractTag -{ - - protected $Id = 254851; - - protected $Name = 'VideoFrameRate'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Video Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/VideoScanType.php b/lib/PHPExiftool/Driver/Tag/Matroska/VideoScanType.php deleted file mode 100644 index 37f6f04ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/VideoScanType.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoScanType extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'VideoScanType'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'unsigned'; - - protected $Writable = false; - - protected $Description = 'Video Scan Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Progressive', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Interlaced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/Void.php b/lib/PHPExiftool/Driver/Tag/Matroska/Void.php deleted file mode 100644 index 3983b64b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/Void.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Void extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'Void'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Void'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Matroska/WritingApp.php b/lib/PHPExiftool/Driver/Tag/Matroska/WritingApp.php deleted file mode 100644 index 79e325b29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Matroska/WritingApp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Matroska; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WritingApp extends AbstractTag -{ - - protected $Id = 5953; - - protected $Name = 'WritingApp'; - - protected $FullName = 'Matroska::Main'; - - protected $GroupName = 'Matroska'; - - protected $g0 = 'Matroska'; - - protected $g1 = 'Matroska'; - - protected $g2 = 'Video'; - - protected $Type = 'utf8'; - - protected $Writable = false; - - protected $Description = 'Writing App'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Album.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/Album.php deleted file mode 100644 index ec4abe28a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'Album'; - - protected $Name = 'Album'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Caption.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/Caption.php deleted file mode 100644 index 6a43e7b7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Caption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Caption extends AbstractTag -{ - - protected $Id = 'Caption'; - - protected $Name = 'Caption'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Caption'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Date.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/Date.php deleted file mode 100644 index b420625e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Date.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'Date'; - - protected $Name = 'Date'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Keywords.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/Keywords.php deleted file mode 100644 index 766e3be52..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Name.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/Name.php deleted file mode 100644 index 0fa05122c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Name.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Name extends AbstractTag -{ - - protected $Id = 'Name'; - - protected $Name = 'Name'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/People.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/People.php deleted file mode 100644 index ffe1982ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/People.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class People extends AbstractTag -{ - - protected $Id = 'People'; - - protected $Name = 'People'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'People'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Places.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/Places.php deleted file mode 100644 index 1c8c4c829..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/Places.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Places extends AbstractTag -{ - - protected $Id = 'Places'; - - protected $Name = 'Places'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Places'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/ToolName.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/ToolName.php deleted file mode 100644 index 22be5e2ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/ToolName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToolName extends AbstractTag -{ - - protected $Id = 'Tool_Name'; - - protected $Name = 'Tool_Name'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tool Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MediaJukebox/ToolVersion.php b/lib/PHPExiftool/Driver/Tag/MediaJukebox/ToolVersion.php deleted file mode 100644 index 301527c27..000000000 --- a/lib/PHPExiftool/Driver/Tag/MediaJukebox/ToolVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MediaJukebox; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToolVersion extends AbstractTag -{ - - protected $Id = 'Tool_Version'; - - protected $Name = 'Tool_Version'; - - protected $FullName = 'JPEG::MediaJukebox'; - - protected $GroupName = 'MediaJukebox'; - - protected $g0 = 'XML'; - - protected $g1 = 'MediaJukebox'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tool Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/CameraOwner.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/CameraOwner.php deleted file mode 100644 index 22b0f27bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/CameraOwner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraOwner extends AbstractTag -{ - - protected $Id = 50003; - - protected $Name = 'CameraOwner'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Camera Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/CaptureConditionsPAR.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/CaptureConditionsPAR.php deleted file mode 100644 index 49fbb73c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/CaptureConditionsPAR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureConditionsPAR extends AbstractTag -{ - - protected $Id = 50002; - - protected $Name = 'CaptureConditionsPAR'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capture Conditions PAR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/CaptureDeviceFID.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/CaptureDeviceFID.php deleted file mode 100644 index ea5552af3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/CaptureDeviceFID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureDeviceFID extends AbstractTag -{ - - protected $Id = 50007; - - protected $Name = 'CaptureDeviceFID'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Capture Device FID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/DealerIDNumber.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/DealerIDNumber.php deleted file mode 100644 index f34a41b68..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/DealerIDNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DealerIDNumber extends AbstractTag -{ - - protected $Id = 50006; - - protected $Name = 'DealerIDNumber'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dealer ID Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/EditTagArray.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/EditTagArray.php deleted file mode 100644 index 0489138b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/EditTagArray.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditTagArray extends AbstractTag -{ - - protected $Id = 50022; - - protected $Name = 'EditTagArray'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit Tag Array'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/EnvelopeNumber.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/EnvelopeNumber.php deleted file mode 100644 index 9fcd5532c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/EnvelopeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnvelopeNumber extends AbstractTag -{ - - protected $Id = 50008; - - protected $Name = 'EnvelopeNumber'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Envelope Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmCategory.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmCategory.php deleted file mode 100644 index ce172cf82..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmCategory extends AbstractTag -{ - - protected $Id = 50010; - - protected $Name = 'FilmCategory'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmGencode.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmGencode.php deleted file mode 100644 index 848af1e42..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmGencode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmGencode extends AbstractTag -{ - - protected $Id = 50011; - - protected $Name = 'FilmGencode'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Gencode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmProductCode.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmProductCode.php deleted file mode 100644 index a76c4b0e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmProductCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmProductCode extends AbstractTag -{ - - protected $Id = 50000; - - protected $Name = 'FilmProductCode'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Product Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmSize.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmSize.php deleted file mode 100644 index 2c01c32b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/FilmSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmSize extends AbstractTag -{ - - protected $Id = 50013; - - protected $Name = 'FilmSize'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Film Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/FrameNumber.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/FrameNumber.php deleted file mode 100644 index 71038f628..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/FrameNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameNumber extends AbstractTag -{ - - protected $Id = 50009; - - protected $Name = 'FrameNumber'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/ImagePrintStatus.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/ImagePrintStatus.php deleted file mode 100644 index 31f4e114f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/ImagePrintStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagePrintStatus extends AbstractTag -{ - - protected $Id = 50286; - - protected $Name = 'ImagePrintStatus'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Print Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/ImageRotationStatus.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/ImageRotationStatus.php deleted file mode 100644 index ca782ff3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/ImageRotationStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageRotationStatus extends AbstractTag -{ - - protected $Id = 50019; - - protected $Name = 'ImageRotationStatus'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Rotation Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/ImageSourceEK.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/ImageSourceEK.php deleted file mode 100644 index 645bd549c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/ImageSourceEK.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSourceEK extends AbstractTag -{ - - protected $Id = 50001; - - protected $Name = 'ImageSourceEK'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Source EK'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/Magnification.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/Magnification.php deleted file mode 100644 index 6591e6fa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/Magnification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Magnification extends AbstractTag -{ - - protected $Id = 50023; - - protected $Name = 'Magnification'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Magnification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/MetadataNumber.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/MetadataNumber.php deleted file mode 100644 index 08ca6ee55..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/MetadataNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataNumber extends AbstractTag -{ - - protected $Id = 50021; - - protected $Name = 'MetadataNumber'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metadata Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/ModelAndVersion.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/ModelAndVersion.php deleted file mode 100644 index a3755c2a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/ModelAndVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelAndVersion extends AbstractTag -{ - - protected $Id = 50012; - - protected $Name = 'ModelAndVersion'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Model And Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeResolutionUnit.php deleted file mode 100644 index 749b4763b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeResolutionUnit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NativeResolutionUnit extends AbstractTag -{ - - protected $Id = 50042; - - protected $Name = 'NativeResolutionUnit'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Native Resolution Unit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeXResolution.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeXResolution.php deleted file mode 100644 index 754675ae9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeXResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NativeXResolution extends AbstractTag -{ - - protected $Id = 50028; - - protected $Name = 'NativeXResolution'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Native X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeYResolution.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeYResolution.php deleted file mode 100644 index 18b99110a..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/NativeYResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NativeYResolution extends AbstractTag -{ - - protected $Id = 50029; - - protected $Name = 'NativeYResolution'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Native Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/PrintQuality.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/PrintQuality.php deleted file mode 100644 index 227c75de5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/PrintQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintQuality extends AbstractTag -{ - - protected $Id = 50284; - - protected $Name = 'PrintQuality'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/RollGuidElements.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/RollGuidElements.php deleted file mode 100644 index 5b978f858..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/RollGuidElements.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RollGuidElements extends AbstractTag -{ - - protected $Id = 50020; - - protected $Name = 'RollGuidElements'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Roll Guid Elements'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAExposureRecord.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAExposureRecord.php deleted file mode 100644 index 57aa29d43..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAExposureRecord.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SBAExposureRecord extends AbstractTag -{ - - protected $Id = 50017; - - protected $Name = 'SBAExposureRecord'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SBA Exposure Record'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAInputImageBitDepth.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAInputImageBitDepth.php deleted file mode 100644 index e729cb50d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAInputImageBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SBAInputImageBitDepth extends AbstractTag -{ - - protected $Id = 50016; - - protected $Name = 'SBAInputImageBitDepth'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SBA Input Image Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAInputImageColorspace.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAInputImageColorspace.php deleted file mode 100644 index 1c0a5a4d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBAInputImageColorspace.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SBAInputImageColorspace extends AbstractTag -{ - - protected $Id = 50015; - - protected $Name = 'SBAInputImageColorspace'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SBA Input Image Colorspace'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBARGBShifts.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SBARGBShifts.php deleted file mode 100644 index e2060ebc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SBARGBShifts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SBARGBShifts extends AbstractTag -{ - - protected $Id = 50014; - - protected $Name = 'SBA_RGBShifts'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SBA RGB Shifts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SerialNumber.php deleted file mode 100644 index db169f192..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 50004; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageDirectory.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageDirectory.php deleted file mode 100644 index 9b42d36fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageDirectory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageDirectory extends AbstractTag -{ - - protected $Id = 50200; - - protected $Name = 'SourceImageDirectory'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Image Directory'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageFileName.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageFileName.php deleted file mode 100644 index 2e35ad9df..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageFileName extends AbstractTag -{ - - protected $Id = 50201; - - protected $Name = 'SourceImageFileName'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Image File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageVolumeName.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageVolumeName.php deleted file mode 100644 index 3dd08c2f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/SourceImageVolumeName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageVolumeName extends AbstractTag -{ - - protected $Id = 50202; - - protected $Name = 'SourceImageVolumeName'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Image Volume Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/UserAdjSBARGBShifts.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/UserAdjSBARGBShifts.php deleted file mode 100644 index 61975783c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/UserAdjSBARGBShifts.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserAdjSBARGBShifts extends AbstractTag -{ - - protected $Id = 50018; - - protected $Name = 'UserAdjSBA_RGBShifts'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Adj SBA RGB Shifts'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MetaIFD/UserSelectGroupTitle.php b/lib/PHPExiftool/Driver/Tag/MetaIFD/UserSelectGroupTitle.php deleted file mode 100644 index 5ce991c2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MetaIFD/UserSelectGroupTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MetaIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserSelectGroupTitle extends AbstractTag -{ - - protected $Id = 50005; - - protected $Name = 'UserSelectGroupTitle'; - - protected $FullName = 'Kodak::Meta'; - - protected $GroupName = 'MetaIFD'; - - protected $g0 = 'Meta'; - - protected $g1 = 'MetaIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Select Group Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Abstract0.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Abstract0.php deleted file mode 100644 index af05bca9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Abstract0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Abstract0 extends AbstractTag -{ - - protected $Id = 'Abstract'; - - protected $Name = 'Abstract'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Abstract'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AccountName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AccountName.php deleted file mode 100644 index ca084d809..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AccountName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccountName extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 9'; - - protected $Name = 'AccountName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Account Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTime.php deleted file mode 100644 index bef8ac148..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTime extends AbstractTag -{ - - protected $Id = 'AcquisitionTime'; - - protected $Name = 'AcquisitionTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeDay.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeDay.php deleted file mode 100644 index 170394bd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTimeDay extends AbstractTag -{ - - protected $Id = 'AcquisitionTimeDay'; - - protected $Name = 'AcquisitionTimeDay'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time Day'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeMonth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeMonth.php deleted file mode 100644 index 60b9fdaac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeMonth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTimeMonth extends AbstractTag -{ - - protected $Id = 'AcquisitionTimeMonth'; - - protected $Name = 'AcquisitionTimeMonth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYear.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYear.php deleted file mode 100644 index ad39300a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTimeYear extends AbstractTag -{ - - protected $Id = 'AcquisitionTimeYear'; - - protected $Name = 'AcquisitionTimeYear'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYearMonth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYearMonth.php deleted file mode 100644 index 58c8bde0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYearMonth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTimeYearMonth extends AbstractTag -{ - - protected $Id = 'AcquisitionTimeYearMonth'; - - protected $Name = 'AcquisitionTimeYearMonth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time Year Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYearMonthDay.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYearMonthDay.php deleted file mode 100644 index b36a64c10..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AcquisitionTimeYearMonthDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AcquisitionTimeYearMonthDay extends AbstractTag -{ - - protected $Id = 'AcquisitionTimeYearMonthDay'; - - protected $Name = 'AcquisitionTimeYearMonthDay'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Acquisition Time Year Month Day'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumArtist.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumArtist.php deleted file mode 100644 index 5d7121836..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumArtist extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AlbumArtist'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumArtistSortOrder.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumArtistSortOrder.php deleted file mode 100644 index c5b589df3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumArtistSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumArtistSortOrder extends AbstractTag -{ - - protected $Id = 'AlbumArtistSortOrder'; - - protected $Name = 'AlbumArtistSortOrder'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Artist Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumCoverURL.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumCoverURL.php deleted file mode 100644 index ac7df13e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumCoverURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumCoverURL extends AbstractTag -{ - - protected $Id = 'WM/AlbumCoverURL'; - - protected $Name = 'AlbumCoverURL'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Cover URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumID.php deleted file mode 100644 index b8a2f01b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumID extends AbstractTag -{ - - protected $Id = 'AlbumID'; - - protected $Name = 'AlbumID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumIDAlbumArtist.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumIDAlbumArtist.php deleted file mode 100644 index 9778e848d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumIDAlbumArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumIDAlbumArtist extends AbstractTag -{ - - protected $Id = 'AlbumIDAlbumArtist'; - - protected $Name = 'AlbumIDAlbumArtist'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album ID Album Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumTitle.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumTitle.php deleted file mode 100644 index 92d62fe3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AlbumTitle'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumTitleSortOrder.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumTitleSortOrder.php deleted file mode 100644 index 75de59107..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlbumTitleSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumTitleSortOrder extends AbstractTag -{ - - protected $Id = 'AlbumTitleSortOrder'; - - protected $Name = 'AlbumTitleSortOrder'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Title Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AlternateSourceURL.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AlternateSourceURL.php deleted file mode 100644 index ada533b41..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AlternateSourceURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlternateSourceURL extends AbstractTag -{ - - protected $Id = 'AlternateSourceURL'; - - protected $Name = 'AlternateSourceURL'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alternate Source URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Anniversary.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Anniversary.php deleted file mode 100644 index fac19669c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Anniversary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Anniversary extends AbstractTag -{ - - protected $Id = '{9AD5BADB-CEA7-4470-A03D-B84E51B9949E} 100'; - - protected $Name = 'Anniversary'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anniversary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Artist.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Artist.php deleted file mode 100644 index 2fd321629..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Artist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = '{56A3372E-CE9C-11D2-9F0E-006097C686F6} 2'; - - protected $Name = 'Artist'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AssistantsName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AssistantsName.php deleted file mode 100644 index 6a6152292..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AssistantsName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssistantsName extends AbstractTag -{ - - protected $Id = '{CD102C9C-5540-4A88-A6F6-64E4981C8CD1} 100'; - - protected $Name = 'AssistantsName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Assistants Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AssistantsPhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AssistantsPhone.php deleted file mode 100644 index 50c1d37c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AssistantsPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssistantsPhone extends AbstractTag -{ - - protected $Id = '{9A93244D-A7AD-4FF8-9B99-45EE4CC09AF6} 100'; - - protected $Name = 'AssistantsPhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Assistants Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Attachments.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Attachments.php deleted file mode 100644 index c70b52121..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Attachments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Attachments extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 21'; - - protected $Name = 'Attachments'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attachments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Attributes.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Attributes.php deleted file mode 100644 index c18eb59cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Attributes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Attributes extends AbstractTag -{ - - protected $Id = '{B725F130-47EF-101A-A5F1-02608C9EEBAC} 13'; - - protected $Name = 'Attributes'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Attributes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioBitrate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AudioBitrate.php deleted file mode 100644 index e16a9a776..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitrate extends AbstractTag -{ - - protected $Id = 'AudioBitrate'; - - protected $Name = 'AudioBitrate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioFormat.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AudioFormat.php deleted file mode 100644 index e96a9bd6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFormat extends AbstractTag -{ - - protected $Id = 'AudioFormat'; - - protected $Name = 'AudioFormat'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AudioSampleRate.php deleted file mode 100644 index e36f570a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioSampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = '{64440490-4C8B-11D1-8B70-080036B11A03} 5'; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioSampleSize.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AudioSampleSize.php deleted file mode 100644 index 7b8876388..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AudioSampleSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleSize extends AbstractTag -{ - - protected $Id = '{64440490-4C8B-11D1-8B70-080036B11A03} 6'; - - protected $Name = 'AudioSampleSize'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Author.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Author.php deleted file mode 100644 index 48b4ca31e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Author'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AuthorSortOrder.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AuthorSortOrder.php deleted file mode 100644 index c2ac72ece..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AuthorSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthorSortOrder extends AbstractTag -{ - - protected $Id = 'AuthorSortOrder'; - - protected $Name = 'AuthorSortOrder'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AutoSummary.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AutoSummary.php deleted file mode 100644 index bbb758e92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AutoSummary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoSummary extends AbstractTag -{ - - protected $Id = '{560C36C0-503A-11CF-BAA1-00004C752A9A} 2'; - - protected $Name = 'AutoSummary'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Summary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/AverageLevel.php b/lib/PHPExiftool/Driver/Tag/Microsoft/AverageLevel.php deleted file mode 100644 index bfedc64b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/AverageLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AverageLevel extends AbstractTag -{ - - protected $Id = 'AverageLevel'; - - protected $Name = 'AverageLevel'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Average Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BccAddresses.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BccAddresses.php deleted file mode 100644 index fc8c2679c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BccAddresses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BccAddresses extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 2'; - - protected $Name = 'BccAddresses'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bcc Addresses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BccNames.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BccNames.php deleted file mode 100644 index 9e4c91be3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BccNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BccNames extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 3'; - - protected $Name = 'BccNames'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bcc Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BeatsPerMinute.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BeatsPerMinute.php deleted file mode 100644 index 06afc353b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BeatsPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatsPerMinute extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'mixed'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BillingInformation.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BillingInformation.php deleted file mode 100644 index 7a78694de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BillingInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BillingInformation extends AbstractTag -{ - - protected $Id = '{D37D52C6-261C-4303-82B3-08B926AC6F12} 100'; - - protected $Name = 'BillingInformation'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Billing Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Birthday.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Birthday.php deleted file mode 100644 index 049116e97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Birthday.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Birthday extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 47'; - - protected $Name = 'Birthday'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Birthday'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BitDepth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BitDepth.php deleted file mode 100644 index 3c7b5df0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = '{6444048F-4C8B-11D1-8B70-080036B11A03} 7'; - - protected $Name = 'BitDepth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Bitrate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Bitrate.php deleted file mode 100644 index df3806f84..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Bitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Bitrate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Bitrate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BroadcastDate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BroadcastDate.php deleted file mode 100644 index 17dbb0965..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BroadcastDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BroadcastDate extends AbstractTag -{ - - protected $Id = '{4684FE97-8765-4842-9C13-F006447B178C} 100'; - - protected $Name = 'BroadcastDate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Broadcast Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessAddress.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessAddress.php deleted file mode 100644 index 53cc42446..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessAddress extends AbstractTag -{ - - protected $Id = '{730FB6DD-CF7C-426B-A03F-BD166CC9EE24} 100'; - - protected $Name = 'BusinessAddress'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessCity.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessCity.php deleted file mode 100644 index b6a1e5522..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessCity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessCity extends AbstractTag -{ - - protected $Id = '{402B5934-EC5A-48C3-93E6-85E86A2D934E} 100'; - - protected $Name = 'BusinessCity'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business City'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessCountryRegion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessCountryRegion.php deleted file mode 100644 index 78c965da4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessCountryRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessCountryRegion extends AbstractTag -{ - - protected $Id = '{B0B87314-FCF6-4FEB-8DFF-A50DA6AF561C} 100'; - - protected $Name = 'BusinessCountry-Region'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business Country-Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessFax.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessFax.php deleted file mode 100644 index 88037da0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessFax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessFax extends AbstractTag -{ - - protected $Id = '{91EFF6F3-2E27-42CA-933E-7C999FBE310B} 100'; - - protected $Name = 'BusinessFax'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business Fax'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessHomePage.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessHomePage.php deleted file mode 100644 index a7b204935..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessHomePage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessHomePage extends AbstractTag -{ - - protected $Id = '{56310920-2491-4919-99CE-EADB06FAFDB2} 100'; - - protected $Name = 'BusinessHomePage'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business Home Page'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPOBox.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPOBox.php deleted file mode 100644 index 12c52ef71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPOBox.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessPOBox extends AbstractTag -{ - - protected $Id = '{BC4E71CE-17F9-48D5-BEE9-021DF0EA5409} 100'; - - protected $Name = 'BusinessPOBox'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business PO Box'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPhone.php deleted file mode 100644 index 42f8f254a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessPhone extends AbstractTag -{ - - protected $Id = '{6A15E5A0-0A1E-4CD7-BB8C-D2F1B0C929BC} 100'; - - protected $Name = 'BusinessPhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPostalCode.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPostalCode.php deleted file mode 100644 index 35e261b42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessPostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessPostalCode extends AbstractTag -{ - - protected $Id = '{E1D4A09E-D758-4CD1-B6EC-34A8B5A73F80} 100'; - - protected $Name = 'BusinessPostalCode'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessStateOrProvince.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessStateOrProvince.php deleted file mode 100644 index 92a363af6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessStateOrProvince.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessStateOrProvince extends AbstractTag -{ - - protected $Id = '{446F787F-10C4-41CB-A6C4-4D0343551597} 100'; - - protected $Name = 'BusinessStateOrProvince'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business State Or Province'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessStreet.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessStreet.php deleted file mode 100644 index b7944a621..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BusinessStreet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BusinessStreet extends AbstractTag -{ - - protected $Id = '{DDD1460F-C0BF-4553-8CE4-10433C908FB0} 100'; - - protected $Name = 'BusinessStreet'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Business Street'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BuyNow.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BuyNow.php deleted file mode 100644 index e7f53b0be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BuyNow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BuyNow extends AbstractTag -{ - - protected $Id = 'BuyNow'; - - protected $Name = 'BuyNow'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Buy Now'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/BuyTickets.php b/lib/PHPExiftool/Driver/Tag/Microsoft/BuyTickets.php deleted file mode 100644 index ad0140692..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/BuyTickets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BuyTickets extends AbstractTag -{ - - protected $Id = 'BuyTickets'; - - protected $Name = 'BuyTickets'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Buy Tickets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CDTrackEnabled.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CDTrackEnabled.php deleted file mode 100644 index 03e94d09c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CDTrackEnabled.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CDTrackEnabled extends AbstractTag -{ - - protected $Id = 'CDTrackEnabled'; - - protected $Name = 'CDTrackEnabled'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CD Track Enabled'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CallLetters.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CallLetters.php deleted file mode 100644 index 26f273af8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CallLetters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CallLetters extends AbstractTag -{ - - protected $Id = 'CallLetters'; - - protected $Name = 'CallLetters'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Call Letters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CallbackNumber.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CallbackNumber.php deleted file mode 100644 index 52f61dc8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CallbackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CallbackNumber extends AbstractTag -{ - - protected $Id = '{BF53D1C3-49E0-4F7F-8567-5A821D8AC542} 100'; - - protected $Name = 'CallbackNumber'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Callback Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CameraMaker.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CameraMaker.php deleted file mode 100644 index 79d4b3a45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CameraMaker.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraMaker extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 271'; - - protected $Name = 'CameraMaker'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Maker'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CameraManufacturer.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CameraManufacturer.php deleted file mode 100644 index ec4956b2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CameraManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraManufacturer extends AbstractTag -{ - - protected $Id = 'CameraManufacturer'; - - protected $Name = 'CameraManufacturer'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CameraModel.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CameraModel.php deleted file mode 100644 index 57ad22ce0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CameraModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraModel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraModel'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CarPhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CarPhone.php deleted file mode 100644 index 1ab462fab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CarPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CarPhone extends AbstractTag -{ - - protected $Id = '{8FDC6DEA-B929-412B-BA90-397A257465FE} 100'; - - protected $Name = 'CarPhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Car Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Category.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Category.php deleted file mode 100644 index 09ace4e7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Category'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CcAddresses.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CcAddresses.php deleted file mode 100644 index c5aa5ea0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CcAddresses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CcAddresses extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 4'; - - protected $Name = 'CcAddresses'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cc Addresses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CcNames.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CcNames.php deleted file mode 100644 index 3b3804a74..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CcNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CcNames extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 5'; - - protected $Name = 'CcNames'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cc Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CellPhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CellPhone.php deleted file mode 100644 index f5c3afdd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CellPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CellPhone extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 35'; - - protected $Name = 'CellPhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cell Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ChannelNumber.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ChannelNumber.php deleted file mode 100644 index 06eb05dce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ChannelNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChannelNumber extends AbstractTag -{ - - protected $Id = '{6D748DE2-8D38-4CC3-AC60-F009B057C557} 7'; - - protected $Name = 'ChannelNumber'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channel Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Channels.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Channels.php deleted file mode 100644 index fec8ebc94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Channels'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ChapterNum.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ChapterNum.php deleted file mode 100644 index 7c4b7dc4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ChapterNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterNum extends AbstractTag -{ - - protected $Id = 'chapterNum'; - - protected $Name = 'ChapterNum'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Children.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Children.php deleted file mode 100644 index 69e0d8eb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Children.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Children extends AbstractTag -{ - - protected $Id = '{D4729704-8EF1-43EF-9024-2BD381187FD5} 100'; - - protected $Name = 'Children'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Children'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/City.php b/lib/PHPExiftool/Driver/Tag/Microsoft/City.php deleted file mode 100644 index d3a500b68..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/City.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class City extends AbstractTag -{ - - protected $Id = '{C8EA94F0-A9E3-4969-A94B-9C62A95324E0} 100'; - - protected $Name = 'City'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'City'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ClientID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ClientID.php deleted file mode 100644 index fb7095ad9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ClientID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClientID extends AbstractTag -{ - - protected $Id = '{276D7BB0-5B34-4FB0-AA4B-158ED12A1809} 100'; - - protected $Name = 'ClientID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Client ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ClosedCaptioning.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ClosedCaptioning.php deleted file mode 100644 index 88f85545d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ClosedCaptioning.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClosedCaptioning extends AbstractTag -{ - - protected $Id = '{6D748DE2-8D38-4CC3-AC60-F009B057C557} 12'; - - protected $Name = 'ClosedCaptioning'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Closed Captioning'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Color.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Color.php deleted file mode 100644 index e40b83e48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Color.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Color extends AbstractTag -{ - - protected $Id = '{4776CAFA-BCE4-4CB1-A23E-265E76D8EB11} 100'; - - protected $Name = 'Color'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Comment.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Comment.php deleted file mode 100644 index c5ce92c85..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'Comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Comments.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Comments.php deleted file mode 100644 index 3cb56b83e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Comments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comments extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 6'; - - protected $Name = 'Comments'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Company.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Company.php deleted file mode 100644 index a96b780e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Company.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Company extends AbstractTag -{ - - protected $Id = '{D5CDD502-2E9C-101B-9397-08002B2CF9AE} 15'; - - protected $Name = 'Company'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Company'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CompanyMainPhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CompanyMainPhone.php deleted file mode 100644 index 896ec1afb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CompanyMainPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompanyMainPhone extends AbstractTag -{ - - protected $Id = '{8589E481-6040-473D-B171-7FA89C2708ED} 100'; - - protected $Name = 'CompanyMainPhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Company Main Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Complete.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Complete.php deleted file mode 100644 index 2a38e1b41..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Complete.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Complete extends AbstractTag -{ - - protected $Id = '{084D8A0A-E6D5-40DE-BF1F-C8820E7C877C} 100'; - - protected $Name = 'Complete'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Complete'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Composer.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Composer.php deleted file mode 100644 index 730afc86c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Composer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'WM/Composer'; - - protected $Name = 'Composer'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Composers.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Composers.php deleted file mode 100644 index 35c40c15f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Composers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composers extends AbstractTag -{ - - protected $Id = '{64440492-4C8B-11D1-8B70-080036B11A03} 19'; - - protected $Name = 'Composers'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Computer.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Computer.php deleted file mode 100644 index 77db6648d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Computer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Computer extends AbstractTag -{ - - protected $Id = '{28636AA6-953D-11D2-B5D6-00C04FD918D0} 5'; - - protected $Name = 'Computer'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Computer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Conductor.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Conductor.php deleted file mode 100644 index 939422f4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Conductor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Conductor extends AbstractTag -{ - - protected $Id = 'WM/Conductor'; - - protected $Name = 'Conductor'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conductor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Conductors.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Conductors.php deleted file mode 100644 index dd380a687..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Conductors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Conductors extends AbstractTag -{ - - protected $Id = '{56A3372E-CE9C-11D2-9F0E-006097C686F6} 36'; - - protected $Name = 'Conductors'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conductors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ContactNames.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ContactNames.php deleted file mode 100644 index 25075fb74..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ContactNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContactNames extends AbstractTag -{ - - protected $Id = '{DEA7C82C-1D89-4A66-9427-A4E3DEBABCB1} 100'; - - protected $Name = 'ContactNames'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contact Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributor.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributor.php deleted file mode 100644 index 4bf575ff3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDistributor extends AbstractTag -{ - - protected $Id = 'WM/ContentDistributor'; - - protected $Name = 'ContentDistributor'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Distributor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributorDuration.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributorDuration.php deleted file mode 100644 index b498e0944..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributorDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDistributorDuration extends AbstractTag -{ - - protected $Id = 'ContentDistributorDuration'; - - protected $Name = 'ContentDistributorDuration'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Distributor Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributorType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributorType.php deleted file mode 100644 index 435e0697f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentDistributorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDistributorType extends AbstractTag -{ - - protected $Id = 'WM/ContentDistributorType'; - - protected $Name = 'ContentDistributorType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Distributor Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentGroupDescription.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ContentGroupDescription.php deleted file mode 100644 index 12f024c18..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentGroupDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentGroupDescription extends AbstractTag -{ - - protected $Id = 'WM/ContentGroupDescription'; - - protected $Name = 'ContentGroupDescription'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Group Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ContentType.php deleted file mode 100644 index aa6b699b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ContentType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentType extends AbstractTag -{ - - protected $Id = '{D5CDD502-2E9C-101B-9397-08002B2CF9AE} 26'; - - protected $Name = 'ContentType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Contributors.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Contributors.php deleted file mode 100644 index b367391fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Contributors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contributors extends AbstractTag -{ - - protected $Id = '{F334115E-DA1B-4509-9B3D-119504DC7ABB} 100'; - - protected $Name = 'Contributors'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contributors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ConversationID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ConversationID.php deleted file mode 100644 index 429ca4b72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ConversationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConversationID extends AbstractTag -{ - - protected $Id = '{DC8F80BD-AF1E-4289-85B6-3DFC1B493992} 100'; - - protected $Name = 'ConversationID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Conversation ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Copyright.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Copyright.php deleted file mode 100644 index f4f86ec50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Copyright'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Count.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Count.php deleted file mode 100644 index 32faacea4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Count.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Count extends AbstractTag -{ - - protected $Id = 'Count'; - - protected $Name = 'Count'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CountryRegion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CountryRegion.php deleted file mode 100644 index ab2030729..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CountryRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryRegion extends AbstractTag -{ - - protected $Id = '{E53D799D-0F3F-466E-B2FF-74634A3CB7A4} 100'; - - protected $Name = 'Country-Region'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Country-Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Creator.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Creator.php deleted file mode 100644 index eff16cb38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Creator.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = '{D0A04F0A-462A-48A4-BB2F-3706E88DBD7D} 100'; - - protected $Name = 'Creator'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creator'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/CurrentBitrate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/CurrentBitrate.php deleted file mode 100644 index 0b8a7d614..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/CurrentBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentBitrate extends AbstractTag -{ - - protected $Id = 'CurrentBitrate'; - - protected $Name = 'CurrentBitrate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Current Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DLNAServerUDN.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DLNAServerUDN.php deleted file mode 100644 index 314215b36..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DLNAServerUDN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLNAServerUDN extends AbstractTag -{ - - protected $Id = 'DLNAServerUDN'; - - protected $Name = 'DLNAServerUDN'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DLNA Server UDN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DLNASourceURI.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DLNASourceURI.php deleted file mode 100644 index a256cd50c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DLNASourceURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLNASourceURI extends AbstractTag -{ - - protected $Id = 'DLNASourceURI'; - - protected $Name = 'DLNASourceURI'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DLNA Source URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DRMIndividualizedVersion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DRMIndividualizedVersion.php deleted file mode 100644 index 83da6de70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DRMIndividualizedVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMIndividualizedVersion extends AbstractTag -{ - - protected $Id = 'DRMIndividualizedVersion'; - - protected $Name = 'DRMIndividualizedVersion'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM Individualized Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DRMKeyID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DRMKeyID.php deleted file mode 100644 index 899531dfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DRMKeyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRMKeyID extends AbstractTag -{ - - protected $Id = 'DRMKeyID'; - - protected $Name = 'DRMKeyID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DRM Key ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DTCPIPHost.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DTCPIPHost.php deleted file mode 100644 index 1d680065c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DTCPIPHost.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DTCPIPHost extends AbstractTag -{ - - protected $Id = 'DTCPIPHost'; - - protected $Name = 'DTCPIPHost'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DTCPIP Host'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DTCPIPPort.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DTCPIPPort.php deleted file mode 100644 index 5123b4ed5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DTCPIPPort.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DTCPIPPort extends AbstractTag -{ - - protected $Id = 'DTCPIPPort'; - - protected $Name = 'DTCPIPPort'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DTCPIP Port'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DVDID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DVDID.php deleted file mode 100644 index c88544eb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DVDID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVDID extends AbstractTag -{ - - protected $Id = 'DVDID'; - - protected $Name = 'DVDID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'DVDID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DataRate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DataRate.php deleted file mode 100644 index ce1ca49b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DataRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataRate extends AbstractTag -{ - - protected $Id = '{64440491-4C8B-11D1-8B70-080036B11A03} 8'; - - protected $Name = 'DataRate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Date.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Date.php deleted file mode 100644 index ebf4ed94e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Date.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = '{F7DB74B4-4287-4103-AFBA-F1B13DCD75CF} 100'; - - protected $Name = 'Date'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateAccessed.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateAccessed.php deleted file mode 100644 index 7c3295521..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateAccessed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateAccessed extends AbstractTag -{ - - protected $Id = '{B725F130-47EF-101A-A5F1-02608C9EEBAC} 16'; - - protected $Name = 'DateAccessed'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Accessed'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateAcquired.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateAcquired.php deleted file mode 100644 index 981a3df90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateAcquired.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateAcquired extends AbstractTag -{ - - protected $Id = '{2CBAA8F5-D81F-47CA-B17A-F8D822300131} 100'; - - protected $Name = 'DateAcquired'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Acquired'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateArchived.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateArchived.php deleted file mode 100644 index cd6f3b59b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateArchived.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateArchived extends AbstractTag -{ - - protected $Id = '{43F8D7B7-A444-4F87-9383-52271C9B915C} 100'; - - protected $Name = 'DateArchived'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Archived'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateCompleted.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateCompleted.php deleted file mode 100644 index 028a23338..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateCompleted.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateCompleted extends AbstractTag -{ - - protected $Id = '{72FAB781-ACDA-43E5-B155-B2434F85E678} 100'; - - protected $Name = 'DateCompleted'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Completed'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateCreated.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateCreated.php deleted file mode 100644 index 2abe84db7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateCreated.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateCreated extends AbstractTag -{ - - protected $Id = '{B725F130-47EF-101A-A5F1-02608C9EEBAC} 15'; - - protected $Name = 'DateCreated'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Created'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateImported.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateImported.php deleted file mode 100644 index fad8b851e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateImported.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateImported extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 18258'; - - protected $Name = 'DateImported'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Imported'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateLastSaved.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateLastSaved.php deleted file mode 100644 index 6aa12866e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateLastSaved.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateLastSaved extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 13'; - - protected $Name = 'DateLastSaved'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Last Saved'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateModified.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateModified.php deleted file mode 100644 index d7a03f352..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateModified.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateModified extends AbstractTag -{ - - protected $Id = '{B725F130-47EF-101A-A5F1-02608C9EEBAC} 14'; - - protected $Name = 'DateModified'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Modified'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DatePictureTaken.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DatePictureTaken.php deleted file mode 100644 index 6afe28c42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DatePictureTaken.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DatePictureTaken extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 36867'; - - protected $Name = 'DatePictureTaken'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Picture Taken'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateReceived.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateReceived.php deleted file mode 100644 index eca693660..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateReceived.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateReceived extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 20'; - - protected $Name = 'DateReceived'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Received'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateReleased.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateReleased.php deleted file mode 100644 index ac93e1402..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateReleased.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateReleased extends AbstractTag -{ - - protected $Id = '{DE41CC29-6971-4290-B472-F59F2E2F31E2} 100'; - - protected $Name = 'DateReleased'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Released'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateSent.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateSent.php deleted file mode 100644 index 17c5e564f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateSent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateSent extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 19'; - - protected $Name = 'DateSent'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Sent'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DateVisited.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DateVisited.php deleted file mode 100644 index 17dd2d117..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DateVisited.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateVisited extends AbstractTag -{ - - protected $Id = '{5CBF2787-48CF-4208-B90E-EE5E5D420294} 23'; - - protected $Name = 'DateVisited'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Visited'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Department.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Department.php deleted file mode 100644 index b84ad122d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Department.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Department extends AbstractTag -{ - - protected $Id = '{FC9F7306-FF8F-4D49-9FB6-3FFE5C0951EC} 100'; - - protected $Name = 'Department'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Department'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Description.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Description.php deleted file mode 100644 index 07afe8190..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Description'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Dimensions.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Dimensions.php deleted file mode 100644 index 580db2709..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Dimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Dimensions extends AbstractTag -{ - - protected $Id = '{6444048F-4C8B-11D1-8B70-080036B11A03} 13'; - - protected $Name = 'Dimensions'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Director.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Director.php deleted file mode 100644 index 5faac8eb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Director.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Director extends AbstractTag -{ - - protected $Id = 'WM/Director'; - - protected $Name = 'Director'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Director'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Directors.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Directors.php deleted file mode 100644 index b4563e9bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Directors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Directors extends AbstractTag -{ - - protected $Id = '{64440492-4C8B-11D1-8B70-080036B11A03} 20'; - - protected $Name = 'Directors'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Directors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DisplayArtist.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DisplayArtist.php deleted file mode 100644 index 8665dd90a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DisplayArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayArtist extends AbstractTag -{ - - protected $Id = 'DisplayArtist'; - - protected $Name = 'DisplayArtist'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Division.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Division.php deleted file mode 100644 index 11de710ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Division.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Division extends AbstractTag -{ - - protected $Id = '{1E005EE6-BF27-428B-B01C-79676ACD2870} 100'; - - protected $Name = 'Division'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Division'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DocumentID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DocumentID.php deleted file mode 100644 index 420813db0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentID extends AbstractTag -{ - - protected $Id = '{E08805C8-E395-40DF-80D2-54F0D6C43154} 100'; - - protected $Name = 'DocumentID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/DueDate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/DueDate.php deleted file mode 100644 index 88e3d54b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/DueDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DueDate extends AbstractTag -{ - - protected $Id = '{3F8472B5-E0AF-4DB2-8071-C53FE76AE7CE} 100'; - - protected $Name = 'DueDate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Due Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Duration.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Duration.php deleted file mode 100644 index fad400b7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Duration'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EMail2.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EMail2.php deleted file mode 100644 index 8765c6362..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EMail2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EMail2 extends AbstractTag -{ - - protected $Id = '{38965063-EDC8-4268-8491-B7723172CF29} 100'; - - protected $Name = 'E-mail2'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'E-mail 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EMail3.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EMail3.php deleted file mode 100644 index 632ef64af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EMail3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EMail3 extends AbstractTag -{ - - protected $Id = '{644D37B4-E1B3-4BAD-B099-7E7C04966ACA} 100'; - - protected $Name = 'E-mail3'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'E-mail 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EMailAddress.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EMailAddress.php deleted file mode 100644 index 7fd12bb69..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EMailAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EMailAddress extends AbstractTag -{ - - protected $Id = '{F8FA7FA3-D12B-4785-8A4E-691A94F7A3E7} 100'; - - protected $Name = 'E-mailAddress'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'E-mail Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EMailDisplayName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EMailDisplayName.php deleted file mode 100644 index 978cf6a12..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EMailDisplayName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EMailDisplayName extends AbstractTag -{ - - protected $Id = '{CC6F4F24-6083-4BD4-8754-674D0DE87AB8} 100'; - - protected $Name = 'E-mailDisplayName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'E-mail Display Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EMailList.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EMailList.php deleted file mode 100644 index 58fad5341..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EMailList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EMailList extends AbstractTag -{ - - protected $Id = '{84D8F337-981D-44B3-9615-C7596DBA17E3} 100'; - - protected $Name = 'E-mailList'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'E-mail List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EXIFVersion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EXIFVersion.php deleted file mode 100644 index eea504a12..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EXIFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EXIFVersion extends AbstractTag -{ - - protected $Id = '{D35F743A-EB2E-47F2-A286-844132CB1427} 100'; - - protected $Name = 'EXIFVersion'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'EXIF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EncodedBy.php deleted file mode 100644 index 32bf36777..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = '{64440492-4C8B-11D1-8B70-080036B11A03} 36'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EncodingTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EncodingTime.php deleted file mode 100644 index 748d894a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EncodingTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodingTime extends AbstractTag -{ - - protected $Id = 'WM/EncodingTime'; - - protected $Name = 'EncodingTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoding Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EndDate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EndDate.php deleted file mode 100644 index 7eebf35a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EndDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndDate extends AbstractTag -{ - - protected $Id = '{C75FAA05-96FD-49E7-9CB4-9F601082D553} 100'; - - protected $Name = 'EndDate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EntryType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EntryType.php deleted file mode 100644 index 9b8d3cde4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EntryType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EntryType extends AbstractTag -{ - - protected $Id = '{95BEB1FC-326D-4644-B396-CD3ED90E6DDF} 100'; - - protected $Name = 'EntryType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Entry Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/EpisodeName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/EpisodeName.php deleted file mode 100644 index 95cd296fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/EpisodeName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpisodeName extends AbstractTag -{ - - protected $Id = '{6D748DE2-8D38-4CC3-AC60-F009B057C557} 2'; - - protected $Name = 'EpisodeName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Episode Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Event.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Event.php deleted file mode 100644 index 3dfd83632..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Event.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Event extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Event'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Event'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureBias.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureBias.php deleted file mode 100644 index 3c4d40891..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureBias.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureBias extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 37380'; - - protected $Name = 'ExposureBias'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Bias'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureProgram.php deleted file mode 100644 index 066f67d25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureProgram.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 34850'; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Program'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureTime.php deleted file mode 100644 index ac4c9cf19..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 33434'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FStop.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FStop.php deleted file mode 100644 index d2f3ad030..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FStop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FStop extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 33437'; - - protected $Name = 'F-stop'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'F-stop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FileAs.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FileAs.php deleted file mode 100644 index b4fa9b411..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FileAs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileAs extends AbstractTag -{ - - protected $Id = '{F1A24AA7-9CA7-40F6-89EC-97DEF9FFE8DB} 100'; - - protected $Name = 'FileAs'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File As'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FileCount.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FileCount.php deleted file mode 100644 index 7afb59363..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FileCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileCount extends AbstractTag -{ - - protected $Id = '{28636AA6-953D-11D2-B5D6-00C04FD918D0} 12'; - - protected $Name = 'FileCount'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FileSize.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FileSize.php deleted file mode 100644 index b5b047abd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSize extends AbstractTag -{ - - protected $Id = 'FileSize'; - - protected $Name = 'FileSize'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FileType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FileType.php deleted file mode 100644 index 694e755df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileType extends AbstractTag -{ - - protected $Id = 'FileType'; - - protected $Name = 'FileType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FileVersion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FileVersion.php deleted file mode 100644 index 358c2924a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileVersion extends AbstractTag -{ - - protected $Id = '{0CEF7D53-FA64-11D1-A203-0000F81FEDEE} 4'; - - protected $Name = 'FileVersion'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FirstName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FirstName.php deleted file mode 100644 index be9df69f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FirstName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstName extends AbstractTag -{ - - protected $Id = '{14977844-6B49-4AAD-A714-A4513BF60460} 100'; - - protected $Name = 'FirstName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FlagColor.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FlagColor.php deleted file mode 100644 index 93af1011d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FlagColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlagColor extends AbstractTag -{ - - protected $Id = '{67DF94DE-0CA7-4D6F-B792-053A3E4F03CF} 100'; - - protected $Name = 'FlagColor'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flag Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FlagStatus.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FlagStatus.php deleted file mode 100644 index b8a7dcb95..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FlagStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlagStatus extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 12'; - - protected $Name = 'FlagStatus'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flag Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FlashMode.php deleted file mode 100644 index d10773e30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FlashMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 37385'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FocalLength.php deleted file mode 100644 index 16c9b90f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FocalLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 37386'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FocalLength35mm.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FocalLength35mm.php deleted file mode 100644 index e2016f7d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FocalLength35mm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength35mm extends AbstractTag -{ - - protected $Id = '{A0E74609-B84D-4F49-B860-462BD9971F98} 100'; - - protected $Name = 'FocalLength35mm'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Length 35mm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Folder.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Folder.php deleted file mode 100644 index 88b329ed1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Folder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Folder extends AbstractTag -{ - - protected $Id = '{DABD30ED-0043-4789-A7F8-D013A4736622} 100'; - - protected $Name = 'Folder'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Folder'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FolderName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FolderName.php deleted file mode 100644 index b24293731..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FolderName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FolderName extends AbstractTag -{ - - protected $Id = '{B725F130-47EF-101A-A5F1-02608C9EEBAC} 2'; - - protected $Name = 'FolderName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Folder Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FolderPath.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FolderPath.php deleted file mode 100644 index c7424385b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FolderPath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FolderPath extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 6'; - - protected $Name = 'FolderPath'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Folder Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FormatTag.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FormatTag.php deleted file mode 100644 index bd42031ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FormatTag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FormatTag extends AbstractTag -{ - - protected $Id = 'FormatTag'; - - protected $Name = 'FormatTag'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Format Tag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FourCC.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FourCC.php deleted file mode 100644 index 3439d48cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FourCC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC extends AbstractTag -{ - - protected $Id = 'FourCC'; - - protected $Name = 'FourCC'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Four CC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FrameHeight.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FrameHeight.php deleted file mode 100644 index c0b86bc9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FrameHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameHeight extends AbstractTag -{ - - protected $Id = '{64440491-4C8B-11D1-8B70-080036B11A03} 4'; - - protected $Name = 'FrameHeight'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FrameRate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FrameRate.php deleted file mode 100644 index 7e562fbd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FrameRate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FrameWidth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FrameWidth.php deleted file mode 100644 index 21f58b9b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FrameWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameWidth extends AbstractTag -{ - - protected $Id = '{64440491-4C8B-11D1-8B70-080036B11A03} 3'; - - protected $Name = 'FrameWidth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FreeBusyStatus.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FreeBusyStatus.php deleted file mode 100644 index 208026c7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FreeBusyStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FreeBusyStatus extends AbstractTag -{ - - protected $Id = '{5BF396D4-5EB2-466F-BDE9-2FB3F2361D6E} 100'; - - protected $Name = 'Free-busyStatus'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Free-busy Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Frequency.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Frequency.php deleted file mode 100644 index c8fbff176..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Frequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Frequency extends AbstractTag -{ - - protected $Id = 'Frequency'; - - protected $Name = 'Frequency'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FromAddresses.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FromAddresses.php deleted file mode 100644 index 31b0a7a38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FromAddresses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FromAddresses extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 13'; - - protected $Name = 'FromAddresses'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'From Addresses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FromNames.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FromNames.php deleted file mode 100644 index 1994d303f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FromNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FromNames extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 14'; - - protected $Name = 'FromNames'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'From Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/FullName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/FullName.php deleted file mode 100644 index 80d106058..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/FullName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullName extends AbstractTag -{ - - protected $Id = '{635E9051-50A5-4BA2-B9DB-4ED056C77296} 100'; - - protected $Name = 'FullName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Full Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Gender.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Gender.php deleted file mode 100644 index e76c7a98e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Gender.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gender extends AbstractTag -{ - - protected $Id = '{3C8CEE58-D4F0-4CF9-B756-4E5D24447BCD} 100'; - - protected $Name = 'Gender'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gender'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Genre.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Genre.php deleted file mode 100644 index 8da2c0f9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Genre'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/GenreID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/GenreID.php deleted file mode 100644 index d4032c52a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/GenreID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenreID extends AbstractTag -{ - - protected $Id = 'WM/GenreID'; - - protected $Name = 'GenreID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/GivenName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/GivenName.php deleted file mode 100644 index 9439a64d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/GivenName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GivenName extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 70'; - - protected $Name = 'GivenName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Given Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HasAttachments.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HasAttachments.php deleted file mode 100644 index 380975fe5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HasAttachments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasAttachments extends AbstractTag -{ - - protected $Id = '{9C1FCF74-2D97-41BA-B4AE-CB2E3661A6E4} 8'; - - protected $Name = 'HasAttachments'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Attachments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HasFlag.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HasFlag.php deleted file mode 100644 index 412e97739..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HasFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasFlag extends AbstractTag -{ - - protected $Id = '{5DA84765-E3FF-4278-86B0-A27967FBDD03} 100'; - - protected $Name = 'HasFlag'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Hobbies.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Hobbies.php deleted file mode 100644 index ae9cea9d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Hobbies.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Hobbies extends AbstractTag -{ - - protected $Id = '{5DC2253F-5E11-4ADF-9CFE-910DD01E3E70} 100'; - - protected $Name = 'Hobbies'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hobbies'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeAddress.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomeAddress.php deleted file mode 100644 index 158f3aba0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomeAddress extends AbstractTag -{ - - protected $Id = '{98F98354-617A-46B8-8560-5B1B64BF1F89} 100'; - - protected $Name = 'HomeAddress'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeCity.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomeCity.php deleted file mode 100644 index 7b116ca80..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeCity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomeCity extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 65'; - - protected $Name = 'HomeCity'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home City'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeCountryRegion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomeCountryRegion.php deleted file mode 100644 index fe9d01371..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeCountryRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomeCountryRegion extends AbstractTag -{ - - protected $Id = '{08A65AA1-F4C9-43DD-9DDF-A33D8E7EAD85} 100'; - - protected $Name = 'HomeCountry-Region'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home Country-Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeFax.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomeFax.php deleted file mode 100644 index b42911f3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeFax.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomeFax extends AbstractTag -{ - - protected $Id = '{660E04D6-81AB-4977-A09F-82313113AB26} 100'; - - protected $Name = 'HomeFax'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home Fax'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomePOBox.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomePOBox.php deleted file mode 100644 index 411aba143..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomePOBox.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomePOBox extends AbstractTag -{ - - protected $Id = '{7B9F6399-0A3F-4B12-89BD-4ADC51C918AF} 100'; - - protected $Name = 'HomePOBox'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home PO Box'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomePhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomePhone.php deleted file mode 100644 index 4309e9148..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomePhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomePhone extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 20'; - - protected $Name = 'HomePhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomePostalCode.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomePostalCode.php deleted file mode 100644 index f71fe14cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomePostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomePostalCode extends AbstractTag -{ - - protected $Id = '{8AFCC170-8A46-4B53-9EEE-90BAE7151E62} 100'; - - protected $Name = 'HomePostalCode'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeStateOrProvince.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomeStateOrProvince.php deleted file mode 100644 index b8c279fc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeStateOrProvince.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomeStateOrProvince extends AbstractTag -{ - - protected $Id = '{C89A23D0-7D6D-4EB8-87D4-776A82D493E5} 100'; - - protected $Name = 'HomeStateOrProvince'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home State Or Province'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeStreet.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HomeStreet.php deleted file mode 100644 index 341d1a069..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HomeStreet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HomeStreet extends AbstractTag -{ - - protected $Id = '{0ADEF160-DB3F-4308-9A21-06237B16FA2A} 100'; - - protected $Name = 'HomeStreet'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Home Street'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/HorizontalResolution.php b/lib/PHPExiftool/Driver/Tag/Microsoft/HorizontalResolution.php deleted file mode 100644 index 9db212120..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/HorizontalResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalResolution extends AbstractTag -{ - - protected $Id = '{6444048F-4C8B-11D1-8B70-080036B11A03} 5'; - - protected $Name = 'HorizontalResolution'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Horizontal Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IMAddresses.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IMAddresses.php deleted file mode 100644 index 6bb18ca89..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IMAddresses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IMAddresses extends AbstractTag -{ - - protected $Id = '{D68DBD8A-3374-4B81-9972-3EC30682DB3D} 100'; - - protected $Name = 'IMAddresses'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IM Addresses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ISOSpeed.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ISOSpeed.php deleted file mode 100644 index 9a307a834..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ISOSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeed extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 34855'; - - protected $Name = 'ISOSpeed'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Importance.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Importance.php deleted file mode 100644 index 450451339..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Importance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Importance extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 11'; - - protected $Name = 'Importance'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Importance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Incomplete.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Incomplete.php deleted file mode 100644 index ff81612cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Incomplete.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Incomplete extends AbstractTag -{ - - protected $Id = '{346C8BD1-2E6A-4C45-89A4-61B78E8E700F} 100'; - - protected $Name = 'Incomplete'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incomplete'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/InitialKey.php b/lib/PHPExiftool/Driver/Tag/Microsoft/InitialKey.php deleted file mode 100644 index 3f5b4dff1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/InitialKey.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialKey extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'InitialKey'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Key'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Initials.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Initials.php deleted file mode 100644 index 51c54d4ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Initials.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Initials extends AbstractTag -{ - - protected $Id = '{F3D8F40D-50CB-44A2-9718-40CB9119495D} 100'; - - protected $Name = 'Initials'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initials'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsAttachment.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsAttachment.php deleted file mode 100644 index a177447b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsAttachment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsAttachment extends AbstractTag -{ - - protected $Id = '{F23F425C-71A1-4FA8-922F-678EA4A60408} 100'; - - protected $Name = 'IsAttachment'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Attachment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsCompleted.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsCompleted.php deleted file mode 100644 index 7fbe00269..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsCompleted.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsCompleted extends AbstractTag -{ - - protected $Id = '{A6F360D2-55F9-48DE-B909-620E090A647C} 100'; - - protected $Name = 'IsCompleted'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Completed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsDeleted.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsDeleted.php deleted file mode 100644 index 153517ba0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsDeleted.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsDeleted extends AbstractTag -{ - - protected $Id = '{5CDA5FC8-33EE-4FF3-9094-AE7BD8868C4D} 100'; - - protected $Name = 'IsDeleted'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Deleted'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsNetworkFeed.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsNetworkFeed.php deleted file mode 100644 index 6fdf8cfca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsNetworkFeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsNetworkFeed extends AbstractTag -{ - - protected $Id = 'IsNetworkFeed'; - - protected $Name = 'IsNetworkFeed'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Network Feed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsOnline.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsOnline.php deleted file mode 100644 index fc305520b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsOnline.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsOnline extends AbstractTag -{ - - protected $Id = '{BFEE9149-E3E2-49A7-A862-C05988145CEC} 100'; - - protected $Name = 'IsOnline'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Online'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsProtected.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsProtected.php deleted file mode 100644 index e48953d78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsProtected.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsProtected extends AbstractTag -{ - - protected $Id = 'Is_Protected'; - - protected $Name = 'IsProtected'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Protected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsRecurring.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsRecurring.php deleted file mode 100644 index 4a8c10080..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsRecurring.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsRecurring extends AbstractTag -{ - - protected $Id = '{315B9C8D-80A9-4EF9-AE16-8E746DA51D70} 100'; - - protected $Name = 'IsRecurring'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is Recurring'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/IsVBR.php b/lib/PHPExiftool/Driver/Tag/Microsoft/IsVBR.php deleted file mode 100644 index 95e51bb9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/IsVBR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsVBR extends AbstractTag -{ - - protected $Id = 'IsVBR'; - - protected $Name = 'IsVBR'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Is VBR'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/JobTitle.php b/lib/PHPExiftool/Driver/Tag/Microsoft/JobTitle.php deleted file mode 100644 index 7a6ea0c1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/JobTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobTitle extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 6'; - - protected $Name = 'JobTitle'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Job Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Keywords.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Keywords.php deleted file mode 100644 index 8445b2cb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 5'; - - protected $Name = 'Keywords'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Kinds.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Kinds.php deleted file mode 100644 index c1d23e5c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Kinds.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Kinds extends AbstractTag -{ - - protected $Id = '{1E3EE840-BC2B-476C-8237-2ACD1A839B22} 3'; - - protected $Name = 'Kinds'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Kinds'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Label.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Label.php deleted file mode 100644 index f5825c7f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Label.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label extends AbstractTag -{ - - protected $Id = '{97B0AD89-DF49-49CC-834E-660974FD755B} 100'; - - protected $Name = 'Label'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Language.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Language.php deleted file mode 100644 index 099fc1c78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Language'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LastName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LastName.php deleted file mode 100644 index 8ed3ff3c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LastName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastName extends AbstractTag -{ - - protected $Id = '{8F367200-C270-457C-B1D4-E07C5BCD90C7} 100'; - - protected $Name = 'LastName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LastPrinted.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LastPrinted.php deleted file mode 100644 index 04316b151..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LastPrinted.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPrinted extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 11'; - - protected $Name = 'LastPrinted'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Printed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LeadPerformer.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LeadPerformer.php deleted file mode 100644 index ab32688f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LeadPerformer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LeadPerformer extends AbstractTag -{ - - protected $Id = 'LeadPerformer'; - - protected $Name = 'LeadPerformer'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lead Performer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LegalTrademarks.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LegalTrademarks.php deleted file mode 100644 index 19dc2c788..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LegalTrademarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LegalTrademarks extends AbstractTag -{ - - protected $Id = '{0CEF7D53-FA64-11D1-A203-0000F81FEDEE} 9'; - - protected $Name = 'LegalTrademarks'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Legal Trademarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LensMaker.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LensMaker.php deleted file mode 100644 index a9c4ad531..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LensMaker.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensMaker extends AbstractTag -{ - - protected $Id = '{E6DDCAF7-29C5-4F0A-9A68-D19412EC7090} 100'; - - protected $Name = 'LensMaker'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Maker'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LensModel.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LensModel.php deleted file mode 100644 index d4bbc41dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LensModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = '{E1277516-2B5F-4869-89B1-2E585BD38B7A} 100'; - - protected $Name = 'LensModel'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LibraryID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LibraryID.php deleted file mode 100644 index 8323bf764..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LibraryID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LibraryID extends AbstractTag -{ - - protected $Id = 'LibraryID'; - - protected $Name = 'LibraryID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Library ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LibraryName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LibraryName.php deleted file mode 100644 index 8f23e3467..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LibraryName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LibraryName extends AbstractTag -{ - - protected $Id = 'LibraryName'; - - protected $Name = 'LibraryName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Library Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LightSource.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LightSource.php deleted file mode 100644 index 46d9b5839..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LightSource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSource extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 37384'; - - protected $Name = 'LightSource'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Light Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LinkStatus.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LinkStatus.php deleted file mode 100644 index a91d77590..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LinkStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkStatus extends AbstractTag -{ - - protected $Id = '{B9B4B3FC-2B51-4A42-B5D8-324146AFCF25} 3'; - - protected $Name = 'LinkStatus'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Link Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/LinkTarget.php b/lib/PHPExiftool/Driver/Tag/Microsoft/LinkTarget.php deleted file mode 100644 index 4a16959f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/LinkTarget.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkTarget extends AbstractTag -{ - - protected $Id = '{B9B4B3FC-2B51-4A42-B5D8-324146AFCF25} 2'; - - protected $Name = 'LinkTarget'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Link Target'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Location.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Location.php deleted file mode 100644 index bcdb69ebf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Location.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Location'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Lyrics.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Lyrics.php deleted file mode 100644 index 8ff9388fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Lyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyrics extends AbstractTag -{ - - protected $Id = 'WM/Lyrics'; - - protected $Name = 'Lyrics'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MCDI.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MCDI.php deleted file mode 100644 index 737a42b2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MCDI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MCDI extends AbstractTag -{ - - protected $Id = 'WM/MCDI'; - - protected $Name = 'MCDI'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MCDI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MailingAddress.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MailingAddress.php deleted file mode 100644 index 39c4f8ad6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MailingAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MailingAddress extends AbstractTag -{ - - protected $Id = '{C0AC206A-827E-4650-95AE-77E2BB74FCC9} 100'; - - protected $Name = 'MailingAddress'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mailing Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MaxAperture.php deleted file mode 100644 index 75c470f44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MaxAperture.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = '{08F6D7C2-E3F2-44FC-AF1E-5AA5C81A2D3E} 100'; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Aperture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaClassPrimaryID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaClassPrimaryID.php deleted file mode 100644 index 551396a47..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaClassPrimaryID.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaClassPrimaryID extends AbstractTag -{ - - protected $Id = 'WM/MediaClassPrimaryID'; - - protected $Name = 'MediaClassPrimaryID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Class Primary ID'; - - protected $Values = array( - '01CD0F29-DA4E-4157-897B-6275D50C4F11' => array( - 'Id' => '01CD0F29-DA4E-4157-897B-6275D50C4F11', - 'Label' => 'Audio (not music)', - ), - 'D1607DBC-E323-4BE2-86A1-48A42A28441E' => array( - 'Id' => 'D1607DBC-E323-4BE2-86A1-48A42A28441E', - 'Label' => 'Music', - ), - 'DB9830BD-3AB3-4FAB-8A37-1A995F7FF74B' => array( - 'Id' => 'DB9830BD-3AB3-4FAB-8A37-1A995F7FF74B', - 'Label' => 'Video', - ), - 'FCF24A76-9A57-4036-990D-E35DD8B244E1' => array( - 'Id' => 'FCF24A76-9A57-4036-990D-E35DD8B244E1', - 'Label' => 'Other (not audio or video)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaClassSecondaryID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaClassSecondaryID.php deleted file mode 100644 index 1601fd68e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaClassSecondaryID.php +++ /dev/null @@ -1,106 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaClassSecondaryID extends AbstractTag -{ - - protected $Id = 'WM/MediaClassSecondaryID'; - - protected $Name = 'MediaClassSecondaryID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Class Secondary ID'; - - protected $Values = array( - '00000000-0000-0000-0000-000000000000' => array( - 'Id' => '00000000-0000-0000-0000-000000000000', - 'Label' => 'Unknown Content', - ), - '00033368-5009-4AC3-A820-5D2D09A4E7C1' => array( - 'Id' => '00033368-5009-4AC3-A820-5D2D09A4E7C1', - 'Label' => 'Sound Clip from Game', - ), - '0B710218-8C0C-475E-AF73-4C41C0C8F8CE' => array( - 'Id' => '0B710218-8C0C-475E-AF73-4C41C0C8F8CE', - 'Label' => 'Home Video from Pictures', - ), - '1B824A67-3F80-4E3E-9CDE-F7361B0F5F1B' => array( - 'Id' => '1B824A67-3F80-4E3E-9CDE-F7361B0F5F1B', - 'Label' => 'Talk Show', - ), - '1FE2E091-4E1E-40CE-B22D-348C732E0B10' => array( - 'Id' => '1FE2E091-4E1E-40CE-B22D-348C732E0B10', - 'Label' => 'Video News', - ), - '3A172A13-2BD9-4831-835B-114F6A95943F' => array( - 'Id' => '3A172A13-2BD9-4831-835B-114F6A95943F', - 'Label' => 'Spoken Word', - ), - '44051B5B-B103-4B5C-92AB-93060A9463F0' => array( - 'Id' => '44051B5B-B103-4B5C-92AB-93060A9463F0', - 'Label' => 'Corporate Video', - ), - '6677DB9B-E5A0-4063-A1AD-ACEB52840CF1' => array( - 'Id' => '6677DB9B-E5A0-4063-A1AD-ACEB52840CF1', - 'Label' => 'Audio News', - ), - 'A9B87FC9-BD47-4BF0-AC4F-655B89F7D868' => array( - 'Id' => 'A9B87FC9-BD47-4BF0-AC4F-655B89F7D868', - 'Label' => 'Feature Film', - ), - 'B76628F4-300D-443D-9CB5-01C285109DAF' => array( - 'Id' => 'B76628F4-300D-443D-9CB5-01C285109DAF', - 'Label' => 'Home Movie', - ), - 'BA7F258A-62F7-47A9-B21F-4651C42A000E' => array( - 'Id' => 'BA7F258A-62F7-47A9-B21F-4651C42A000E', - 'Label' => 'TV Show', - ), - 'D6DE1D88-C77C-4593-BFBC-9C61E8C373E3' => array( - 'Id' => 'D6DE1D88-C77C-4593-BFBC-9C61E8C373E3', - 'Label' => 'Web-based Video', - ), - 'E0236BEB-C281-4EDE-A36D-7AF76A3D45B5' => array( - 'Id' => 'E0236BEB-C281-4EDE-A36D-7AF76A3D45B5', - 'Label' => 'Audio Book', - ), - 'E3E689E2-BA8C-4330-96DF-A0EEEFFA6876' => array( - 'Id' => 'E3E689E2-BA8C-4330-96DF-A0EEEFFA6876', - 'Label' => 'Music Video', - ), - 'F24FF731-96FC-4D0F-A2F5-5A3483682B1A' => array( - 'Id' => 'F24FF731-96FC-4D0F-A2F5-5A3483682B1A', - 'Label' => 'Song from Game', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaContentTypes.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaContentTypes.php deleted file mode 100644 index e8ab20bbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaContentTypes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaContentTypes extends AbstractTag -{ - - protected $Id = 'MediaContentTypes'; - - protected $Name = 'MediaContentTypes'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Content Types'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaCreated.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaCreated.php deleted file mode 100644 index f2b1bbb4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaCreated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaCreated extends AbstractTag -{ - - protected $Id = '{2E4B640D-5019-46D8-8881-55414CC5CAA0} 100'; - - protected $Name = 'MediaCreated'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Created'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaOriginalBroadcastDateTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaOriginalBroadcastDateTime.php deleted file mode 100644 index 1b5ca48b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaOriginalBroadcastDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaOriginalBroadcastDateTime extends AbstractTag -{ - - protected $Id = 'WM/MediaOriginalBroadcastDateTime'; - - protected $Name = 'MediaOriginalBroadcastDateTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Original Broadcast Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaOriginalChannel.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaOriginalChannel.php deleted file mode 100644 index 3f65ab5fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaOriginalChannel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaOriginalChannel extends AbstractTag -{ - - protected $Id = 'WM/MediaOriginalChannel'; - - protected $Name = 'MediaOriginalChannel'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Original Channel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaStationName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaStationName.php deleted file mode 100644 index 6ae218bd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaStationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaStationName extends AbstractTag -{ - - protected $Id = 'WM/MediaStationName'; - - protected $Name = 'MediaStationName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MediaType.php deleted file mode 100644 index 4b6f4a9a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MediaType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaType extends AbstractTag -{ - - protected $Id = 'MediaType'; - - protected $Name = 'MediaType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MeteringMode.php deleted file mode 100644 index 5b0dfb078..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MeteringMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 37383'; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metering Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MiddleName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MiddleName.php deleted file mode 100644 index c7efaf398..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MiddleName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MiddleName extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 71'; - - protected $Name = 'MiddleName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Middle Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Mileage.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Mileage.php deleted file mode 100644 index 3c566cfe5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Mileage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Mileage extends AbstractTag -{ - - protected $Id = '{FDF84370-031A-4ADD-9E91-0D775F1C6605} 100'; - - protected $Name = 'Mileage'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mileage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ModifiedBy.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ModifiedBy.php deleted file mode 100644 index cf98ef6a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ModifiedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedBy extends AbstractTag -{ - - protected $Id = 'ModifiedBy'; - - protected $Name = 'ModifiedBy'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Mood.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Mood.php deleted file mode 100644 index bc24a604f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Mood.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Mood extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Mood'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mood'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/MoreInfo.php b/lib/PHPExiftool/Driver/Tag/Microsoft/MoreInfo.php deleted file mode 100644 index 28ecefea3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/MoreInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoreInfo extends AbstractTag -{ - - protected $Id = 'MoreInfo'; - - protected $Name = 'MoreInfo'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'More Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Name.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Name.php deleted file mode 100644 index 6c96b7fc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Name.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Name extends AbstractTag -{ - - protected $Id = '{B725F130-47EF-101A-A5F1-02608C9EEBAC} 10'; - - protected $Name = 'Name'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Nickname.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Nickname.php deleted file mode 100644 index 8946855ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Nickname.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Nickname extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 74'; - - protected $Name = 'Nickname'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nickname'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OfficeLocation.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OfficeLocation.php deleted file mode 100644 index 20b788af0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OfficeLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OfficeLocation extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 7'; - - protected $Name = 'OfficeLocation'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Office Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OfflineAvailability.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OfflineAvailability.php deleted file mode 100644 index b52a978f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OfflineAvailability.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OfflineAvailability extends AbstractTag -{ - - protected $Id = '{A94688B6-7D9F-4570-A648-E3DFC0AB2B3F} 100'; - - protected $Name = 'OfflineAvailability'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Offline Availability'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OfflineStatus.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OfflineStatus.php deleted file mode 100644 index 0120cdcbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OfflineStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OfflineStatus extends AbstractTag -{ - - protected $Id = '{6D24888F-4718-4BDA-AFED-EA0FB4386CD8} 100'; - - protected $Name = 'OfflineStatus'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Offline Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OptionalAttendeeAddresses.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OptionalAttendeeAddresses.php deleted file mode 100644 index fc38d4f82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OptionalAttendeeAddresses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptionalAttendeeAddresses extends AbstractTag -{ - - protected $Id = '{D55BAE5A-3892-417A-A649-C6AC5AAAEAB3} 100'; - - protected $Name = 'OptionalAttendeeAddresses'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Optional Attendee Addresses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OptionalAttendees.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OptionalAttendees.php deleted file mode 100644 index b11b81339..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OptionalAttendees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptionalAttendees extends AbstractTag -{ - - protected $Id = '{09429607-582D-437F-84C3-DE93A2B24C3C} 100'; - - protected $Name = 'OptionalAttendees'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Optional Attendees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OrganizerAddress.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OrganizerAddress.php deleted file mode 100644 index 68460e795..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OrganizerAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizerAddress extends AbstractTag -{ - - protected $Id = '{744C8242-4DF5-456C-AB9E-014EFB9021E3} 100'; - - protected $Name = 'OrganizerAddress'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organizer Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OrganizerName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OrganizerName.php deleted file mode 100644 index 01b633420..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OrganizerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganizerName extends AbstractTag -{ - - protected $Id = '{AAA660F9-9865-458E-B484-01BC7FE3973E} 100'; - - protected $Name = 'OrganizerName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organizer Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Orientation.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Orientation.php deleted file mode 100644 index 460b1b250..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Orientation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 274'; - - protected $Name = 'Orientation'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalAlbumTitle.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalAlbumTitle.php deleted file mode 100644 index cbcadf597..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalAlbumTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalAlbumTitle extends AbstractTag -{ - - protected $Id = 'WM/OriginalAlbumTitle'; - - protected $Name = 'OriginalAlbumTitle'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Album Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalArtist.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalArtist.php deleted file mode 100644 index a9103722b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalArtist extends AbstractTag -{ - - protected $Id = 'WM/OriginalArtist'; - - protected $Name = 'OriginalArtist'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalLyricist.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalLyricist.php deleted file mode 100644 index b97cccfed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OriginalLyricist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalLyricist extends AbstractTag -{ - - protected $Id = 'WM/OriginalLyricist'; - - protected $Name = 'OriginalLyricist'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Lyricist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherAddress.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OtherAddress.php deleted file mode 100644 index 9c899fc68..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherAddress extends AbstractTag -{ - - protected $Id = '{508161FA-313B-43D5-83A1-C1ACCF68622C} 100'; - - protected $Name = 'OtherAddress'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherCity.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OtherCity.php deleted file mode 100644 index a087bf125..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherCity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherCity extends AbstractTag -{ - - protected $Id = '{6E682923-7F7B-4F0C-A337-CFCA296687BF} 100'; - - protected $Name = 'OtherCity'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other City'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherCountryRegion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OtherCountryRegion.php deleted file mode 100644 index beed57b5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherCountryRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherCountryRegion extends AbstractTag -{ - - protected $Id = '{8F167568-0AAE-4322-8ED9-6055B7B0E398} 100'; - - protected $Name = 'OtherCountry-Region'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Country-Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherPOBox.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OtherPOBox.php deleted file mode 100644 index eb179eac9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherPOBox.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherPOBox extends AbstractTag -{ - - protected $Id = '{8B26EA41-058F-43F6-AECC-4035681CE977} 100'; - - protected $Name = 'OtherPOBox'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other PO Box'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherPostalCode.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OtherPostalCode.php deleted file mode 100644 index f828727a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherPostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherPostalCode extends AbstractTag -{ - - protected $Id = '{95C656C1-2ABF-4148-9ED3-9EC602E3B7CD} 100'; - - protected $Name = 'OtherPostalCode'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherStateOrProvince.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OtherStateOrProvince.php deleted file mode 100644 index 9959eed4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherStateOrProvince.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherStateOrProvince extends AbstractTag -{ - - protected $Id = '{71B377D6-E570-425F-A170-809FAE73E54E} 100'; - - protected $Name = 'OtherStateOrProvince'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other State Or Province'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherStreet.php b/lib/PHPExiftool/Driver/Tag/Microsoft/OtherStreet.php deleted file mode 100644 index 79df1687d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/OtherStreet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherStreet extends AbstractTag -{ - - protected $Id = '{FF962609-B7D6-4999-862D-95180D529AEA} 100'; - - protected $Name = 'OtherStreet'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Other Street'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Owner.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Owner.php deleted file mode 100644 index c760c4d66..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Owner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Owner extends AbstractTag -{ - - protected $Id = '{9B174B34-40FF-11D2-A27E-00C04FC30871} 4'; - - protected $Name = 'Owner'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/POBox.php b/lib/PHPExiftool/Driver/Tag/Microsoft/POBox.php deleted file mode 100644 index b0869de73..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/POBox.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class POBox extends AbstractTag -{ - - protected $Id = '{DE5EF3C7-46E1-484E-9999-62C5308394C1} 100'; - - protected $Name = 'POBox'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PO Box'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Pager.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Pager.php deleted file mode 100644 index 9979c60fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Pager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pager extends AbstractTag -{ - - protected $Id = '{D6304E01-F8F5-4F45-8B15-D024A6296789} 100'; - - protected $Name = 'Pager'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Pages.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Pages.php deleted file mode 100644 index 6ff760cf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Pages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pages extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 14'; - - protected $Name = 'Pages'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchCameraMotion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchCameraMotion.php deleted file mode 100644 index 1cc056afc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchCameraMotion.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchCameraMotion extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PanoramicStitchCameraMotion'; - - protected $FullName = 'Microsoft::Stitch'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Camera Motion'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Rigid Scale', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Affine', - ), - 4 => array( - 'Id' => 4, - 'Label' => '3D Rotation', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Homography', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchMapType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchMapType.php deleted file mode 100644 index 22ab0c93c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchMapType.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchMapType extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PanoramicStitchMapType'; - - protected $FullName = 'Microsoft::Stitch'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Map Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Perspective', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal Cylindrical', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Horizontal Spherical', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Vertical Cylindrical', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Vertical Spherical', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchPhi0.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchPhi0.php deleted file mode 100644 index a4620db67..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchPhi0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchPhi0 extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PanoramicStitchPhi0'; - - protected $FullName = 'Microsoft::Stitch'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Phi 0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchPhi1.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchPhi1.php deleted file mode 100644 index 40fa55325..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchPhi1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchPhi1 extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PanoramicStitchPhi1'; - - protected $FullName = 'Microsoft::Stitch'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Phi 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchTheta0.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchTheta0.php deleted file mode 100644 index 0f3f4efc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchTheta0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchTheta0 extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PanoramicStitchTheta0'; - - protected $FullName = 'Microsoft::Stitch'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Theta 0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchTheta1.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchTheta1.php deleted file mode 100644 index a5f14bc2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchTheta1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchTheta1 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PanoramicStitchTheta1'; - - protected $FullName = 'Microsoft::Stitch'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Theta 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchVersion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchVersion.php deleted file mode 100644 index afc451abe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PanoramicStitchVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PanoramicStitchVersion'; - - protected $FullName = 'Microsoft::Stitch'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ParentalRating.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ParentalRating.php deleted file mode 100644 index c97988af8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ParentalRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentalRating extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ParentalRating'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parental Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ParentalRatingReason.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ParentalRatingReason.php deleted file mode 100644 index 82d086cfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ParentalRatingReason.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentalRatingReason extends AbstractTag -{ - - protected $Id = '{10984E0A-F9F2-4321-B7EF-BAF195AF4319} 100'; - - protected $Name = 'ParentalRatingReason'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Parental Rating Reason'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PartOfSet.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PartOfSet.php deleted file mode 100644 index 8e4f29201..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PartOfSet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartOfSet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PartOfSet'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Part Of Set'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Participants.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Participants.php deleted file mode 100644 index a3258718e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Participants.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Participants extends AbstractTag -{ - - protected $Id = '{D4D0AA16-9948-41A4-AA85-D97FF9646993} 100'; - - protected $Name = 'Participants'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Participants'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Path.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Path.php deleted file mode 100644 index 86cf5bb76..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Path.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Path extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 7'; - - protected $Name = 'Path'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PeakValue.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PeakValue.php deleted file mode 100644 index fdd171d69..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PeakValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeakValue extends AbstractTag -{ - - protected $Id = 'PeakValue'; - - protected $Name = 'PeakValue'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Peak Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PerceivedType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PerceivedType.php deleted file mode 100644 index f1875da4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PerceivedType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerceivedType extends AbstractTag -{ - - protected $Id = '{28636AA6-953D-11D2-B5D6-00C04FD918D0} 9'; - - protected $Name = 'PerceivedType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Perceived Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Period.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Period.php deleted file mode 100644 index 7a1a1c3dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Period.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Period extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Period'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Period'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PersonalTitle.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PersonalTitle.php deleted file mode 100644 index 7186eb37a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PersonalTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonalTitle extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 69'; - - protected $Name = 'PersonalTitle'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Personal Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PixelAspectRatioX.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PixelAspectRatioX.php deleted file mode 100644 index 76cb9c9db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PixelAspectRatioX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatioX extends AbstractTag -{ - - protected $Id = 'PixelAspectRatioX'; - - protected $Name = 'PixelAspectRatioX'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PixelAspectRatioY.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PixelAspectRatioY.php deleted file mode 100644 index a27eeb8c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PixelAspectRatioY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatioY extends AbstractTag -{ - - protected $Id = 'PixelAspectRatioY'; - - protected $Name = 'PixelAspectRatioY'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PlaylistIndex.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PlaylistIndex.php deleted file mode 100644 index 643f2549d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PlaylistIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaylistIndex extends AbstractTag -{ - - protected $Id = 'PlaylistIndex'; - - protected $Name = 'PlaylistIndex'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Playlist Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PostalCode.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PostalCode.php deleted file mode 100644 index 45af70028..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostalCode extends AbstractTag -{ - - protected $Id = '{18BBD425-ECFD-46EF-B612-7B4A6034EDA0} 100'; - - protected $Name = 'PostalCode'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PrimaryEMail.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PrimaryEMail.php deleted file mode 100644 index 80509c910..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PrimaryEMail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryEMail extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 48'; - - protected $Name = 'PrimaryE-mail'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary E-mail'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/PrimaryPhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/PrimaryPhone.php deleted file mode 100644 index 2a298db20..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/PrimaryPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryPhone extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 25'; - - protected $Name = 'PrimaryPhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Priority.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Priority.php deleted file mode 100644 index 8d31e1352..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Priority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Priority extends AbstractTag -{ - - protected $Id = '{9C1FCF74-2D97-41BA-B4AE-CB2E3661A6E4} 5'; - - protected $Name = 'Priority'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Priority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Producer.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Producer.php deleted file mode 100644 index e5a569a6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Producer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = 'WM/Producer'; - - protected $Name = 'Producer'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Producers.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Producers.php deleted file mode 100644 index 0a2e57aab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Producers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producers extends AbstractTag -{ - - protected $Id = '{64440492-4C8B-11D1-8B70-080036B11A03} 22'; - - protected $Name = 'Producers'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProductName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProductName.php deleted file mode 100644 index 2e125cec9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProductName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductName extends AbstractTag -{ - - protected $Id = '{0CEF7D53-FA64-11D1-A203-0000F81FEDEE} 7'; - - protected $Name = 'ProductName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProductVersion.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProductVersion.php deleted file mode 100644 index f1118ce32..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProductVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductVersion extends AbstractTag -{ - - protected $Id = '{0CEF7D53-FA64-11D1-A203-0000F81FEDEE} 8'; - - protected $Name = 'ProductVersion'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Profession.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Profession.php deleted file mode 100644 index ec45b708a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Profession.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Profession extends AbstractTag -{ - - protected $Id = '{7268AF55-1CE4-4F6E-A41F-B6E4EF10E4A9} 100'; - - protected $Name = 'Profession'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profession'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramDescription.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramDescription.php deleted file mode 100644 index 4cf93e673..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramDescription extends AbstractTag -{ - - protected $Id = '{6D748DE2-8D38-4CC3-AC60-F009B057C557} 3'; - - protected $Name = 'ProgramDescription'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Program Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramMode.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramMode.php deleted file mode 100644 index bf33c2c51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramMode extends AbstractTag -{ - - protected $Id = '{6D217F6D-3F6A-4825-B470-5F03CA2FBE9B} 100'; - - protected $Name = 'ProgramMode'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Program Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramName.php deleted file mode 100644 index 84e99c08a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProgramName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramName extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 18'; - - protected $Name = 'ProgramName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Program Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Project.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Project.php deleted file mode 100644 index 94370323c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Project.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Project extends AbstractTag -{ - - protected $Id = '{39A7F922-477C-48DE-8BC8-B28441E342E3} 100'; - - protected $Name = 'Project'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Project'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Protected0.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Protected0.php deleted file mode 100644 index b7ebf44b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Protected0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Protected0 extends AbstractTag -{ - - protected $Id = '{AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED} 2'; - - protected $Name = 'Protected'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Protected'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProtectionType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProtectionType.php deleted file mode 100644 index d4888ea5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProtectionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProtectionType extends AbstractTag -{ - - protected $Id = 'WM/ProtectionType'; - - protected $Name = 'ProtectionType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Protection Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Provider.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Provider.php deleted file mode 100644 index 400fd8733..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Provider.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Provider extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Provider'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderLogoURL.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderLogoURL.php deleted file mode 100644 index 7a2f1faa7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderLogoURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProviderLogoURL extends AbstractTag -{ - - protected $Id = 'ProviderLogoURL'; - - protected $Name = 'ProviderLogoURL'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider Logo URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderRating.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderRating.php deleted file mode 100644 index 1435af304..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProviderRating extends AbstractTag -{ - - protected $Id = 'WM/ProviderRating'; - - protected $Name = 'ProviderRating'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderStyle.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderStyle.php deleted file mode 100644 index 1cc792d71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderStyle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProviderStyle extends AbstractTag -{ - - protected $Id = 'WM/ProviderStyle'; - - protected $Name = 'ProviderStyle'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider Style'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderURL.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderURL.php deleted file mode 100644 index 9b5634318..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ProviderURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProviderURL extends AbstractTag -{ - - protected $Id = 'ProviderURL'; - - protected $Name = 'ProviderURL'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Provider URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Publisher.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Publisher.php deleted file mode 100644 index d9b897d48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Publisher'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RadioBand.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RadioBand.php deleted file mode 100644 index a4e67e49d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RadioBand.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadioBand extends AbstractTag -{ - - protected $Id = 'RadioBand'; - - protected $Name = 'RadioBand'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radio Band'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RadioFormat.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RadioFormat.php deleted file mode 100644 index bc31515f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RadioFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RadioFormat extends AbstractTag -{ - - protected $Id = 'RadioFormat'; - - protected $Name = 'RadioFormat'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Radio Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Rating.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Rating.php deleted file mode 100644 index c728fbaf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Rating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = '{64440492-4C8B-11D1-8B70-080036B11A03} 9'; - - protected $Name = 'Rating'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RatingOrg.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RatingOrg.php deleted file mode 100644 index fcc884531..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RatingOrg.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RatingOrg extends AbstractTag -{ - - protected $Id = 'RatingOrg'; - - protected $Name = 'RatingOrg'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rating Org'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReadStatus.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReadStatus.php deleted file mode 100644 index 15840ca22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReadStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReadStatus extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 10'; - - protected $Name = 'ReadStatus'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Read Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTime.php deleted file mode 100644 index e386356bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RecordingTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeDay.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeDay.php deleted file mode 100644 index 3977bdcf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTimeDay extends AbstractTag -{ - - protected $Id = 'RecordingTimeDay'; - - protected $Name = 'RecordingTimeDay'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Time Day'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeMonth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeMonth.php deleted file mode 100644 index caf00152a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeMonth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTimeMonth extends AbstractTag -{ - - protected $Id = 'RecordingTimeMonth'; - - protected $Name = 'RecordingTimeMonth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Time Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYear.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYear.php deleted file mode 100644 index 4b3def73a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTimeYear extends AbstractTag -{ - - protected $Id = 'RecordingTimeYear'; - - protected $Name = 'RecordingTimeYear'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Time Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYearMonth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYearMonth.php deleted file mode 100644 index 8902cd515..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYearMonth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTimeYearMonth extends AbstractTag -{ - - protected $Id = 'RecordingTimeYearMonth'; - - protected $Name = 'RecordingTimeYearMonth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Time Year Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYearMonthDay.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYearMonthDay.php deleted file mode 100644 index 2dd6cc671..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RecordingTimeYearMonthDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTimeYearMonthDay extends AbstractTag -{ - - protected $Id = 'RecordingTimeYearMonthDay'; - - protected $Name = 'RecordingTimeYearMonthDay'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Time Year Month Day'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDate.php deleted file mode 100644 index 1bf8dc55c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDate extends AbstractTag -{ - - protected $Id = 'ReleaseDate'; - - protected $Name = 'ReleaseDate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Release Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateDay.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateDay.php deleted file mode 100644 index e8be9920c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDateDay extends AbstractTag -{ - - protected $Id = 'ReleaseDateDay'; - - protected $Name = 'ReleaseDateDay'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Release Date Day'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateMonth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateMonth.php deleted file mode 100644 index f7a6bfc37..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateMonth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDateMonth extends AbstractTag -{ - - protected $Id = 'ReleaseDateMonth'; - - protected $Name = 'ReleaseDateMonth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Release Date Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYear.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYear.php deleted file mode 100644 index 6950842ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDateYear extends AbstractTag -{ - - protected $Id = 'ReleaseDateYear'; - - protected $Name = 'ReleaseDateYear'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Release Date Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYearMonth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYearMonth.php deleted file mode 100644 index dafa0866b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYearMonth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDateYearMonth extends AbstractTag -{ - - protected $Id = 'ReleaseDateYearMonth'; - - protected $Name = 'ReleaseDateYearMonth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Release Date Year Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYearMonthDay.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYearMonthDay.php deleted file mode 100644 index ec250ebb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReleaseDateYearMonthDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDateYearMonthDay extends AbstractTag -{ - - protected $Id = 'ReleaseDateYearMonthDay'; - - protected $Name = 'ReleaseDateYearMonthDay'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Release Date Year Month Day'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ReminderTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ReminderTime.php deleted file mode 100644 index 6f85d0a4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ReminderTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReminderTime extends AbstractTag -{ - - protected $Id = '{72FC5BA4-24F9-4011-9F3F-ADD27AFAD818} 100'; - - protected $Name = 'ReminderTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reminder Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RequestState.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RequestState.php deleted file mode 100644 index 3a2c95a61..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RequestState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequestState extends AbstractTag -{ - - protected $Id = 'RequestState'; - - protected $Name = 'RequestState'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Request State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RequiredAttendeeAddresses.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RequiredAttendeeAddresses.php deleted file mode 100644 index 4761cc073..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RequiredAttendeeAddresses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequiredAttendeeAddresses extends AbstractTag -{ - - protected $Id = '{0BA7D6C3-568D-4159-AB91-781A91FB71E5} 100'; - - protected $Name = 'RequiredAttendeeAddresses'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Required Attendee Addresses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/RequiredAttendees.php b/lib/PHPExiftool/Driver/Tag/Microsoft/RequiredAttendees.php deleted file mode 100644 index f9ce6a9e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/RequiredAttendees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RequiredAttendees extends AbstractTag -{ - - protected $Id = '{B33AF30B-F552-4584-936C-CB93E5CDA29F} 100'; - - protected $Name = 'RequiredAttendees'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Required Attendees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Rerun.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Rerun.php deleted file mode 100644 index 9f5ca33bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Rerun.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rerun extends AbstractTag -{ - - protected $Id = '{6D748DE2-8D38-4CC3-AC60-F009B057C557} 13'; - - protected $Name = 'Rerun'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rerun'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Resources.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Resources.php deleted file mode 100644 index b27274182..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Resources.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Resources extends AbstractTag -{ - - protected $Id = '{00F58A38-C54B-4C40-8696-97235980EAE1} 100'; - - protected $Name = 'Resources'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resources'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SAP.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SAP.php deleted file mode 100644 index 7c0bca0f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SAP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SAP extends AbstractTag -{ - - protected $Id = '{6D748DE2-8D38-4CC3-AC60-F009B057C557} 14'; - - protected $Name = 'SAP'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SAP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Saturation.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Saturation.php deleted file mode 100644 index e7fa5ec54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Saturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = '{49237325-A95A-4F67-B211-816B2D45D2E0} 100'; - - protected $Name = 'Saturation'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SearchRanking.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SearchRanking.php deleted file mode 100644 index 17ccde770..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SearchRanking.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SearchRanking extends AbstractTag -{ - - protected $Id = '{49691C90-7E17-101A-A91C-08002B2ECDA9} 3'; - - protected $Name = 'SearchRanking'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Search Ranking'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SenderAddress.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SenderAddress.php deleted file mode 100644 index 9d4ba3e34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SenderAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SenderAddress extends AbstractTag -{ - - protected $Id = '{0BE1C8E7-1981-4676-AE14-FDD78F05A6E7} 100'; - - protected $Name = 'SenderAddress'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sender Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SenderName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SenderName.php deleted file mode 100644 index b8f0d9d14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SenderName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SenderName extends AbstractTag -{ - - protected $Id = '{0DA41CFA-D224-4A18-AE2F-596158DB4B3A} 100'; - - protected $Name = 'SenderName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sender Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sensitivity.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sensitivity.php deleted file mode 100644 index 7441612ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sensitivity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sensitivity extends AbstractTag -{ - - protected $Id = '{F8D3F6AC-4874-42CB-BE59-AB454B30716A} 100'; - - protected $Name = 'Sensitivity'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensitivity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ShadowFilePath.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ShadowFilePath.php deleted file mode 100644 index dfce6c464..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ShadowFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadowFilePath extends AbstractTag -{ - - protected $Id = 'ShadowFilePath'; - - protected $Name = 'ShadowFilePath'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shadow File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Shared.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Shared.php deleted file mode 100644 index abe918a82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Shared.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Shared extends AbstractTag -{ - - protected $Id = '{EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902} 100'; - - protected $Name = 'Shared'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shared'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SharedWith.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SharedWith.php deleted file mode 100644 index 572e02da0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SharedWith.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharedWith extends AbstractTag -{ - - protected $Id = '{EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902} 200'; - - protected $Name = 'SharedWith'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shared With'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Size.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Size.php deleted file mode 100644 index d16f0500c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Size.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Size extends AbstractTag -{ - - protected $Id = '{B725F130-47EF-101A-A5F1-02608C9EEBAC} 12'; - - protected $Name = 'Size'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Slides.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Slides.php deleted file mode 100644 index f2c809ed0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Slides.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Slides extends AbstractTag -{ - - protected $Id = '{D5CDD502-2E9C-101B-9397-08002B2CF9AE} 7'; - - protected $Name = 'Slides'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slides'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Source.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Source.php deleted file mode 100644 index 4e8644fd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Source.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = '{668CDFA5-7A1B-4323-AE4B-E527393A1D81} 100'; - - protected $Name = 'Source'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SourceURL.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SourceURL.php deleted file mode 100644 index baad04451..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SourceURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceURL extends AbstractTag -{ - - protected $Id = 'SourceURL'; - - protected $Name = 'SourceURL'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SpaceFree.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SpaceFree.php deleted file mode 100644 index 2c192243f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SpaceFree.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpaceFree extends AbstractTag -{ - - protected $Id = '{9B174B35-40FF-11D2-A27E-00C04FC30871} 2'; - - protected $Name = 'SpaceFree'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Space Free'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SpaceUsed.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SpaceUsed.php deleted file mode 100644 index 30ee859b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SpaceUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpaceUsed extends AbstractTag -{ - - protected $Id = '{9B174B35-40FF-11D2-A27E-00C04FC30871} 5'; - - protected $Name = 'SpaceUsed'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Space Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Spouse.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Spouse.php deleted file mode 100644 index f48546a7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Spouse.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Spouse extends AbstractTag -{ - - protected $Id = '{9D2408B6-3167-422B-82B0-F583B7A7CFE3} 100'; - - protected $Name = 'Spouse'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spouse'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/StartDate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/StartDate.php deleted file mode 100644 index 10a42237e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/StartDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartDate extends AbstractTag -{ - - protected $Id = '{48FD6EC8-8A12-4CDF-A03E-4EC5A511EDDE} 100'; - - protected $Name = 'StartDate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/StateOrProvince.php b/lib/PHPExiftool/Driver/Tag/Microsoft/StateOrProvince.php deleted file mode 100644 index 3bc41ff39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/StateOrProvince.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StateOrProvince extends AbstractTag -{ - - protected $Id = '{F1176DFE-7138-4640-8B4C-AE375DC70A6D} 100'; - - protected $Name = 'StateOrProvince'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'State Or Province'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/StationCallSign.php b/lib/PHPExiftool/Driver/Tag/Microsoft/StationCallSign.php deleted file mode 100644 index b94dd530d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/StationCallSign.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StationCallSign extends AbstractTag -{ - - protected $Id = '{6D748DE2-8D38-4CC3-AC60-F009B057C557} 5'; - - protected $Name = 'StationCallSign'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Station Call Sign'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/StationName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/StationName.php deleted file mode 100644 index 77743f95f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/StationName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StationName extends AbstractTag -{ - - protected $Id = '{1B5439E7-EBA1-4AF8-BDD7-7AF1D4549493} 100'; - - protected $Name = 'StationName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Station Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Status.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Status.php deleted file mode 100644 index 1dbec688a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Status.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Status extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Status'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Store.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Store.php deleted file mode 100644 index 8db0f21c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Store.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Store extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 15'; - - protected $Name = 'Store'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Store'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Street.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Street.php deleted file mode 100644 index dcb984045..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Street.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Street extends AbstractTag -{ - - protected $Id = '{63C25B20-96BE-488F-8788-C09C407AD812} 100'; - - protected $Name = 'Street'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Street'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SubTitle.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SubTitle.php deleted file mode 100644 index f7d9a82e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SubTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubTitle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SubTitle'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SubTitleDescription.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SubTitleDescription.php deleted file mode 100644 index bb9794741..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SubTitleDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubTitleDescription extends AbstractTag -{ - - protected $Id = 'WM/SubTitleDescription'; - - protected $Name = 'SubTitleDescription'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub Title Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Subject.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Subject.php deleted file mode 100644 index 28014b9d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Subject'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SubjectDistance.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SubjectDistance.php deleted file mode 100644 index 66257872b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SubjectDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistance extends AbstractTag -{ - - protected $Id = '{14B81DA1-0135-4D31-96D9-6CBFC9671A99} 37382'; - - protected $Name = 'SubjectDistance'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SubscriptionContentID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SubscriptionContentID.php deleted file mode 100644 index 3ec930851..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SubscriptionContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubscriptionContentID extends AbstractTag -{ - - protected $Id = 'WM/SubscriptionContentID'; - - protected $Name = 'SubscriptionContentID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subscription Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Suffix.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Suffix.php deleted file mode 100644 index b120e215f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Suffix.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Suffix extends AbstractTag -{ - - protected $Id = '{176DC63C-2688-4E89-8143-A347800F25E9} 73'; - - protected $Name = 'Suffix'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Suffix'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Summary.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Summary.php deleted file mode 100644 index 1845cba71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Summary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Summary extends AbstractTag -{ - - protected $Id = '{560C36C0-503A-11CF-BAA1-00004C752A9A} 3'; - - protected $Name = 'Summary'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Summary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync01.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync01.php deleted file mode 100644 index 13f28976c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync01.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync01 extends AbstractTag -{ - - protected $Id = 'Sync01'; - - protected $Name = 'Sync01'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 01'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync02.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync02.php deleted file mode 100644 index a1e1bce40..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync02.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync02 extends AbstractTag -{ - - protected $Id = 'Sync02'; - - protected $Name = 'Sync02'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 02'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync03.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync03.php deleted file mode 100644 index 3b03a5f21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync03.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync03 extends AbstractTag -{ - - protected $Id = 'Sync03'; - - protected $Name = 'Sync03'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 03'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync04.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync04.php deleted file mode 100644 index 0785743da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync04.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync04 extends AbstractTag -{ - - protected $Id = 'Sync04'; - - protected $Name = 'Sync04'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 04'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync05.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync05.php deleted file mode 100644 index e6f5ff5e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync05.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync05 extends AbstractTag -{ - - protected $Id = 'Sync05'; - - protected $Name = 'Sync05'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 05'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync06.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync06.php deleted file mode 100644 index ad91ecb80..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync06.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync06 extends AbstractTag -{ - - protected $Id = 'Sync06'; - - protected $Name = 'Sync06'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 06'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync07.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync07.php deleted file mode 100644 index 53509dd31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync07.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync07 extends AbstractTag -{ - - protected $Id = 'Sync07'; - - protected $Name = 'Sync07'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 07'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync08.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync08.php deleted file mode 100644 index 7f2068c59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync08.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync08 extends AbstractTag -{ - - protected $Id = 'Sync08'; - - protected $Name = 'Sync08'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 08'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync09.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync09.php deleted file mode 100644 index 261770cbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync09.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync09 extends AbstractTag -{ - - protected $Id = 'Sync09'; - - protected $Name = 'Sync09'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 09'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync10.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync10.php deleted file mode 100644 index 50ce09a89..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync10.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync10 extends AbstractTag -{ - - protected $Id = 'Sync10'; - - protected $Name = 'Sync10'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 10'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync11.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync11.php deleted file mode 100644 index c4881ed26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync11.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync11 extends AbstractTag -{ - - protected $Id = 'Sync11'; - - protected $Name = 'Sync11'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 11'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync12.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync12.php deleted file mode 100644 index 0dede7325..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync12.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync12 extends AbstractTag -{ - - protected $Id = 'Sync12'; - - protected $Name = 'Sync12'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 12'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync13.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync13.php deleted file mode 100644 index dc1d4ecd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync13.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync13 extends AbstractTag -{ - - protected $Id = 'Sync13'; - - protected $Name = 'Sync13'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 13'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync14.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync14.php deleted file mode 100644 index 3a973dc70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync14.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync14 extends AbstractTag -{ - - protected $Id = 'Sync14'; - - protected $Name = 'Sync14'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 14'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync15.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync15.php deleted file mode 100644 index 15913ca95..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync15.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync15 extends AbstractTag -{ - - protected $Id = 'Sync15'; - - protected $Name = 'Sync15'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 15'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync16.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Sync16.php deleted file mode 100644 index 0852c19b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Sync16.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sync16 extends AbstractTag -{ - - protected $Id = 'Sync16'; - - protected $Name = 'Sync16'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync 16'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SyncOnly.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SyncOnly.php deleted file mode 100644 index 22cb0e889..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SyncOnly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SyncOnly extends AbstractTag -{ - - protected $Id = 'SyncOnly'; - - protected $Name = 'SyncOnly'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync Only'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/SyncState.php b/lib/PHPExiftool/Driver/Tag/Microsoft/SyncState.php deleted file mode 100644 index c762a0f0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/SyncState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SyncState extends AbstractTag -{ - - protected $Id = 'SyncState'; - - protected $Name = 'SyncState'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TTYTTDPhone.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TTYTTDPhone.php deleted file mode 100644 index b9b8cb67f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TTYTTDPhone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TTYTTDPhone extends AbstractTag -{ - - protected $Id = '{AAF16BAC-2B55-45E6-9F6D-415EB94910DF} 100'; - - protected $Name = 'TTY-TTDPhone'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TTY-TTD Phone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TaskOwner.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TaskOwner.php deleted file mode 100644 index 6b880e4fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TaskOwner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaskOwner extends AbstractTag -{ - - protected $Id = '{08C7CC5F-60F2-4494-AD75-55E3E0B5ADD0} 100'; - - protected $Name = 'TaskOwner'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Task Owner'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Telex.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Telex.php deleted file mode 100644 index e661d5387..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Telex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Telex extends AbstractTag -{ - - protected $Id = '{C554493C-C1F7-40C1-A76C-EF8C0614003E} 100'; - - protected $Name = 'Telex'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Telex'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Temporary.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Temporary.php deleted file mode 100644 index 54a7054bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Temporary.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Temporary extends AbstractTag -{ - - protected $Id = 'Temporary'; - - protected $Name = 'Temporary'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Temporary'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Title.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Title.php deleted file mode 100644 index 15f79e72c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Title'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TitleNum.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TitleNum.php deleted file mode 100644 index 45a0c94d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TitleNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleNum extends AbstractTag -{ - - protected $Id = 'titleNum'; - - protected $Name = 'TitleNum'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TitleSortOrder.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TitleSortOrder.php deleted file mode 100644 index a2f9849a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TitleSortOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleSortOrder extends AbstractTag -{ - - protected $Id = 'TitleSortOrder'; - - protected $Name = 'TitleSortOrder'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title Sort Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ToAddresses.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ToAddresses.php deleted file mode 100644 index 92cda1e6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ToAddresses.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToAddresses extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 16'; - - protected $Name = 'ToAddresses'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'To Addresses'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ToDoTitle.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ToDoTitle.php deleted file mode 100644 index f6b4035d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ToDoTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToDoTitle extends AbstractTag -{ - - protected $Id = '{BCCC8A3C-8CEF-42E5-9B1C-C69079398BC7} 100'; - - protected $Name = 'ToDoTitle'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'To Do Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/ToNames.php b/lib/PHPExiftool/Driver/Tag/Microsoft/ToNames.php deleted file mode 100644 index 1dee0dd17..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/ToNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToNames extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 17'; - - protected $Name = 'ToNames'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'To Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalBitrate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TotalBitrate.php deleted file mode 100644 index 4afbd012d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalBitrate extends AbstractTag -{ - - protected $Id = '{64440491-4C8B-11D1-8B70-080036B11A03} 43'; - - protected $Name = 'TotalBitrate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalDuration.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TotalDuration.php deleted file mode 100644 index f6500aab7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalDuration extends AbstractTag -{ - - protected $Id = 'TotalDuration'; - - protected $Name = 'TotalDuration'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalEditingTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TotalEditingTime.php deleted file mode 100644 index 2d2efe73b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalEditingTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalEditingTime extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 10'; - - protected $Name = 'TotalEditingTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Editing Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalFileSize.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TotalFileSize.php deleted file mode 100644 index d2f58d1e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalFileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalFileSize extends AbstractTag -{ - - protected $Id = '{28636AA6-953D-11D2-B5D6-00C04FD918D0} 14'; - - protected $Name = 'TotalFileSize'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalSize.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TotalSize.php deleted file mode 100644 index 36db339d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TotalSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalSize extends AbstractTag -{ - - protected $Id = '{9B174B35-40FF-11D2-A27E-00C04FC30871} 3'; - - protected $Name = 'TotalSize'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TrackNumber.php deleted file mode 100644 index 00825b01a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/TrackingID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/TrackingID.php deleted file mode 100644 index cd99000c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/TrackingID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackingID extends AbstractTag -{ - - protected $Id = 'TrackingID'; - - protected $Name = 'TrackingID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tracking ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Type.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Type.php deleted file mode 100644 index f49b57a71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Type.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Type extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Type'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/URL.php b/lib/PHPExiftool/Driver/Tag/Microsoft/URL.php deleted file mode 100644 index e3dd7cc62..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = '{5CBF2787-48CF-4208-B90E-EE5E5D420294} 2'; - - protected $Name = 'URL'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UniqueFileIdentifier.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UniqueFileIdentifier.php deleted file mode 100644 index 5a1712bf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UniqueFileIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UniqueFileIdentifier extends AbstractTag -{ - - protected $Id = 'WM/UniqueFileIdentifier'; - - protected $Name = 'UniqueFileIdentifier'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unique File Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled0.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled0.php deleted file mode 100644 index 00936a4c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Untitled0 extends AbstractTag -{ - - protected $Id = '{6444048F-4C8B-11D1-8B70-080036B11A03} 3'; - - protected $Name = 'Untitled0'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Untitled 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled1.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled1.php deleted file mode 100644 index 21eb16215..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Untitled1 extends AbstractTag -{ - - protected $Id = '{6444048F-4C8B-11D1-8B70-080036B11A03} 4'; - - protected $Name = 'Untitled1'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Untitled 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled2.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled2.php deleted file mode 100644 index d325fbbe4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Untitled2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Untitled2 extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 12'; - - protected $Name = 'Untitled2'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Untitled 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserCustom1.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserCustom1.php deleted file mode 100644 index 7f373aea0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserCustom1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserCustom1 extends AbstractTag -{ - - protected $Id = 'UserCustom1'; - - protected $Name = 'UserCustom1'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Custom 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserCustom2.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserCustom2.php deleted file mode 100644 index ace523d1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserCustom2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserCustom2 extends AbstractTag -{ - - protected $Id = 'UserCustom2'; - - protected $Name = 'UserCustom2'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Custom 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserEffectiveRating.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserEffectiveRating.php deleted file mode 100644 index 0f5899587..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserEffectiveRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserEffectiveRating extends AbstractTag -{ - - protected $Id = 'UserEffectiveRating'; - - protected $Name = 'UserEffectiveRating'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Effective Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserLastPlayedTime.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserLastPlayedTime.php deleted file mode 100644 index 338072c60..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserLastPlayedTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserLastPlayedTime extends AbstractTag -{ - - protected $Id = 'UserLastPlayedTime'; - - protected $Name = 'UserLastPlayedTime'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Last Played Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlayCount.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlayCount.php deleted file mode 100644 index 1a9cba4ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlayCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPlayCount extends AbstractTag -{ - - protected $Id = 'UserPlayCount'; - - protected $Name = 'UserPlayCount'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Play Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountAfternoon.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountAfternoon.php deleted file mode 100644 index 0f67312e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountAfternoon.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPlaycountAfternoon extends AbstractTag -{ - - protected $Id = 'UserPlaycountAfternoon'; - - protected $Name = 'UserPlaycountAfternoon'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Playcount Afternoon'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountEvening.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountEvening.php deleted file mode 100644 index 97193f534..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountEvening.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPlaycountEvening extends AbstractTag -{ - - protected $Id = 'UserPlaycountEvening'; - - protected $Name = 'UserPlaycountEvening'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Playcount Evening'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountMorning.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountMorning.php deleted file mode 100644 index e51c512ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountMorning.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPlaycountMorning extends AbstractTag -{ - - protected $Id = 'UserPlaycountMorning'; - - protected $Name = 'UserPlaycountMorning'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Playcount Morning'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountNight.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountNight.php deleted file mode 100644 index 4d3760b3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountNight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPlaycountNight extends AbstractTag -{ - - protected $Id = 'UserPlaycountNight'; - - protected $Name = 'UserPlaycountNight'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Playcount Night'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountWeekday.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountWeekday.php deleted file mode 100644 index 1acad4359..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountWeekday.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPlaycountWeekday extends AbstractTag -{ - - protected $Id = 'UserPlaycountWeekday'; - - protected $Name = 'UserPlaycountWeekday'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Playcount Weekday'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountWeekend.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountWeekend.php deleted file mode 100644 index dcc08b56e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserPlaycountWeekend.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserPlaycountWeekend extends AbstractTag -{ - - protected $Id = 'UserPlaycountWeekend'; - - protected $Name = 'UserPlaycountWeekend'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Playcount Weekend'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserRating.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserRating.php deleted file mode 100644 index 134624fe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserRating extends AbstractTag -{ - - protected $Id = 'UserRating'; - - protected $Name = 'UserRating'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserServiceRating.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserServiceRating.php deleted file mode 100644 index 479ae7c5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserServiceRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserServiceRating extends AbstractTag -{ - - protected $Id = 'UserServiceRating'; - - protected $Name = 'UserServiceRating'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Service Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/UserWebURL.php b/lib/PHPExiftool/Driver/Tag/Microsoft/UserWebURL.php deleted file mode 100644 index 322c90500..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/UserWebURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserWebURL extends AbstractTag -{ - - protected $Id = '{64440492-4C8B-11D1-8B70-080036B11A03} 34'; - - protected $Name = 'UserWebURL'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Web URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/VerticalResolution.php b/lib/PHPExiftool/Driver/Tag/Microsoft/VerticalResolution.php deleted file mode 100644 index f097be07d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/VerticalResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalResolution extends AbstractTag -{ - - protected $Id = '{6444048F-4C8B-11D1-8B70-080036B11A03} 6'; - - protected $Name = 'VerticalResolution'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vertical Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoBitrate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/VideoBitrate.php deleted file mode 100644 index 28499a5b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoBitrate extends AbstractTag -{ - - protected $Id = 'VideoBitrate'; - - protected $Name = 'VideoBitrate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoCompression.php b/lib/PHPExiftool/Driver/Tag/Microsoft/VideoCompression.php deleted file mode 100644 index 41080c817..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoCompression.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCompression extends AbstractTag -{ - - protected $Id = '{64440491-4C8B-11D1-8B70-080036B11A03} 10'; - - protected $Name = 'VideoCompression'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Compression'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoFormat.php b/lib/PHPExiftool/Driver/Tag/Microsoft/VideoFormat.php deleted file mode 100644 index 09746d68d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFormat extends AbstractTag -{ - - protected $Id = 'VideoFormat'; - - protected $Name = 'VideoFormat'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoFrameRate.php b/lib/PHPExiftool/Driver/Tag/Microsoft/VideoFrameRate.php deleted file mode 100644 index a7541bb97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameRate extends AbstractTag -{ - - protected $Id = 'WM/VideoFrameRate'; - - protected $Name = 'VideoFrameRate'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoHeight.php b/lib/PHPExiftool/Driver/Tag/Microsoft/VideoHeight.php deleted file mode 100644 index 8addcda20..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoHeight extends AbstractTag -{ - - protected $Id = 'WM/VideoHeight'; - - protected $Name = 'VideoHeight'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoWidth.php b/lib/PHPExiftool/Driver/Tag/Microsoft/VideoWidth.php deleted file mode 100644 index db222f709..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/VideoWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoWidth extends AbstractTag -{ - - protected $Id = 'WM/VideoWidth'; - - protected $Name = 'VideoWidth'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WMCollectionGroupID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WMCollectionGroupID.php deleted file mode 100644 index 865274901..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WMCollectionGroupID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMCollectionGroupID extends AbstractTag -{ - - protected $Id = 'WM/WMCollectionGroupID'; - - protected $Name = 'WMCollectionGroupID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Collection Group ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WMCollectionID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WMCollectionID.php deleted file mode 100644 index d2108d713..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WMCollectionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMCollectionID extends AbstractTag -{ - - protected $Id = 'WM/WMCollectionID'; - - protected $Name = 'WMCollectionID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Collection ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WMContentID.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WMContentID.php deleted file mode 100644 index 36c70f65f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WMContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMContentID extends AbstractTag -{ - - protected $Id = 'WM/WMContentID'; - - protected $Name = 'WMContentID'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WMShadowFileSourceDRMType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WMShadowFileSourceDRMType.php deleted file mode 100644 index db7d70c5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WMShadowFileSourceDRMType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMShadowFileSourceDRMType extends AbstractTag -{ - - protected $Id = 'WM/WMShadowFileSourceDRMType'; - - protected $Name = 'WMShadowFileSourceDRMType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Shadow File Source DRM Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WMShadowFileSourceFileType.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WMShadowFileSourceFileType.php deleted file mode 100644 index 329716a07..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WMShadowFileSourceFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WMShadowFileSourceFileType extends AbstractTag -{ - - protected $Id = 'WM/WMShadowFileSourceFileType'; - - protected $Name = 'WMShadowFileSourceFileType'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WM Shadow File Source File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Webpage.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Webpage.php deleted file mode 100644 index e9fff463a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Webpage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Webpage extends AbstractTag -{ - - protected $Id = '{E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD} 18'; - - protected $Name = 'Webpage'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Webpage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WhiteBalance.php deleted file mode 100644 index 036342735..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WhiteBalance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = '{EE3D3D8A-5381-4CFA-B13B-AAF66B5F4EC9} 100'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WindowsFileName.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WindowsFileName.php deleted file mode 100644 index bb6b510d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WindowsFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowsFileName extends AbstractTag -{ - - protected $Id = '{41CF5AE0-F75A-4806-BD87-59C7D9248EB9} 100'; - - protected $Name = 'WindowsFileName'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Windows File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/WordCount.php b/lib/PHPExiftool/Driver/Tag/Microsoft/WordCount.php deleted file mode 100644 index 7810d98ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/WordCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WordCount extends AbstractTag -{ - - protected $Id = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 15'; - - protected $Name = 'WordCount'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Word Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Writer.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Writer.php deleted file mode 100644 index bbd5f00f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Writer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Writer extends AbstractTag -{ - - protected $Id = 'WM/Writer'; - - protected $Name = 'Writer'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Writer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Writers.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Writers.php deleted file mode 100644 index 6615bd991..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Writers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Writers extends AbstractTag -{ - - protected $Id = '{64440492-4C8B-11D1-8B70-080036B11A03} 23'; - - protected $Name = 'Writers'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Writers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Microsoft/Year.php b/lib/PHPExiftool/Driver/Tag/Microsoft/Year.php deleted file mode 100644 index 1ab388e0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Microsoft/Year.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Microsoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Year'; - - protected $FullName = 'Microsoft::Xtra'; - - protected $GroupName = 'Microsoft'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Microsoft'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AELButton.php b/lib/PHPExiftool/Driver/Tag/Minolta/AELButton.php deleted file mode 100644 index a22f06d30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AELButton.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELButton extends AbstractTag -{ - - protected $Id = 69; - - protected $Name = 'AELButton'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AEL Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Hold', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Toggle', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot Hold', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot Toggle', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AELExposureIndicator.php b/lib/PHPExiftool/Driver/Tag/Minolta/AELExposureIndicator.php deleted file mode 100644 index cb52787d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AELExposureIndicator.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELExposureIndicator extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'AELExposureIndicator'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AEL Exposure Indicator'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Indicated', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Under Scale', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Bottom of Scale', - ), - 120 => array( - 'Id' => 120, - 'Label' => '-2.0', - ), - 121 => array( - 'Id' => 121, - 'Label' => '-1.7', - ), - 122 => array( - 'Id' => 122, - 'Label' => '-1.5', - ), - 123 => array( - 'Id' => 123, - 'Label' => '-1.3', - ), - 124 => array( - 'Id' => 124, - 'Label' => '-1.0', - ), - 125 => array( - 'Id' => 125, - 'Label' => '-0.7', - ), - 126 => array( - 'Id' => 126, - 'Label' => '-0.5', - ), - 127 => array( - 'Id' => 127, - 'Label' => '-0.3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 0, - ), - 129 => array( - 'Id' => 129, - 'Label' => '+0.3', - ), - 130 => array( - 'Id' => 130, - 'Label' => '+0.5', - ), - 131 => array( - 'Id' => 131, - 'Label' => '+0.7', - ), - 132 => array( - 'Id' => 132, - 'Label' => '+1.0', - ), - 133 => array( - 'Id' => 133, - 'Label' => '+1.3', - ), - 134 => array( - 'Id' => 134, - 'Label' => '+1.5', - ), - 135 => array( - 'Id' => 135, - 'Label' => '+1.7', - ), - 136 => array( - 'Id' => 136, - 'Label' => '+2.0', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Top of Scale', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Over Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AELock.php b/lib/PHPExiftool/Driver/Tag/Minolta/AELock.php deleted file mode 100644 index 74bfae23f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AELock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELock extends AbstractTag -{ - - protected $Id = 91; - - protected $Name = 'AELock'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AE Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AEMeteringSegments.php b/lib/PHPExiftool/Driver/Tag/Minolta/AEMeteringSegments.php deleted file mode 100644 index cf45cdd9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AEMeteringSegments.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMeteringSegments extends AbstractTag -{ - - protected $Id = 1576; - - protected $Name = 'AEMeteringSegments'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Metering Segments'; - - protected $flag_Permanent = true; - - protected $MaxLength = 40; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFAreaIllumination.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFAreaIllumination.php deleted file mode 100644 index a0ffb0259..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFAreaIllumination.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaIllumination extends AbstractTag -{ - - protected $Id = 75; - - protected $Name = 'AFAreaIllumination'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Area Illumination'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0.3 s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '0.6 s', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFAreaMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFAreaMode.php deleted file mode 100644 index d4da88298..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFAreaMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAreaMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'AF Area Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Wide', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Local', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFAssist.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFAssist.php deleted file mode 100644 index ce5f19fcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFAssist.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAssist extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'AFAssist'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Assist'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFMode.php deleted file mode 100644 index f44547cbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMode extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'AFMode'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'DMF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFPoint.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFPoint.php deleted file mode 100644 index aa1fab088..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFPoint.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoint extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'AFPoint'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Top-right', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Bottom-right', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Bottom-left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Top-left', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFPointSelected.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFPointSelected.php deleted file mode 100644 index ecec4786b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFPointSelected.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelected extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'AFPointSelected'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Point Selected'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Top-right', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Bottom-right', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Bottom-left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Top-left', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFPoints.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFPoints.php deleted file mode 100644 index 47416bd30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFPoints.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoints extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'AFPoints'; - - protected $FullName = 'Minolta::CameraSettings7D'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Points'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Top-right', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Right', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Bottom-right', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Bottom', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Bottom-left', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Left', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Top-left', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFSensorActive.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFSensorActive.php deleted file mode 100644 index b0504e9f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFSensorActive.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFSensorActive extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AFSensorActive'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Sensor Active'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Top-right', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Bottom-right', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Bottom', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Middle Horizontal', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Center Vertical', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Top', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Top-left', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Bottom-left', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusActiveSensor.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusActiveSensor.php deleted file mode 100644 index f2b4eb34c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusActiveSensor.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusActiveSensor extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AFStatusActiveSensor'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Active Sensor'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottom.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottom.php deleted file mode 100644 index 0773495fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottom.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottom extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'AFStatusBottom'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottomLeft.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottomLeft.php deleted file mode 100644 index 220c95d6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottomLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomLeft extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'AFStatusBottom-left'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottomRight.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottomRight.php deleted file mode 100644 index b29a3ffc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusBottomRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomRight extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AFStatusBottom-right'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusCenterHorizontal.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusCenterHorizontal.php deleted file mode 100644 index f8fbabe66..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusCenterHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenterHorizontal extends AbstractTag -{ - - protected $Id = 47; - - protected $Name = 'AFStatusCenterHorizontal'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusCenterVertical.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusCenterVertical.php deleted file mode 100644 index ddef4ae4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusCenterVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenterVertical extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'AFStatusCenterVertical'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusLeft.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusLeft.php deleted file mode 100644 index 4d57bdba7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLeft extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'AFStatusLeft'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusMiddleHorizontal.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusMiddleHorizontal.php deleted file mode 100644 index 352c7a8fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusMiddleHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusMiddleHorizontal extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'AFStatusMiddleHorizontal'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Middle Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusRight.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusRight.php deleted file mode 100644 index cdfd24439..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusRight extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'AFStatusRight'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTop.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTop.php deleted file mode 100644 index 36344c4a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTop.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTop extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'AFStatusTop'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTopLeft.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTopLeft.php deleted file mode 100644 index d56b768b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTopLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopLeft extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'AFStatusTop-left'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTopRight.php b/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTopRight.php deleted file mode 100644 index ab4262c6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AFStatusTopRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopRight extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AFStatusTop-right'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ApertureSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/ApertureSetting.php deleted file mode 100644 index 76e4ed375..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ApertureSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureSetting extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ApertureSetting'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Aperture Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AutoBracketOrder.php b/lib/PHPExiftool/Driver/Tag/Minolta/AutoBracketOrder.php deleted file mode 100644 index 0efaee896..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AutoBracketOrder.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketOrder extends AbstractTag -{ - - protected $Id = 67; - - protected $Name = 'AutoBracketOrder'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracket Order'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0 - +', - ), - 1 => array( - 'Id' => 1, - 'Label' => '- 0 +', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/AverageLV.php b/lib/PHPExiftool/Driver/Tag/Minolta/AverageLV.php deleted file mode 100644 index e216c8dc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/AverageLV.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AverageLV extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'AverageLV'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Average LV'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/BWFilter.php b/lib/PHPExiftool/Driver/Tag/Minolta/BWFilter.php deleted file mode 100644 index 659fb449f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/BWFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BWFilter extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'BWFilter'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'BW Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/BatteryState.php b/lib/PHPExiftool/Driver/Tag/Minolta/BatteryState.php deleted file mode 100644 index 9302d227b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/BatteryState.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryState extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'BatteryState'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Battery State'; - - protected $flag_Permanent = true; - - protected $Values = array( - 3 => array( - 'Id' => 3, - 'Label' => 'Very Low', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Low', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Half Full', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Sufficient Power Remaining', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/BracketStep.php b/lib/PHPExiftool/Driver/Tag/Minolta/BracketStep.php deleted file mode 100644 index 534504134..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/BracketStep.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketStep extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'BracketStep'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Bracket Step'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 1 => array( - 'Id' => 1, - 'Label' => '2/3 EV', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Brightness.php b/lib/PHPExiftool/Driver/Tag/Minolta/Brightness.php deleted file mode 100644 index 102f88079..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Brightness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'Brightness'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Brightness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/Minolta/BrightnessValue.php deleted file mode 100644 index ea6a90717..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/BrightnessValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Brightness Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/CardShutterLock.php b/lib/PHPExiftool/Driver/Tag/Minolta/CardShutterLock.php deleted file mode 100644 index 472463e02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/CardShutterLock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CardShutterLock extends AbstractTag -{ - - protected $Id = 73; - - protected $Name = 'CardShutterLock'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Card Shutter Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceBlue.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceBlue.php deleted file mode 100644 index fa938b289..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceBlue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBalanceBlue extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'ColorBalanceBlue'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Balance Blue'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceGreen.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceGreen.php deleted file mode 100644 index 2959bfe87..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceGreen.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBalanceGreen extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'ColorBalanceGreen'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Balance Green'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceRed.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceRed.php deleted file mode 100644 index e7e5082bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorBalanceRed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBalanceRed extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'ColorBalanceRed'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Balance Red'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorCompensationFilter.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorCompensationFilter.php deleted file mode 100644 index ccc037978..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorCompensationFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCompensationFilter extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorCompensationFilter'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Compensation Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorFilter.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorFilter.php deleted file mode 100644 index a3dddec42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorFilter extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'ColorFilter'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorMode.php deleted file mode 100644 index 3cf4dbe7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorMode.php +++ /dev/null @@ -1,278 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Natural color', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Black & White', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Vivid color', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Solarization', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Adobe RGB', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Landscape', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Night Scene', - ), - 11 => array( - 'Id' => 7, - 'Label' => 'B&W', - ), - 12 => array( - 'Id' => 8, - 'Label' => 'Adobe RGB', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Natural color', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'Black & White', - ), - 15 => array( - 'Id' => 2, - 'Label' => 'Vivid color', - ), - 16 => array( - 'Id' => 3, - 'Label' => 'Solarization', - ), - 17 => array( - 'Id' => 4, - 'Label' => 'Adobe RGB', - ), - 18 => array( - 'Id' => 5, - 'Label' => 'Sepia', - ), - 19 => array( - 'Id' => 9, - 'Label' => 'Natural', - ), - 20 => array( - 'Id' => 12, - 'Label' => 'Portrait', - ), - 21 => array( - 'Id' => 13, - 'Label' => 'Natural sRGB', - ), - 22 => array( - 'Id' => 14, - 'Label' => 'Natural+ sRGB', - ), - 23 => array( - 'Id' => 15, - 'Label' => 'Landscape', - ), - 24 => array( - 'Id' => 16, - 'Label' => 'Evening', - ), - 25 => array( - 'Id' => 17, - 'Label' => 'Night Scene', - ), - 26 => array( - 'Id' => 18, - 'Label' => 'Night Portrait', - ), - 27 => array( - 'Id' => 132, - 'Label' => 'Embed Adobe RGB', - ), - 28 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 29 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 30 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 31 => array( - 'Id' => 3, - 'Label' => 'Landscape', - ), - 32 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 33 => array( - 'Id' => 5, - 'Label' => 'Night View/Portrait', - ), - 34 => array( - 'Id' => 6, - 'Label' => 'B&W', - ), - 35 => array( - 'Id' => 7, - 'Label' => 'Adobe RGB', - ), - 36 => array( - 'Id' => 12, - 'Label' => 'Neutral', - ), - 37 => array( - 'Id' => 13, - 'Label' => 'Clear', - ), - 38 => array( - 'Id' => 14, - 'Label' => 'Deep', - ), - 39 => array( - 'Id' => 15, - 'Label' => 'Light', - ), - 40 => array( - 'Id' => 16, - 'Label' => 'Autumn Leaves', - ), - 41 => array( - 'Id' => 17, - 'Label' => 'Sepia', - ), - 42 => array( - 'Id' => 100, - 'Label' => 'Neutral', - ), - 43 => array( - 'Id' => 101, - 'Label' => 'Clear', - ), - 44 => array( - 'Id' => 102, - 'Label' => 'Deep', - ), - 45 => array( - 'Id' => 103, - 'Label' => 'Light', - ), - 46 => array( - 'Id' => 104, - 'Label' => 'Night View', - ), - 47 => array( - 'Id' => 105, - 'Label' => 'Autumn Leaves', - ), - 48 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - 49 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 50 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 51 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 52 => array( - 'Id' => 3, - 'Label' => 'Landscape', - ), - 53 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 54 => array( - 'Id' => 5, - 'Label' => 'Night View', - ), - 55 => array( - 'Id' => 7, - 'Label' => 'B&W', - ), - 56 => array( - 'Id' => 8, - 'Label' => 'Adobe RGB', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorProfile.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorProfile.php deleted file mode 100644 index 795aee805..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorProfile.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorProfile extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'ColorProfile'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Profile'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Embedded', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Embedded', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorSpace.php deleted file mode 100644 index d9d9586db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorSpace.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Natural sRGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Natural+ sRGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Monochrome', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Adobe RGB (ICC)', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Adobe RGB', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Natural sRGB', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Natural+ sRGB', - ), - 7 => array( - 'Id' => 4, - 'Label' => 'Adobe RGB', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'sRGB', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'B&W', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Adobe RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorTemperature.php deleted file mode 100644 index b0a619338..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ColorTemperatureSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/ColorTemperatureSetting.php deleted file mode 100644 index 72f07d960..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ColorTemperatureSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperatureSetting extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'ColorTemperatureSetting'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Temperature', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Color Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/CompressedImageSize.php b/lib/PHPExiftool/Driver/Tag/Minolta/CompressedImageSize.php deleted file mode 100644 index e3564d4eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/CompressedImageSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedImageSize extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'CompressedImageSize'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Compressed Image Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ContinuousBracketing.php b/lib/PHPExiftool/Driver/Tag/Minolta/ContinuousBracketing.php deleted file mode 100644 index 0b352fd08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ContinuousBracketing.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContinuousBracketing extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'ContinuousBracketing'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Continuous Bracketing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 771 => array( - 'Id' => 771, - 'Label' => 'Low', - ), - 1795 => array( - 'Id' => 1795, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Contrast.php b/lib/PHPExiftool/Driver/Tag/Minolta/Contrast.php deleted file mode 100644 index c40c5b320..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Contrast.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Contrast'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ControlDialSet.php b/lib/PHPExiftool/Driver/Tag/Minolta/ControlDialSet.php deleted file mode 100644 index 7e8ec94f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ControlDialSet.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlDialSet extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'ControlDialSet'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Control Dial Set'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Shutter Speed', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Aperture', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBBlueLevel.php b/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBBlueLevel.php deleted file mode 100644 index 56686e15e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBBlueLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomWBBlueLevel extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'CustomWBBlueLevel'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Custom WB Blue Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBError.php b/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBError.php deleted file mode 100644 index bff53d71a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBError.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomWBError extends AbstractTag -{ - - protected $Id = 55; - - protected $Name = 'CustomWBError'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Custom WB Error'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'OK', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Error', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBGreenLevel.php b/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBGreenLevel.php deleted file mode 100644 index ea638fca5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBGreenLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomWBGreenLevel extends AbstractTag -{ - - protected $Id = 53; - - protected $Name = 'CustomWBGreenLevel'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Custom WB Green Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBRedLevel.php b/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBRedLevel.php deleted file mode 100644 index 4f1b0a7d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBRedLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomWBRedLevel extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'CustomWBRedLevel'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Custom WB Red Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBSetting.php deleted file mode 100644 index 03a4b6fef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/CustomWBSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomWBSetting extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'CustomWBSetting'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Custom WB Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Setup', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Recall', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DECPosition.php b/lib/PHPExiftool/Driver/Tag/Minolta/DECPosition.php deleted file mode 100644 index d6f9ca55f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DECPosition.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DECPosition extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'DECPosition'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'DEC Position'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Exposure', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Contrast', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Saturation', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DataImprint.php b/lib/PHPExiftool/Driver/Tag/Minolta/DataImprint.php deleted file mode 100644 index e27236127..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DataImprint.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataImprint extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'DataImprint'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Data Imprint'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'YYYY/MM/DD', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'MM/DD/HH:MM', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Text', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Text + ID#', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Minolta/DigitalZoom.php deleted file mode 100644 index 96bd9bcdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DigitalZoom.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Electronic magnification', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2x', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/DriveMode.php deleted file mode 100644 index 15ec3e6a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DriveMode.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DriveMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Drive Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Self-timer', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Bracketing', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Interval', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'UHS continuous', - ), - 6 => array( - 'Id' => 7, - 'Label' => 'HS continuous', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Single Frame', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Self-timer', - ), - 10 => array( - 'Id' => 3, - 'Label' => 'Continuous Bracketing', - ), - 11 => array( - 'Id' => 4, - 'Label' => 'Single-Frame Bracketing', - ), - 12 => array( - 'Id' => 5, - 'Label' => 'White Balance Bracketing', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Self-timer 10 sec', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 15 => array( - 'Id' => 2, - 'Label' => 'Single-frame Exposure Bracketing', - ), - 16 => array( - 'Id' => 3, - 'Label' => 'Continuous Exposure Bracketing', - ), - 17 => array( - 'Id' => 4, - 'Label' => 'Self-Timer 2 sec', - ), - 18 => array( - 'Id' => 5, - 'Label' => 'Single Frame', - ), - 19 => array( - 'Id' => 8, - 'Label' => 'White Balance Bracketing Low', - ), - 20 => array( - 'Id' => 9, - 'Label' => 'White Balance Bracketing High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DriveMode2.php b/lib/PHPExiftool/Driver/Tag/Minolta/DriveMode2.php deleted file mode 100644 index a7bced592..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DriveMode2.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode2 extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'DriveMode2'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Drive Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Self-timer 10 sec', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Self-timer 2 sec', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Single Frame', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'White Balance Bracketing Low', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'White Balance Bracketing High', - ), - 770 => array( - 'Id' => 770, - 'Label' => 'Single-frame Bracketing Low', - ), - 771 => array( - 'Id' => 771, - 'Label' => 'Continous Bracketing Low', - ), - 1794 => array( - 'Id' => 1794, - 'Label' => 'Single-frame Bracketing High', - ), - 1795 => array( - 'Id' => 1795, - 'Label' => 'Continuous Bracketing High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizer.php b/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizer.php deleted file mode 100644 index 40802f7aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizer.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizer extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'DynamicRangeOptimizer'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizerMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizerMode.php deleted file mode 100644 index 13da6195c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizerMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizerMode extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'DynamicRangeOptimizerMode'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizerSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizerSetting.php deleted file mode 100644 index 8143f88a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/DynamicRangeOptimizerSetting.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizerSetting extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'DynamicRangeOptimizerSetting'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureBracketShotNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureBracketShotNumber.php deleted file mode 100644 index 33c322d59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureBracketShotNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureBracketShotNumber extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'ExposureBracketShotNumber'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Bracket Shot Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureBracketingIndicatorLast.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureBracketingIndicatorLast.php deleted file mode 100644 index 77f966ef6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureBracketingIndicatorLast.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureBracketingIndicatorLast extends AbstractTag -{ - - protected $Id = 82; - - protected $Name = 'ExposureBracketingIndicatorLast'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Bracketing Indicator Last'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Indicated', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Under Scale', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Bottom of Scale', - ), - 120 => array( - 'Id' => 120, - 'Label' => '-2.0', - ), - 121 => array( - 'Id' => 121, - 'Label' => '-1.7', - ), - 122 => array( - 'Id' => 122, - 'Label' => '-1.5', - ), - 123 => array( - 'Id' => 123, - 'Label' => '-1.3', - ), - 124 => array( - 'Id' => 124, - 'Label' => '-1.0', - ), - 125 => array( - 'Id' => 125, - 'Label' => '-0.7', - ), - 126 => array( - 'Id' => 126, - 'Label' => '-0.5', - ), - 127 => array( - 'Id' => 127, - 'Label' => '-0.3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 0, - ), - 129 => array( - 'Id' => 129, - 'Label' => '+0.3', - ), - 130 => array( - 'Id' => 130, - 'Label' => '+0.5', - ), - 131 => array( - 'Id' => 131, - 'Label' => '+0.7', - ), - 132 => array( - 'Id' => 132, - 'Label' => '+1.0', - ), - 133 => array( - 'Id' => 133, - 'Label' => '+1.3', - ), - 134 => array( - 'Id' => 134, - 'Label' => '+1.5', - ), - 135 => array( - 'Id' => 135, - 'Label' => '+1.7', - ), - 136 => array( - 'Id' => 136, - 'Label' => '+2.0', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Top of Scale', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Over Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensation.php deleted file mode 100644 index 25811d4fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensationMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensationMode.php deleted file mode 100644 index 7e5afb3e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensationMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensationMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensationMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Ambient and Flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Ambient Only', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensationSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensationSetting.php deleted file mode 100644 index f5b48585c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureCompensationSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensationSetting extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ExposureCompensationSetting'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureIndicator.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureIndicator.php deleted file mode 100644 index 138c80e20..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureIndicator.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureIndicator extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'ExposureIndicator'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Indicator'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Indicated', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Under Scale', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Bottom of Scale', - ), - 120 => array( - 'Id' => 120, - 'Label' => '-2.0', - ), - 121 => array( - 'Id' => 121, - 'Label' => '-1.7', - ), - 122 => array( - 'Id' => 122, - 'Label' => '-1.5', - ), - 123 => array( - 'Id' => 123, - 'Label' => '-1.3', - ), - 124 => array( - 'Id' => 124, - 'Label' => '-1.0', - ), - 125 => array( - 'Id' => 125, - 'Label' => '-0.7', - ), - 126 => array( - 'Id' => 126, - 'Label' => '-0.5', - ), - 127 => array( - 'Id' => 127, - 'Label' => '-0.3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 0, - ), - 129 => array( - 'Id' => 129, - 'Label' => '+0.3', - ), - 130 => array( - 'Id' => 130, - 'Label' => '+0.5', - ), - 131 => array( - 'Id' => 131, - 'Label' => '+0.7', - ), - 132 => array( - 'Id' => 132, - 'Label' => '+1.0', - ), - 133 => array( - 'Id' => 133, - 'Label' => '+1.3', - ), - 134 => array( - 'Id' => 134, - 'Label' => '+1.5', - ), - 135 => array( - 'Id' => 135, - 'Label' => '+1.7', - ), - 136 => array( - 'Id' => 136, - 'Label' => '+2.0', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Top of Scale', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Over Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureMode.php deleted file mode 100644 index 018eb7c0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureMode.php +++ /dev/null @@ -1,220 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Program', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Aperture Priority', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Shutter Priority', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Program', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Aperture Priority', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Shutter Priority', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 8 => array( - 'Id' => 4, - 'Label' => 'Auto?', - ), - 9 => array( - 'Id' => 4131, - 'Label' => 'Connected Copying?', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Program', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Aperture Priority', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'Shutter Priority', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 14 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 15 => array( - 'Id' => 5, - 'Label' => 'Program-shift A', - ), - 16 => array( - 'Id' => 6, - 'Label' => 'Program-shift S', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'Program', - ), - 18 => array( - 'Id' => 1, - 'Label' => 'Aperture Priority', - ), - 19 => array( - 'Id' => 2, - 'Label' => 'Shutter Priority', - ), - 20 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 21 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 22 => array( - 'Id' => 5, - 'Label' => 'Program Shift A', - ), - 23 => array( - 'Id' => 6, - 'Label' => 'Program Shift S', - ), - 24 => array( - 'Id' => 4115, - 'Label' => 'Portrait', - ), - 25 => array( - 'Id' => 4131, - 'Label' => 'Sports', - ), - 26 => array( - 'Id' => 4147, - 'Label' => 'Sunset', - ), - 27 => array( - 'Id' => 4163, - 'Label' => 'Night View/Portrait', - ), - 28 => array( - 'Id' => 4179, - 'Label' => 'Landscape', - ), - 29 => array( - 'Id' => 4227, - 'Label' => 'Macro', - ), - 30 => array( - 'Id' => 0, - 'Label' => 'Program', - ), - 31 => array( - 'Id' => 1, - 'Label' => 'Aperture Priority', - ), - 32 => array( - 'Id' => 2, - 'Label' => 'Shutter Priority', - ), - 33 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 34 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 35 => array( - 'Id' => 5, - 'Label' => 'Program Shift A', - ), - 36 => array( - 'Id' => 6, - 'Label' => 'Program Shift S', - ), - 37 => array( - 'Id' => 4115, - 'Label' => 'Portrait', - ), - 38 => array( - 'Id' => 4131, - 'Label' => 'Sports', - ), - 39 => array( - 'Id' => 4147, - 'Label' => 'Sunset', - ), - 40 => array( - 'Id' => 4163, - 'Label' => 'Night View/Portrait', - ), - 41 => array( - 'Id' => 4179, - 'Label' => 'Landscape', - ), - 42 => array( - 'Id' => 4227, - 'Label' => 'Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Minolta/ExposureTime.php deleted file mode 100644 index 61c7e1a51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/EyeStartAF.php b/lib/PHPExiftool/Driver/Tag/Minolta/EyeStartAF.php deleted file mode 100644 index a3b7ef2f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/EyeStartAF.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EyeStartAF extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'EyeStartAF'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Eye Start AF'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/FNumber.php deleted file mode 100644 index b4aa58ef8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FileNumberMemory.php b/lib/PHPExiftool/Driver/Tag/Minolta/FileNumberMemory.php deleted file mode 100644 index 517f84e08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FileNumberMemory.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNumberMemory extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'FileNumberMemory'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'File Number Memory'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Flash.php b/lib/PHPExiftool/Driver/Tag/Minolta/Flash.php deleted file mode 100644 index bdd41a854..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Flash.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Flash'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Did not fire', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashDefault.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashDefault.php deleted file mode 100644 index 87a7a2b97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashDefault.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashDefault extends AbstractTag -{ - - protected $Id = 66; - - protected $Name = 'FlashDefault'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Default'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fill Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureComp.php deleted file mode 100644 index ccb500ffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureCompSet.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureCompSet.php deleted file mode 100644 index 7ac8ba926..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureCompSet.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureCompSet extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'FlashExposureCompSet'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp. Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicator.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicator.php deleted file mode 100644 index d2ef7723d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicator.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureIndicator extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'FlashExposureIndicator'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Indicator'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Indicated', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Under Scale', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Bottom of Scale', - ), - 120 => array( - 'Id' => 120, - 'Label' => '-2.0', - ), - 121 => array( - 'Id' => 121, - 'Label' => '-1.7', - ), - 122 => array( - 'Id' => 122, - 'Label' => '-1.5', - ), - 123 => array( - 'Id' => 123, - 'Label' => '-1.3', - ), - 124 => array( - 'Id' => 124, - 'Label' => '-1.0', - ), - 125 => array( - 'Id' => 125, - 'Label' => '-0.7', - ), - 126 => array( - 'Id' => 126, - 'Label' => '-0.5', - ), - 127 => array( - 'Id' => 127, - 'Label' => '-0.3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 0, - ), - 129 => array( - 'Id' => 129, - 'Label' => '+0.3', - ), - 130 => array( - 'Id' => 130, - 'Label' => '+0.5', - ), - 131 => array( - 'Id' => 131, - 'Label' => '+0.7', - ), - 132 => array( - 'Id' => 132, - 'Label' => '+1.0', - ), - 133 => array( - 'Id' => 133, - 'Label' => '+1.3', - ), - 134 => array( - 'Id' => 134, - 'Label' => '+1.5', - ), - 135 => array( - 'Id' => 135, - 'Label' => '+1.7', - ), - 136 => array( - 'Id' => 136, - 'Label' => '+2.0', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Top of Scale', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Over Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicatorLast.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicatorLast.php deleted file mode 100644 index 4d09a3398..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicatorLast.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureIndicatorLast extends AbstractTag -{ - - protected $Id = 86; - - protected $Name = 'FlashExposureIndicatorLast'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Indicator Last'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Indicated', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Under Scale', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Bottom of Scale', - ), - 120 => array( - 'Id' => 120, - 'Label' => '-2.0', - ), - 121 => array( - 'Id' => 121, - 'Label' => '-1.7', - ), - 122 => array( - 'Id' => 122, - 'Label' => '-1.5', - ), - 123 => array( - 'Id' => 123, - 'Label' => '-1.3', - ), - 124 => array( - 'Id' => 124, - 'Label' => '-1.0', - ), - 125 => array( - 'Id' => 125, - 'Label' => '-0.7', - ), - 126 => array( - 'Id' => 126, - 'Label' => '-0.5', - ), - 127 => array( - 'Id' => 127, - 'Label' => '-0.3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 0, - ), - 129 => array( - 'Id' => 129, - 'Label' => '+0.3', - ), - 130 => array( - 'Id' => 130, - 'Label' => '+0.5', - ), - 131 => array( - 'Id' => 131, - 'Label' => '+0.7', - ), - 132 => array( - 'Id' => 132, - 'Label' => '+1.0', - ), - 133 => array( - 'Id' => 133, - 'Label' => '+1.3', - ), - 134 => array( - 'Id' => 134, - 'Label' => '+1.5', - ), - 135 => array( - 'Id' => 135, - 'Label' => '+1.7', - ), - 136 => array( - 'Id' => 136, - 'Label' => '+2.0', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Top of Scale', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Over Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicatorNext.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicatorNext.php deleted file mode 100644 index b23379f58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashExposureIndicatorNext.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureIndicatorNext extends AbstractTag -{ - - protected $Id = 85; - - protected $Name = 'FlashExposureIndicatorNext'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Indicator Next'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Indicated', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Under Scale', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Bottom of Scale', - ), - 120 => array( - 'Id' => 120, - 'Label' => '-2.0', - ), - 121 => array( - 'Id' => 121, - 'Label' => '-1.7', - ), - 122 => array( - 'Id' => 122, - 'Label' => '-1.5', - ), - 123 => array( - 'Id' => 123, - 'Label' => '-1.3', - ), - 124 => array( - 'Id' => 124, - 'Label' => '-1.0', - ), - 125 => array( - 'Id' => 125, - 'Label' => '-0.7', - ), - 126 => array( - 'Id' => 126, - 'Label' => '-0.5', - ), - 127 => array( - 'Id' => 127, - 'Label' => '-0.3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 0, - ), - 129 => array( - 'Id' => 129, - 'Label' => '+0.3', - ), - 130 => array( - 'Id' => 130, - 'Label' => '+0.5', - ), - 131 => array( - 'Id' => 131, - 'Label' => '+0.7', - ), - 132 => array( - 'Id' => 132, - 'Label' => '+1.0', - ), - 133 => array( - 'Id' => 133, - 'Label' => '+1.3', - ), - 134 => array( - 'Id' => 134, - 'Label' => '+1.5', - ), - 135 => array( - 'Id' => 135, - 'Label' => '+1.7', - ), - 136 => array( - 'Id' => 136, - 'Label' => '+2.0', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Top of Scale', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Over Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashFired.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashFired.php deleted file mode 100644 index 76cf0340e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashFired.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFired extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'FlashFired'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Flash Fired'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashFunction.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashFunction.php deleted file mode 100644 index 35d36497b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashFunction.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFunction extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'FlashFunction'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Function'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No flash', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'Built-in flash', - ), - 4613 => array( - 'Id' => 4613, - 'Label' => 'Manual', - ), - 4622 => array( - 'Id' => 4622, - 'Label' => 'Strobe', - ), - 4750 => array( - 'Id' => 4750, - 'Label' => 'Fill flash, Pre-flash TTL', - ), - 4782 => array( - 'Id' => 4782, - 'Label' => 'Bounce flash', - ), - 5134 => array( - 'Id' => 5134, - 'Label' => 'Rear sync, ADI', - ), - 5262 => array( - 'Id' => 5262, - 'Label' => 'Fill flash, ADI', - ), - 5504 => array( - 'Id' => 5504, - 'Label' => 'Wireless', - ), - 6030 => array( - 'Id' => 6030, - 'Label' => 'HSS', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashMetering.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashMetering.php deleted file mode 100644 index 2de7a3f3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashMetering.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMetering extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashMetering'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Metering'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'ADI (Advanced Distance Integration)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Pre-flash TTL', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Manual flash control', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'ADI (Advanced Distance Integration)', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Pre-flash TTL', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashMode.php deleted file mode 100644 index 3f576f3e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashMode.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Fill flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Red-eye reduction', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rear flash sync', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Wireless', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Off?', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Red-eye reduction', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Rear flash sync', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'Red-eye reduction', - ), - 10 => array( - 'Id' => 2, - 'Label' => 'Rear flash sync', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'Rear Sync', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'Wireless', - ), - 14 => array( - 'Id' => 4, - 'Label' => 'Fill Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FlashType.php b/lib/PHPExiftool/Driver/Tag/Minolta/FlashType.php deleted file mode 100644 index ced916546..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FlashType.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashType extends AbstractTag -{ - - protected $Id = 89; - - protected $Name = 'FlashType'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Built-in', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'External', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Minolta/FocalLength.php deleted file mode 100644 index bd3d23c2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FocusArea.php b/lib/PHPExiftool/Driver/Tag/Minolta/FocusArea.php deleted file mode 100644 index e31fdafdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FocusArea.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusArea extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'FocusArea'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Focus Area'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Wide Focus (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Spot Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FocusDistance.php b/lib/PHPExiftool/Driver/Tag/Minolta/FocusDistance.php deleted file mode 100644 index dba1afb41..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FocusDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusDistance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focus Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FocusHoldButton.php b/lib/PHPExiftool/Driver/Tag/Minolta/FocusHoldButton.php deleted file mode 100644 index 94bfdc61e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FocusHoldButton.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusHoldButton extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'FocusHoldButton'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Hold Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Focus Hold', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'DOF Preview', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FocusLocked.php b/lib/PHPExiftool/Driver/Tag/Minolta/FocusLocked.php deleted file mode 100644 index 494b0364e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FocusLocked.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusLocked extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'FocusLocked'; - - protected $FullName = 'Minolta::CameraInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Locked'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual Focus', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'No', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Continuous Focus', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/FocusMode.php deleted file mode 100644 index 36990dfff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FocusMode.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'MF', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'AF-S', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'AF-C', - ), - 4 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 5 => array( - 'Id' => 4, - 'Label' => 'AF-A', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'AF-S', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'AF-C', - ), - 8 => array( - 'Id' => 4, - 'Label' => 'AF-A', - ), - 9 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 10 => array( - 'Id' => 6, - 'Label' => 'DMF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FocusModeSwitch.php b/lib/PHPExiftool/Driver/Tag/Minolta/FocusModeSwitch.php deleted file mode 100644 index 66f7de021..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FocusModeSwitch.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusModeSwitch extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'FocusModeSwitch'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode Switch'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'MF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FolderName.php b/lib/PHPExiftool/Driver/Tag/Minolta/FolderName.php deleted file mode 100644 index 44980a4a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FolderName.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FolderName extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'FolderName'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Folder Name'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard Form', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Data Form', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FrameNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/FrameNumber.php deleted file mode 100644 index 0925dc311..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FrameNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameNumber extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'FrameNumber'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Frame Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/FreeMemoryCardImages.php b/lib/PHPExiftool/Driver/Tag/Minolta/FreeMemoryCardImages.php deleted file mode 100644 index 295f0a9a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/FreeMemoryCardImages.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FreeMemoryCardImages extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FreeMemoryCardImages'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Free Memory Card Images'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/HighSpeedSync.php b/lib/PHPExiftool/Driver/Tag/Minolta/HighSpeedSync.php deleted file mode 100644 index 336abec4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/HighSpeedSync.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighSpeedSync extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'HighSpeedSync'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'High Speed Sync'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/HueAdjustment.php b/lib/PHPExiftool/Driver/Tag/Minolta/HueAdjustment.php deleted file mode 100644 index ff9eededf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/HueAdjustment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HueAdjustment'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ISO.php b/lib/PHPExiftool/Driver/Tag/Minolta/ISO.php deleted file mode 100644 index bc6d0690b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/ISOSetting.php deleted file mode 100644 index 516a6d614..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ISOSetting.php +++ /dev/null @@ -1,168 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 100, - ), - 1 => array( - 'Id' => 1, - 'Label' => 200, - ), - 2 => array( - 'Id' => 2, - 'Label' => 400, - ), - 3 => array( - 'Id' => 3, - 'Label' => 800, - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 5, - 'Label' => 64, - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 7 => array( - 'Id' => 1, - 'Label' => 100, - ), - 8 => array( - 'Id' => 3, - 'Label' => 200, - ), - 9 => array( - 'Id' => 4, - 'Label' => 400, - ), - 10 => array( - 'Id' => 5, - 'Label' => 800, - ), - 11 => array( - 'Id' => 6, - 'Label' => 1600, - ), - 12 => array( - 'Id' => 7, - 'Label' => 3200, - ), - 13 => array( - 'Id' => 8, - 'Label' => '200 (Zone Matching High)', - ), - 14 => array( - 'Id' => 10, - 'Label' => '80 (Zone Matching Low)', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 16 => array( - 'Id' => 1, - 'Label' => 100, - ), - 17 => array( - 'Id' => 3, - 'Label' => 200, - ), - 18 => array( - 'Id' => 4, - 'Label' => 400, - ), - 19 => array( - 'Id' => 5, - 'Label' => 800, - ), - 20 => array( - 'Id' => 6, - 'Label' => 1600, - ), - 21 => array( - 'Id' => 7, - 'Label' => 3200, - ), - 22 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 23 => array( - 'Id' => 48, - 'Label' => 100, - ), - 24 => array( - 'Id' => 56, - 'Label' => 200, - ), - 25 => array( - 'Id' => 64, - 'Label' => 400, - ), - 26 => array( - 'Id' => 72, - 'Label' => 800, - ), - 27 => array( - 'Id' => 80, - 'Label' => 1600, - ), - 28 => array( - 'Id' => 174, - 'Label' => '80 (Zone Matching Low)', - ), - 29 => array( - 'Id' => 184, - 'Label' => '200 (Zone Matching High)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ImageNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/ImageNumber.php deleted file mode 100644 index c3d380089..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ImageNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ImageNumber2.php b/lib/PHPExiftool/Driver/Tag/Minolta/ImageNumber2.php deleted file mode 100644 index ca311d84a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ImageNumber2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber2 extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'ImageNumber2'; - - protected $FullName = 'Minolta::CameraSettings7D'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Number 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/Minolta/ImageStabilization.php deleted file mode 100644 index dd470be2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ImageStabilization.php +++ /dev/null @@ -1,90 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 10116, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ImageStabilizationSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/ImageStabilizationSetting.php deleted file mode 100644 index 3e894722d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ImageStabilizationSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilizationSetting extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ImageStabilizationSetting'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/InstantPlaybackSetup.php b/lib/PHPExiftool/Driver/Tag/Minolta/InstantPlaybackSetup.php deleted file mode 100644 index b772afe23..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/InstantPlaybackSetup.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstantPlaybackSetup extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'InstantPlaybackSetup'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Instant Playback Setup'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Image and Information', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Image Only', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Image and Histogram', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/InstantPlaybackTime.php b/lib/PHPExiftool/Driver/Tag/Minolta/InstantPlaybackTime.php deleted file mode 100644 index 896df3f4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/InstantPlaybackTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstantPlaybackTime extends AbstractTag -{ - - protected $Id = 61; - - protected $Name = 'InstantPlaybackTime'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Instant Playback Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/InternalFlash.php b/lib/PHPExiftool/Driver/Tag/Minolta/InternalFlash.php deleted file mode 100644 index a672702ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/InternalFlash.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlash extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'InternalFlash'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/InternalSerialNumber.php deleted file mode 100644 index 4823b7606..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/InternalSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 18908; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/IntervalLength.php b/lib/PHPExiftool/Driver/Tag/Minolta/IntervalLength.php deleted file mode 100644 index d988e46ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/IntervalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntervalLength extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'IntervalLength'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Interval Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/IntervalMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/IntervalMode.php deleted file mode 100644 index 7656b77cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/IntervalMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntervalMode extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'IntervalMode'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Interval Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Still Image', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Time-lapse Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/IntervalNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/IntervalNumber.php deleted file mode 100644 index fa46f3f9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/IntervalNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntervalNumber extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'IntervalNumber'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Interval Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/LastFileNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/LastFileNumber.php deleted file mode 100644 index 8f74d0712..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/LastFileNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastFileNumber extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'LastFileNumber'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Last File Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/LensShutterLock.php b/lib/PHPExiftool/Driver/Tag/Minolta/LensShutterLock.php deleted file mode 100644 index d21b5df08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/LensShutterLock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensShutterLock extends AbstractTag -{ - - protected $Id = 74; - - protected $Name = 'LensShutterLock'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Lens Shutter Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/LensType.php b/lib/PHPExiftool/Driver/Tag/Minolta/LensType.php deleted file mode 100644 index 19d1358b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/LensType.php +++ /dev/null @@ -1,1180 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Minolta AF 28-85mm F3.5-4.5 New', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Minolta AF 80-200mm F2.8 HS-APO G', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Minolta AF 28-70mm F2.8 G', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Minolta AF 28-80mm F4-5.6', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Minolta AF 85mm F1.4G', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Minolta AF 35-70mm F3.5-4.5 [II]', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Minolta AF 24-85mm F3.5-4.5 [New]', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6 APO [New] or 100-400mm or Sigma Lens', - ), - '7.1' => array( - 'Id' => '7.1', - 'Label' => 'Minolta AF 100-400mm F4.5-6.7 APO', - ), - '7.2' => array( - 'Id' => '7.2', - 'Label' => 'Sigma AF 100-300mm F4 EX DG IF', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Minolta AF 70-210mm F4.5-5.6 [II]', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Minolta AF 50mm F3.5 Macro', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Minolta AF 28-105mm F3.5-4.5 [New]', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Minolta AF 300mm F4 HS-APO G', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Minolta AF 100mm F2.8 Soft Focus', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Minolta AF 75-300mm F4.5-5.6 (New or II)', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Minolta AF 100-400mm F4.5-6.7 APO', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Minolta AF 400mm F4.5 HS-APO G', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Minolta AF 17-35mm F3.5 G', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Minolta AF 20-35mm F3.5-4.5', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Minolta AF 28-80mm F3.5-5.6 II', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Minolta AF 35mm F1.4 G', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Minolta/Sony 135mm F2.8 [T4.5] STF', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Minolta AF 35-80mm F4-5.6 II', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Minolta AF 200mm F4 Macro APO G', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Minolta/Sony AF 24-105mm F3.5-4.5 (D) or Sigma or Tamron Lens', - ), - '24.1' => array( - 'Id' => '24.1', - 'Label' => 'Sigma 18-50mm F2.8', - ), - '24.2' => array( - 'Id' => '24.2', - 'Label' => 'Sigma 17-70mm F2.8-4.5 (D)', - ), - '24.3' => array( - 'Id' => '24.3', - 'Label' => 'Sigma 20-40mm F2.8 EX DG Aspherical IF', - ), - '24.4' => array( - 'Id' => '24.4', - 'Label' => 'Sigma 18-200mm F3.5-6.3 DC', - ), - '24.5' => array( - 'Id' => '24.5', - 'Label' => 'Sigma DC 18-125mm F4-5,6 D', - ), - '24.6' => array( - 'Id' => '24.6', - 'Label' => 'Tamron SP AF 28-75mm F2.8 XR Di LD Aspherical [IF] Macro', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6 APO (D) or Sigma Lens', - ), - '25.1' => array( - 'Id' => '25.1', - 'Label' => 'Sigma 100-300mm F4 EX (APO (D) or D IF)', - ), - '25.2' => array( - 'Id' => '25.2', - 'Label' => 'Sigma 70mm F2.8 EX DG Macro', - ), - '25.3' => array( - 'Id' => '25.3', - 'Label' => 'Sigma 20mm F1.8 EX DG Aspherical RF', - ), - '25.4' => array( - 'Id' => '25.4', - 'Label' => 'Sigma 30mm F1.4 EX DC', - ), - '25.5' => array( - 'Id' => '25.5', - 'Label' => 'Sigma 24mm F1.8 EX DG ASP Macro', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Minolta AF 85mm F1.4 G (D)', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Minolta/Sony AF 100mm F2.8 Macro (D) or Tamron Lens', - ), - '28.1' => array( - 'Id' => '28.1', - 'Label' => 'Tamron SP AF 90mm F2.8 Di Macro', - ), - '28.2' => array( - 'Id' => '28.2', - 'Label' => 'Tamron SP AF 180mm F3.5 Di LD [IF] Macro', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Minolta/Sony AF 75-300mm F4.5-5.6 (D)', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Minolta AF 28-80mm F3.5-5.6 (D) or Sigma Lens', - ), - '30.1' => array( - 'Id' => '30.1', - 'Label' => 'Sigma AF 10-20mm F4-5.6 EX DC', - ), - '30.2' => array( - 'Id' => '30.2', - 'Label' => 'Sigma AF 12-24mm F4.5-5.6 EX DG', - ), - '30.3' => array( - 'Id' => '30.3', - 'Label' => 'Sigma 28-70mm EX DG F2.8', - ), - '30.4' => array( - 'Id' => '30.4', - 'Label' => 'Sigma 55-200mm F4-5.6 DC', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Minolta/Sony AF 50mm F2.8 Macro (D) or F3.5', - ), - '31.1' => array( - 'Id' => '31.1', - 'Label' => 'Minolta/Sony AF 50mm F3.5 Macro', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Minolta/Sony AF 300mm F2.8 G or 1.5x Teleconverter', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Minolta/Sony AF 70-200mm F2.8 G', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Minolta AF 85mm F1.4 G (D) Limited', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Minolta AF 28-100mm F3.5-5.6 (D)', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Minolta AF 17-35mm F2.8-4 (D)', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Minolta AF 28-75mm F2.8 (D)', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Minolta/Sony AF DT 18-70mm F3.5-5.6 (D)', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Minolta/Sony AF DT 11-18mm F4.5-5.6 (D) or Tamron Lens', - ), - '41.1' => array( - 'Id' => '41.1', - 'Label' => 'Tamron SP AF 11-18mm F4.5-5.6 Di II LD Aspherical IF', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Minolta/Sony AF DT 18-200mm F3.5-6.3 (D)', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Sony 35mm F1.4 G (SAL35F14G)', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Sony 50mm F1.4 (SAL50F14)', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Carl Zeiss Planar T* 85mm F1.4 ZA (SAL85F14Z)', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Carl Zeiss Vario-Sonnar T* DT 16-80mm F3.5-4.5 ZA (SAL1680Z)', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Carl Zeiss Sonnar T* 135mm F1.8 ZA (SAL135F18Z)', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Carl Zeiss Vario-Sonnar T* 24-70mm F2.8 ZA SSM (SAL2470Z)', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Sony DT 55-200mm F4-5.6 (SAL55200)', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Sony DT 18-250mm F3.5-6.3 (SAL18250)', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Sony DT 16-105mm F3.5-5.6 (SAL16105)', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Sony 70-300mm F4.5-5.6 G SSM (SAL70300G) or Tamron Lens', - ), - '52.1' => array( - 'Id' => '52.1', - 'Label' => 'Tamron SP 70-300mm F4-5.6 Di USD', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Sony 70-400mm F4-5.6 G SSM (SAL70400G)', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Carl Zeiss Vario-Sonnar T* 16-35mm F2.8 ZA SSM (SAL1635Z)', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Sony DT 18-55mm F3.5-5.6 SAM [II] (SAL1855)', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Sony DT 55-200mm F4-5.6 SAM (SAL55200-2)', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Sony DT 50mm F1.8 SAM (SAL50F18) or Tamron Lens', - ), - '57.1' => array( - 'Id' => '57.1', - 'Label' => 'Tamron SP AF 60mm F2 Di II LD [IF] Macro 1:1', - ), - '57.2' => array( - 'Id' => '57.2', - 'Label' => 'Tamron 18-270mm F3.5-6.3 Di II PZD', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Sony DT 30mm F2.8 Macro SAM (SAL30M28)', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Sony 28-75mm F2.8 SAM (SAL2875)', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Carl Zeiss Distagon T* 24mm F2 ZA SSM (SAL24F20Z)', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Sony 85mm F2.8 SAM (SAL85F28)', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Sony DT 35mm F1.8 SAM (SAL35F18)', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Sony DT 16-50mm F2.8 SSM (SAL1650)', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Sony 500mm F4.0 G SSM (SAL500F40G)', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Sony DT 18-135mm F3.5-5.6 SAM (SAL18135)', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Sony 300mm F2.8 G SSM II (SAL300F28G2)', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Sony 70-200mm F2.8 G SSM II (SAL70200G2)', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Sony DT 55-300mm F4.5-5.6 SAM (SAL55300)', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Sony 70-400mm F4-5.6 G SSM II (SAL70400G2)', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Carl Zeiss Planar T* 50mm F1.4 ZA SSM (SAL50F14Z)', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Tamron or Sigma Lens (128)', - ), - '128.1' => array( - 'Id' => '128.1', - 'Label' => 'Tamron AF 18-200mm F3.5-6.3 XR Di II LD Aspherical [IF] Macro', - ), - '128.10' => array( - 'Id' => '128.10', - 'Label' => 'Sigma 50mm F1.4 EX DG HSM', - ), - '128.11' => array( - 'Id' => '128.11', - 'Label' => 'Sigma 85mm F1.4 EX DG HSM', - ), - '128.12' => array( - 'Id' => '128.12', - 'Label' => 'Sigma 24-70mm F2.8 IF EX DG HSM', - ), - '128.13' => array( - 'Id' => '128.13', - 'Label' => 'Sigma 18-250mm F3.5-6.3 DC OS HSM', - ), - '128.14' => array( - 'Id' => '128.14', - 'Label' => 'Sigma 17-50mm F2.8 EX DC HSM', - ), - '128.15' => array( - 'Id' => '128.15', - 'Label' => 'Sigma 17-70mm F2.8-4 DC Macro HSM', - ), - '128.2' => array( - 'Id' => '128.2', - 'Label' => 'Tamron AF 28-300mm F3.5-6.3 XR Di LD Aspherical [IF] Macro', - ), - '128.3' => array( - 'Id' => '128.3', - 'Label' => 'Tamron 80-300mm F3.5-6.3', - ), - '128.4' => array( - 'Id' => '128.4', - 'Label' => 'Tamron AF 28-200mm F3.8-5.6 XR Di Aspherical [IF] Macro', - ), - '128.5' => array( - 'Id' => '128.5', - 'Label' => 'Tamron SP AF 17-35mm F2.8-4 Di LD Aspherical IF', - ), - '128.6' => array( - 'Id' => '128.6', - 'Label' => 'Sigma AF 50-150mm F2.8 EX DC APO HSM II', - ), - '128.7' => array( - 'Id' => '128.7', - 'Label' => 'Sigma 10-20mm F3.5 EX DC HSM', - ), - '128.8' => array( - 'Id' => '128.8', - 'Label' => 'Sigma 70-200mm F2.8 II EX DG APO MACRO HSM', - ), - '128.9' => array( - 'Id' => '128.9', - 'Label' => 'Sigma 10mm F2.8 EX DC HSM Fisheye', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Tamron Lens (129)', - ), - '129.1' => array( - 'Id' => '129.1', - 'Label' => 'Tamron 200-400mm F5.6 LD', - ), - '129.2' => array( - 'Id' => '129.2', - 'Label' => 'Tamron 70-300mm F4-5.6 LD', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Tamron 20-40mm F2.7-3.5 SP Aspherical IF', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Vivitar 28-210mm F3.5-5.6', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Tokina EMZ M100 AF 100mm F3.5', - ), - 137 => array( - 'Id' => 137, - 'Label' => 'Cosina 70-210mm F2.8-4 AF', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'Soligor 19-35mm F3.5-4.5', - ), - 142 => array( - 'Id' => 142, - 'Label' => 'Voigtlander 70-300mm F4.5-5.6', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'Voigtlander Macro APO-Lanthar 125mm F2.5 SL', - ), - 194 => array( - 'Id' => 194, - 'Label' => 'Tamron SP AF 17-50mm F2.8 XR Di II LD Aspherical [IF]', - ), - 203 => array( - 'Id' => 203, - 'Label' => 'Tamron SP 70-200mm F2.8 Di USD', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Tamron Lens (255)', - ), - '255.1' => array( - 'Id' => '255.1', - 'Label' => 'Tamron SP AF 17-50mm F2.8 XR Di II LD Aspherical', - ), - '255.2' => array( - 'Id' => '255.2', - 'Label' => 'Tamron AF 18-250mm F3.5-6.3 XR Di II LD', - ), - '255.3' => array( - 'Id' => '255.3', - 'Label' => 'Tamron AF 55-200mm F4-5.6 Di II LD Macro', - ), - '255.4' => array( - 'Id' => '255.4', - 'Label' => 'Tamron AF 70-300mm F4-5.6 Di LD Macro 1:2', - ), - '255.5' => array( - 'Id' => '255.5', - 'Label' => 'Tamron SP AF 200-500mm F5.0-6.3 Di LD IF', - ), - '255.6' => array( - 'Id' => '255.6', - 'Label' => 'Tamron SP AF 10-24mm F3.5-4.5 Di II LD Aspherical IF', - ), - '255.7' => array( - 'Id' => '255.7', - 'Label' => 'Tamron SP AF 70-200mm F2.8 Di LD IF Macro', - ), - '255.8' => array( - 'Id' => '255.8', - 'Label' => 'Tamron SP AF 28-75mm F2.8 XR Di LD Aspherical IF', - ), - '255.9' => array( - 'Id' => '255.9', - 'Label' => 'Tamron AF 90-300mm F4.5-5.6 Telemacro', - ), - 25501 => array( - 'Id' => 25501, - 'Label' => 'Minolta AF 50mm F1.7', - ), - 25511 => array( - 'Id' => 25511, - 'Label' => 'Minolta AF 35-70mm F4 or Other Lens', - ), - '25511.1' => array( - 'Id' => '25511.1', - 'Label' => 'Sigma UC AF 28-70mm F3.5-4.5', - ), - '25511.2' => array( - 'Id' => '25511.2', - 'Label' => 'Sigma AF 28-70mm F2.8', - ), - '25511.3' => array( - 'Id' => '25511.3', - 'Label' => 'Sigma M-AF 70-200mm F2.8 EX Aspherical', - ), - '25511.4' => array( - 'Id' => '25511.4', - 'Label' => 'Quantaray M-AF 35-80mm F4-5.6', - ), - 25521 => array( - 'Id' => 25521, - 'Label' => 'Minolta AF 28-85mm F3.5-4.5 or Other Lens', - ), - '25521.1' => array( - 'Id' => '25521.1', - 'Label' => 'Tokina 19-35mm F3.5-4.5', - ), - '25521.2' => array( - 'Id' => '25521.2', - 'Label' => 'Tokina 28-70mm F2.8 AT-X', - ), - '25521.3' => array( - 'Id' => '25521.3', - 'Label' => 'Tokina 80-400mm F4.5-5.6 AT-X AF II 840', - ), - '25521.4' => array( - 'Id' => '25521.4', - 'Label' => 'Tokina AF PRO 28-80mm F2.8 AT-X 280', - ), - '25521.5' => array( - 'Id' => '25521.5', - 'Label' => 'Tokina AT-X PRO II AF 28-70mm F2.6-2.8 270', - ), - '25521.6' => array( - 'Id' => '25521.6', - 'Label' => 'Tamron AF 19-35mm F3.5-4.5', - ), - '25521.7' => array( - 'Id' => '25521.7', - 'Label' => 'Angenieux AF 28-70mm F2.6', - ), - '25521.8' => array( - 'Id' => '25521.8', - 'Label' => 'Tokina AT-X 17 AF 17mm F3.5', - ), - 25531 => array( - 'Id' => 25531, - 'Label' => 'Minolta AF 28-135mm F4-4.5 or Sigma Lens', - ), - '25531.1' => array( - 'Id' => '25531.1', - 'Label' => 'Sigma ZOOM-alpha 35-135mm F3.5-4.5', - ), - '25531.2' => array( - 'Id' => '25531.2', - 'Label' => 'Sigma 28-105mm F2.8-4 Aspherical', - ), - '25531.3' => array( - 'Id' => '25531.3', - 'Label' => 'Sigma 28-105mm F4-5.6 UC', - ), - 25541 => array( - 'Id' => 25541, - 'Label' => 'Minolta AF 35-105mm F3.5-4.5', - ), - 25551 => array( - 'Id' => 25551, - 'Label' => 'Minolta AF 70-210mm F4 Macro or Sigma Lens', - ), - '25551.1' => array( - 'Id' => '25551.1', - 'Label' => 'Sigma 70-210mm F4-5.6 APO', - ), - '25551.2' => array( - 'Id' => '25551.2', - 'Label' => 'Sigma M-AF 70-200mm F2.8 EX APO', - ), - '25551.3' => array( - 'Id' => '25551.3', - 'Label' => 'Sigma 75-200mm F2.8-3.5', - ), - 25561 => array( - 'Id' => 25561, - 'Label' => 'Minolta AF 135mm F2.8', - ), - 25571 => array( - 'Id' => 25571, - 'Label' => 'Minolta/Sony AF 28mm F2.8', - ), - 25581 => array( - 'Id' => 25581, - 'Label' => 'Minolta AF 24-50mm F4', - ), - 25601 => array( - 'Id' => 25601, - 'Label' => 'Minolta AF 100-200mm F4.5', - ), - 25611 => array( - 'Id' => 25611, - 'Label' => 'Minolta AF 75-300mm F4.5-5.6 or Sigma Lens', - ), - '25611.1' => array( - 'Id' => '25611.1', - 'Label' => 'Sigma 70-300mm F4-5.6 DL Macro', - ), - '25611.2' => array( - 'Id' => '25611.2', - 'Label' => 'Sigma 300mm F4 APO Macro', - ), - '25611.3' => array( - 'Id' => '25611.3', - 'Label' => 'Sigma AF 500mm F4.5 APO', - ), - '25611.4' => array( - 'Id' => '25611.4', - 'Label' => 'Sigma AF 170-500mm F5-6.3 APO Aspherical', - ), - '25611.5' => array( - 'Id' => '25611.5', - 'Label' => 'Tokina AT-X AF 300mm F4', - ), - '25611.6' => array( - 'Id' => '25611.6', - 'Label' => 'Tokina AT-X AF 400mm F5.6 SD', - ), - '25611.7' => array( - 'Id' => '25611.7', - 'Label' => 'Tokina AF 730 II 75-300mm F4.5-5.6', - ), - '25611.8' => array( - 'Id' => '25611.8', - 'Label' => 'Sigma 800mm F5.6 APO', - ), - '25611.9' => array( - 'Id' => '25611.9', - 'Label' => 'Sigma AF 400mm F5.6 APO Macro', - ), - 25621 => array( - 'Id' => 25621, - 'Label' => 'Minolta AF 50mm F1.4 [New]', - ), - 25631 => array( - 'Id' => 25631, - 'Label' => 'Minolta AF 300mm F2.8 APO or Sigma Lens', - ), - '25631.1' => array( - 'Id' => '25631.1', - 'Label' => 'Sigma AF 50-500mm F4-6.3 EX DG APO', - ), - '25631.2' => array( - 'Id' => '25631.2', - 'Label' => 'Sigma AF 170-500mm F5-6.3 APO Aspherical', - ), - '25631.3' => array( - 'Id' => '25631.3', - 'Label' => 'Sigma AF 500mm F4.5 EX DG APO', - ), - '25631.4' => array( - 'Id' => '25631.4', - 'Label' => 'Sigma 400mm F5.6 APO', - ), - 25641 => array( - 'Id' => 25641, - 'Label' => 'Minolta AF 50mm F2.8 Macro or Sigma Lens', - ), - '25641.1' => array( - 'Id' => '25641.1', - 'Label' => 'Sigma 50mm F2.8 EX Macro', - ), - 25651 => array( - 'Id' => 25651, - 'Label' => 'Minolta AF 600mm F4', - ), - 25661 => array( - 'Id' => 25661, - 'Label' => 'Minolta AF 24mm F2.8 or Sigma Lens', - ), - '25661.1' => array( - 'Id' => '25661.1', - 'Label' => 'Sigma 17-35mm F2.8-4 EX Aspherical', - ), - 25721 => array( - 'Id' => 25721, - 'Label' => 'Minolta/Sony AF 500mm F8 Reflex', - ), - 25781 => array( - 'Id' => 25781, - 'Label' => 'Minolta/Sony AF 16mm F2.8 Fisheye or Sigma Lens', - ), - '25781.1' => array( - 'Id' => '25781.1', - 'Label' => 'Sigma 8mm F4 EX [DG] Fisheye', - ), - '25781.2' => array( - 'Id' => '25781.2', - 'Label' => 'Sigma 14mm F3.5', - ), - '25781.3' => array( - 'Id' => '25781.3', - 'Label' => 'Sigma 15mm F2.8 Fisheye', - ), - 25791 => array( - 'Id' => 25791, - 'Label' => 'Minolta/Sony AF 20mm F2.8 or Tokina Lens', - ), - '25791.1' => array( - 'Id' => '25791.1', - 'Label' => 'Tokina AT-X Pro DX 11-16mm F2.8', - ), - 25811 => array( - 'Id' => 25811, - 'Label' => 'Minolta AF 100mm F2.8 Macro [New] or Sigma or Tamron Lens', - ), - '25811.1' => array( - 'Id' => '25811.1', - 'Label' => 'Sigma AF 90mm F2.8 Macro', - ), - '25811.2' => array( - 'Id' => '25811.2', - 'Label' => 'Sigma AF 105mm F2.8 EX [DG] Macro', - ), - '25811.3' => array( - 'Id' => '25811.3', - 'Label' => 'Sigma 180mm F5.6 Macro', - ), - '25811.4' => array( - 'Id' => '25811.4', - 'Label' => 'Sigma 180mm F3.5 EX DG Macro', - ), - '25811.5' => array( - 'Id' => '25811.5', - 'Label' => 'Tamron 90mm F2.8 Macro', - ), - 25851 => array( - 'Id' => 25851, - 'Label' => 'Beroflex 35-135mm F3.5-4.5', - ), - 25858 => array( - 'Id' => 25858, - 'Label' => 'Minolta AF 35-105mm F3.5-4.5 New or Tamron Lens', - ), - '25858.1' => array( - 'Id' => '25858.1', - 'Label' => 'Tamron 24-135mm F3.5-5.6', - ), - 25881 => array( - 'Id' => 25881, - 'Label' => 'Minolta AF 70-210mm F3.5-4.5', - ), - 25891 => array( - 'Id' => 25891, - 'Label' => 'Minolta AF 80-200mm F2.8 APO or Tokina Lens', - ), - '25891.1' => array( - 'Id' => '25891.1', - 'Label' => 'Tokina 80-200mm F2.8', - ), - 25901 => array( - 'Id' => 25901, - 'Label' => 'Minolta AF 200mm F2.8 G APO + Minolta AF 1.4x APO or Other Lens + 1.4x', - ), - '25901.1' => array( - 'Id' => '25901.1', - 'Label' => 'Minolta AF 600mm F4 HS-APO G + Minolta AF 1.4x APO', - ), - 25911 => array( - 'Id' => 25911, - 'Label' => 'Minolta AF 35mm F1.4', - ), - 25921 => array( - 'Id' => 25921, - 'Label' => 'Minolta AF 85mm F1.4 G (D)', - ), - 25931 => array( - 'Id' => 25931, - 'Label' => 'Minolta AF 200mm F2.8 G APO', - ), - 25941 => array( - 'Id' => 25941, - 'Label' => 'Minolta AF 3x-1x F1.7-2.8 Macro', - ), - 25961 => array( - 'Id' => 25961, - 'Label' => 'Minolta AF 28mm F2', - ), - 25971 => array( - 'Id' => 25971, - 'Label' => 'Minolta AF 35mm F2 [New]', - ), - 25981 => array( - 'Id' => 25981, - 'Label' => 'Minolta AF 100mm F2', - ), - 26011 => array( - 'Id' => 26011, - 'Label' => 'Minolta AF 200mm F2.8 G APO + Minolta AF 2x APO or Other Lens + 2x', - ), - '26011.1' => array( - 'Id' => '26011.1', - 'Label' => 'Minolta AF 600mm F4 HS-APO G + Minolta AF 2x APO', - ), - 26041 => array( - 'Id' => 26041, - 'Label' => 'Minolta AF 80-200mm F4.5-5.6', - ), - 26051 => array( - 'Id' => 26051, - 'Label' => 'Minolta AF 35-80mm F4-5.6', - ), - 26061 => array( - 'Id' => 26061, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6', - ), - 26071 => array( - 'Id' => 26071, - 'Label' => 'Minolta AF 35-80mm F4-5.6', - ), - 26081 => array( - 'Id' => 26081, - 'Label' => 'Minolta AF 300mm F2.8 HS-APO G', - ), - 26091 => array( - 'Id' => 26091, - 'Label' => 'Minolta AF 600mm F4 HS-APO G', - ), - 26121 => array( - 'Id' => 26121, - 'Label' => 'Minolta AF 200mm F2.8 HS-APO G', - ), - 26131 => array( - 'Id' => 26131, - 'Label' => 'Minolta AF 50mm F1.7 New', - ), - 26151 => array( - 'Id' => 26151, - 'Label' => 'Minolta AF 28-105mm F3.5-4.5 xi', - ), - 26161 => array( - 'Id' => 26161, - 'Label' => 'Minolta AF 35-200mm F4.5-5.6 xi', - ), - 26181 => array( - 'Id' => 26181, - 'Label' => 'Minolta AF 28-80mm F4-5.6 xi', - ), - 26191 => array( - 'Id' => 26191, - 'Label' => 'Minolta AF 80-200mm F4.5-5.6 xi', - ), - 26201 => array( - 'Id' => 26201, - 'Label' => 'Minolta AF 28-70mm F2.8 G', - ), - 26211 => array( - 'Id' => 26211, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6 xi', - ), - 26241 => array( - 'Id' => 26241, - 'Label' => 'Minolta AF 35-80mm F4-5.6 Power Zoom', - ), - 26281 => array( - 'Id' => 26281, - 'Label' => 'Minolta AF 80-200mm F2.8 G', - ), - 26291 => array( - 'Id' => 26291, - 'Label' => 'Minolta AF 85mm F1.4 New', - ), - 26311 => array( - 'Id' => 26311, - 'Label' => 'Minolta/Sony AF 100-300mm F4.5-5.6 APO', - ), - 26321 => array( - 'Id' => 26321, - 'Label' => 'Minolta AF 24-50mm F4 New', - ), - 26381 => array( - 'Id' => 26381, - 'Label' => 'Minolta AF 50mm F2.8 Macro New', - ), - 26391 => array( - 'Id' => 26391, - 'Label' => 'Minolta AF 100mm F2.8 Macro', - ), - 26411 => array( - 'Id' => 26411, - 'Label' => 'Minolta/Sony AF 20mm F2.8 New', - ), - 26421 => array( - 'Id' => 26421, - 'Label' => 'Minolta AF 24mm F2.8 New', - ), - 26441 => array( - 'Id' => 26441, - 'Label' => 'Minolta AF 100-400mm F4.5-6.7 APO', - ), - 26621 => array( - 'Id' => 26621, - 'Label' => 'Minolta AF 50mm F1.4 New', - ), - 26671 => array( - 'Id' => 26671, - 'Label' => 'Minolta AF 35mm F2 New', - ), - 26681 => array( - 'Id' => 26681, - 'Label' => 'Minolta AF 28mm F2 New', - ), - 26721 => array( - 'Id' => 26721, - 'Label' => 'Minolta AF 24-105mm F3.5-4.5 (D)', - ), - 30464 => array( - 'Id' => 30464, - 'Label' => 'Metabones Canon EF Speed Booster', - ), - 45671 => array( - 'Id' => 45671, - 'Label' => 'Tokina 70-210mm F4-5.6', - ), - 45741 => array( - 'Id' => 45741, - 'Label' => '2x Teleconverter or Tamron or Tokina Lens', - ), - '45741.1' => array( - 'Id' => '45741.1', - 'Label' => 'Tamron SP AF 90mm F2.5', - ), - '45741.2' => array( - 'Id' => '45741.2', - 'Label' => 'Tokina RF 500mm F8.0 x2', - ), - '45741.3' => array( - 'Id' => '45741.3', - 'Label' => 'Tokina 300mm F2.8 x2', - ), - 45751 => array( - 'Id' => 45751, - 'Label' => '1.4x Teleconverter', - ), - 45851 => array( - 'Id' => 45851, - 'Label' => 'Tamron SP AF 300mm F2.8 LD IF', - ), - 45861 => array( - 'Id' => 45861, - 'Label' => 'Tamron SP AF 35-105mm F2.8 LD Aspherical IF', - ), - 45871 => array( - 'Id' => 45871, - 'Label' => 'Tamron AF 70-210mm F2.8 SP LD', - ), - 61184 => array( - 'Id' => 61184, - 'Label' => 'Metabones Canon EF Adapter', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'E-Mount, T-Mount, Other Lens or no lens', - ), - '65535.10' => array( - 'Id' => '65535.10', - 'Label' => 'Sony E PZ 16-50mm F3.5-5.6 OSS', - ), - '65535.1' => array( - 'Id' => '65535.1', - 'Label' => 'Sony E 16mm F2.8', - ), - '65535.11' => array( - 'Id' => '65535.11', - 'Label' => 'Sony FE 35mm F2.8 ZA', - ), - '65535.12' => array( - 'Id' => '65535.12', - 'Label' => 'Sony FE 24-70mm F4 ZA OSS', - ), - '65535.13' => array( - 'Id' => '65535.13', - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS LE', - ), - '65535.14' => array( - 'Id' => '65535.14', - 'Label' => 'Sony E 20mm F2.8', - ), - '65535.15' => array( - 'Id' => '65535.15', - 'Label' => 'Sony E 35mm F1.8 OSS', - ), - '65535.16' => array( - 'Id' => '65535.16', - 'Label' => 'Sony E PZ 18-105mm F4 G OSS', - ), - '65535.17' => array( - 'Id' => '65535.17', - 'Label' => 'Sony E 18-50mm F4-5.6', - ), - '65535.18' => array( - 'Id' => '65535.18', - 'Label' => 'Sony E PZ 18-200mm F3.5-6.3 OSS', - ), - '65535.19' => array( - 'Id' => '65535.19', - 'Label' => 'Sony FE 55mm F1.8 ZA', - ), - '65535.20' => array( - 'Id' => '65535.20', - 'Label' => 'Sony FE 70-200mm F4 G OSS', - ), - '65535.2' => array( - 'Id' => '65535.2', - 'Label' => 'Sony E 18-55mm F3.5-5.6 OSS', - ), - '65535.21' => array( - 'Id' => '65535.21', - 'Label' => 'Sony FE 28-70mm F3.5-5.6 OSS', - ), - '65535.22' => array( - 'Id' => '65535.22', - 'Label' => 'Sigma 19mm F2.8 [EX] DN', - ), - '65535.23' => array( - 'Id' => '65535.23', - 'Label' => 'Sigma 30mm F2.8 [EX] DN', - ), - '65535.24' => array( - 'Id' => '65535.24', - 'Label' => 'Sigma 60mm F2.8 DN', - ), - '65535.25' => array( - 'Id' => '65535.25', - 'Label' => 'Tamron 18-200mm F3.5-6.3 Di III VC', - ), - '65535.26' => array( - 'Id' => '65535.26', - 'Label' => 'Zeiss Touit 12mm F2.8', - ), - '65535.27' => array( - 'Id' => '65535.27', - 'Label' => 'Zeiss Touit 32mm F1.8', - ), - '65535.28' => array( - 'Id' => '65535.28', - 'Label' => 'Zeiss Touit 50mm F2.8 Macro', - ), - '65535.29' => array( - 'Id' => '65535.29', - 'Label' => 'Arax MC 35mm F2.8 Tilt+Shift', - ), - '65535.3' => array( - 'Id' => '65535.3', - 'Label' => 'Sony E 55-210mm F4.5-6.3 OSS', - ), - '65535.30' => array( - 'Id' => '65535.30', - 'Label' => 'Arax MC 80mm F2.8 Tilt+Shift', - ), - '65535.31' => array( - 'Id' => '65535.31', - 'Label' => 'Zenitar MF 16mm F2.8 Fisheye M42', - ), - '65535.32' => array( - 'Id' => '65535.32', - 'Label' => 'Samyang 500mm Mirror F8.0', - ), - '65535.33' => array( - 'Id' => '65535.33', - 'Label' => 'Pentacon Auto 135mm F2.8', - ), - '65535.34' => array( - 'Id' => '65535.34', - 'Label' => 'Pentacon Auto 29mm F2.8', - ), - '65535.35' => array( - 'Id' => '65535.35', - 'Label' => 'Helios 44-2 58mm F2.0', - ), - '65535.4' => array( - 'Id' => '65535.4', - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS', - ), - '65535.5' => array( - 'Id' => '65535.5', - 'Label' => 'Sony E 30mm F3.5 Macro', - ), - '65535.6' => array( - 'Id' => '65535.6', - 'Label' => 'Sony E 24mm F1.8 ZA', - ), - '65535.7' => array( - 'Id' => '65535.7', - 'Label' => 'Sony E 50mm F1.8 OSS', - ), - '65535.8' => array( - 'Id' => '65535.8', - 'Label' => 'Sony E 16-70mm F4 ZA OSS', - ), - '65535.9' => array( - 'Id' => '65535.9', - 'Label' => 'Sony E 10-18mm F4 OSS', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MacroMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/MacroMode.php deleted file mode 100644 index 8a79ad0ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MacroMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroMode extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'MacroMode'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Macro Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Make.php b/lib/PHPExiftool/Driver/Tag/Minolta/Make.php deleted file mode 100644 index 235deb97e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Minolta/MakerNoteVersion.php deleted file mode 100644 index 689253c92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MakerNoteVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/Minolta/MaxAperture.php deleted file mode 100644 index 4764839da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MeasuredLV.php b/lib/PHPExiftool/Driver/Tag/Minolta/MeasuredLV.php deleted file mode 100644 index d3a0a8519..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MeasuredLV.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasuredLV extends AbstractTag -{ - - protected $Id = 1680; - - protected $Name = 'MeasuredLV'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Measured LV'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/MeteringMode.php deleted file mode 100644 index 3e18ed83d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MeteringMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center-weighted average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MeteringOffScaleIndicator.php b/lib/PHPExiftool/Driver/Tag/Minolta/MeteringOffScaleIndicator.php deleted file mode 100644 index 5098f30dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MeteringOffScaleIndicator.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringOffScaleIndicator extends AbstractTag -{ - - protected $Id = 83; - - protected $Name = 'MeteringOffScaleIndicator'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Metering Off Scale Indicator'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Within Range', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Under/Over Range', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Out of Range', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaCameraSettings2.php b/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaCameraSettings2.php deleted file mode 100644 index bf4b4f090..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaCameraSettings2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinoltaCameraSettings2 extends AbstractTag -{ - - protected $Id = 3840; - - protected $Name = 'MinoltaCameraSettings2'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Minolta Camera Settings 2'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaDate.php b/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaDate.php deleted file mode 100644 index 02e25912a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinoltaDate extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'MinoltaDate'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Minolta Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaImageSize.php b/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaImageSize.php deleted file mode 100644 index f5639e386..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaImageSize.php +++ /dev/null @@ -1,126 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinoltaImageSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MinoltaImageSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Minolta Image Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Full', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1600x1200', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1280x960', - ), - 3 => array( - 'Id' => 3, - 'Label' => '640x480', - ), - 4 => array( - 'Id' => 6, - 'Label' => '2080x1560', - ), - 5 => array( - 'Id' => 7, - 'Label' => '2560x1920', - ), - 6 => array( - 'Id' => 8, - 'Label' => '3264x2176', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Large', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Medium', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Small', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Large', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Medium', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'Small', - ), - 13 => array( - 'Id' => 1, - 'Label' => '1600x1200', - ), - 14 => array( - 'Id' => 2, - 'Label' => '1280x960', - ), - 15 => array( - 'Id' => 3, - 'Label' => '640x480', - ), - 16 => array( - 'Id' => 5, - 'Label' => '2560x1920', - ), - 17 => array( - 'Id' => 6, - 'Label' => '2272x1704', - ), - 18 => array( - 'Id' => 7, - 'Label' => '2048x1536', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaModelID.php b/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaModelID.php deleted file mode 100644 index 65a0a6bf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaModelID.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinoltaModelID extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'MinoltaModelID'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Minolta Model ID'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'DiMAGE 7, X1, X21 or X31', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'DiMAGE 5', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'DiMAGE S304', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'DiMAGE S404', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'DiMAGE 7i', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'DiMAGE 7Hi', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'DiMAGE A1', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'DiMAGE A2 or S414', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaQuality.php b/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaQuality.php deleted file mode 100644 index 5e89ca730..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaQuality.php +++ /dev/null @@ -1,160 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinoltaQuality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MinoltaQuality'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Minolta Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Raw', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Super Fine', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fine', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Standard', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Economy', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extra Fine', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'RAW', - ), - 7 => array( - 'Id' => 16, - 'Label' => 'Fine', - ), - 8 => array( - 'Id' => 32, - 'Label' => 'Normal', - ), - 9 => array( - 'Id' => 34, - 'Label' => 'RAW+JPEG', - ), - 10 => array( - 'Id' => 48, - 'Label' => 'Economy', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'RAW', - ), - 12 => array( - 'Id' => 16, - 'Label' => 'Fine', - ), - 13 => array( - 'Id' => 32, - 'Label' => 'Normal', - ), - 14 => array( - 'Id' => 34, - 'Label' => 'RAW+JPEG', - ), - 15 => array( - 'Id' => 48, - 'Label' => 'Economy', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'Raw', - ), - 17 => array( - 'Id' => 1, - 'Label' => 'Super Fine', - ), - 18 => array( - 'Id' => 2, - 'Label' => 'Fine', - ), - 19 => array( - 'Id' => 3, - 'Label' => 'Standard', - ), - 20 => array( - 'Id' => 4, - 'Label' => 'Economy', - ), - 21 => array( - 'Id' => 5, - 'Label' => 'Extra fine', - ), - 22 => array( - 'Id' => 0, - 'Label' => 'Raw', - ), - 23 => array( - 'Id' => 1, - 'Label' => 'Super Fine', - ), - 24 => array( - 'Id' => 2, - 'Label' => 'Fine', - ), - 25 => array( - 'Id' => 3, - 'Label' => 'Standard', - ), - 26 => array( - 'Id' => 4, - 'Label' => 'Economy', - ), - 27 => array( - 'Id' => 5, - 'Label' => 'Extra fine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaTime.php b/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaTime.php deleted file mode 100644 index 346e667f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MinoltaTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinoltaTime extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'MinoltaTime'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Minolta Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ModelType.php b/lib/PHPExiftool/Driver/Tag/Minolta/ModelType.php deleted file mode 100644 index 42eca923f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ModelType.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ModelType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Model Type'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/MonitorDisplayOff.php b/lib/PHPExiftool/Driver/Tag/Minolta/MonitorDisplayOff.php deleted file mode 100644 index c3894c752..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/MonitorDisplayOff.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonitorDisplayOff extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'MonitorDisplayOff'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Monitor Display Off'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Automatic', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Minolta/NoiseReduction.php deleted file mode 100644 index 58061ce22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/NoiseReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/PictureFinish.php b/lib/PHPExiftool/Driver/Tag/Minolta/PictureFinish.php deleted file mode 100644 index a6ee307b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/PictureFinish.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureFinish extends AbstractTag -{ - - protected $Id = 113; - - protected $Name = 'PictureFinish'; - - protected $FullName = 'Minolta::CameraSettings5D'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Finish'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Natural', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Natural+', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Wind Scene', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Evening Scene', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Night Scene', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Night Portrait', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Monochrome', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Adobe RGB', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Adobe RGB (ICC)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/PlayDisplay.php b/lib/PHPExiftool/Driver/Tag/Minolta/PlayDisplay.php deleted file mode 100644 index 871da49c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/PlayDisplay.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayDisplay extends AbstractTag -{ - - protected $Id = 78; - - protected $Name = 'PlayDisplay'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Play Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto Rotate', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual Rotate', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/PresetWhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Minolta/PresetWhiteBalance.php deleted file mode 100644 index bb4e5340b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/PresetWhiteBalance.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresetWhiteBalance extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'PresetWhiteBalance'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Preset White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Shade', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Fluorescent', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImage.php deleted file mode 100644 index 4f7c30552..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 129; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImageLength.php deleted file mode 100644 index 14265c5ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 137; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImageStart.php deleted file mode 100644 index e2f6dbb97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/PreviewImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 136; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/PrioritySetupShutterRelease.php b/lib/PHPExiftool/Driver/Tag/Minolta/PrioritySetupShutterRelease.php deleted file mode 100644 index fcc5047bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/PrioritySetupShutterRelease.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrioritySetupShutterRelease extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'PrioritySetupShutterRelease'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Priority Setup Shutter Release'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Release', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/RawAndJpgRecording.php b/lib/PHPExiftool/Driver/Tag/Minolta/RawAndJpgRecording.php deleted file mode 100644 index 9b9359d62..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/RawAndJpgRecording.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawAndJpgRecording extends AbstractTag -{ - - protected $Id = 265; - - protected $Name = 'RawAndJpgRecording'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Raw And Jpg Recording'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/RecordDisplay.php b/lib/PHPExiftool/Driver/Tag/Minolta/RecordDisplay.php deleted file mode 100644 index 95a190c59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/RecordDisplay.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordDisplay extends AbstractTag -{ - - protected $Id = 77; - - protected $Name = 'RecordDisplay'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Record Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto Rotate', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/RedEyeReduction.php b/lib/PHPExiftool/Driver/Tag/Minolta/RedEyeReduction.php deleted file mode 100644 index 44b4fedab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/RedEyeReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedEyeReduction extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'RedEyeReduction'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Red Eye Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Rotation.php b/lib/PHPExiftool/Driver/Tag/Minolta/Rotation.php deleted file mode 100644 index 4f9ff317e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Rotation.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Rotation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 72, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 76, - 'Label' => 'Rotate 90 CW', - ), - 2 => array( - 'Id' => 82, - 'Label' => 'Rotate 270 CW', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Rotate 90 CW', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'Rotate 270 CW', - ), - 6 => array( - 'Id' => 72, - 'Label' => 'Horizontal (normal)', - ), - 7 => array( - 'Id' => 76, - 'Label' => 'Rotate 90 CW', - ), - 8 => array( - 'Id' => 82, - 'Label' => 'Rotate 270 CW', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Horizontal (Normal)', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Rotate 270 CW', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'Rotate 90 CW', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Rotate 270 CW', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'Rotate 90 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Saturation.php b/lib/PHPExiftool/Driver/Tag/Minolta/Saturation.php deleted file mode 100644 index 991a698e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Saturation.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SceneMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/SceneMode.php deleted file mode 100644 index 33ef6cc09..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SceneMode.php +++ /dev/null @@ -1,148 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneMode extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'SceneMode'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Scene Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Text', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night Scene', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Sports', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Landscape', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Night Portrait', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Macro', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Super Macro', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Auto', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Night View/Portrait', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Sweep Panorama', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Handheld Night Shot', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Anti Motion Blur', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Cont. Priority AE', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Auto+', - ), - 23 => array( - 'Id' => 23, - 'Label' => '3D Sweep Panorama', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Superior Auto', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'High Sensitivity', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Fireworks', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Food', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'HDR', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SelfTimerTime.php b/lib/PHPExiftool/Driver/Tag/Minolta/SelfTimerTime.php deleted file mode 100644 index 16f9c98cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SelfTimerTime.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimerTime extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'SelfTimerTime'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Self Timer Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '10 s', - ), - 4 => array( - 'Id' => 4, - 'Label' => '2 s', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Minolta/Sharpness.php deleted file mode 100644 index 439decf5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Sharpness.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Hard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ShutterSpeedSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/ShutterSpeedSetting.php deleted file mode 100644 index 716dddfbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ShutterSpeedSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedSetting extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ShutterSpeedSetting'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shutter Speed Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SingleFrameBracketing.php b/lib/PHPExiftool/Driver/Tag/Minolta/SingleFrameBracketing.php deleted file mode 100644 index 9d46a3e56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SingleFrameBracketing.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SingleFrameBracketing extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'SingleFrameBracketing'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Single Frame Bracketing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 770 => array( - 'Id' => 770, - 'Label' => 'Low', - ), - 1794 => array( - 'Id' => 1794, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SoftwareVersion.php b/lib/PHPExiftool/Driver/Tag/Minolta/SoftwareVersion.php deleted file mode 100644 index 22cbb9b92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SoftwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftwareVersion extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'SoftwareVersion'; - - protected $FullName = 'Minolta::MMA'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Software Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SonyImageSize.php b/lib/PHPExiftool/Driver/Tag/Minolta/SonyImageSize.php deleted file mode 100644 index 69016fa1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SonyImageSize.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyImageSize extends AbstractTag -{ - - protected $Id = 59; - - protected $Name = 'SonyImageSize'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sony Image Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Medium', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Small', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SonyQuality.php b/lib/PHPExiftool/Driver/Tag/Minolta/SonyQuality.php deleted file mode 100644 index 3c02db097..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SonyQuality.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyQuality extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'SonyQuality'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sony Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RAW', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Fine', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'RAW + JPEG', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Standard', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SpotFocusPointX.php b/lib/PHPExiftool/Driver/Tag/Minolta/SpotFocusPointX.php deleted file mode 100644 index aef35948b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SpotFocusPointX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpotFocusPointX extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'SpotFocusPointX'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Spot Focus Point X'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SpotFocusPointY.php b/lib/PHPExiftool/Driver/Tag/Minolta/SpotFocusPointY.php deleted file mode 100644 index 7e4b087f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SpotFocusPointY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpotFocusPointY extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'SpotFocusPointY'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Spot Focus Point Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/SubjectProgram.php b/lib/PHPExiftool/Driver/Tag/Minolta/SubjectProgram.php deleted file mode 100644 index a1752b4a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/SubjectProgram.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectProgram extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'SubjectProgram'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Subject Program'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Text', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night portrait', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Sports action', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/Teleconverter.php b/lib/PHPExiftool/Driver/Tag/Minolta/Teleconverter.php deleted file mode 100644 index 92f6f736c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/Teleconverter.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Teleconverter extends AbstractTag -{ - - protected $Id = 261; - - protected $Name = 'Teleconverter'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Teleconverter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Minolta/Sony AF 1.4x APO (D) (0x04)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Minolta/Sony AF 2x APO (D) (0x05)', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Minolta/Sony AF 2x APO (D)', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Minolta AF 2x APO II', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Minolta AF 2x APO', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Minolta/Sony AF 1.4x APO (D)', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'Minolta AF 1.4x APO II', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Minolta AF 1.4x APO', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevel3500K.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevel3500K.php deleted file mode 100644 index a9cf41dfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevel3500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevel3500K extends AbstractTag -{ - - protected $Id = 410; - - protected $Name = 'WB_BlueLevel3500K'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Level 3500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevel6500K.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevel6500K.php deleted file mode 100644 index e18928eaf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevel6500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevel6500K extends AbstractTag -{ - - protected $Id = 394; - - protected $Name = 'WB_BlueLevel6500K'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Level 6500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelCustom.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelCustom.php deleted file mode 100644 index c9891bb10..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelCustom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelCustom extends AbstractTag -{ - - protected $Id = 398; - - protected $Name = 'WB_BlueLevelCustom'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Level Custom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsCloudy.php deleted file mode 100644 index e0a9b649c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelsCloudy extends AbstractTag -{ - - protected $Id = 262; - - protected $Name = 'WB_BlueLevelsCloudy'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Levels Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsDaylight.php deleted file mode 100644 index 4e8c80693..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelsDaylight extends AbstractTag -{ - - protected $Id = 234; - - protected $Name = 'WB_BlueLevelsDaylight'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Levels Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsFlash.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsFlash.php deleted file mode 100644 index 8bd38bfba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelsFlash extends AbstractTag -{ - - protected $Id = 290; - - protected $Name = 'WB_BlueLevelsFlash'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Levels Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsFluorescent.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsFluorescent.php deleted file mode 100644 index 483fecbd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsFluorescent.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelsFluorescent extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_BlueLevelsFluorescent'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Levels Fluorescent'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsKelvin.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsKelvin.php deleted file mode 100644 index 7e61d0daf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsKelvin.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelsKelvin extends AbstractTag -{ - - protected $Id = 596; - - protected $Name = 'WB_BlueLevelsKelvin'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Levels Kelvin'; - - protected $flag_Permanent = true; - - protected $MaxLength = 75; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsShade.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsShade.php deleted file mode 100644 index c3dc4b787..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelsShade extends AbstractTag -{ - - protected $Id = 374; - - protected $Name = 'WB_BlueLevelsShade'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Levels Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsTungsten.php deleted file mode 100644 index 9300ca0fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBlueLevelsTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevelsTungsten extends AbstractTag -{ - - protected $Id = 206; - - protected $Name = 'WB_BlueLevelsTungsten'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Levels Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBBracketShotNumber.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBBracketShotNumber.php deleted file mode 100644 index 3cc517516..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBBracketShotNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBracketShotNumber extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'WBBracketShotNumber'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'WB Bracket Shot Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBGBRGLevels.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBGBRGLevels.php deleted file mode 100644 index c48af0368..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBGBRGLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGBRGLevels extends AbstractTag -{ - - protected $Id = 174; - - protected $Name = 'WB_GBRGLevels'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB GBRG Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevels3500K.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevels3500K.php deleted file mode 100644 index a7e642147..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevels3500K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels3500K extends AbstractTag -{ - - protected $Id = 1072; - - protected $Name = 'WB_RBLevels3500K'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 3500K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevels6500K.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevels6500K.php deleted file mode 100644 index 8bc488e34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevels6500K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels6500K extends AbstractTag -{ - - protected $Id = 1056; - - protected $Name = 'WB_RBLevels6500K'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 6500K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCloudy.php deleted file mode 100644 index 6036aaa0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCloudy extends AbstractTag -{ - - protected $Id = 1008; - - protected $Name = 'WB_RBLevelsCloudy'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCoolWhiteF.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCoolWhiteF.php deleted file mode 100644 index 42f6b1034..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCoolWhiteF.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCoolWhiteF extends AbstractTag -{ - - protected $Id = 776; - - protected $Name = 'WB_RBLevelsCoolWhiteF'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Cool White F'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCustom.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCustom.php deleted file mode 100644 index 71a3ea26d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsCustom.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCustom extends AbstractTag -{ - - protected $Id = 1060; - - protected $Name = 'WB_RBLevelsCustom'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Custom'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsDaylight.php deleted file mode 100644 index 76e487b38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsDaylight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RBLevelsDaylight'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsFlash.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsFlash.php deleted file mode 100644 index 3f6584f99..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsFlash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RBLevelsFlash'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsShade.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsShade.php deleted file mode 100644 index 9953133d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsShade extends AbstractTag -{ - - protected $Id = 1048; - - protected $Name = 'WB_RBLevelsShade'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsTungsten.php deleted file mode 100644 index 0cb251c5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRBLevelsTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsTungsten extends AbstractTag -{ - - protected $Id = 1000; - - protected $Name = 'WB_RBLevelsTungsten'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRGBLevels.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRGBLevels.php deleted file mode 100644 index 612c87df4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRGBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGBLevels'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevel3500K.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevel3500K.php deleted file mode 100644 index cb6dcd0d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevel3500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevel3500K extends AbstractTag -{ - - protected $Id = 408; - - protected $Name = 'WB_RedLevel3500K'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Level 3500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevel6500K.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevel6500K.php deleted file mode 100644 index dd8681b18..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevel6500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevel6500K extends AbstractTag -{ - - protected $Id = 392; - - protected $Name = 'WB_RedLevel6500K'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Level 6500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelCustom.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelCustom.php deleted file mode 100644 index 38e52c142..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelCustom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelCustom extends AbstractTag -{ - - protected $Id = 396; - - protected $Name = 'WB_RedLevelCustom'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Level Custom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsCloudy.php deleted file mode 100644 index e52320601..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelsCloudy extends AbstractTag -{ - - protected $Id = 248; - - protected $Name = 'WB_RedLevelsCloudy'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Levels Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsDaylight.php deleted file mode 100644 index 20de15842..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelsDaylight extends AbstractTag -{ - - protected $Id = 220; - - protected $Name = 'WB_RedLevelsDaylight'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Levels Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsFlash.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsFlash.php deleted file mode 100644 index d94f1fb1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelsFlash extends AbstractTag -{ - - protected $Id = 276; - - protected $Name = 'WB_RedLevelsFlash'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Levels Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsFluorescent.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsFluorescent.php deleted file mode 100644 index e5781fa85..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsFluorescent.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelsFluorescent extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RedLevelsFluorescent'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Levels Fluorescent'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsKelvin.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsKelvin.php deleted file mode 100644 index 619d53290..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsKelvin.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelsKelvin extends AbstractTag -{ - - protected $Id = 446; - - protected $Name = 'WB_RedLevelsKelvin'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Levels Kelvin'; - - protected $flag_Permanent = true; - - protected $MaxLength = 75; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsShade.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsShade.php deleted file mode 100644 index 266b09293..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelsShade extends AbstractTag -{ - - protected $Id = 360; - - protected $Name = 'WB_RedLevelsShade'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Levels Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsTungsten.php deleted file mode 100644 index 526f847de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WBRedLevelsTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevelsTungsten extends AbstractTag -{ - - protected $Id = 192; - - protected $Name = 'WB_RedLevelsTungsten'; - - protected $FullName = 'Minolta::WBInfoA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Levels Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalance.php deleted file mode 100644 index 6a1e56432..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalance.php +++ /dev/null @@ -1,188 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Shade', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Fluorescent', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Flash', - ), - 7 => array( - 'Id' => 256, - 'Label' => 'Kelvin', - ), - 8 => array( - 'Id' => 512, - 'Label' => 'Manual', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'Shade', - ), - 12 => array( - 'Id' => 3, - 'Label' => 'Cloudy', - ), - 13 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 14 => array( - 'Id' => 5, - 'Label' => 'Fluorescent', - ), - 15 => array( - 'Id' => 256, - 'Label' => 'Kelvin', - ), - 16 => array( - 'Id' => 512, - 'Label' => 'Manual', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 18 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 19 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 20 => array( - 'Id' => 3, - 'Label' => 'Shade', - ), - 21 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 22 => array( - 'Id' => 5, - 'Label' => 'Fluorescent', - ), - 23 => array( - 'Id' => 6, - 'Label' => 'Flash', - ), - 24 => array( - 'Id' => 256, - 'Label' => 'Kelvin', - ), - 25 => array( - 'Id' => 512, - 'Label' => 'Manual', - ), - 26 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 27 => array( - 'Id' => 1, - 'Label' => 'Color Temperature/Color Filter', - ), - 28 => array( - 'Id' => 16, - 'Label' => 'Daylight', - ), - 29 => array( - 'Id' => 32, - 'Label' => 'Cloudy', - ), - 30 => array( - 'Id' => 48, - 'Label' => 'Shade', - ), - 31 => array( - 'Id' => 64, - 'Label' => 'Tungsten', - ), - 32 => array( - 'Id' => 80, - 'Label' => 'Flash', - ), - 33 => array( - 'Id' => 96, - 'Label' => 'Fluorescent', - ), - 34 => array( - 'Id' => 112, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceBracketing.php b/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceBracketing.php deleted file mode 100644 index 4bdd24ba2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceBracketing.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceBracketing extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalanceBracketing'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance Bracketing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 8, - 'Label' => 'Low', - ), - 1 => array( - 'Id' => 9, - 'Label' => 'High', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 4 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceFineTune.php b/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceFineTune.php deleted file mode 100644 index f7cda5b05..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceFineTune.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceFineTune extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalanceFineTune'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance Fine Tune'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceSetting.php b/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceSetting.php deleted file mode 100644 index 73a9fb164..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WhiteBalanceSetting.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceSetting extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'WhiteBalanceSetting'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Preset', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Custom', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Color Temperature/Color Filter', - ), - 32769 => array( - 'Id' => 32769, - 'Label' => 'Preset', - ), - 32770 => array( - 'Id' => 32770, - 'Label' => 'Custom', - ), - 32771 => array( - 'Id' => 32771, - 'Label' => 'Color Temperature/Color Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/WideFocusZone.php b/lib/PHPExiftool/Driver/Tag/Minolta/WideFocusZone.php deleted file mode 100644 index 85f12f268..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/WideFocusZone.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WideFocusZone extends AbstractTag -{ - - protected $Id = 47; - - protected $Name = 'WideFocusZone'; - - protected $FullName = 'Minolta::CameraSettings'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Wide Focus Zone'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No zone', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center zone (horizontal orientation)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Center zone (vertical orientation)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Left zone', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Right zone', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatching.php b/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatching.php deleted file mode 100644 index 68ed1d714..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatching.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoneMatching extends AbstractTag -{ - - protected $Id = 266; - - protected $Name = 'ZoneMatching'; - - protected $FullName = 'Minolta::Main'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Zone Matching'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'ISO Setting Used', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'High Key', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low Key', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatchingMode.php b/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatchingMode.php deleted file mode 100644 index 3de0fcd26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatchingMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoneMatchingMode extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ZoneMatchingMode'; - - protected $FullName = 'Minolta::CameraSettingsA100'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Zone Matching Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatchingOn.php b/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatchingOn.php deleted file mode 100644 index 45a7d3567..000000000 --- a/lib/PHPExiftool/Driver/Tag/Minolta/ZoneMatchingOn.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Minolta; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoneMatchingOn extends AbstractTag -{ - - protected $Id = 117; - - protected $Name = 'ZoneMatchingOn'; - - protected $FullName = 'Minolta::CameraSettings7D'; - - protected $GroupName = 'Minolta'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Minolta'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Zone Matching On'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BWFilter.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BWFilter.php deleted file mode 100644 index 47ab4d8a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BWFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BWFilter extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'BWFilter'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'BW Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BayerPattern.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BayerPattern.php deleted file mode 100644 index 9203c5860..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BayerPattern.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BayerPattern extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'BayerPattern'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Bayer Pattern'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'RGGB', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'GBRG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BitDepth.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BitDepth.php deleted file mode 100644 index 5a844f7f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/BitDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'BitDepth'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Bit Depth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorFilter.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorFilter.php deleted file mode 100644 index c0ef8cfcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorFilter extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorFilter'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorMode.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorMode.php deleted file mode 100644 index 28fee35e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorMode.php +++ /dev/null @@ -1,194 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ColorMode'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Natural color', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Black & White', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Vivid color', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Solarization', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Adobe RGB', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Sepia', - ), - 6 => array( - 'Id' => 9, - 'Label' => 'Natural', - ), - 7 => array( - 'Id' => 12, - 'Label' => 'Portrait', - ), - 8 => array( - 'Id' => 13, - 'Label' => 'Natural sRGB', - ), - 9 => array( - 'Id' => 14, - 'Label' => 'Natural+ sRGB', - ), - 10 => array( - 'Id' => 15, - 'Label' => 'Landscape', - ), - 11 => array( - 'Id' => 16, - 'Label' => 'Evening', - ), - 12 => array( - 'Id' => 17, - 'Label' => 'Night Scene', - ), - 13 => array( - 'Id' => 18, - 'Label' => 'Night Portrait', - ), - 14 => array( - 'Id' => 132, - 'Label' => 'Embed Adobe RGB', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 16 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 17 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 18 => array( - 'Id' => 3, - 'Label' => 'Landscape', - ), - 19 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 20 => array( - 'Id' => 5, - 'Label' => 'Night View/Portrait', - ), - 21 => array( - 'Id' => 6, - 'Label' => 'B&W', - ), - 22 => array( - 'Id' => 7, - 'Label' => 'Adobe RGB', - ), - 23 => array( - 'Id' => 12, - 'Label' => 'Neutral', - ), - 24 => array( - 'Id' => 13, - 'Label' => 'Clear', - ), - 25 => array( - 'Id' => 14, - 'Label' => 'Deep', - ), - 26 => array( - 'Id' => 15, - 'Label' => 'Light', - ), - 27 => array( - 'Id' => 16, - 'Label' => 'Autumn Leaves', - ), - 28 => array( - 'Id' => 17, - 'Label' => 'Sepia', - ), - 29 => array( - 'Id' => 100, - 'Label' => 'Neutral', - ), - 30 => array( - 'Id' => 101, - 'Label' => 'Clear', - ), - 31 => array( - 'Id' => 102, - 'Label' => 'Deep', - ), - 32 => array( - 'Id' => 103, - 'Label' => 'Light', - ), - 33 => array( - 'Id' => 104, - 'Label' => 'Night View', - ), - 34 => array( - 'Id' => 105, - 'Label' => 'Autumn Leaves', - ), - 35 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorTemperature.php deleted file mode 100644 index f3b5a28f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Contrast.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Contrast.php deleted file mode 100644 index 52ee89e08..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Contrast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Contrast'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/FirmwareID.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/FirmwareID.php deleted file mode 100644 index 6346432f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/FirmwareID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FirmwareID'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware ID'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Hue.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Hue.php deleted file mode 100644 index 28e7ecc1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Hue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Hue extends AbstractTag -{ - - protected $Id = 59; - - protected $Name = 'Hue'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Hue'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ISOSetting.php deleted file mode 100644 index 3f94d491d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ISOSetting.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 48 => array( - 'Id' => 48, - 'Label' => 100, - ), - 56 => array( - 'Id' => 56, - 'Label' => 200, - ), - 64 => array( - 'Id' => 64, - 'Label' => 400, - ), - 72 => array( - 'Id' => 72, - 'Label' => 800, - ), - 80 => array( - 'Id' => 80, - 'Label' => 1600, - ), - 174 => array( - 'Id' => 174, - 'Label' => '80 (Zone Matching Low)', - ), - 184 => array( - 'Id' => 184, - 'Label' => '200 (Zone Matching High)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ImageHeight.php deleted file mode 100644 index a3648cfbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ImageWidth.php deleted file mode 100644 index 90443240f..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ProgramMode.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ProgramMode.php deleted file mode 100644 index 4808f5956..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ProgramMode.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramMode extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ProgramMode'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Program Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Text', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night Portrait', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Sports', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/RawDataLength.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/RawDataLength.php deleted file mode 100644 index effcb75b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/RawDataLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataLength extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'RawDataLength'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Raw Data Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/RawDepth.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/RawDepth.php deleted file mode 100644 index c668fc888..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/RawDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDepth extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'RawDepth'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Raw Depth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Saturation.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Saturation.php deleted file mode 100644 index 822727d46..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Saturation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Saturation'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/SensorHeight.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/SensorHeight.php deleted file mode 100644 index 4e7818483..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/SensorHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorHeight extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'SensorHeight'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensor Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/SensorWidth.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/SensorWidth.php deleted file mode 100644 index 2c1c87e40..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/SensorWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorWidth extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'SensorWidth'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensor Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Sharpness.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Sharpness.php deleted file mode 100644 index 3cb9c25ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/Sharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Sharpness'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/StorageMethod.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/StorageMethod.php deleted file mode 100644 index b8e2278ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/StorageMethod.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StorageMethod extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'StorageMethod'; - - protected $FullName = 'MinoltaRaw::PRD'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Storage Method'; - - protected $flag_Permanent = true; - - protected $Values = array( - 82 => array( - 'Id' => 82, - 'Label' => 'Padded', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Linear', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBGBRGLevels.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBGBRGLevels.php deleted file mode 100644 index ff34e348c..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBGBRGLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGBRGLevels extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'WB_GBRGLevels'; - - protected $FullName = 'MinoltaRaw::WBG'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB GBRG Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBMode.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBMode.php deleted file mode 100644 index f7b832cd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBMode extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'WBMode'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'WB Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsCloudy.php deleted file mode 100644 index 88aa463c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCloudy extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'WB_RBLevelsCloudy'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsCoolWhiteF.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsCoolWhiteF.php deleted file mode 100644 index 1a74ec5d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsCoolWhiteF.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCoolWhiteF extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'WB_RBLevelsCoolWhiteF'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Cool White F'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDayWhiteF.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDayWhiteF.php deleted file mode 100644 index 21d1eb4e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDayWhiteF.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsDayWhiteF extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'WB_RBLevelsDayWhiteF'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Day White F'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDaylight.php deleted file mode 100644 index 2b576e82b..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsDaylight extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'WB_RBLevelsDaylight'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDaylightF.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDaylightF.php deleted file mode 100644 index e5d40f53e..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsDaylightF.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsDaylightF extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'WB_RBLevelsDaylightF'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Daylight F'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsFlash.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsFlash.php deleted file mode 100644 index 181f165ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsFlash extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'WB_RBLevelsFlash'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsShade.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsShade.php deleted file mode 100644 index 031ee3967..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsShade extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'WB_RBLevelsShade'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsTungsten.php deleted file mode 100644 index 85eca7fb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsTungsten extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'WB_RBLevelsTungsten'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsUnknown.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsUnknown.php deleted file mode 100644 index 8fc45053d..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsUnknown extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'WB_RBLevelsUnknown'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Unknown'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsWhiteF.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsWhiteF.php deleted file mode 100644 index 2b9ac2bb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRBLevelsWhiteF.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsWhiteF extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'WB_RBLevelsWhiteF'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels White F'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRGGBLevels.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRGGBLevels.php deleted file mode 100644 index 915fc9ee7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBRGGBLevels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevels extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'WB_RGGBLevels'; - - protected $FullName = 'MinoltaRaw::WBG'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBScale.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBScale.php deleted file mode 100644 index 2f36c2a06..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/WBScale.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBScale extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WBScale'; - - protected $FullName = 'MinoltaRaw::WBG'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'WB Scale'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ZoneMatching.php b/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ZoneMatching.php deleted file mode 100644 index 01c2789e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/MinoltaRaw/ZoneMatching.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\MinoltaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoneMatching extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ZoneMatching'; - - protected $FullName = 'MinoltaRaw::RIF'; - - protected $GroupName = 'MinoltaRaw'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'MinoltaRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Zone Matching'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'ISO Setting Used', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'High Key', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low Key', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/BitDepth.php b/lib/PHPExiftool/Driver/Tag/NITF/BitDepth.php deleted file mode 100644 index ad54ee089..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'BitDepth'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/BlocksPerColumn.php b/lib/PHPExiftool/Driver/Tag/NITF/BlocksPerColumn.php deleted file mode 100644 index 5458d9948..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/BlocksPerColumn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlocksPerColumn extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'BlocksPerColumn'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Blocks Per Column'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/BlocksPerRow.php b/lib/PHPExiftool/Driver/Tag/NITF/BlocksPerRow.php deleted file mode 100644 index 451e499d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/BlocksPerRow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlocksPerRow extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'BlocksPerRow'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Blocks Per Row'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/Flags.php b/lib/PHPExiftool/Driver/Tag/NITF/Flags.php deleted file mode 100644 index 6fc3fea31..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/Flags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flags extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Flags'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/ImageClass.php b/lib/PHPExiftool/Driver/Tag/NITF/ImageClass.php deleted file mode 100644 index 96c324491..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/ImageClass.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageClass extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'ImageClass'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Class'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'General Purpose', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tactical Imagery', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/ImageColor.php b/lib/PHPExiftool/Driver/Tag/NITF/ImageColor.php deleted file mode 100644 index 129191943..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/ImageColor.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageColor extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ImageColor'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Color'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Monochrome', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/ImageFormat.php b/lib/PHPExiftool/Driver/Tag/NITF/ImageFormat.php deleted file mode 100644 index b8757b2ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/ImageFormat.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFormat extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ImageFormat'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Format'; - - protected $Values = array( - 'B' => array( - 'Id' => 'B', - 'Label' => 'IMode B', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/JPEGProcess.php b/lib/PHPExiftool/Driver/Tag/NITF/JPEGProcess.php deleted file mode 100644 index 0856b1c62..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/JPEGProcess.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGProcess extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'JPEGProcess'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'JPEG Process'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Baseline sequential DCT, Huffman coding, 8-bit samples', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Extended sequential DCT, Huffman coding, 12-bit samples', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/NITFVersion.php b/lib/PHPExiftool/Driver/Tag/NITF/NITFVersion.php deleted file mode 100644 index 67a2dd91a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/NITFVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NITFVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'NITFVersion'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'NITF Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/Quality.php b/lib/PHPExiftool/Driver/Tag/NITF/Quality.php deleted file mode 100644 index 87dd95b65..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/Quality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Quality'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/StreamBitDepth.php b/lib/PHPExiftool/Driver/Tag/NITF/StreamBitDepth.php deleted file mode 100644 index 9eb7e829f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/StreamBitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamBitDepth extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'StreamBitDepth'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Stream Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NITF/StreamColor.php b/lib/PHPExiftool/Driver/Tag/NITF/StreamColor.php deleted file mode 100644 index 4a96fcc97..000000000 --- a/lib/PHPExiftool/Driver/Tag/NITF/StreamColor.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NITF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamColor extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'StreamColor'; - - protected $FullName = 'JPEG::NITF'; - - protected $GroupName = 'NITF'; - - protected $g0 = 'APP6'; - - protected $g1 = 'NITF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Stream Color'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Monochrome', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFAperture.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFAperture.php deleted file mode 100644 index b251b37e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAperture extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'AFAperture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaHeight.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaHeight.php deleted file mode 100644 index d2c39a7de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaHeight extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'AFAreaHeight'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Area Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaMode.php deleted file mode 100644 index 96d4ec267..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaMode.php +++ /dev/null @@ -1,162 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAreaMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Area Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single Area', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Dynamic Area', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Dynamic Area (closest subject)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Group Dynamic', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Single Area (wide)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Dynamic Area (wide)', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Single Area', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Dynamic Area', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'Dynamic Area (closest subject)', - ), - 9 => array( - 'Id' => 3, - 'Label' => 'Group Dynamic', - ), - 10 => array( - 'Id' => 4, - 'Label' => 'Dynamic Area (9 points)', - ), - 11 => array( - 'Id' => 5, - 'Label' => 'Dynamic Area (21 points)', - ), - 12 => array( - 'Id' => 6, - 'Label' => 'Dynamic Area (51 points)', - ), - 13 => array( - 'Id' => 7, - 'Label' => 'Dynamic Area (51 points, 3D-tracking)', - ), - 14 => array( - 'Id' => 8, - 'Label' => 'Auto-area', - ), - 15 => array( - 'Id' => 9, - 'Label' => 'Dynamic Area (3D-tracking)', - ), - 16 => array( - 'Id' => 10, - 'Label' => 'Single Area (wide)', - ), - 17 => array( - 'Id' => 11, - 'Label' => 'Dynamic Area (wide)', - ), - 18 => array( - 'Id' => 12, - 'Label' => 'Dynamic Area (wide, 3D-tracking)', - ), - 19 => array( - 'Id' => 128, - 'Label' => 'Single (135 points)', - ), - 20 => array( - 'Id' => 129, - 'Label' => 'Auto (41 points)', - ), - 21 => array( - 'Id' => 130, - 'Label' => 'Subject Tracking (41 points)', - ), - 22 => array( - 'Id' => 131, - 'Label' => 'Face Priority (41 points)', - ), - 23 => array( - 'Id' => 0, - 'Label' => 'Contrast-detect', - ), - 24 => array( - 'Id' => 1, - 'Label' => 'Contrast-detect (normal area)', - ), - 25 => array( - 'Id' => 2, - 'Label' => 'Contrast-detect (wide area)', - ), - 26 => array( - 'Id' => 3, - 'Label' => 'Contrast-detect (face priority)', - ), - 27 => array( - 'Id' => 4, - 'Label' => 'Contrast-detect (subject tracking)', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaWidth.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaWidth.php deleted file mode 100644 index 7e068b3e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaWidth extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'AFAreaWidth'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Area Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaXPosition.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaXPosition.php deleted file mode 100644 index 8fe7e798a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaXPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaXPosition extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'AFAreaXPosition'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Area X Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaYPosition.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaYPosition.php deleted file mode 100644 index 389c1ce3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFAreaYPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaYPosition extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'AFAreaYPosition'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Area Y Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTune.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTune.php deleted file mode 100644 index c33d14797..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTune.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFineTune extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AFFineTune'; - - protected $FullName = 'Nikon::AFTune'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Fine Tune'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (1)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (2)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTuneAdj.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTuneAdj.php deleted file mode 100644 index a099fda8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTuneAdj.php +++ /dev/null @@ -1,542 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFineTuneAdj extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFFineTuneAdj'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'AF Fine Tune Adj'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 0, - ), - 1 => array( - 'Id' => 58, - 'Label' => '+1', - ), - 2 => array( - 'Id' => 59, - 'Label' => '+2', - ), - 3 => array( - 'Id' => 60, - 'Label' => '+4', - ), - 4 => array( - 'Id' => 61, - 'Label' => '+8', - ), - 5 => array( - 'Id' => 62, - 'Label' => '+16', - ), - 6 => array( - 'Id' => 194, - 'Label' => '-16', - ), - 7 => array( - 'Id' => 195, - 'Label' => '-8', - ), - 8 => array( - 'Id' => 196, - 'Label' => '-4', - ), - 9 => array( - 'Id' => 197, - 'Label' => '-2', - ), - 10 => array( - 'Id' => 198, - 'Label' => '-1', - ), - 11 => array( - 'Id' => 4158, - 'Label' => '+17', - ), - 12 => array( - 'Id' => 4290, - 'Label' => '-17', - ), - 13 => array( - 'Id' => 8253, - 'Label' => '+9', - ), - 14 => array( - 'Id' => 8254, - 'Label' => '+18', - ), - 15 => array( - 'Id' => 8386, - 'Label' => '-18', - ), - 16 => array( - 'Id' => 8387, - 'Label' => '-9', - ), - 17 => array( - 'Id' => 12350, - 'Label' => '+19', - ), - 18 => array( - 'Id' => 12482, - 'Label' => '-19', - ), - 19 => array( - 'Id' => 16444, - 'Label' => '+5', - ), - 20 => array( - 'Id' => 16445, - 'Label' => '+10', - ), - 21 => array( - 'Id' => 16446, - 'Label' => '+20', - ), - 22 => array( - 'Id' => 16578, - 'Label' => '-20', - ), - 23 => array( - 'Id' => 16579, - 'Label' => '-10', - ), - 24 => array( - 'Id' => 16580, - 'Label' => '-5', - ), - 25 => array( - 'Id' => 24637, - 'Label' => '+11', - ), - 26 => array( - 'Id' => 24771, - 'Label' => '-11', - ), - 27 => array( - 'Id' => 32827, - 'Label' => '+3', - ), - 28 => array( - 'Id' => 32828, - 'Label' => '+6', - ), - 29 => array( - 'Id' => 32829, - 'Label' => '+12', - ), - 30 => array( - 'Id' => 32963, - 'Label' => '-12', - ), - 31 => array( - 'Id' => 32964, - 'Label' => '-6', - ), - 32 => array( - 'Id' => 32965, - 'Label' => '-3', - ), - 33 => array( - 'Id' => 41021, - 'Label' => '+13', - ), - 34 => array( - 'Id' => 41155, - 'Label' => '-13', - ), - 35 => array( - 'Id' => 49212, - 'Label' => '+7', - ), - 36 => array( - 'Id' => 49213, - 'Label' => '+14', - ), - 37 => array( - 'Id' => 49347, - 'Label' => '-14', - ), - 38 => array( - 'Id' => 49348, - 'Label' => '-7', - ), - 39 => array( - 'Id' => 57405, - 'Label' => '+15', - ), - 40 => array( - 'Id' => 57539, - 'Label' => '-15', - ), - 41 => array( - 'Id' => 0, - 'Label' => 0, - ), - 42 => array( - 'Id' => 2110, - 'Label' => '+11', - ), - 43 => array( - 'Id' => 2242, - 'Label' => '-11', - ), - 44 => array( - 'Id' => 8252, - 'Label' => '+3', - ), - 45 => array( - 'Id' => 8253, - 'Label' => '+6', - ), - 46 => array( - 'Id' => 8254, - 'Label' => '+12', - ), - 47 => array( - 'Id' => 8386, - 'Label' => '-12', - ), - 48 => array( - 'Id' => 8387, - 'Label' => '-6', - ), - 49 => array( - 'Id' => 8388, - 'Label' => '-3', - ), - 50 => array( - 'Id' => 14398, - 'Label' => '+13', - ), - 51 => array( - 'Id' => 14530, - 'Label' => '-13', - ), - 52 => array( - 'Id' => 20541, - 'Label' => '+7', - ), - 53 => array( - 'Id' => 20542, - 'Label' => '+14', - ), - 54 => array( - 'Id' => 20674, - 'Label' => '-14', - ), - 55 => array( - 'Id' => 20675, - 'Label' => '-7', - ), - 56 => array( - 'Id' => 26686, - 'Label' => '+15', - ), - 57 => array( - 'Id' => 26818, - 'Label' => '-15', - ), - 58 => array( - 'Id' => 32826, - 'Label' => '+1', - ), - 59 => array( - 'Id' => 32827, - 'Label' => '+2', - ), - 60 => array( - 'Id' => 32828, - 'Label' => '+4', - ), - 61 => array( - 'Id' => 32829, - 'Label' => '+8', - ), - 62 => array( - 'Id' => 32830, - 'Label' => '+16', - ), - 63 => array( - 'Id' => 32962, - 'Label' => '-16', - ), - 64 => array( - 'Id' => 32963, - 'Label' => '-8', - ), - 65 => array( - 'Id' => 32964, - 'Label' => '-4', - ), - 66 => array( - 'Id' => 32965, - 'Label' => '-2', - ), - 67 => array( - 'Id' => 32966, - 'Label' => '-1', - ), - 68 => array( - 'Id' => 38974, - 'Label' => '+17', - ), - 69 => array( - 'Id' => 39106, - 'Label' => '-17', - ), - 70 => array( - 'Id' => 45117, - 'Label' => '+9', - ), - 71 => array( - 'Id' => 45118, - 'Label' => '+18', - ), - 72 => array( - 'Id' => 45250, - 'Label' => '-18', - ), - 73 => array( - 'Id' => 45251, - 'Label' => '-9', - ), - 74 => array( - 'Id' => 51262, - 'Label' => '+19', - ), - 75 => array( - 'Id' => 51394, - 'Label' => '-19', - ), - 76 => array( - 'Id' => 57404, - 'Label' => '+5', - ), - 77 => array( - 'Id' => 57405, - 'Label' => '+10', - ), - 78 => array( - 'Id' => 57406, - 'Label' => '+20', - ), - 79 => array( - 'Id' => 57538, - 'Label' => '-20', - ), - 80 => array( - 'Id' => 57539, - 'Label' => '-10', - ), - 81 => array( - 'Id' => 57540, - 'Label' => '-5', - ), - 82 => array( - 'Id' => 0, - 'Label' => 0, - ), - 83 => array( - 'Id' => 1086, - 'Label' => '+13', - ), - 84 => array( - 'Id' => 1218, - 'Label' => '-13', - ), - 85 => array( - 'Id' => 6205, - 'Label' => '+7', - ), - 86 => array( - 'Id' => 6206, - 'Label' => '+14', - ), - 87 => array( - 'Id' => 6338, - 'Label' => '-14', - ), - 88 => array( - 'Id' => 6339, - 'Label' => '-7', - ), - 89 => array( - 'Id' => 11326, - 'Label' => '+15', - ), - 90 => array( - 'Id' => 11458, - 'Label' => '-15', - ), - 91 => array( - 'Id' => 16442, - 'Label' => '+1', - ), - 92 => array( - 'Id' => 16443, - 'Label' => '+2', - ), - 93 => array( - 'Id' => 16444, - 'Label' => '+4', - ), - 94 => array( - 'Id' => 16445, - 'Label' => '+8', - ), - 95 => array( - 'Id' => 16446, - 'Label' => '+16', - ), - 96 => array( - 'Id' => 16578, - 'Label' => '-16', - ), - 97 => array( - 'Id' => 16579, - 'Label' => '-8', - ), - 98 => array( - 'Id' => 16580, - 'Label' => '-4', - ), - 99 => array( - 'Id' => 16581, - 'Label' => '-2', - ), - 100 => array( - 'Id' => 16582, - 'Label' => '-1', - ), - 101 => array( - 'Id' => 21566, - 'Label' => '+17', - ), - 102 => array( - 'Id' => 21698, - 'Label' => '-17', - ), - 103 => array( - 'Id' => 26685, - 'Label' => '+9', - ), - 104 => array( - 'Id' => 26686, - 'Label' => '+18', - ), - 105 => array( - 'Id' => 26818, - 'Label' => '-18', - ), - 106 => array( - 'Id' => 26819, - 'Label' => '-9', - ), - 107 => array( - 'Id' => 31806, - 'Label' => '+19', - ), - 108 => array( - 'Id' => 31938, - 'Label' => '-19', - ), - 109 => array( - 'Id' => 36924, - 'Label' => '+5', - ), - 110 => array( - 'Id' => 36925, - 'Label' => '+10', - ), - 111 => array( - 'Id' => 36926, - 'Label' => '+20', - ), - 112 => array( - 'Id' => 37058, - 'Label' => '-20', - ), - 113 => array( - 'Id' => 37059, - 'Label' => '-10', - ), - 114 => array( - 'Id' => 37060, - 'Label' => '-5', - ), - 115 => array( - 'Id' => 47165, - 'Label' => '+11', - ), - 116 => array( - 'Id' => 47299, - 'Label' => '-11', - ), - 117 => array( - 'Id' => 57403, - 'Label' => '+3', - ), - 118 => array( - 'Id' => 57404, - 'Label' => '+6', - ), - 119 => array( - 'Id' => 57405, - 'Label' => '+12', - ), - 120 => array( - 'Id' => 57539, - 'Label' => '-12', - ), - 121 => array( - 'Id' => 57540, - 'Label' => '-6', - ), - 122 => array( - 'Id' => 57541, - 'Label' => '-3', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTuneIndex.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTuneIndex.php deleted file mode 100644 index 384cdda5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFFineTuneIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFineTuneIndex extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AFFineTuneIndex'; - - protected $FullName = 'Nikon::AFTune'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Fine Tune Index'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFImageHeight.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFImageHeight.php deleted file mode 100644 index 4fbc106c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFImageHeight extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'AFImageHeight'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFImageWidth.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFImageWidth.php deleted file mode 100644 index ce1f804dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFImageWidth extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'AFImageWidth'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFInfo2Version.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFInfo2Version.php deleted file mode 100644 index 4b2b35e26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFInfo2Version.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFInfo2Version extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AFInfo2Version'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'AF Info 2 Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFPoint.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFPoint.php deleted file mode 100644 index bbd01619e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFPoint.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoint extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AFPoint'; - - protected $FullName = 'Nikon::AFInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Center', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Top', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Bottom', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Mid-left', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Mid-right', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Upper-left', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Upper-right', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Lower-right', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Far Left', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Far Right', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFPointsInFocus.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFPointsInFocus.php deleted file mode 100644 index 451f58e82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFPointsInFocus.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsInFocus extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AFPointsInFocus'; - - protected $FullName = 'Nikon::AFInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Points In Focus'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Bottom', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Mid-left', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Mid-right', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Upper-left', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Upper-right', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Lower-left', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Lower-right', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Far Left', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Far Right', - ), - 2047 => array( - 'Id' => 2047, - 'Label' => 'All 11 Points', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFPointsUsed.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFPointsUsed.php deleted file mode 100644 index d74e9da87..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFPointsUsed.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsUsed extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'AFPointsUsed'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'AF Points Used'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - - protected $Index = 'mixed'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Bottom', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Mid-left', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Upper-left', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Lower-left', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Far Left', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Mid-right', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Upper-right', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Lower-right', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Far Right', - ), - 2047 => array( - 'Id' => 2047, - 'Label' => 'All 11 Points', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AFResponse.php b/lib/PHPExiftool/Driver/Tag/Nikon/AFResponse.php deleted file mode 100644 index dc1ad2358..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AFResponse.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFResponse extends AbstractTag -{ - - protected $Id = 173; - - protected $Name = 'AFResponse'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'AF Response'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ActiveDLighting.php b/lib/PHPExiftool/Driver/Tag/Nikon/ActiveDLighting.php deleted file mode 100644 index e8238af3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ActiveDLighting.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveDLighting extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'ActiveD-Lighting'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Active D-Lighting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Normal', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'High', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Extra High', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Extra High 1', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Extra High 2', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Extra High 3', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Extra High 4', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Altitude.php b/lib/PHPExiftool/Driver/Tag/Nikon/Altitude.php deleted file mode 100644 index 3f2437101..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Altitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Altitude extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Altitude'; - - protected $FullName = 'Nikon::BarometerInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Altitude'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AudioBitsPerSample.php b/lib/PHPExiftool/Driver/Tag/Nikon/AudioBitsPerSample.php deleted file mode 100644 index 84b0a822b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AudioBitsPerSample.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitsPerSample extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'AudioBitsPerSample'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bits Per Sample'; - - protected $local_g2 = 'Audio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/Nikon/AudioChannels.php deleted file mode 100644 index 15c971858..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AudioChannels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - - protected $local_g2 = 'Audio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/Nikon/AudioSampleRate.php deleted file mode 100644 index bfd1448d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AudioSampleRate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - - protected $local_g2 = 'Audio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AutoDistortionControl.php b/lib/PHPExiftool/Driver/Tag/Nikon/AutoDistortionControl.php deleted file mode 100644 index 708aa25c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AutoDistortionControl.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoDistortionControl extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AutoDistortionControl'; - - protected $FullName = 'Nikon::DistortInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Distortion Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (underwater)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/AuxiliaryLens.php b/lib/PHPExiftool/Driver/Tag/Nikon/AuxiliaryLens.php deleted file mode 100644 index 2fde1a410..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/AuxiliaryLens.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuxiliaryLens extends AbstractTag -{ - - protected $Id = 130; - - protected $Name = 'AuxiliaryLens'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Auxiliary Lens'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/BarometerInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/BarometerInfoVersion.php deleted file mode 100644 index d1f1a08c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/BarometerInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BarometerInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'BarometerInfoVersion'; - - protected $FullName = 'Nikon::BarometerInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Barometer Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/BlackLevel.php b/lib/PHPExiftool/Driver/Tag/Nikon/BlackLevel.php deleted file mode 100644 index 916e94d72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/BlackLevel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel extends AbstractTag -{ - - protected $Id = 61; - - protected $Name = 'BlackLevel'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Black Level'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/BlueBalance.php b/lib/PHPExiftool/Driver/Tag/Nikon/BlueBalance.php deleted file mode 100644 index 6da76fc22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/BlueBalance.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueBalance extends AbstractTag -{ - - protected $Id = 625; - - protected $Name = 'BlueBalance'; - - protected $FullName = 'Nikon::ColorBalanceA'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Blue Balance'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Brightness.php b/lib/PHPExiftool/Driver/Tag/Nikon/Brightness.php deleted file mode 100644 index 4285b2ff2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Brightness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'Brightness'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Brightness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/CCDSensitivity.php b/lib/PHPExiftool/Driver/Tag/Nikon/CCDSensitivity.php deleted file mode 100644 index 931155562..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/CCDSensitivity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CCDSensitivity extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CCDSensitivity'; - - protected $FullName = 'Nikon::Type2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'CCD Sensitivity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ColorBalanceVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/ColorBalanceVersion.php deleted file mode 100644 index d9da433ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ColorBalanceVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBalanceVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ColorBalanceVersion'; - - protected $FullName = 'Nikon::ColorBalanceUnknown'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Balance Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ColorHue.php b/lib/PHPExiftool/Driver/Tag/Nikon/ColorHue.php deleted file mode 100644 index 3b3fdae8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ColorHue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorHue extends AbstractTag -{ - - protected $Id = 141; - - protected $Name = 'ColorHue'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Color Hue'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/ColorMode.php deleted file mode 100644 index d33c54000..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ColorMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Nikon/ColorSpace.php deleted file mode 100644 index 2afdc9183..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ColorSpace.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'sRGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Adobe RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Contrast.php b/lib/PHPExiftool/Driver/Tag/Nikon/Contrast.php deleted file mode 100644 index 126a663e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Contrast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'Contrast'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ContrastCurve.php b/lib/PHPExiftool/Driver/Tag/Nikon/ContrastCurve.php deleted file mode 100644 index 4bc9d649c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ContrastCurve.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastCurve extends AbstractTag -{ - - protected $Id = 140; - - protected $Name = 'ContrastCurve'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Contrast Curve'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ContrastDetectAF.php b/lib/PHPExiftool/Driver/Tag/Nikon/ContrastDetectAF.php deleted file mode 100644 index 22d4ab141..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ContrastDetectAF.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastDetectAF extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ContrastDetectAF'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Contrast Detect AF'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ContrastDetectAFInFocus.php b/lib/PHPExiftool/Driver/Tag/Nikon/ContrastDetectAFInFocus.php deleted file mode 100644 index 571332ffd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ContrastDetectAFInFocus.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastDetectAFInFocus extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'ContrastDetectAFInFocus'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Contrast Detect AF In Focus'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Converter.php b/lib/PHPExiftool/Driver/Tag/Nikon/Converter.php deleted file mode 100644 index 1feab4cfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Converter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Converter extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Converter'; - - protected $FullName = 'Nikon::Type2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Converter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/CountryCode.php b/lib/PHPExiftool/Driver/Tag/Nikon/CountryCode.php deleted file mode 100644 index a36b9c87c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/CountryCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryCode extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'CountryCode'; - - protected $FullName = 'Nikon::LocationInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Country Code'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/CreateDate.php b/lib/PHPExiftool/Driver/Tag/Nikon/CreateDate.php deleted file mode 100644 index 7a65d5213..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/CreateDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/CropHiSpeed.php b/lib/PHPExiftool/Driver/Tag/Nikon/CropHiSpeed.php deleted file mode 100644 index a71dde530..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/CropHiSpeed.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropHiSpeed extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'CropHiSpeed'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Crop Hi Speed'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DataDump.php b/lib/PHPExiftool/Driver/Tag/Nikon/DataDump.php deleted file mode 100644 index 92eb0d22a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DataDump.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDump extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'DataDump'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Data Dump'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DateDisplayFormat.php b/lib/PHPExiftool/Driver/Tag/Nikon/DateDisplayFormat.php deleted file mode 100644 index 8fbac7aa5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DateDisplayFormat.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateDisplayFormat extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'DateDisplayFormat'; - - protected $FullName = 'Nikon::WorldTime'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Time'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Date Display Format'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Y/M/D', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'M/D/Y', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'D/M/Y', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Nikon/DateTimeOriginal.php deleted file mode 100644 index f6495ee2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DateTimeOriginal.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DaylightSavings.php b/lib/PHPExiftool/Driver/Tag/Nikon/DaylightSavings.php deleted file mode 100644 index 397c45e58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DaylightSavings.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DaylightSavings extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'DaylightSavings'; - - protected $FullName = 'Nikon::WorldTime'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Time'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Daylight Savings'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DeletedImageCount.php b/lib/PHPExiftool/Driver/Tag/Nikon/DeletedImageCount.php deleted file mode 100644 index da83b5393..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DeletedImageCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeletedImageCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DeletedImageCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Deleted Image Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Nikon/DigitalZoom.php deleted file mode 100644 index 7995199c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DigitalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DirectoryNumber.php b/lib/PHPExiftool/Driver/Tag/Nikon/DirectoryNumber.php deleted file mode 100644 index fe7aef5e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DirectoryNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectoryNumber extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'DirectoryNumber'; - - protected $FullName = 'Nikon::FileInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Directory Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DistortionControl.php b/lib/PHPExiftool/Driver/Tag/Nikon/DistortionControl.php deleted file mode 100644 index 8990f15e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DistortionControl.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionControl extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'DistortionControl'; - - protected $FullName = 'Nikon::ShotInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Distortion Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/DistortionVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/DistortionVersion.php deleted file mode 100644 index 2bc8d696c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/DistortionVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DistortionVersion'; - - protected $FullName = 'Nikon::DistortInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Distortion Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Duration.php b/lib/PHPExiftool/Driver/Tag/Nikon/Duration.php deleted file mode 100644 index 3530362d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Duration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'Duration'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Duration'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/EffectiveMaxAperture.php b/lib/PHPExiftool/Driver/Tag/Nikon/EffectiveMaxAperture.php deleted file mode 100644 index 498017d49..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/EffectiveMaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectiveMaxAperture extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EffectiveMaxAperture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Effective Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Equipment.php b/lib/PHPExiftool/Driver/Tag/Nikon/Equipment.php deleted file mode 100644 index 91d25769a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Equipment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Equipment extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Equipment'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Equipment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExitPupilPosition.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExitPupilPosition.php deleted file mode 100644 index 5a114c962..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExitPupilPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExitPupilPosition extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ExitPupilPosition'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exit Pupil Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureBracketValue.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExposureBracketValue.php deleted file mode 100644 index 0aabe672f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureBracketValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureBracketValue extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'ExposureBracketValue'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Exposure Bracket Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExposureCompensation.php deleted file mode 100644 index f6ea7b768..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureCompensation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureDifference.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExposureDifference.php deleted file mode 100644 index eb3407000..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureDifference.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureDifference extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'ExposureDifference'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Exposure Difference'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExposureProgram.php deleted file mode 100644 index b1274c71a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureProgram.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 17860642; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Program'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Defined', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Creative (Slow speed)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Action (High speed)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Portrait', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Landscape', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExposureTime.php deleted file mode 100644 index f655f58c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureTuning.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExposureTuning.php deleted file mode 100644 index 8ac1cf74c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExposureTuning.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTuning extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'ExposureTuning'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Exposure Tuning'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashCompensation.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashCompensation.php deleted file mode 100644 index 952492a76..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashCompensation extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'ExternalFlashCompensation'; - - protected $FullName = 'Nikon::FlashInfo0103'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'External Flash Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashExposureComp.php deleted file mode 100644 index 79a3340d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashExposureComp.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashExposureComp extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'ExternalFlashExposureComp'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'External Flash Exposure Comp'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashFirmware.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashFirmware.php deleted file mode 100644 index be3fb5ae3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashFirmware.php +++ /dev/null @@ -1,106 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashFirmware extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ExternalFlashFirmware'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'External Flash Firmware'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'n/a', - ), - '1 1' => array( - 'Id' => '1 1', - 'Label' => '1.01 (SB-800 or Metz 58 AF-1)', - ), - '1 3' => array( - 'Id' => '1 3', - 'Label' => '1.03 (SB-800)', - ), - '2 1' => array( - 'Id' => '2 1', - 'Label' => '2.01 (SB-800)', - ), - '2 4' => array( - 'Id' => '2 4', - 'Label' => '2.04 (SB-600)', - ), - '2 5' => array( - 'Id' => '2 5', - 'Label' => '2.05 (SB-600)', - ), - '3 1' => array( - 'Id' => '3 1', - 'Label' => '3.01 (SU-800 Remote Commander)', - ), - '4 1' => array( - 'Id' => '4 1', - 'Label' => '4.01 (SB-400)', - ), - '4 2' => array( - 'Id' => '4 2', - 'Label' => '4.02 (SB-400)', - ), - '4 4' => array( - 'Id' => '4 4', - 'Label' => '4.04 (SB-400)', - ), - '5 1' => array( - 'Id' => '5 1', - 'Label' => '5.01 (SB-900)', - ), - '5 2' => array( - 'Id' => '5 2', - 'Label' => '5.02 (SB-900)', - ), - '6 1' => array( - 'Id' => '6 1', - 'Label' => '6.01 (SB-700)', - ), - '7 1' => array( - 'Id' => '7 1', - 'Label' => '7.01 (SB-910)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashFlags.php b/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashFlags.php deleted file mode 100644 index 0444ee7f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ExternalFlashFlags.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashFlags extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ExternalFlashFlags'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'External Flash Flags'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 2 => array( - 'Id' => 4, - 'Label' => 'Bounce Flash', - ), - 3 => array( - 'Id' => 16, - 'Label' => 'Wide Flash Adapter', - ), - 4 => array( - 'Id' => 32, - 'Label' => 'Dome Diffuser', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 6 => array( - 'Id' => 4, - 'Label' => 'Bounce Flash', - ), - 7 => array( - 'Id' => 16, - 'Label' => 'Wide Flash Adapter', - ), - 8 => array( - 'Id' => 32, - 'Label' => 'Dome Diffuser', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 10 => array( - 'Id' => 4, - 'Label' => 'Bounce Flash', - ), - 11 => array( - 'Id' => 16, - 'Label' => 'Wide Flash Adapter', - ), - 12 => array( - 'Id' => 32, - 'Label' => 'Dome Diffuser', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FNumber.php b/lib/PHPExiftool/Driver/Tag/Nikon/FNumber.php deleted file mode 100644 index 3a95c8ea6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face10Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face10Position.php deleted file mode 100644 index 8fa9dc40c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face10Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face10Position extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'Face10Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 10 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face11Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face11Position.php deleted file mode 100644 index 2c5ef9bab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face11Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face11Position extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'Face11Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 11 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face12Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face12Position.php deleted file mode 100644 index 7f7797118..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face12Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face12Position extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'Face12Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 12 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face1Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face1Position.php deleted file mode 100644 index b9a22035f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Position extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Face1Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face2Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face2Position.php deleted file mode 100644 index 28bbcda5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Position extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Face2Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face3Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face3Position.php deleted file mode 100644 index 2f1604793..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Position extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Face3Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face4Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face4Position.php deleted file mode 100644 index 284fc2aee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Position extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Face4Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face5Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face5Position.php deleted file mode 100644 index 01ad7828d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Position extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'Face5Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face6Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face6Position.php deleted file mode 100644 index de3a1f124..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face6Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Position extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Face6Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 6 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face7Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face7Position.php deleted file mode 100644 index a91ddd930..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face7Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Position extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'Face7Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 7 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face8Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face8Position.php deleted file mode 100644 index 19cb84549..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face8Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Position extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'Face8Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 8 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Face9Position.php b/lib/PHPExiftool/Driver/Tag/Nikon/Face9Position.php deleted file mode 100644 index 2374eeeea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Face9Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face9Position extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'Face9Position'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 9 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FaceDetectFrameSize.php b/lib/PHPExiftool/Driver/Tag/Nikon/FaceDetectFrameSize.php deleted file mode 100644 index 7c181a6d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FaceDetectFrameSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectFrameSize extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FaceDetectFrameSize'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Detect Frame Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Nikon/FacesDetected.php deleted file mode 100644 index 3d04edbd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'Nikon::FaceDetect'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FileInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/FileInfoVersion.php deleted file mode 100644 index 3b21bf259..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FileInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FileInfoVersion'; - - protected $FullName = 'Nikon::FileInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'File Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FileNumber.php b/lib/PHPExiftool/Driver/Tag/Nikon/FileNumber.php deleted file mode 100644 index 22273fa96..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FileNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNumber extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'FileNumber'; - - protected $FullName = 'Nikon::FileInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'File Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FilterEffect.php b/lib/PHPExiftool/Driver/Tag/Nikon/FilterEffect.php deleted file mode 100644 index 5f0378600..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FilterEffect.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilterEffect extends AbstractTag -{ - - protected $Id = 55; - - protected $Name = 'FilterEffect'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Filter Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 128 => array( - 'Id' => 128, - 'Label' => 'Off', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Yellow', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Orange', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Red', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Green', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/FirmwareVersion.php deleted file mode 100644 index 81e3404b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FirmwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashColorFilter.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashColorFilter.php deleted file mode 100644 index a1f628da3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashColorFilter.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashColorFilter extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'FlashColorFilter'; - - protected $FullName = 'Nikon::FlashInfo0103'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Color Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'FL-GL1', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FL-GL2', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'TN-A1', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'TN-A2', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Red', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Blue', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Yellow', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Amber', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashCommanderMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashCommanderMode.php deleted file mode 100644 index 4fb17e912..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashCommanderMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashCommanderMode extends AbstractTag -{ - - protected $Id = '9.1'; - - protected $Name = 'FlashCommanderMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Commander Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashCompensation.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashCompensation.php deleted file mode 100644 index 92174bbfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashCompensation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashCompensation extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'FlashCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Compensation'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashControlMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashControlMode.php deleted file mode 100644 index c6e6093b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashControlMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashControlMode extends AbstractTag -{ - - protected $Id = '9.2'; - - protected $Name = 'FlashControlMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Control Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'iTTL-BL', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'iTTL', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto Aperture', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Automatic', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'GN (distance priority)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Repeating Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureBracketValue.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureBracketValue.php deleted file mode 100644 index 0660c9f31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureBracketValue.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureBracketValue extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'FlashExposureBracketValue'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Bracket Value'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp.php deleted file mode 100644 index 0892e61f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Compensation'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp2.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp2.php deleted file mode 100644 index 8e735ccec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp2 extends AbstractTag -{ - - protected $Id = 1234; - - protected $Name = 'FlashExposureComp2'; - - protected $FullName = 'Nikon::ShotInfoD800'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp3.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp3.php deleted file mode 100644 index b18ef1d6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp3 extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'FlashExposureComp3'; - - protected $FullName = 'Nikon::FlashInfo0103'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp4.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp4.php deleted file mode 100644 index 07961a62a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashExposureComp4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp4 extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'FlashExposureComp4'; - - protected $FullName = 'Nikon::FlashInfo0103'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp 4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashFired.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashFired.php deleted file mode 100644 index 402d20e9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashFired.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFired extends AbstractTag -{ - - protected $Id = '590.3'; - - protected $Name = 'FlashFired'; - - protected $FullName = 'Nikon::ShotInfoD80'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Flash Fired'; - - protected $flag_Permanent = true; - - protected $Values = array( - 64 => array( - 'Id' => 64, - 'Label' => 'Internal', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'External', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashFocalLength.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashFocalLength.php deleted file mode 100644 index 5819cb41d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashFocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGNDistance.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGNDistance.php deleted file mode 100644 index b6eb32ef8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGNDistance.php +++ /dev/null @@ -1,200 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGNDistance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGNDistance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash GN Distance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 0, - ), - 1 => array( - 'Id' => 1, - 'Label' => '0.1 m', - ), - 2 => array( - 'Id' => 2, - 'Label' => '0.2 m', - ), - 3 => array( - 'Id' => 3, - 'Label' => '0.3 m', - ), - 4 => array( - 'Id' => 4, - 'Label' => '0.4 m', - ), - 5 => array( - 'Id' => 5, - 'Label' => '0.5 m', - ), - 6 => array( - 'Id' => 6, - 'Label' => '0.6 m', - ), - 7 => array( - 'Id' => 7, - 'Label' => '0.7 m', - ), - 8 => array( - 'Id' => 8, - 'Label' => '0.8 m', - ), - 9 => array( - 'Id' => 9, - 'Label' => '0.9 m', - ), - 10 => array( - 'Id' => 10, - 'Label' => '1.0 m', - ), - 11 => array( - 'Id' => 11, - 'Label' => '1.1 m', - ), - 12 => array( - 'Id' => 12, - 'Label' => '1.3 m', - ), - 13 => array( - 'Id' => 13, - 'Label' => '1.4 m', - ), - 14 => array( - 'Id' => 14, - 'Label' => '1.6 m', - ), - 15 => array( - 'Id' => 15, - 'Label' => '1.8 m', - ), - 16 => array( - 'Id' => 16, - 'Label' => '2.0 m', - ), - 17 => array( - 'Id' => 17, - 'Label' => '2.2 m', - ), - 18 => array( - 'Id' => 18, - 'Label' => '2.5 m', - ), - 19 => array( - 'Id' => 19, - 'Label' => '2.8 m', - ), - 20 => array( - 'Id' => 20, - 'Label' => '3.2 m', - ), - 21 => array( - 'Id' => 21, - 'Label' => '3.6 m', - ), - 22 => array( - 'Id' => 22, - 'Label' => '4.0 m', - ), - 23 => array( - 'Id' => 23, - 'Label' => '4.5 m', - ), - 24 => array( - 'Id' => 24, - 'Label' => '5.0 m', - ), - 25 => array( - 'Id' => 25, - 'Label' => '5.6 m', - ), - 26 => array( - 'Id' => 26, - 'Label' => '6.3 m', - ), - 27 => array( - 'Id' => 27, - 'Label' => '7.1 m', - ), - 28 => array( - 'Id' => 28, - 'Label' => '8.0 m', - ), - 29 => array( - 'Id' => 29, - 'Label' => '9.0 m', - ), - 30 => array( - 'Id' => 30, - 'Label' => '10.0 m', - ), - 31 => array( - 'Id' => 31, - 'Label' => '11.0 m', - ), - 32 => array( - 'Id' => 32, - 'Label' => '13.0 m', - ), - 33 => array( - 'Id' => 33, - 'Label' => '14.0 m', - ), - 34 => array( - 'Id' => 34, - 'Label' => '16.0 m', - ), - 35 => array( - 'Id' => 35, - 'Label' => '18.0 m', - ), - 36 => array( - 'Id' => 36, - 'Label' => '20.0 m', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupACompensation.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupACompensation.php deleted file mode 100644 index 59f879d3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupACompensation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupACompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupACompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Group A Compensation'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupAControlMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupAControlMode.php deleted file mode 100644 index 6ade12670..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupAControlMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupAControlMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupAControlMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Group A Control Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'iTTL-BL', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'iTTL', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto Aperture', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Automatic', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'GN (distance priority)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Repeating Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupAOutput.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupAOutput.php deleted file mode 100644 index 94cbf3bd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupAOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupAOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupAOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Group A Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBCompensation.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBCompensation.php deleted file mode 100644 index 88c73237e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBCompensation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupBCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupBCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Group B Compensation'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBControlMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBControlMode.php deleted file mode 100644 index 54c65e962..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBControlMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupBControlMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupBControlMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Group B Control Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'iTTL-BL', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'iTTL', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto Aperture', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Automatic', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'GN (distance priority)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Repeating Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBOutput.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBOutput.php deleted file mode 100644 index 3de34479d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupBOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupBOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupBOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Group B Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCCompensation.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCCompensation.php deleted file mode 100644 index 855bff3b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCCompensation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupCCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupCCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Group C Compensation'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCControlMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCControlMode.php deleted file mode 100644 index 59bd2907a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCControlMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupCControlMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupCControlMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Group C Control Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'iTTL-BL', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'iTTL', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto Aperture', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Automatic', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'GN (distance priority)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Repeating Flash', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCOutput.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCOutput.php deleted file mode 100644 index ad9ce6944..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashGroupCOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashGroupCOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashGroupCOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Group C Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashInfoVersion.php deleted file mode 100644 index ebdd39fe2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FlashInfoVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashMode.php deleted file mode 100644 index 29c292eb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashMode.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 135; - - protected $Name = 'FlashMode'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Did Not Fire', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired, Manual', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Not Ready', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Fired, External', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Fired, Commander Mode', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fired, TTL Mode', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashOutput.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashOutput.php deleted file mode 100644 index 08c3aec56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashOutput extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'FlashOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashSetting.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashSetting.php deleted file mode 100644 index 2f02dc4fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashSetting extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'FlashSetting'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashSource.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashSource.php deleted file mode 100644 index fdd2e5a1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashSource.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashSource extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'FlashSource'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Source'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'External', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Internal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FlashType.php b/lib/PHPExiftool/Driver/Tag/Nikon/FlashType.php deleted file mode 100644 index c78f58068..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FlashType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashType extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'FlashType'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Nikon/FocalLength.php deleted file mode 100644 index 7cab6b5c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Focus.php b/lib/PHPExiftool/Driver/Tag/Nikon/Focus.php deleted file mode 100644 index 18d28ecbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Focus.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Focus extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Focus'; - - protected $FullName = 'Nikon::Type2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Focus'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FocusDistance.php b/lib/PHPExiftool/Driver/Tag/Nikon/FocusDistance.php deleted file mode 100644 index cd5f3eb5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FocusDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusDistance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/FocusMode.php deleted file mode 100644 index 54d3b2fd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FocusMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FocusPosition.php b/lib/PHPExiftool/Driver/Tag/Nikon/FocusPosition.php deleted file mode 100644 index 1d0e199b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FocusPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusPosition extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'FocusPosition'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FrameCount.php b/lib/PHPExiftool/Driver/Tag/Nikon/FrameCount.php deleted file mode 100644 index 2a0302fc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FrameCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCount extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'FrameCount'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FrameHeight.php b/lib/PHPExiftool/Driver/Tag/Nikon/FrameHeight.php deleted file mode 100644 index a70aa7aa4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FrameHeight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameHeight extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'FrameHeight'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Height'; - - protected $local_g2 = 'Video'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FrameRate.php b/lib/PHPExiftool/Driver/Tag/Nikon/FrameRate.php deleted file mode 100644 index bbb2692f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FrameRate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'FrameRate'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - - protected $local_g2 = 'Video'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/FrameWidth.php b/lib/PHPExiftool/Driver/Tag/Nikon/FrameWidth.php deleted file mode 100644 index d45f94c97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/FrameWidth.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameWidth extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'FrameWidth'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Width'; - - protected $local_g2 = 'Video'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSAltitude.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSAltitude.php deleted file mode 100644 index c0041e310..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSAltitude.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitude extends AbstractTag -{ - - protected $Id = 18874374; - - protected $Name = 'GPSAltitude'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSAltitudeRef.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSAltitudeRef.php deleted file mode 100644 index fd95b0075..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSAltitudeRef.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitudeRef extends AbstractTag -{ - - protected $Id = 18874373; - - protected $Name = 'GPSAltitudeRef'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude Ref'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Above Sea Level', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Below Sea Level', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSDateStamp.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSDateStamp.php deleted file mode 100644 index c94b8e416..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSDateStamp.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDateStamp extends AbstractTag -{ - - protected $Id = 18874397; - - protected $Name = 'GPSDateStamp'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Date Stamp'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSImgDirection.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSImgDirection.php deleted file mode 100644 index 542171f0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSImgDirection.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSImgDirection extends AbstractTag -{ - - protected $Id = 18874385; - - protected $Name = 'GPSImgDirection'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Img Direction'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSImgDirectionRef.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSImgDirectionRef.php deleted file mode 100644 index bad2a4f64..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSImgDirectionRef.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSImgDirectionRef extends AbstractTag -{ - - protected $Id = 18874384; - - protected $Name = 'GPSImgDirectionRef'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Img Direction Ref'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'M' => array( - 'Id' => 'M', - 'Label' => 'Magnetic North', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'True North', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSLatitude.php deleted file mode 100644 index 8153b62b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLatitude.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 18874370; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLatitudeRef.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSLatitudeRef.php deleted file mode 100644 index 1b6a4456a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLatitudeRef.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitudeRef extends AbstractTag -{ - - protected $Id = 18874369; - - protected $Name = 'GPSLatitudeRef'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude Ref'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'N' => array( - 'Id' => 'N', - 'Label' => 'North', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'South', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSLongitude.php deleted file mode 100644 index 9dcb47464..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLongitude.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 18874372; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLongitudeRef.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSLongitudeRef.php deleted file mode 100644 index a02c39c8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSLongitudeRef.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitudeRef extends AbstractTag -{ - - protected $Id = 18874371; - - protected $Name = 'GPSLongitudeRef'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude Ref'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'E' => array( - 'Id' => 'E', - 'Label' => 'East', - ), - 'W' => array( - 'Id' => 'W', - 'Label' => 'West', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSMapDatum.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSMapDatum.php deleted file mode 100644 index dfa13134f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSMapDatum.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMapDatum extends AbstractTag -{ - - protected $Id = 18874386; - - protected $Name = 'GPSMapDatum'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Map Datum'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSSatellites.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSSatellites.php deleted file mode 100644 index 45a1a48cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSSatellites.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSatellites extends AbstractTag -{ - - protected $Id = 18874376; - - protected $Name = 'GPSSatellites'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Satellites'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSTimeStamp.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSTimeStamp.php deleted file mode 100644 index 5c76b4bbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSTimeStamp.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSTimeStamp extends AbstractTag -{ - - protected $Id = 18874375; - - protected $Name = 'GPSTimeStamp'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Time Stamp'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/GPSVersionID.php b/lib/PHPExiftool/Driver/Tag/Nikon/GPSVersionID.php deleted file mode 100644 index 285d0305a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/GPSVersionID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSVersionID extends AbstractTag -{ - - protected $Id = 18874368; - - protected $Name = 'GPSVersionID'; - - protected $FullName = 'Nikon::NCTG'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Version ID'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/HDR.php b/lib/PHPExiftool/Driver/Tag/Nikon/HDR.php deleted file mode 100644 index a0b98ece1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/HDR.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDR extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'HDR'; - - protected $FullName = 'Nikon::HDRInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'HDR'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/HDRInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/HDRInfoVersion.php deleted file mode 100644 index bac02f894..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/HDRInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'HDRInfoVersion'; - - protected $FullName = 'Nikon::HDRInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'HDR Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/HDRLevel.php b/lib/PHPExiftool/Driver/Tag/Nikon/HDRLevel.php deleted file mode 100644 index 7addb27b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/HDRLevel.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRLevel extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'HDRLevel'; - - protected $FullName = 'Nikon::HDRInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'HDR Level'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 EV', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 EV', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3 EV', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/HDRLevel2.php b/lib/PHPExiftool/Driver/Tag/Nikon/HDRLevel2.php deleted file mode 100644 index 5b156980e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/HDRLevel2.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRLevel2 extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'HDRLevel2'; - - protected $FullName = 'Nikon::HDRInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'HDR Level 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 EV', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 EV', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3 EV', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/HDRSmoothing.php b/lib/PHPExiftool/Driver/Tag/Nikon/HDRSmoothing.php deleted file mode 100644 index 45b19bbad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/HDRSmoothing.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRSmoothing extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'HDRSmoothing'; - - protected $FullName = 'Nikon::HDRInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'HDR Smoothing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Auto', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/HighISONoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Nikon/HighISONoiseReduction.php deleted file mode 100644 index 88e3663f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/HighISONoiseReduction.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighISONoiseReduction extends AbstractTag -{ - - protected $Id = 177; - - protected $Name = 'HighISONoiseReduction'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'High ISO Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Minimal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Medium Low', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Normal', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Medium High', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/HueAdjustment.php b/lib/PHPExiftool/Driver/Tag/Nikon/HueAdjustment.php deleted file mode 100644 index 1944b71ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/HueAdjustment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HueAdjustment'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/IFD0Offset.php b/lib/PHPExiftool/Driver/Tag/Nikon/IFD0Offset.php deleted file mode 100644 index 3865a8bb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/IFD0Offset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IFD0Offset extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'IFD0_Offset'; - - protected $FullName = 'Nikon::CaptureOffsets'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IFD0 Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ISO.php b/lib/PHPExiftool/Driver/Tag/Nikon/ISO.php deleted file mode 100644 index be8e81af5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ISO.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - - protected $local_g2 = 'mixed'; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ISO2.php b/lib/PHPExiftool/Driver/Tag/Nikon/ISO2.php deleted file mode 100644 index 6114aa145..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ISO2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'ISO2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ISOExpansion.php b/lib/PHPExiftool/Driver/Tag/Nikon/ISOExpansion.php deleted file mode 100644 index 1a2f23e11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ISOExpansion.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOExpansion extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ISOExpansion'; - - protected $FullName = 'Nikon::ISOInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ISO Expansion'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Hi 0.3', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Hi 0.5', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'Hi 0.7', - ), - 260 => array( - 'Id' => 260, - 'Label' => 'Hi 1.0', - ), - 261 => array( - 'Id' => 261, - 'Label' => 'Hi 1.3', - ), - 262 => array( - 'Id' => 262, - 'Label' => 'Hi 1.5', - ), - 263 => array( - 'Id' => 263, - 'Label' => 'Hi 1.7', - ), - 264 => array( - 'Id' => 264, - 'Label' => 'Hi 2.0', - ), - 265 => array( - 'Id' => 265, - 'Label' => 'Hi 2.3', - ), - 266 => array( - 'Id' => 266, - 'Label' => 'Hi 2.5', - ), - 267 => array( - 'Id' => 267, - 'Label' => 'Hi 2.7', - ), - 268 => array( - 'Id' => 268, - 'Label' => 'Hi 3.0', - ), - 269 => array( - 'Id' => 269, - 'Label' => 'Hi 3.3', - ), - 270 => array( - 'Id' => 270, - 'Label' => 'Hi 3.5', - ), - 271 => array( - 'Id' => 271, - 'Label' => 'Hi 3.7', - ), - 272 => array( - 'Id' => 272, - 'Label' => 'Hi 4.0', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'Lo 0.3', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'Lo 0.5', - ), - 515 => array( - 'Id' => 515, - 'Label' => 'Lo 0.7', - ), - 516 => array( - 'Id' => 516, - 'Label' => 'Lo 1.0', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ISOExpansion2.php b/lib/PHPExiftool/Driver/Tag/Nikon/ISOExpansion2.php deleted file mode 100644 index a06d0961b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ISOExpansion2.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOExpansion2 extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ISOExpansion2'; - - protected $FullName = 'Nikon::ISOInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ISO Expansion 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Hi 0.3', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Hi 0.5', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'Hi 0.7', - ), - 260 => array( - 'Id' => 260, - 'Label' => 'Hi 1.0', - ), - 261 => array( - 'Id' => 261, - 'Label' => 'Hi 1.3', - ), - 262 => array( - 'Id' => 262, - 'Label' => 'Hi 1.5', - ), - 263 => array( - 'Id' => 263, - 'Label' => 'Hi 1.7', - ), - 264 => array( - 'Id' => 264, - 'Label' => 'Hi 2.0', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'Lo 0.3', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'Lo 0.5', - ), - 515 => array( - 'Id' => 515, - 'Label' => 'Lo 0.7', - ), - 516 => array( - 'Id' => 516, - 'Label' => 'Lo 1.0', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ISOSelection.php b/lib/PHPExiftool/Driver/Tag/Nikon/ISOSelection.php deleted file mode 100644 index d15de0c31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ISOSelection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSelection extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'ISOSelection'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'ISO Selection'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/Nikon/ISOSetting.php deleted file mode 100644 index 253e8125d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ISOSetting.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageAdjustment.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageAdjustment.php deleted file mode 100644 index 298e59026..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageAdjustment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageAdjustment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageAdjustment'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Image Adjustment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageArea.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageArea.php deleted file mode 100644 index 3bed7f058..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageArea.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageArea extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'ImageArea'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Image Area'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'FX (36x24)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'DX (24x16)', - ), - 2 => array( - 'Id' => 2, - 'Label' => '5:4 (30x24)', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1.2x (30x20)', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'FX (36.0 x 23.9 mm)', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'DX (23.5 x 15.6 mm)', - ), - 6 => array( - 'Id' => 2, - 'Label' => '5:4 (30.0 x 23.9 mm)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageAuthentication.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageAuthentication.php deleted file mode 100644 index ae7aceaac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageAuthentication.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageAuthentication extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'ImageAuthentication'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Authentication'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageBoundary.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageBoundary.php deleted file mode 100644 index d1dd6343c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageBoundary.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoundary extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'ImageBoundary'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Boundary'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageCount.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageCount.php deleted file mode 100644 index 6aa2b508d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCount extends AbstractTag -{ - - protected $Id = 165; - - protected $Name = 'ImageCount'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Image Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageDataSize.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageDataSize.php deleted file mode 100644 index dd8d83c6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageDataSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDataSize extends AbstractTag -{ - - protected $Id = 162; - - protected $Name = 'ImageDataSize'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Image Data Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageOptimization.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageOptimization.php deleted file mode 100644 index 863e0d902..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageOptimization.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOptimization extends AbstractTag -{ - - protected $Id = 169; - - protected $Name = 'ImageOptimization'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Optimization'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageProcessing.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageProcessing.php deleted file mode 100644 index 61dbc9076..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageProcessing.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageProcessing extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'ImageProcessing'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Processing'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageQuality.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageQuality.php deleted file mode 100644 index 2ed5e1084..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageQuality.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageQuality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageQuality'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Image Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'NEF (RAW) + JPEG Fine', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'NEF (RAW) + JPEG Norm', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'NEF (RAW) + JPEG Basic', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'NEF (RAW)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'TIF (RGB)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'JPEG Fine', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'JPEG Normal', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'JPEG Basic', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'NEF (RAW)', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'JPEG Fine', - ), - 10 => array( - 'Id' => 2, - 'Label' => 'JPEG Normal', - ), - 11 => array( - 'Id' => 3, - 'Label' => 'JPEG Basic', - ), - 12 => array( - 'Id' => 4, - 'Label' => 'NEF (RAW) + JPEG Fine', - ), - 13 => array( - 'Id' => 5, - 'Label' => 'NEF (RAW) + JPEG Normal', - ), - 14 => array( - 'Id' => 6, - 'Label' => 'NEF (RAW) + JPEG Basic', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/Nikon/ImageStabilization.php deleted file mode 100644 index 7516894a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ImageStabilization.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 172; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Lens.php b/lib/PHPExiftool/Driver/Tag/Nikon/Lens.php deleted file mode 100644 index 07e655f33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Lens.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lens extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Lens'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Lens'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/LensDataVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/LensDataVersion.php deleted file mode 100644 index a43d1c021..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/LensDataVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensDataVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'LensDataVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Lens Data Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/LensFStops.php b/lib/PHPExiftool/Driver/Tag/Nikon/LensFStops.php deleted file mode 100644 index c3ee001b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/LensFStops.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFStops extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensFStops'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens F Stops'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/LensIDNumber.php b/lib/PHPExiftool/Driver/Tag/Nikon/LensIDNumber.php deleted file mode 100644 index 36742f1a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/LensIDNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensIDNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensIDNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Lens ID Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/LensModel.php b/lib/PHPExiftool/Driver/Tag/Nikon/LensModel.php deleted file mode 100644 index 1181b899f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/LensModel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensModel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Lens Model'; - - protected $flag_Permanent = true; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/LensType.php b/lib/PHPExiftool/Driver/Tag/Nikon/LensType.php deleted file mode 100644 index 46a39e7f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/LensType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/LightSource.php b/lib/PHPExiftool/Driver/Tag/Nikon/LightSource.php deleted file mode 100644 index 44fe0a96d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/LightSource.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSource extends AbstractTag -{ - - protected $Id = 144; - - protected $Name = 'LightSource'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Light Source'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Location.php b/lib/PHPExiftool/Driver/Tag/Nikon/Location.php deleted file mode 100644 index 81ef59911..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Location.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'Location'; - - protected $FullName = 'Nikon::LocationInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Location'; - - protected $flag_Permanent = true; - - protected $MaxLength = 70; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/LocationInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/LocationInfoVersion.php deleted file mode 100644 index ee46ab538..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/LocationInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'LocationInfoVersion'; - - protected $FullName = 'Nikon::LocationInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Location Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MCUVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/MCUVersion.php deleted file mode 100644 index d0edff2b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MCUVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MCUVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MCUVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'MCU Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Make.php b/lib/PHPExiftool/Driver/Tag/Nikon/Make.php deleted file mode 100644 index fb594ee78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Make'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MakerNoteType.php b/lib/PHPExiftool/Driver/Tag/Nikon/MakerNoteType.php deleted file mode 100644 index 9db5e9a34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MakerNoteType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteType extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MakerNoteType'; - - protected $FullName = 'Nikon::AVIVers'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Maker Note Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/MakerNoteVersion.php deleted file mode 100644 index 22ccd33bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MakerNoteVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ManualFocusDistance.php b/lib/PHPExiftool/Driver/Tag/Nikon/ManualFocusDistance.php deleted file mode 100644 index c8b5abc58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ManualFocusDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFocusDistance extends AbstractTag -{ - - protected $Id = 133; - - protected $Name = 'ManualFocusDistance'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Manual Focus Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureAtMaxFocal.php b/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureAtMaxFocal.php deleted file mode 100644 index 83306170a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureAtMaxFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMaxFocal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxApertureAtMaxFocal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture At Max Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureAtMinFocal.php b/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureAtMinFocal.php deleted file mode 100644 index a961c4dde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureAtMinFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMinFocal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxApertureAtMinFocal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture At Min Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureValue.php b/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureValue.php deleted file mode 100644 index ee592dc97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MaxApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureValue extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'MaxApertureValue'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Max Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MaxFocalLength.php b/lib/PHPExiftool/Driver/Tag/Nikon/MaxFocalLength.php deleted file mode 100644 index 91729db54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MaxFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxFocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxFocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Max Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/MeteringMode.php deleted file mode 100644 index f5a0dbf0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MeteringMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Multi-spot', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Multi-segment', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Partial', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MinFocalLength.php b/lib/PHPExiftool/Driver/Tag/Nikon/MinFocalLength.php deleted file mode 100644 index c96bbab4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MinFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinFocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MinFocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Min Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Model.php b/lib/PHPExiftool/Driver/Tag/Nikon/Model.php deleted file mode 100644 index 76ce50fdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Model.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Model'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'mixed'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureAutoGain.php b/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureAutoGain.php deleted file mode 100644 index 303074e07..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureAutoGain.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiExposureAutoGain extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'MultiExposureAutoGain'; - - protected $FullName = 'Nikon::MultiExposure'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Multi Exposure Auto Gain'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureMode.php deleted file mode 100644 index 3ea200b2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiExposureMode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MultiExposureMode'; - - protected $FullName = 'Nikon::MultiExposure'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Multi Exposure Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Multiple Exposure', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Image Overlay', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'HDR', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureShots.php b/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureShots.php deleted file mode 100644 index 37d1f1b3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureShots.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiExposureShots extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'MultiExposureShots'; - - protected $FullName = 'Nikon::MultiExposure'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Multi Exposure Shots'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureVersion.php deleted file mode 100644 index 221dd7938..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/MultiExposureVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiExposureVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MultiExposureVersion'; - - protected $FullName = 'Nikon::MultiExposure'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Multi Exposure Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NEFBitDepth.php b/lib/PHPExiftool/Driver/Tag/Nikon/NEFBitDepth.php deleted file mode 100644 index 1e4194a14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NEFBitDepth.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NEFBitDepth extends AbstractTag -{ - - protected $Id = 3618; - - protected $Name = 'NEFBitDepth'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'NEF Bit Depth'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - - protected $Values = array( - '0 0 0 0' => array( - 'Id' => '0 0 0 0', - 'Label' => 'n/a (JPEG)', - ), - '8 8 8 0' => array( - 'Id' => '8 8 8 0', - 'Label' => '8 x 3', - ), - '12 0 0 0' => array( - 'Id' => '12 0 0 0', - 'Label' => 12, - ), - '14 0 0 0' => array( - 'Id' => '14 0 0 0', - 'Label' => 14, - ), - '16 16 16 0' => array( - 'Id' => '16 16 16 0', - 'Label' => '16 x 3', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NEFCompression.php b/lib/PHPExiftool/Driver/Tag/Nikon/NEFCompression.php deleted file mode 100644 index 6f16ff236..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NEFCompression.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NEFCompression extends AbstractTag -{ - - protected $Id = 147; - - protected $Name = 'NEFCompression'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'NEF Compression'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Lossy (type 1)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Uncompressed', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Lossless', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Lossy (type 2)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Uncompressed (reduced to 12 bit)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Small', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NEFLinearizationTable.php b/lib/PHPExiftool/Driver/Tag/Nikon/NEFLinearizationTable.php deleted file mode 100644 index 31b16b341..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NEFLinearizationTable.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NEFLinearizationTable extends AbstractTag -{ - - protected $Id = 150; - - protected $Name = 'NEFLinearizationTable'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'NEF Linearization Table'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NRWData.php b/lib/PHPExiftool/Driver/Tag/Nikon/NRWData.php deleted file mode 100644 index aaf29c893..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NRWData.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NRWData extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'NRWData'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'NRW Data'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x000d.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x000d.php deleted file mode 100644 index be3478197..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x000d.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonAVITags0x000d extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'Nikon_AVITags_0x000d'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Nikon AVI Tags 0x000d'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x000e.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x000e.php deleted file mode 100644 index 343f9b66b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x000e.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonAVITags0x000e extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Nikon_AVITags_0x000e'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Nikon AVI Tags 0x000e'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0015.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0015.php deleted file mode 100644 index 352053bc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0015.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonAVITags0x0015 extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'Nikon_AVITags_0x0015'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Nikon AVI Tags 0x0015'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0017.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0017.php deleted file mode 100644 index 5b149389e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0017.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonAVITags0x0017 extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'Nikon_AVITags_0x0017'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Nikon AVI Tags 0x0017'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0019.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0019.php deleted file mode 100644 index e8cdd90e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x0019.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonAVITags0x0019 extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'Nikon_AVITags_0x0019'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Nikon AVI Tags 0x0019'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x001c.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x001c.php deleted file mode 100644 index 271f13bde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x001c.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonAVITags0x001c extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'Nikon_AVITags_0x001c'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Nikon AVI Tags 0x001c'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x801a.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x801a.php deleted file mode 100644 index 20d7aae0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonAVITags0x801a.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonAVITags0x801a extends AbstractTag -{ - - protected $Id = 32794; - - protected $Name = 'Nikon_AVITags_0x801a'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Nikon AVI Tags 0x801a'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureData.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureData.php deleted file mode 100644 index 8af8d6703..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonCaptureData extends AbstractTag -{ - - protected $Id = 3585; - - protected $Name = 'NikonCaptureData'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Nikon Capture Data'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureEditVersions.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureEditVersions.php deleted file mode 100644 index 06effb150..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureEditVersions.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonCaptureEditVersions extends AbstractTag -{ - - protected $Id = 3603; - - protected $Name = 'NikonCaptureEditVersions'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Nikon Capture Edit Versions'; - - protected $flag_Binary = false; - - protected $flag_Unsafe = 'mixed'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureOutput.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureOutput.php deleted file mode 100644 index a266304a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureOutput.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonCaptureOutput extends AbstractTag -{ - - protected $Id = 3614; - - protected $Name = 'NikonCaptureOutput'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Nikon Capture Output'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureVersion.php deleted file mode 100644 index 6e1f8c5ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonCaptureVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonCaptureVersion extends AbstractTag -{ - - protected $Id = 3593; - - protected $Name = 'NikonCaptureVersion'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Nikon Capture Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonICCProfile.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonICCProfile.php deleted file mode 100644 index 326bc1bf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonICCProfile.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonICCProfile extends AbstractTag -{ - - protected $Id = 3613; - - protected $Name = 'NikonICCProfile'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Nikon ICC Profile'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NikonImageSize.php b/lib/PHPExiftool/Driver/Tag/Nikon/NikonImageSize.php deleted file mode 100644 index b6d1d5427..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NikonImageSize.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NikonImageSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NikonImageSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Nikon Image Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Large', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'Medium', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'Small', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Large (10.0 M)', - ), - 4 => array( - 'Id' => 16, - 'Label' => 'Medium (5.6 M)', - ), - 5 => array( - 'Id' => 32, - 'Label' => 'Small (2.5 M)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Nikon/NoiseReduction.php deleted file mode 100644 index 0f00a4501..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/NoiseReduction.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Orientation.php b/lib/PHPExiftool/Driver/Tag/Nikon/Orientation.php deleted file mode 100644 index d7350e185..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Orientation.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Orientation'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mirror horizontal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Mirror vertical', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Mirror horizontal and rotate 270 CW', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Rotate 90 CW', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Mirror horizontal and rotate 90 CW', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/OutputImageHeight.php b/lib/PHPExiftool/Driver/Tag/Nikon/OutputImageHeight.php deleted file mode 100644 index 6b18505b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/OutputImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputImageHeight extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'OutputImageHeight'; - - protected $FullName = 'Nikon::CaptureOutput'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Output Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/OutputImageWidth.php b/lib/PHPExiftool/Driver/Tag/Nikon/OutputImageWidth.php deleted file mode 100644 index 33da643f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/OutputImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputImageWidth extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'OutputImageWidth'; - - protected $FullName = 'Nikon::CaptureOutput'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Output Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/OutputResolution.php b/lib/PHPExiftool/Driver/Tag/Nikon/OutputResolution.php deleted file mode 100644 index 27ed2adde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/OutputResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutputResolution extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'OutputResolution'; - - protected $FullName = 'Nikon::CaptureOutput'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Output Resolution'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/POILevel.php b/lib/PHPExiftool/Driver/Tag/Nikon/POILevel.php deleted file mode 100644 index 6bd97002a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/POILevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class POILevel extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'POILevel'; - - protected $FullName = 'Nikon::LocationInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'POI Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PhaseDetectAF.php b/lib/PHPExiftool/Driver/Tag/Nikon/PhaseDetectAF.php deleted file mode 100644 index 6e5a24145..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PhaseDetectAF.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseDetectAF extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PhaseDetectAF'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Phase Detect AF'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (51-point)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (11-point)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'On (39-point)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'On (hybrid)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'On (105-point)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlAdjust.php b/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlAdjust.php deleted file mode 100644 index 378bddadc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlAdjust.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlAdjust extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'PictureControlAdjust'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Picture Control Adjust'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Default Settings', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Quick Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Full Control', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlBase.php b/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlBase.php deleted file mode 100644 index 111664a4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlBase.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlBase extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'PictureControlBase'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Picture Control Base'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlData.php b/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlData.php deleted file mode 100644 index de9ad92fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlData extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PictureControlData'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Picture Control Data'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlName.php b/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlName.php deleted file mode 100644 index a41d938c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlName extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PictureControlName'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Picture Control Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlQuickAdjust.php b/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlQuickAdjust.php deleted file mode 100644 index 4b615b579..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlQuickAdjust.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlQuickAdjust extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'PictureControlQuickAdjust'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Picture Control Quick Adjust'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlVersion.php deleted file mode 100644 index f8c50aaea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PictureControlVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PictureControlVersion'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Picture Control Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PowerUpTime.php b/lib/PHPExiftool/Driver/Tag/Nikon/PowerUpTime.php deleted file mode 100644 index 2a0f16083..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PowerUpTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PowerUpTime extends AbstractTag -{ - - protected $Id = 182; - - protected $Name = 'PowerUpTime'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Power Up Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PreFlashReturnStrength.php b/lib/PHPExiftool/Driver/Tag/Nikon/PreFlashReturnStrength.php deleted file mode 100644 index 3332fd2b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PreFlashReturnStrength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreFlashReturnStrength extends AbstractTag -{ - - protected $Id = 650; - - protected $Name = 'PreFlashReturnStrength'; - - protected $FullName = 'Nikon::ShotInfoD3b'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Pre Flash Return Strength'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PreviewIFDOffset.php b/lib/PHPExiftool/Driver/Tag/Nikon/PreviewIFDOffset.php deleted file mode 100644 index ebd4aaeca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PreviewIFDOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewIFDOffset extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewIFD_Offset'; - - protected $FullName = 'Nikon::CaptureOffsets'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview IFD Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Nikon/PreviewImage.php deleted file mode 100644 index 51fcf500f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PreviewImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/PrimaryAFPoint.php b/lib/PHPExiftool/Driver/Tag/Nikon/PrimaryAFPoint.php deleted file mode 100644 index 854d93d49..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/PrimaryAFPoint.php +++ /dev/null @@ -1,1018 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryAFPoint extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'PrimaryAFPoint'; - - protected $FullName = 'Nikon::AFInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Primary AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'C6 (Center)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'B6', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'A5', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'D6', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'E5', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'C7', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'B7', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'A6', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'D7', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'E6', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'C5', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'B5', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'A4', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'D5', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'E4', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'C8', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'B8', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'A7', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'D8', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'E7', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'C9', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'B9', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'A8', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'D9', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'E8', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'C10', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'B10', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'A9', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'D10', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'E9', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'C11', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'B11', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'D11', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'C4', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'B4', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'A3', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'D4', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'E3', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'C3', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'B3', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'A2', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'D3', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'E2', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'C2', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'B2', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'A1', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'D2', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'E1', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'C1', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'B1', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'D1', - ), - 52 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 53 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 54 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 55 => array( - 'Id' => 3, - 'Label' => 'Bottom', - ), - 56 => array( - 'Id' => 4, - 'Label' => 'Mid-left', - ), - 57 => array( - 'Id' => 5, - 'Label' => 'Upper-left', - ), - 58 => array( - 'Id' => 6, - 'Label' => 'Lower-left', - ), - 59 => array( - 'Id' => 7, - 'Label' => 'Far Left', - ), - 60 => array( - 'Id' => 8, - 'Label' => 'Mid-right', - ), - 61 => array( - 'Id' => 9, - 'Label' => 'Upper-right', - ), - 62 => array( - 'Id' => 10, - 'Label' => 'Lower-right', - ), - 63 => array( - 'Id' => 11, - 'Label' => 'Far Right', - ), - 64 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 65 => array( - 'Id' => 1, - 'Label' => 'C6 (Center)', - ), - 66 => array( - 'Id' => 2, - 'Label' => 'B6', - ), - 67 => array( - 'Id' => 3, - 'Label' => 'A2', - ), - 68 => array( - 'Id' => 4, - 'Label' => 'D6', - ), - 69 => array( - 'Id' => 5, - 'Label' => 'E2', - ), - 70 => array( - 'Id' => 6, - 'Label' => 'C7', - ), - 71 => array( - 'Id' => 7, - 'Label' => 'B7', - ), - 72 => array( - 'Id' => 8, - 'Label' => 'A3', - ), - 73 => array( - 'Id' => 9, - 'Label' => 'D7', - ), - 74 => array( - 'Id' => 10, - 'Label' => 'E3', - ), - 75 => array( - 'Id' => 11, - 'Label' => 'C5', - ), - 76 => array( - 'Id' => 12, - 'Label' => 'B5', - ), - 77 => array( - 'Id' => 13, - 'Label' => 'A1', - ), - 78 => array( - 'Id' => 14, - 'Label' => 'D5', - ), - 79 => array( - 'Id' => 15, - 'Label' => 'E1', - ), - 80 => array( - 'Id' => 16, - 'Label' => 'C8', - ), - 81 => array( - 'Id' => 17, - 'Label' => 'B8', - ), - 82 => array( - 'Id' => 18, - 'Label' => 'D8', - ), - 83 => array( - 'Id' => 19, - 'Label' => 'C9', - ), - 84 => array( - 'Id' => 20, - 'Label' => 'B9', - ), - 85 => array( - 'Id' => 21, - 'Label' => 'D9', - ), - 86 => array( - 'Id' => 22, - 'Label' => 'C10', - ), - 87 => array( - 'Id' => 23, - 'Label' => 'B10', - ), - 88 => array( - 'Id' => 24, - 'Label' => 'D10', - ), - 89 => array( - 'Id' => 25, - 'Label' => 'C11', - ), - 90 => array( - 'Id' => 26, - 'Label' => 'B11', - ), - 91 => array( - 'Id' => 27, - 'Label' => 'D11', - ), - 92 => array( - 'Id' => 28, - 'Label' => 'C4', - ), - 93 => array( - 'Id' => 29, - 'Label' => 'B4', - ), - 94 => array( - 'Id' => 30, - 'Label' => 'D4', - ), - 95 => array( - 'Id' => 31, - 'Label' => 'C3', - ), - 96 => array( - 'Id' => 32, - 'Label' => 'B3', - ), - 97 => array( - 'Id' => 33, - 'Label' => 'D3', - ), - 98 => array( - 'Id' => 34, - 'Label' => 'C2', - ), - 99 => array( - 'Id' => 35, - 'Label' => 'B2', - ), - 100 => array( - 'Id' => 36, - 'Label' => 'D2', - ), - 101 => array( - 'Id' => 37, - 'Label' => 'C1', - ), - 102 => array( - 'Id' => 38, - 'Label' => 'B1', - ), - 103 => array( - 'Id' => 39, - 'Label' => 'D1', - ), - 104 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 105 => array( - 'Id' => 1, - 'Label' => 'E8 (Center)', - ), - 106 => array( - 'Id' => 2, - 'Label' => 'D8', - ), - 107 => array( - 'Id' => 3, - 'Label' => 'C8', - ), - 108 => array( - 'Id' => 4, - 'Label' => 'B8', - ), - 109 => array( - 'Id' => 5, - 'Label' => 'A8', - ), - 110 => array( - 'Id' => 6, - 'Label' => 'F8', - ), - 111 => array( - 'Id' => 7, - 'Label' => 'G8', - ), - 112 => array( - 'Id' => 8, - 'Label' => 'H8', - ), - 113 => array( - 'Id' => 9, - 'Label' => 'I8', - ), - 114 => array( - 'Id' => 10, - 'Label' => 'E9', - ), - 115 => array( - 'Id' => 11, - 'Label' => 'D9', - ), - 116 => array( - 'Id' => 12, - 'Label' => 'C9', - ), - 117 => array( - 'Id' => 13, - 'Label' => 'B9', - ), - 118 => array( - 'Id' => 14, - 'Label' => 'A9', - ), - 119 => array( - 'Id' => 15, - 'Label' => 'F9', - ), - 120 => array( - 'Id' => 16, - 'Label' => 'G9', - ), - 121 => array( - 'Id' => 17, - 'Label' => 'H9', - ), - 122 => array( - 'Id' => 18, - 'Label' => 'I9', - ), - 123 => array( - 'Id' => 19, - 'Label' => 'E7', - ), - 124 => array( - 'Id' => 20, - 'Label' => 'D7', - ), - 125 => array( - 'Id' => 21, - 'Label' => 'C7', - ), - 126 => array( - 'Id' => 22, - 'Label' => 'B7', - ), - 127 => array( - 'Id' => 23, - 'Label' => 'A7', - ), - 128 => array( - 'Id' => 24, - 'Label' => 'F7', - ), - 129 => array( - 'Id' => 25, - 'Label' => 'G7', - ), - 130 => array( - 'Id' => 26, - 'Label' => 'H7', - ), - 131 => array( - 'Id' => 27, - 'Label' => 'I7', - ), - 132 => array( - 'Id' => 28, - 'Label' => 'E10', - ), - 133 => array( - 'Id' => 29, - 'Label' => 'D10', - ), - 134 => array( - 'Id' => 30, - 'Label' => 'C10', - ), - 135 => array( - 'Id' => 31, - 'Label' => 'B10', - ), - 136 => array( - 'Id' => 32, - 'Label' => 'A10', - ), - 137 => array( - 'Id' => 33, - 'Label' => 'F10', - ), - 138 => array( - 'Id' => 34, - 'Label' => 'G10', - ), - 139 => array( - 'Id' => 35, - 'Label' => 'H10', - ), - 140 => array( - 'Id' => 36, - 'Label' => 'I10', - ), - 141 => array( - 'Id' => 37, - 'Label' => 'E11', - ), - 142 => array( - 'Id' => 38, - 'Label' => 'D11', - ), - 143 => array( - 'Id' => 39, - 'Label' => 'C11', - ), - 144 => array( - 'Id' => 40, - 'Label' => 'B11', - ), - 145 => array( - 'Id' => 41, - 'Label' => 'A11', - ), - 146 => array( - 'Id' => 42, - 'Label' => 'F11', - ), - 147 => array( - 'Id' => 43, - 'Label' => 'G11', - ), - 148 => array( - 'Id' => 44, - 'Label' => 'H11', - ), - 149 => array( - 'Id' => 45, - 'Label' => 'I11', - ), - 150 => array( - 'Id' => 46, - 'Label' => 'E12', - ), - 151 => array( - 'Id' => 47, - 'Label' => 'D12', - ), - 152 => array( - 'Id' => 48, - 'Label' => 'C12', - ), - 153 => array( - 'Id' => 49, - 'Label' => 'B12', - ), - 154 => array( - 'Id' => 50, - 'Label' => 'A12', - ), - 155 => array( - 'Id' => 51, - 'Label' => 'F12', - ), - 156 => array( - 'Id' => 52, - 'Label' => 'G12', - ), - 157 => array( - 'Id' => 53, - 'Label' => 'H12', - ), - 158 => array( - 'Id' => 54, - 'Label' => 'I12', - ), - 159 => array( - 'Id' => 55, - 'Label' => 'E13', - ), - 160 => array( - 'Id' => 56, - 'Label' => 'D13', - ), - 161 => array( - 'Id' => 57, - 'Label' => 'C13', - ), - 162 => array( - 'Id' => 58, - 'Label' => 'B13', - ), - 163 => array( - 'Id' => 59, - 'Label' => 'A13', - ), - 164 => array( - 'Id' => 60, - 'Label' => 'F13', - ), - 165 => array( - 'Id' => 61, - 'Label' => 'G13', - ), - 166 => array( - 'Id' => 62, - 'Label' => 'H13', - ), - 167 => array( - 'Id' => 63, - 'Label' => 'I13', - ), - 168 => array( - 'Id' => 64, - 'Label' => 'E14', - ), - 169 => array( - 'Id' => 65, - 'Label' => 'D14', - ), - 170 => array( - 'Id' => 66, - 'Label' => 'C14', - ), - 171 => array( - 'Id' => 67, - 'Label' => 'B14', - ), - 172 => array( - 'Id' => 68, - 'Label' => 'A14', - ), - 173 => array( - 'Id' => 69, - 'Label' => 'F14', - ), - 174 => array( - 'Id' => 70, - 'Label' => 'G14', - ), - 175 => array( - 'Id' => 71, - 'Label' => 'H14', - ), - 176 => array( - 'Id' => 72, - 'Label' => 'I14', - ), - 177 => array( - 'Id' => 73, - 'Label' => 'E15', - ), - 178 => array( - 'Id' => 74, - 'Label' => 'D15', - ), - 179 => array( - 'Id' => 75, - 'Label' => 'C15', - ), - 180 => array( - 'Id' => 76, - 'Label' => 'B15', - ), - 181 => array( - 'Id' => 77, - 'Label' => 'A15', - ), - 182 => array( - 'Id' => 78, - 'Label' => 'F15', - ), - 183 => array( - 'Id' => 79, - 'Label' => 'G15', - ), - 184 => array( - 'Id' => 80, - 'Label' => 'H15', - ), - 185 => array( - 'Id' => 81, - 'Label' => 'I15', - ), - 186 => array( - 'Id' => 82, - 'Label' => 'E6', - ), - 187 => array( - 'Id' => 83, - 'Label' => 'D6', - ), - 188 => array( - 'Id' => 84, - 'Label' => 'C6', - ), - 189 => array( - 'Id' => 85, - 'Label' => 'B6', - ), - 190 => array( - 'Id' => 86, - 'Label' => 'A6', - ), - 191 => array( - 'Id' => 87, - 'Label' => 'F6', - ), - 192 => array( - 'Id' => 88, - 'Label' => 'G6', - ), - 193 => array( - 'Id' => 89, - 'Label' => 'H6', - ), - 194 => array( - 'Id' => 90, - 'Label' => 'I6', - ), - 195 => array( - 'Id' => 91, - 'Label' => 'E5', - ), - 196 => array( - 'Id' => 92, - 'Label' => 'D5', - ), - 197 => array( - 'Id' => 93, - 'Label' => 'C5', - ), - 198 => array( - 'Id' => 94, - 'Label' => 'B5', - ), - 199 => array( - 'Id' => 95, - 'Label' => 'A5', - ), - 200 => array( - 'Id' => 96, - 'Label' => 'F5', - ), - 201 => array( - 'Id' => 97, - 'Label' => 'G5', - ), - 202 => array( - 'Id' => 98, - 'Label' => 'H5', - ), - 203 => array( - 'Id' => 99, - 'Label' => 'I5', - ), - 204 => array( - 'Id' => 100, - 'Label' => 'E4', - ), - 205 => array( - 'Id' => 101, - 'Label' => 'D4', - ), - 206 => array( - 'Id' => 102, - 'Label' => 'C4', - ), - 207 => array( - 'Id' => 103, - 'Label' => 'B4', - ), - 208 => array( - 'Id' => 104, - 'Label' => 'A4', - ), - 209 => array( - 'Id' => 105, - 'Label' => 'F4', - ), - 210 => array( - 'Id' => 106, - 'Label' => 'G4', - ), - 211 => array( - 'Id' => 107, - 'Label' => 'H4', - ), - 212 => array( - 'Id' => 108, - 'Label' => 'I4', - ), - 213 => array( - 'Id' => 109, - 'Label' => 'E3', - ), - 214 => array( - 'Id' => 110, - 'Label' => 'D3', - ), - 215 => array( - 'Id' => 111, - 'Label' => 'C3', - ), - 216 => array( - 'Id' => 112, - 'Label' => 'B3', - ), - 217 => array( - 'Id' => 113, - 'Label' => 'A3', - ), - 218 => array( - 'Id' => 114, - 'Label' => 'F3', - ), - 219 => array( - 'Id' => 115, - 'Label' => 'G3', - ), - 220 => array( - 'Id' => 116, - 'Label' => 'H3', - ), - 221 => array( - 'Id' => 117, - 'Label' => 'I3', - ), - 222 => array( - 'Id' => 118, - 'Label' => 'E2', - ), - 223 => array( - 'Id' => 119, - 'Label' => 'D2', - ), - 224 => array( - 'Id' => 120, - 'Label' => 'C2', - ), - 225 => array( - 'Id' => 121, - 'Label' => 'B2', - ), - 226 => array( - 'Id' => 122, - 'Label' => 'A2', - ), - 227 => array( - 'Id' => 123, - 'Label' => 'F2', - ), - 228 => array( - 'Id' => 124, - 'Label' => 'G2', - ), - 229 => array( - 'Id' => 125, - 'Label' => 'H2', - ), - 230 => array( - 'Id' => 126, - 'Label' => 'I2', - ), - 231 => array( - 'Id' => 127, - 'Label' => 'E1', - ), - 232 => array( - 'Id' => 128, - 'Label' => 'D1', - ), - 233 => array( - 'Id' => 129, - 'Label' => 'C1', - ), - 234 => array( - 'Id' => 130, - 'Label' => 'B1', - ), - 235 => array( - 'Id' => 131, - 'Label' => 'A1', - ), - 236 => array( - 'Id' => 132, - 'Label' => 'F1', - ), - 237 => array( - 'Id' => 133, - 'Label' => 'G1', - ), - 238 => array( - 'Id' => 134, - 'Label' => 'H1', - ), - 239 => array( - 'Id' => 135, - 'Label' => 'I1', - ), - 240 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 241 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ProgramShift.php b/lib/PHPExiftool/Driver/Tag/Nikon/ProgramShift.php deleted file mode 100644 index 3af9c5bfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ProgramShift.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramShift extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'ProgramShift'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Program Shift'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Quality.php b/lib/PHPExiftool/Driver/Tag/Nikon/Quality.php deleted file mode 100644 index 98a8eef46..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Quality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Quality'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RawImageCenter.php b/lib/PHPExiftool/Driver/Tag/Nikon/RawImageCenter.php deleted file mode 100644 index d7f8c31ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RawImageCenter.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageCenter extends AbstractTag -{ - - protected $Id = 153; - - protected $Name = 'RawImageCenter'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Image Center'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RedBalance.php b/lib/PHPExiftool/Driver/Tag/Nikon/RedBalance.php deleted file mode 100644 index 53c645472..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RedBalance.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedBalance extends AbstractTag -{ - - protected $Id = 624; - - protected $Name = 'RedBalance'; - - protected $FullName = 'Nikon::ColorBalanceA'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Red Balance'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCount.php b/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCount.php deleted file mode 100644 index bb088af7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RepeatingFlashCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCountBuiltIn.php b/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCountBuiltIn.php deleted file mode 100644 index 3d84135c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCountBuiltIn.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashCountBuiltIn extends AbstractTag -{ - - protected $Id = 1243; - - protected $Name = 'RepeatingFlashCountBuilt-in'; - - protected $FullName = 'Nikon::ShotInfoD800'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Count Built-in'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCountExternal.php b/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCountExternal.php deleted file mode 100644 index 963f39829..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashCountExternal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashCountExternal extends AbstractTag -{ - - protected $Id = 1219; - - protected $Name = 'RepeatingFlashCountExternal'; - - protected $FullName = 'Nikon::ShotInfoD800'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Count External'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashOutputExternal.php b/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashOutputExternal.php deleted file mode 100644 index 8f1c6ef03..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashOutputExternal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashOutputExternal extends AbstractTag -{ - - protected $Id = 1216; - - protected $Name = 'RepeatingFlashOutputExternal'; - - protected $FullName = 'Nikon::ShotInfoD800'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Output External'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRate.php b/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRate.php deleted file mode 100644 index 1ae2650bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RepeatingFlashRate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Rate'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRateBuiltIn.php b/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRateBuiltIn.php deleted file mode 100644 index 2965fccdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRateBuiltIn.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashRateBuiltIn extends AbstractTag -{ - - protected $Id = 1242; - - protected $Name = 'RepeatingFlashRateBuilt-in'; - - protected $FullName = 'Nikon::ShotInfoD800'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Rate Built-in'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRateExternal.php b/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRateExternal.php deleted file mode 100644 index ed0bd676b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RepeatingFlashRateExternal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashRateExternal extends AbstractTag -{ - - protected $Id = 1218; - - protected $Name = 'RepeatingFlashRateExternal'; - - protected $FullName = 'Nikon::ShotInfoD800'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Rate External'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/Nikon/ResolutionUnit.php deleted file mode 100644 index 9b60ce833..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ResolutionUnit.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResolutionUnit extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'ResolutionUnit'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Resolution Unit'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'inches', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/RetouchHistory.php b/lib/PHPExiftool/Driver/Tag/Nikon/RetouchHistory.php deleted file mode 100644 index 9aac13bff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/RetouchHistory.php +++ /dev/null @@ -1,174 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchHistory extends AbstractTag -{ - - protected $Id = 158; - - protected $Name = 'RetouchHistory'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Retouch History'; - - protected $flag_Permanent = true; - - protected $MaxLength = 10; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'B & W', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sepia', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Trim', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Small Picture', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'D-Lighting', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Red Eye', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Cyanotype', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Sky Light', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Warm Tone', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Color Custom', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Image Overlay', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Red Intensifier', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Green Intensifier', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Blue Intensifier', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Cross Screen', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Quick Retouch', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'NEF Processing', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Distortion Control', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Fisheye', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Straighten', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Perspective Control', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Color Outline', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Soft Filter', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Resize', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Miniature Effect', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Skin Softening', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Selected Frame', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Color Sketch', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Selective Color', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Drawing', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Rotation.php b/lib/PHPExiftool/Driver/Tag/Nikon/Rotation.php deleted file mode 100644 index c7f32c0cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Rotation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = '590.1'; - - protected $Name = 'Rotation'; - - protected $FullName = 'Nikon::ShotInfoD80'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotated 270 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotated 90 CW', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotated 180', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Saturation.php b/lib/PHPExiftool/Driver/Tag/Nikon/Saturation.php deleted file mode 100644 index 5139dc6e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Saturation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/SceneAssist.php b/lib/PHPExiftool/Driver/Tag/Nikon/SceneAssist.php deleted file mode 100644 index 2739b76f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/SceneAssist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneAssist extends AbstractTag -{ - - protected $Id = 156; - - protected $Name = 'SceneAssist'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Scene Assist'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/SceneMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/SceneMode.php deleted file mode 100644 index 03eeda1ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/SceneMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneMode extends AbstractTag -{ - - protected $Id = 143; - - protected $Name = 'SceneMode'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Scene Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/SensorPixelSize.php b/lib/PHPExiftool/Driver/Tag/Nikon/SensorPixelSize.php deleted file mode 100644 index 89087df50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/SensorPixelSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorPixelSize extends AbstractTag -{ - - protected $Id = 154; - - protected $Name = 'SensorPixelSize'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Sensor Pixel Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/SequenceNumber.php b/lib/PHPExiftool/Driver/Tag/Nikon/SequenceNumber.php deleted file mode 100644 index 0b3eb21f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/SequenceNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumber extends AbstractTag -{ - - protected $Id = 1308; - - protected $Name = 'SequenceNumber'; - - protected $FullName = 'Nikon::ShotInfoD800'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Sequence Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Nikon/SerialNumber.php deleted file mode 100644 index 7649bfb0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Nikon/Sharpness.php deleted file mode 100644 index 0bd65abce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Sharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ShootingMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/ShootingMode.php deleted file mode 100644 index 4b994a8c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ShootingMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingMode extends AbstractTag -{ - - protected $Id = 137; - - protected $Name = 'ShootingMode'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Shooting Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ShotInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/ShotInfoVersion.php deleted file mode 100644 index 2075a31a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ShotInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ShotInfoVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shot Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ShutterCount.php b/lib/PHPExiftool/Driver/Tag/Nikon/ShutterCount.php deleted file mode 100644 index 7c6949692..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ShutterCount.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShutterCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Shutter Count'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Software.php b/lib/PHPExiftool/Driver/Tag/Nikon/Software.php deleted file mode 100644 index 2827320f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Software.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Software'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Software'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/SubIFDOffset.php b/lib/PHPExiftool/Driver/Tag/Nikon/SubIFDOffset.php deleted file mode 100644 index b31ad4a50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/SubIFDOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubIFDOffset extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'SubIFD_Offset'; - - protected $FullName = 'Nikon::CaptureOffsets'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub IFD Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/TextEncoding.php b/lib/PHPExiftool/Driver/Tag/Nikon/TextEncoding.php deleted file mode 100644 index 5b132885b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/TextEncoding.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextEncoding extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'TextEncoding'; - - protected $FullName = 'Nikon::LocationInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Location'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Text Encoding'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'UTF8', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'UTF16', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Nikon/ThumbnailImage.php deleted file mode 100644 index 03f3cfadb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ThumbnailImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/Timezone.php b/lib/PHPExiftool/Driver/Tag/Nikon/Timezone.php deleted file mode 100644 index a5d9dd223..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/Timezone.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Timezone extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Timezone'; - - protected $FullName = 'Nikon::WorldTime'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Time'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Timezone'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ToneComp.php b/lib/PHPExiftool/Driver/Tag/Nikon/ToneComp.php deleted file mode 100644 index 87abfaa5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ToneComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneComp extends AbstractTag -{ - - protected $Id = 129; - - protected $Name = 'ToneComp'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ToningEffect.php b/lib/PHPExiftool/Driver/Tag/Nikon/ToningEffect.php deleted file mode 100644 index 0300271d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ToningEffect.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffect extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ToningEffect'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Toning Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 128 => array( - 'Id' => 128, - 'Label' => 'B&W', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Sepia', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Cyanotype', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Red', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Yellow', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'Green', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Blue-green', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Blue', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Purple-blue', - ), - 137 => array( - 'Id' => 137, - 'Label' => 'Red-purple', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/ToningSaturation.php b/lib/PHPExiftool/Driver/Tag/Nikon/ToningSaturation.php deleted file mode 100644 index 19ab3880e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/ToningSaturation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningSaturation extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'ToningSaturation'; - - protected $FullName = 'Nikon::PictureControl'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Toning Saturation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/UnknownInfo2Version.php b/lib/PHPExiftool/Driver/Tag/Nikon/UnknownInfo2Version.php deleted file mode 100644 index 8fe41101d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/UnknownInfo2Version.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownInfo2Version extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'UnknownInfo2Version'; - - protected $FullName = 'Nikon::UnknownInfo2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Unknown Info 2 Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/UnknownInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/UnknownInfoVersion.php deleted file mode 100644 index d41073b6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/UnknownInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'UnknownInfoVersion'; - - protected $FullName = 'Nikon::UnknownInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Unknown Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/VR0x66.php b/lib/PHPExiftool/Driver/Tag/Nikon/VR0x66.php deleted file mode 100644 index bba7a93ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/VR0x66.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VR0x66 extends AbstractTag -{ - - protected $Id = 102; - - protected $Name = 'VR_0x66'; - - protected $FullName = 'Nikon::ShotInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'VR 0x66'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (normal)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (active)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/VRInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Nikon/VRInfoVersion.php deleted file mode 100644 index c3879497a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/VRInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VRInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'VRInfoVersion'; - - protected $FullName = 'Nikon::VRInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'VR Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/VRMode.php b/lib/PHPExiftool/Driver/Tag/Nikon/VRMode.php deleted file mode 100644 index 56c1ffc63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/VRMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VRMode extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'VRMode'; - - protected $FullName = 'Nikon::VRInfo'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'VR Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Active', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/VariProgram.php b/lib/PHPExiftool/Driver/Tag/Nikon/VariProgram.php deleted file mode 100644 index 7c24170bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/VariProgram.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VariProgram extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'VariProgram'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Vari Program'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/VibrationReduction.php b/lib/PHPExiftool/Driver/Tag/Nikon/VibrationReduction.php deleted file mode 100644 index 5d90836d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/VibrationReduction.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VibrationReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'VibrationReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Vibration Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (1)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (2)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'On (3)', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 7 => array( - 'Id' => 12, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 15, - 'Label' => 'On', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 10 => array( - 'Id' => 8, - 'Label' => 'On', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 12 => array( - 'Id' => 24, - 'Label' => 'On', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 15 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/VignetteControl.php b/lib/PHPExiftool/Driver/Tag/Nikon/VignetteControl.php deleted file mode 100644 index f77034122..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/VignetteControl.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignetteControl extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'VignetteControl'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Vignette Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Normal', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/WBGRBGLevels.php b/lib/PHPExiftool/Driver/Tag/Nikon/WBGRBGLevels.php deleted file mode 100644 index f8715e57c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/WBGRBGLevels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRBGLevels extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WB_GRBGLevels'; - - protected $FullName = 'Nikon::ColorBalance4'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB GRBG Levels'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/WBRBGGLevels.php b/lib/PHPExiftool/Driver/Tag/Nikon/WBRBGGLevels.php deleted file mode 100644 index 66b50e277..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/WBRBGGLevels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBGGLevels extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WB_RBGGLevels'; - - protected $FullName = 'Nikon::ColorBalance1'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RBGG Levels'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/WBRBLevels.php b/lib/PHPExiftool/Driver/Tag/Nikon/WBRBLevels.php deleted file mode 100644 index d9cc7724a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/WBRBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'WB_RBLevels'; - - protected $FullName = 'Nikon::Main'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/WBRGBGLevels.php b/lib/PHPExiftool/Driver/Tag/Nikon/WBRGBGLevels.php deleted file mode 100644 index 2039d643b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/WBRGBGLevels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBGLevels extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WB_RGBGLevels'; - - protected $FullName = 'Nikon::ColorBalance3'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGBG Levels'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/WBRGGBLevels.php b/lib/PHPExiftool/Driver/Tag/Nikon/WBRGGBLevels.php deleted file mode 100644 index 690180f34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/WBRGGBLevels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevels extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WB_RGGBLevels'; - - protected $FullName = 'Nikon::ColorBalance2'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Nikon/WhiteBalance.php deleted file mode 100644 index c31aece34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/WhiteBalance.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Shade', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fluorescent', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/WhiteBalanceFineTune.php b/lib/PHPExiftool/Driver/Tag/Nikon/WhiteBalanceFineTune.php deleted file mode 100644 index 4e920e1d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/WhiteBalanceFineTune.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceFineTune extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalanceFineTune'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'White Balance Fine Tune'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/XResolution.php b/lib/PHPExiftool/Driver/Tag/Nikon/XResolution.php deleted file mode 100644 index 885c4fd72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/XResolution.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'XResolution'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nikon/YResolution.php b/lib/PHPExiftool/Driver/Tag/Nikon/YResolution.php deleted file mode 100644 index 5ef53082b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nikon/YResolution.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nikon; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'YResolution'; - - protected $FullName = 'Nikon::AVITags'; - - protected $GroupName = 'Nikon'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nikon'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Y Resolution'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ActiveDLighting.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ActiveDLighting.php deleted file mode 100644 index bab59f1c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ActiveDLighting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveDLighting extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'ActiveD-Lighting'; - - protected $FullName = 'NikonCapture::Exposure'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Active D-Lighting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ActiveDLightingMode.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ActiveDLightingMode.php deleted file mode 100644 index 3d60afe2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ActiveDLightingMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveDLightingMode extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'ActiveD-LightingMode'; - - protected $FullName = 'NikonCapture::Exposure'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Active D-Lighting Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unchanged', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Normal', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Extra High', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Extra High 1', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Extra High 2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/AdvancedRaw.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/AdvancedRaw.php deleted file mode 100644 index ba7c65fdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/AdvancedRaw.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvancedRaw extends AbstractTag -{ - - protected $Id = 1990472195; - - protected $Name = 'AdvancedRaw'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Advanced Raw'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/AutoRedEye.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/AutoRedEye.php deleted file mode 100644 index 19c63a679..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/AutoRedEye.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoRedEye extends AbstractTag -{ - - protected $Id = 4264076367; - - protected $Name = 'AutoRedEye'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Red Eye'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/BrightnessAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/BrightnessAdj.php deleted file mode 100644 index 7bcdd0f91..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/BrightnessAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessAdj extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BrightnessAdj'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Brightness Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorAberrationControl.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorAberrationControl.php deleted file mode 100644 index f77235699..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorAberrationControl.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorAberrationControl extends AbstractTag -{ - - protected $Id = 210313803; - - protected $Name = 'ColorAberrationControl'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Aberration Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBalanceAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBalanceAdj.php deleted file mode 100644 index 6bca198fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBalanceAdj.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBalanceAdj extends AbstractTag -{ - - protected $Id = 1990472194; - - protected $Name = 'ColorBalanceAdj'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Balance Adj'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBoostLevel.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBoostLevel.php deleted file mode 100644 index afc8b4f0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBoostLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBoostLevel extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ColorBoostLevel'; - - protected $FullName = 'NikonCapture::ColorBoost'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Boost Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBoostType.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBoostType.php deleted file mode 100644 index 8763da997..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBoostType.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBoostType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ColorBoostType'; - - protected $FullName = 'NikonCapture::ColorBoost'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Boost Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Nature', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'People', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBooster.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBooster.php deleted file mode 100644 index 82627c6e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorBooster.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorBooster extends AbstractTag -{ - - protected $Id = 1594785059; - - protected $Name = 'ColorBooster'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Booster'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorMoireReduction.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorMoireReduction.php deleted file mode 100644 index eea0efb4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorMoireReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMoireReduction extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'ColorMoireReduction'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Moire Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorMoireReductionMode.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorMoireReductionMode.php deleted file mode 100644 index c9d8a7b1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorMoireReductionMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMoireReductionMode extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ColorMoireReductionMode'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Color Moire Reduction Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Medium', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorNoiseReductionIntensity.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorNoiseReductionIntensity.php deleted file mode 100644 index 1b6f7bbf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorNoiseReductionIntensity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorNoiseReductionIntensity extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'ColorNoiseReductionIntensity'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Noise Reduction Intensity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorNoiseReductionSharpness.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorNoiseReductionSharpness.php deleted file mode 100644 index 5accbf223..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ColorNoiseReductionSharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorNoiseReductionSharpness extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'ColorNoiseReductionSharpness'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Noise Reduction Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ContrastAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ContrastAdj.php deleted file mode 100644 index 8b85894d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ContrastAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastAdj extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'ContrastAdj'; - - protected $FullName = 'NikonCapture::PictureCtrl'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Contrast Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropBottom.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropBottom.php deleted file mode 100644 index 798b0bd4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropBottom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropBottom extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'CropBottom'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Bottom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropLeft.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropLeft.php deleted file mode 100644 index 043761cf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropLeft.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeft extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'CropLeft'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Left'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputHeight.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputHeight.php deleted file mode 100644 index af7a3f9bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropOutputHeight extends AbstractTag -{ - - protected $Id = 206; - - protected $Name = 'CropOutputHeight'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Output Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputHeightInches.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputHeightInches.php deleted file mode 100644 index 5fb8b9ce7..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputHeightInches.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropOutputHeightInches extends AbstractTag -{ - - protected $Id = 150; - - protected $Name = 'CropOutputHeightInches'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Output Height Inches'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputPixels.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputPixels.php deleted file mode 100644 index 918893c44..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputPixels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropOutputPixels extends AbstractTag -{ - - protected $Id = 214; - - protected $Name = 'CropOutputPixels'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Output Pixels'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputResolution.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputResolution.php deleted file mode 100644 index a2d0e9263..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropOutputResolution extends AbstractTag -{ - - protected $Id = 182; - - protected $Name = 'CropOutputResolution'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Output Resolution'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputScale.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputScale.php deleted file mode 100644 index 970e49330..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputScale.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropOutputScale extends AbstractTag -{ - - protected $Id = 190; - - protected $Name = 'CropOutputScale'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Output Scale'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputWidth.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputWidth.php deleted file mode 100644 index 0011d00ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropOutputWidth extends AbstractTag -{ - - protected $Id = 198; - - protected $Name = 'CropOutputWidth'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Output Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputWidthInches.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputWidthInches.php deleted file mode 100644 index 402ed0c5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropOutputWidthInches.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropOutputWidthInches extends AbstractTag -{ - - protected $Id = 142; - - protected $Name = 'CropOutputWidthInches'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Output Width Inches'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropRight.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropRight.php deleted file mode 100644 index ac33a59a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropRight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropRight extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'CropRight'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Right'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropScaledResolution.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropScaledResolution.php deleted file mode 100644 index 50dbb81f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropScaledResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropScaledResolution extends AbstractTag -{ - - protected $Id = 158; - - protected $Name = 'CropScaledResolution'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Scaled Resolution'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropSourceResolution.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropSourceResolution.php deleted file mode 100644 index 019990803..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropSourceResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropSourceResolution extends AbstractTag -{ - - protected $Id = 174; - - protected $Name = 'CropSourceResolution'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Source Resolution'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropTop.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/CropTop.php deleted file mode 100644 index 4ad2d824c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/CropTop.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTop extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'CropTop'; - - protected $FullName = 'NikonCapture::CropData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Crop Top'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Curves.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Curves.php deleted file mode 100644 index 643ddbf4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Curves.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curves extends AbstractTag -{ - - protected $Id = 1990472193; - - protected $Name = 'Curves'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Curves'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQ.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQ.php deleted file mode 100644 index 34cea1755..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQ.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHQ extends AbstractTag -{ - - protected $Id = 561376120; - - protected $Name = 'D-LightingHQ'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HQ'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQColorBoost.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQColorBoost.php deleted file mode 100644 index c07893dd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQColorBoost.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHQColorBoost extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'D-LightingHQColorBoost'; - - protected $FullName = 'NikonCapture::DLightingHQ'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HQ Color Boost'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQHighlight.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQHighlight.php deleted file mode 100644 index 6258ea98b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQHighlight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHQHighlight extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'D-LightingHQHighlight'; - - protected $FullName = 'NikonCapture::DLightingHQ'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HQ Highlight'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQSelected.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQSelected.php deleted file mode 100644 index 6c0271af1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQSelected.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHQSelected extends AbstractTag -{ - - protected $Id = 1785607862; - - protected $Name = 'D-LightingHQSelected'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HQ Selected'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQShadow.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQShadow.php deleted file mode 100644 index ac6336aba..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHQShadow.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHQShadow extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'D-LightingHQShadow'; - - protected $FullName = 'NikonCapture::DLightingHQ'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HQ Shadow'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHS.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHS.php deleted file mode 100644 index 0adf26444..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHS.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHS extends AbstractTag -{ - - protected $Id = 3461698730; - - protected $Name = 'D-LightingHS'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HS'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHSAdjustment.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHSAdjustment.php deleted file mode 100644 index 61646a3bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHSAdjustment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHSAdjustment extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'D-LightingHSAdjustment'; - - protected $FullName = 'NikonCapture::DLightingHS'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HS Adjustment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHSColorBoost.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHSColorBoost.php deleted file mode 100644 index 3ff93ad42..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/DLightingHSColorBoost.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DLightingHSColorBoost extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'D-LightingHSColorBoost'; - - protected $FullName = 'NikonCapture::DLightingHS'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'D-Lighting HS Color Boost'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/EdgeNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/EdgeNoiseReduction.php deleted file mode 100644 index 13dabdf9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/EdgeNoiseReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgeNoiseReduction extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'EdgeNoiseReduction'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Edge Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/EditVersionName.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/EditVersionName.php deleted file mode 100644 index 63e56bbb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/EditVersionName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditVersionName extends AbstractTag -{ - - protected $Id = 1024680516; - - protected $Name = 'EditVersionName'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Edit Version Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/EnhanceDarkTones.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/EnhanceDarkTones.php deleted file mode 100644 index bd1bc8de0..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/EnhanceDarkTones.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnhanceDarkTones extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'EnhanceDarkTones'; - - protected $FullName = 'NikonCapture::Brightness'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Enhance Dark Tones'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ExposureAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ExposureAdj.php deleted file mode 100644 index 944195a5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ExposureAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureAdj extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ExposureAdj'; - - protected $FullName = 'NikonCapture::Exposure'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Exposure Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ExposureAdj2.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ExposureAdj2.php deleted file mode 100644 index 809cb96b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ExposureAdj2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureAdj2 extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'ExposureAdj2'; - - protected $FullName = 'NikonCapture::Exposure'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Exposure Adj 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/FlipHorizontal.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/FlipHorizontal.php deleted file mode 100644 index 3b8734df4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/FlipHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlipHorizontal extends AbstractTag -{ - - protected $Id = 1990472198; - - protected $Name = 'FlipHorizontal'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flip Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/HighlightProtection.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/HighlightProtection.php deleted file mode 100644 index 55aa8ef99..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/HighlightProtection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighlightProtection extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'HighlightProtection'; - - protected $FullName = 'NikonCapture::HighlightData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Highlight Protection'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/HistogramXML.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/HistogramXML.php deleted file mode 100644 index b305f4618..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/HistogramXML.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistogramXML extends AbstractTag -{ - - protected $Id = 138025509; - - protected $Name = 'HistogramXML'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Histogram XML'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/HueAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/HueAdj.php deleted file mode 100644 index 0d1efeb2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/HueAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdj extends AbstractTag -{ - - protected $Id = 47; - - protected $Name = 'HueAdj'; - - protected $FullName = 'NikonCapture::PictureCtrl'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Hue Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ImageDustOff.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ImageDustOff.php deleted file mode 100644 index 15376fc00..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ImageDustOff.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDustOff extends AbstractTag -{ - - protected $Id = 4265884229; - - protected $Name = 'ImageDustOff'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Dust Off'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/LCHEditor.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/LCHEditor.php deleted file mode 100644 index fcefbed43..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/LCHEditor.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LCHEditor extends AbstractTag -{ - - protected $Id = 9103454; - - protected $Name = 'LCHEditor'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LCH Editor'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReduction.php deleted file mode 100644 index f58c379c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionIntensity.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionIntensity.php deleted file mode 100644 index 9481c1d48..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionIntensity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReductionIntensity extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'NoiseReductionIntensity'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction Intensity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionMethod.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionMethod.php deleted file mode 100644 index 93fb95d79..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionMethod.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReductionMethod extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'NoiseReductionMethod'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction Method'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Faster', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Better Quality', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Better Quality 2013', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionSharpness.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionSharpness.php deleted file mode 100644 index a8bdc204a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/NoiseReductionSharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReductionSharpness extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'NoiseReductionSharpness'; - - protected $FullName = 'NikonCapture::NoiseReduction'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectHistoryXML.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectHistoryXML.php deleted file mode 100644 index bff534ca1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectHistoryXML.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoEffectHistoryXML extends AbstractTag -{ - - protected $Id = 3915716657; - - protected $Name = 'PhotoEffectHistoryXML'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Photo Effect History XML'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffects.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffects.php deleted file mode 100644 index 4a5641955..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffects.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoEffects extends AbstractTag -{ - - protected $Id = 2875116126; - - protected $Name = 'PhotoEffects'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Photo Effects'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsBlue.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsBlue.php deleted file mode 100644 index 03d2bdcbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsBlue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoEffectsBlue extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'PhotoEffectsBlue'; - - protected $FullName = 'NikonCapture::PhotoEffects'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Photo Effects Blue'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsGreen.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsGreen.php deleted file mode 100644 index c06c2af38..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsGreen.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoEffectsGreen extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PhotoEffectsGreen'; - - protected $FullName = 'NikonCapture::PhotoEffects'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Photo Effects Green'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsRed.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsRed.php deleted file mode 100644 index 1b9e67dfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsRed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoEffectsRed extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PhotoEffectsRed'; - - protected $FullName = 'NikonCapture::PhotoEffects'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Photo Effects Red'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsType.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsType.php deleted file mode 100644 index d59cc797f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PhotoEffectsType.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoEffectsType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PhotoEffectsType'; - - protected $FullName = 'NikonCapture::PhotoEffects'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Photo Effects Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'B&W', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Sepia', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tinted', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControl.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControl.php deleted file mode 100644 index bab6e189d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControl.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControl extends AbstractTag -{ - - protected $Id = 3793173575; - - protected $Name = 'PictureControl'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Picture Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControlActive.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControlActive.php deleted file mode 100644 index eb8cf8d3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControlActive.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlActive extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PictureControlActive'; - - protected $FullName = 'NikonCapture::PictureCtrl'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Picture Control Active'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControlMode.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControlMode.php deleted file mode 100644 index ae6c709bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/PictureControlMode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureControlMode extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'PictureControlMode'; - - protected $FullName = 'NikonCapture::PictureCtrl'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Picture Control Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/QuickAdjust.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/QuickAdjust.php deleted file mode 100644 index b0e9ef7af..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/QuickAdjust.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuickAdjust extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'QuickAdjust'; - - protected $FullName = 'NikonCapture::PictureCtrl'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Quick Adjust'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/QuickFix.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/QuickFix.php deleted file mode 100644 index fcf8ff3ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/QuickFix.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuickFix extends AbstractTag -{ - - protected $Id = 1097044422; - - protected $Name = 'QuickFix'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Quick Fix'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/RedEyeCorrection.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/RedEyeCorrection.php deleted file mode 100644 index d992de5d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/RedEyeCorrection.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedEyeCorrection extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'RedEyeCorrection'; - - protected $FullName = 'NikonCapture::RedEyeData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Red Eye Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Automatic', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Click on Eyes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Rotation.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Rotation.php deleted file mode 100644 index 143864534..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Rotation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 1990472199; - - protected $Name = 'Rotation'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/SaturationAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/SaturationAdj.php deleted file mode 100644 index 024a640ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/SaturationAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdj extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationAdj'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/ShadowProtection.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/ShadowProtection.php deleted file mode 100644 index 5d6722d2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/ShadowProtection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadowProtection extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ShadowProtection'; - - protected $FullName = 'NikonCapture::HighlightData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Shadow Protection'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/SharpeningAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/SharpeningAdj.php deleted file mode 100644 index c512f9352..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/SharpeningAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpeningAdj extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'SharpeningAdj'; - - protected $FullName = 'NikonCapture::PictureCtrl'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sharpening Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/StraightenAngle.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/StraightenAngle.php deleted file mode 100644 index 0d5b89c5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/StraightenAngle.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StraightenAngle extends AbstractTag -{ - - protected $Id = 801145905; - - protected $Name = 'StraightenAngle'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Straighten Angle'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Color.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Color.php deleted file mode 100644 index a409dbf22..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Color.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp1Color extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'Unsharp1Color'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 1 Color'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Red', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Green', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Blue', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Yellow', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Magenta', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Cyan', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1HaloWidth.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1HaloWidth.php deleted file mode 100644 index a580de145..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1HaloWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp1HaloWidth extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'Unsharp1HaloWidth'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 1 Halo Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Intensity.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Intensity.php deleted file mode 100644 index 021755479..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Intensity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp1Intensity extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'Unsharp1Intensity'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 1 Intensity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Threshold.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Threshold.php deleted file mode 100644 index b443c1716..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp1Threshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp1Threshold extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'Unsharp1Threshold'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 1 Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Color.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Color.php deleted file mode 100644 index ba944e6df..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Color.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp2Color extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'Unsharp2Color'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 2 Color'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Red', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Green', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Blue', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Yellow', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Magenta', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Cyan', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2HaloWidth.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2HaloWidth.php deleted file mode 100644 index a948ccbf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2HaloWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp2HaloWidth extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'Unsharp2HaloWidth'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 2 Halo Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Intensity.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Intensity.php deleted file mode 100644 index 7ab6dc7c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Intensity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp2Intensity extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'Unsharp2Intensity'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 2 Intensity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Threshold.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Threshold.php deleted file mode 100644 index 76b7d349c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp2Threshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp2Threshold extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'Unsharp2Threshold'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 2 Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Color.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Color.php deleted file mode 100644 index 13ccdf07b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Color.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp3Color extends AbstractTag -{ - - protected $Id = 73; - - protected $Name = 'Unsharp3Color'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 3 Color'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Red', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Green', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Blue', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Yellow', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Magenta', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Cyan', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3HaloWidth.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3HaloWidth.php deleted file mode 100644 index 957b01128..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3HaloWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp3HaloWidth extends AbstractTag -{ - - protected $Id = 79; - - protected $Name = 'Unsharp3HaloWidth'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 3 Halo Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Intensity.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Intensity.php deleted file mode 100644 index af26c5a42..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Intensity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp3Intensity extends AbstractTag -{ - - protected $Id = 77; - - protected $Name = 'Unsharp3Intensity'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 3 Intensity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Threshold.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Threshold.php deleted file mode 100644 index 33bda3e93..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp3Threshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp3Threshold extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'Unsharp3Threshold'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 3 Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Color.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Color.php deleted file mode 100644 index 5755727de..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Color.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp4Color extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'Unsharp4Color'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 4 Color'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Red', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Green', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Blue', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Yellow', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Magenta', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Cyan', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4HaloWidth.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4HaloWidth.php deleted file mode 100644 index bc201227e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4HaloWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp4HaloWidth extends AbstractTag -{ - - protected $Id = 106; - - protected $Name = 'Unsharp4HaloWidth'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 4 Halo Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Intensity.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Intensity.php deleted file mode 100644 index 9edd34f92..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Intensity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp4Intensity extends AbstractTag -{ - - protected $Id = 104; - - protected $Name = 'Unsharp4Intensity'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 4 Intensity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Threshold.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Threshold.php deleted file mode 100644 index 97221dab2..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/Unsharp4Threshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unsharp4Threshold extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'Unsharp4Threshold'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Unsharp 4 Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/UnsharpCount.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/UnsharpCount.php deleted file mode 100644 index 1a2de601a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/UnsharpCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnsharpCount extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'UnsharpCount'; - - protected $FullName = 'NikonCapture::UnsharpData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Unsharp Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/UnsharpMask.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/UnsharpMask.php deleted file mode 100644 index 9cb5163b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/UnsharpMask.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnsharpMask extends AbstractTag -{ - - protected $Id = 1990472192; - - protected $Name = 'UnsharpMask'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Unsharp Mask'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/VignetteControl.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/VignetteControl.php deleted file mode 100644 index 937aaa7ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/VignetteControl.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignetteControl extends AbstractTag -{ - - protected $Id = 1990472197; - - protected $Name = 'VignetteControl'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Vignette Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/VignetteControlIntensity.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/VignetteControlIntensity.php deleted file mode 100644 index c8f87027f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/VignetteControlIntensity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignetteControlIntensity extends AbstractTag -{ - - protected $Id = 2892748224; - - protected $Name = 'VignetteControlIntensity'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Vignette Control Intensity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjBlueBalance.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjBlueBalance.php deleted file mode 100644 index ba249736b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjBlueBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjBlueBalance extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'WBAdjBlueBalance'; - - protected $FullName = 'NikonCapture::WBAdjData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'WB Adj Blue Balance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjLighting.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjLighting.php deleted file mode 100644 index a7e25a8c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjLighting.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjLighting extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'WBAdjLighting'; - - protected $FullName = 'NikonCapture::WBAdjData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Adj Lighting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Incandescent', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Daylight (direct sunlight)', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'Daylight (shade)', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'Daylight (cloudy)', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'Standard Fluorescent (warm white)', - ), - 769 => array( - 'Id' => 769, - 'Label' => 'Standard Fluorescent (3700K)', - ), - 770 => array( - 'Id' => 770, - 'Label' => 'Standard Fluorescent (cool white)', - ), - 771 => array( - 'Id' => 771, - 'Label' => 'Standard Fluorescent (5000K)', - ), - 772 => array( - 'Id' => 772, - 'Label' => 'Standard Fluorescent (daylight)', - ), - 773 => array( - 'Id' => 773, - 'Label' => 'Standard Fluorescent (high temperature mercury vapor)', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'High Color Rendering Fluorescent (warm white)', - ), - 1025 => array( - 'Id' => 1025, - 'Label' => 'High Color Rendering Fluorescent (3700K)', - ), - 1026 => array( - 'Id' => 1026, - 'Label' => 'High Color Rendering Fluorescent (cool white)', - ), - 1027 => array( - 'Id' => 1027, - 'Label' => 'High Color Rendering Fluorescent (5000K)', - ), - 1028 => array( - 'Id' => 1028, - 'Label' => 'High Color Rendering Fluorescent (daylight)', - ), - 1280 => array( - 'Id' => 1280, - 'Label' => 'Flash', - ), - 1281 => array( - 'Id' => 1281, - 'Label' => 'Flash (FL-G1 filter)', - ), - 1282 => array( - 'Id' => 1282, - 'Label' => 'Flash (FL-G2 filter)', - ), - 1283 => array( - 'Id' => 1283, - 'Label' => 'Flash (TN-A1 filter)', - ), - 1284 => array( - 'Id' => 1284, - 'Label' => 'Flash (TN-A2 filter)', - ), - 1536 => array( - 'Id' => 1536, - 'Label' => 'Sodium Vapor Lamps', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjMode.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjMode.php deleted file mode 100644 index 731518012..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjMode.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjMode extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'WBAdjMode'; - - protected $FullName = 'NikonCapture::WBAdjData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'WB Adj Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Use Gray Point', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Recorded Value', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Use Temperature', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Calculate Automatically', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Auto2', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Underwater', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Auto1', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjRedBalance.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjRedBalance.php deleted file mode 100644 index 7c0cad692..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjRedBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjRedBalance extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WBAdjRedBalance'; - - protected $FullName = 'NikonCapture::WBAdjData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'WB Adj Red Balance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjTemperature.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjTemperature.php deleted file mode 100644 index 698a91b6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjTemperature extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'WBAdjTemperature'; - - protected $FullName = 'NikonCapture::WBAdjData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Adj Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjTint.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjTint.php deleted file mode 100644 index 93fa45f86..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/WBAdjTint.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBAdjTint extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'WBAdjTint'; - - protected $FullName = 'NikonCapture::WBAdjData'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'WB Adj Tint'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCapture/WhiteBalanceAdj.php b/lib/PHPExiftool/Driver/Tag/NikonCapture/WhiteBalanceAdj.php deleted file mode 100644 index 64dbdec54..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCapture/WhiteBalanceAdj.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCapture; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceAdj extends AbstractTag -{ - - protected $Id = 1990472196; - - protected $Name = 'WhiteBalanceAdj'; - - protected $FullName = 'NikonCapture::Main'; - - protected $GroupName = 'NikonCapture'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCapture'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'White Balance Adj'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELock.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AELock.php deleted file mode 100644 index 23ddc37e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELock extends AbstractTag -{ - - protected $Id = '4.2'; - - protected $Name = 'AELock'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockButton.php deleted file mode 100644 index 3a2aef860..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockButton.php +++ /dev/null @@ -1,430 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELockButton extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AELockButton'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Lock Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 3 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 4 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 5 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 6 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 7 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 8 => array( - 'Id' => 64, - 'Label' => 'Flash Off', - ), - 9 => array( - 'Id' => 72, - 'Label' => 'Bracketing Burst', - ), - 10 => array( - 'Id' => 80, - 'Label' => 'Matrix Metering', - ), - 11 => array( - 'Id' => 88, - 'Label' => 'Center-weighted Metering', - ), - 12 => array( - 'Id' => 96, - 'Label' => 'Spot Metering', - ), - 13 => array( - 'Id' => 104, - 'Label' => 'Virtual Horizon', - ), - 14 => array( - 'Id' => 112, - 'Label' => 'AF On', - ), - 15 => array( - 'Id' => 120, - 'Label' => 'Playback', - ), - 16 => array( - 'Id' => 128, - 'Label' => 'My Menu Top', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 18 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 19 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 20 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 21 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 22 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 23 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 24 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 25 => array( - 'Id' => 64, - 'Label' => 'AF On', - ), - 26 => array( - 'Id' => 72, - 'Label' => 'Flash Off', - ), - 27 => array( - 'Id' => 80, - 'Label' => 'Bracketing Burst', - ), - 28 => array( - 'Id' => 88, - 'Label' => 'Matrix Metering', - ), - 29 => array( - 'Id' => 96, - 'Label' => 'Center-weighted Metering', - ), - 30 => array( - 'Id' => 104, - 'Label' => 'Spot Metering', - ), - 31 => array( - 'Id' => 112, - 'Label' => 'Playback', - ), - 32 => array( - 'Id' => 120, - 'Label' => 'My Menu Top', - ), - 33 => array( - 'Id' => 128, - 'Label' => '+ NEF (RAW)', - ), - 34 => array( - 'Id' => 0, - 'Label' => 'AE/AF Lock', - ), - 35 => array( - 'Id' => 2, - 'Label' => 'AE Lock Only', - ), - 36 => array( - 'Id' => 4, - 'Label' => 'AF Lock Only', - ), - 37 => array( - 'Id' => 6, - 'Label' => 'AE Lock (hold)', - ), - 38 => array( - 'Id' => 8, - 'Label' => 'AF-ON', - ), - 39 => array( - 'Id' => 0, - 'Label' => 'AE/AF Lock', - ), - 40 => array( - 'Id' => 8, - 'Label' => 'AE Lock Only', - ), - 41 => array( - 'Id' => 16, - 'Label' => 'AF Lock Only', - ), - 42 => array( - 'Id' => 24, - 'Label' => 'AE Lock (hold)', - ), - 43 => array( - 'Id' => 32, - 'Label' => 'AF-ON', - ), - 44 => array( - 'Id' => 0, - 'Label' => 'AE/AF Lock', - ), - 45 => array( - 'Id' => 8, - 'Label' => 'AE Lock Only', - ), - 46 => array( - 'Id' => 16, - 'Label' => 'AF Lock Only', - ), - 47 => array( - 'Id' => 24, - 'Label' => 'AE Lock (hold)', - ), - 48 => array( - 'Id' => 32, - 'Label' => 'AF-ON', - ), - 49 => array( - 'Id' => 3, - 'Label' => 'AE/AF Lock', - ), - 50 => array( - 'Id' => 4, - 'Label' => 'AE Lock Only', - ), - 51 => array( - 'Id' => 6, - 'Label' => 'AE Lock (hold)', - ), - 52 => array( - 'Id' => 7, - 'Label' => 'AF Lock Only', - ), - 53 => array( - 'Id' => 8, - 'Label' => 'AF-ON', - ), - 54 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 55 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 56 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 57 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 58 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 59 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 60 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 61 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 62 => array( - 'Id' => 64, - 'Label' => 'AF-ON', - ), - 63 => array( - 'Id' => 72, - 'Label' => 'Flash Off', - ), - 64 => array( - 'Id' => 80, - 'Label' => 'Bracketing Burst', - ), - 65 => array( - 'Id' => 88, - 'Label' => 'Matrix Metering', - ), - 66 => array( - 'Id' => 96, - 'Label' => 'Center-weighted Metering', - ), - 67 => array( - 'Id' => 104, - 'Label' => 'Spot Metering', - ), - 68 => array( - 'Id' => 112, - 'Label' => 'My Menu Top', - ), - 69 => array( - 'Id' => 120, - 'Label' => 'Live View', - ), - 70 => array( - 'Id' => 128, - 'Label' => '+ NEF (RAW)', - ), - 71 => array( - 'Id' => 136, - 'Label' => 'Virtual Horizon', - ), - 72 => array( - 'Id' => 0, - 'Label' => 'AE/AF Lock', - ), - 73 => array( - 'Id' => 8, - 'Label' => 'AE Lock Only', - ), - 74 => array( - 'Id' => 16, - 'Label' => 'AF Lock Only', - ), - 75 => array( - 'Id' => 24, - 'Label' => 'AE Lock (hold)', - ), - 76 => array( - 'Id' => 32, - 'Label' => 'AF-ON', - ), - 77 => array( - 'Id' => 40, - 'Label' => 'FV Lock', - ), - 78 => array( - 'Id' => 0, - 'Label' => 'AE/AF Lock', - ), - 79 => array( - 'Id' => 2, - 'Label' => 'AE Lock Only', - ), - 80 => array( - 'Id' => 4, - 'Label' => 'AF Lock Only', - ), - 81 => array( - 'Id' => 6, - 'Label' => 'AE Lock (hold)', - ), - 82 => array( - 'Id' => 8, - 'Label' => 'AF-ON', - ), - 83 => array( - 'Id' => 10, - 'Label' => 'FV Lock', - ), - 84 => array( - 'Id' => 12, - 'Label' => 'Focus Area Selection', - ), - 85 => array( - 'Id' => 14, - 'Label' => 'AE-L/AF-L/AF Area', - ), - 86 => array( - 'Id' => 16, - 'Label' => 'AE-L/AF Area', - ), - 87 => array( - 'Id' => 18, - 'Label' => 'AF-L/AF Area', - ), - 88 => array( - 'Id' => 20, - 'Label' => 'AF-ON/AF Area', - ), - 89 => array( - 'Id' => 0, - 'Label' => 'AE/AF Lock', - ), - 90 => array( - 'Id' => 8, - 'Label' => 'AE Lock Only', - ), - 91 => array( - 'Id' => 16, - 'Label' => 'AF Lock Only', - ), - 92 => array( - 'Id' => 24, - 'Label' => 'AE Lock (hold)', - ), - 93 => array( - 'Id' => 32, - 'Label' => 'AF-ON', - ), - 94 => array( - 'Id' => 40, - 'Label' => 'FV Lock', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockButtonPlusDials.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockButtonPlusDials.php deleted file mode 100644 index 12aefe52e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockButtonPlusDials.php +++ /dev/null @@ -1,122 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELockButtonPlusDials extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AELockButtonPlusDials'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Lock Button Plus Dials'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Choose Image Area (FX/DX/5:4)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'One Step Speed/Aperture', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Choose Image Area (FX/DX)', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'Shooting Bank Menu', - ), - 6 => array( - 'Id' => 7, - 'Label' => 'Dynamic AF Area', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 9 => array( - 'Id' => 5, - 'Label' => 'Auto Bracketing', - ), - 10 => array( - 'Id' => 6, - 'Label' => 'Dynamic AF Area', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 12 => array( - 'Id' => 16, - 'Label' => 'Choose Image Area', - ), - 13 => array( - 'Id' => 32, - 'Label' => 'One Step Speed/Aperture', - ), - 14 => array( - 'Id' => 48, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 15 => array( - 'Id' => 80, - 'Label' => 'Auto bracketing', - ), - 16 => array( - 'Id' => 96, - 'Label' => 'Dynamic AF Area', - ), - 17 => array( - 'Id' => 112, - 'Label' => 'Shutter speed & Aperture lock', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockForMBD80.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockForMBD80.php deleted file mode 100644 index 4d27b9197..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AELockForMBD80.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELockForMBD80 extends AbstractTag -{ - - protected $Id = '3.1'; - - protected $Name = 'AELockForMB-D80'; - - protected $FullName = 'NikonCustom::SettingsD90'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Lock For MB-D80'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AE Lock Only', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'AF Lock Only', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'AE Lock (hold)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'AF-On', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Focus Point Selection', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'AE/AF Lock', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFActivation.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFActivation.php deleted file mode 100644 index 56ccccc77..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFActivation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFActivation extends AbstractTag -{ - - protected $Id = '2.1'; - - protected $Name = 'AFActivation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Activation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Shutter/AF-On', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'AF-On Only', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAreaIllumination.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAreaIllumination.php deleted file mode 100644 index f5235b2a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAreaIllumination.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaIllumination extends AbstractTag -{ - - protected $Id = '15.3'; - - protected $Name = 'AFAreaIllumination'; - - protected $FullName = 'NikonCustom::SettingsD80'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Area Illumination'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAreaModeSetting.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAreaModeSetting.php deleted file mode 100644 index 63317f422..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAreaModeSetting.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaModeSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAreaModeSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Area Mode Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single Area', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'Dynamic Area', - ), - 2 => array( - 'Id' => 32, - 'Label' => 'Closest Subject', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Single Area', - ), - 4 => array( - 'Id' => 32, - 'Label' => 'Dynamic Area', - ), - 5 => array( - 'Id' => 64, - 'Label' => 'Auto-area', - ), - 6 => array( - 'Id' => 96, - 'Label' => '3D-tracking (11 points)', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Single Area', - ), - 8 => array( - 'Id' => 64, - 'Label' => 'Dynamic Area', - ), - 9 => array( - 'Id' => 128, - 'Label' => 'Auto-area', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Single Area', - ), - 11 => array( - 'Id' => 32, - 'Label' => 'Dynamic Area', - ), - 12 => array( - 'Id' => 64, - 'Label' => 'Auto-area', - ), - 13 => array( - 'Id' => 96, - 'Label' => '3D-tracking (11 points)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAssist.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAssist.php deleted file mode 100644 index c1e21d42a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFAssist.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAssist extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAssist'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Assist'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 64, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 15 => array( - 'Id' => 64, - 'Label' => 'Off', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 17 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFCPrioritySelection.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFCPrioritySelection.php deleted file mode 100644 index 8e0f04d50..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFCPrioritySelection.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFCPrioritySelection extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AF-CPrioritySelection'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF-C Priority Selection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Release', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'Release + Focus', - ), - 2 => array( - 'Id' => 128, - 'Label' => 'Focus', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Release', - ), - 4 => array( - 'Id' => 128, - 'Label' => 'Focus', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Release', - ), - 6 => array( - 'Id' => 128, - 'Label' => 'Focus', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Release', - ), - 8 => array( - 'Id' => 64, - 'Label' => 'Release + Focus', - ), - 9 => array( - 'Id' => 128, - 'Label' => 'Focus', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Release', - ), - 11 => array( - 'Id' => 128, - 'Label' => 'Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnButton.php deleted file mode 100644 index f865f2cc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnButton.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFOnButton extends AbstractTag -{ - - protected $Id = '3.1'; - - protected $Name = 'AFOnButton'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF On Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AE/AF Lock', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AE Lock Only', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AE Lock (reset on release)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'AE Lock (hold)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'AF Lock Only', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnForMBD10.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnForMBD10.php deleted file mode 100644 index 121e749fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnForMBD10.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFOnForMBD10 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AF-OnForMB-D10'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF-On For MB-D10'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF-On', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'AE/AF Lock', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'AE Lock (reset on release)', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'AE Lock (hold)', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'AF Lock Only', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Same as FUNC Button', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnForMBD11.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnForMBD11.php deleted file mode 100644 index 5ae957881..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFOnForMBD11.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFOnForMBD11 extends AbstractTag -{ - - protected $Id = '2.2'; - - protected $Name = 'AF-OnForMB-D11'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF-On For MB-D11'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AE/AF Lock', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'AE Lock Only', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'AF Lock Only', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'AE Lock (hold)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'AF-ON', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'FV Lock', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Same as FUNC Button', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointBrightness.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointBrightness.php deleted file mode 100644 index 54086cffd..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointBrightness.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointBrightness extends AbstractTag -{ - - protected $Id = '2.4'; - - protected $Name = 'AFPointBrightness'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Brightness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Extra High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointIllumination.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointIllumination.php deleted file mode 100644 index b3b1ba695..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointIllumination.php +++ /dev/null @@ -1,114 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointIllumination extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFPointIllumination'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Illumination'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On in Continuous Shooting and Manual Focusing', - ), - 1 => array( - 'Id' => 32, - 'Label' => 'On During Manual Focusing', - ), - 2 => array( - 'Id' => 64, - 'Label' => 'On in Continuous Shooting Modes', - ), - 3 => array( - 'Id' => 96, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 4, - 'Label' => 'On', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'On', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 12 => array( - 'Id' => 4, - 'Label' => 'Off', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 15 => array( - 'Id' => 4, - 'Label' => 'Off', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointSelection.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointSelection.php deleted file mode 100644 index aa410133b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFPointSelection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelection extends AbstractTag -{ - - protected $Id = '1.3'; - - protected $Name = 'AFPointSelection'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Selection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '51 Points', - ), - 16 => array( - 'Id' => 16, - 'Label' => '11 Points', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFSPrioritySelection.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AFSPrioritySelection.php deleted file mode 100644 index cb25d9ecd..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AFSPrioritySelection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFSPrioritySelection extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AF-SPrioritySelection'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF-S Priority Selection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Focus', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Release', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AssignBktButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AssignBktButton.php deleted file mode 100644 index 4a3cb813f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AssignBktButton.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssignBktButton extends AbstractTag -{ - - protected $Id = '4.2'; - - protected $Name = 'AssignBktButton'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Assign Bkt Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto Bracketing', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Multiple Exposure', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketModeM.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketModeM.php deleted file mode 100644 index d559b0de4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketModeM.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketModeM extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AutoBracketModeM'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracket Mode M'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Flash/Speed', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Flash/Speed/Aperture', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Flash/Aperture', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Flash Only', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketOrder.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketOrder.php deleted file mode 100644 index 08c82be05..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketOrder.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketOrder extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AutoBracketOrder'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracket Order'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0,-,+', - ), - 1 => array( - 'Id' => 8, - 'Label' => '-,0,+', - ), - 2 => array( - 'Id' => 0, - 'Label' => '0,-,+', - ), - 3 => array( - 'Id' => 16, - 'Label' => '-,0,+', - ), - 4 => array( - 'Id' => 0, - 'Label' => '0,-,+', - ), - 5 => array( - 'Id' => 32, - 'Label' => '-,0,+', - ), - 6 => array( - 'Id' => 0, - 'Label' => '0,-,+', - ), - 7 => array( - 'Id' => 16, - 'Label' => '-,0,+', - ), - 8 => array( - 'Id' => 0, - 'Label' => '0,-,+', - ), - 9 => array( - 'Id' => 16, - 'Label' => '-,0,+', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketSet.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketSet.php deleted file mode 100644 index 6ea6f5e73..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketSet.php +++ /dev/null @@ -1,172 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketSet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AutoBracketSet'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracket Set'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AE & Flash', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'AE Only', - ), - 2 => array( - 'Id' => 128, - 'Label' => 'Flash Only', - ), - 3 => array( - 'Id' => 192, - 'Label' => 'WB Bracketing', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Exposure', - ), - 5 => array( - 'Id' => 64, - 'Label' => 'Active D-Lighting', - ), - 6 => array( - 'Id' => 128, - 'Label' => 'WB Bracketing', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Exposure', - ), - 8 => array( - 'Id' => 64, - 'Label' => 'WB Bracketing', - ), - 9 => array( - 'Id' => 128, - 'Label' => 'Active D-Lighting', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Exposure', - ), - 11 => array( - 'Id' => 64, - 'Label' => 'WB Bracketing', - ), - 12 => array( - 'Id' => 128, - 'Label' => 'Active D-Lighting', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'AE & Flash', - ), - 14 => array( - 'Id' => 64, - 'Label' => 'AE Only', - ), - 15 => array( - 'Id' => 128, - 'Label' => 'Flash Only', - ), - 16 => array( - 'Id' => 192, - 'Label' => 'WB Bracketing', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'AE & Flash', - ), - 18 => array( - 'Id' => 32, - 'Label' => 'AE Only', - ), - 19 => array( - 'Id' => 64, - 'Label' => 'Flash Only', - ), - 20 => array( - 'Id' => 96, - 'Label' => 'WB Bracketing', - ), - 21 => array( - 'Id' => 128, - 'Label' => 'Active D-Lighting', - ), - 22 => array( - 'Id' => 0, - 'Label' => 'AE & Flash', - ), - 23 => array( - 'Id' => 64, - 'Label' => 'AE Only', - ), - 24 => array( - 'Id' => 128, - 'Label' => 'Flash Only', - ), - 25 => array( - 'Id' => 192, - 'Label' => 'WB Bracketing', - ), - 26 => array( - 'Id' => 0, - 'Label' => 'AE & Flash', - ), - 27 => array( - 'Id' => 32, - 'Label' => 'AE Only', - ), - 28 => array( - 'Id' => 64, - 'Label' => 'Flash Only', - ), - 29 => array( - 'Id' => 96, - 'Label' => 'WB Bracketing', - ), - 30 => array( - 'Id' => 128, - 'Label' => 'Active D-Lighting', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketingMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketingMode.php deleted file mode 100644 index e1bd5acbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketingMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketingMode extends AbstractTag -{ - - protected $Id = '12.3'; - - protected $Name = 'AutoBracketingMode'; - - protected $FullName = 'NikonCustom::SettingsD800'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracketing Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Flash/Speed', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Flash/Speed/Aperture', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Flash/Aperture', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Flash Only', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketingSet.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketingSet.php deleted file mode 100644 index 290f6a003..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoBracketingSet.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketingSet extends AbstractTag -{ - - protected $Id = '12.1'; - - protected $Name = 'AutoBracketingSet'; - - protected $FullName = 'NikonCustom::SettingsD800'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracketing Set'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AE & Flash', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'AE Only', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Flash Only', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'WB Bracketing', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Active D-Lighting', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoFP.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoFP.php deleted file mode 100644 index 4b09562e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoFP.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoFP extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AutoFP'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto FP'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 64, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISO.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISO.php deleted file mode 100644 index c02093d22..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISO.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoISO extends AbstractTag -{ - - protected $Id = '1.1'; - - protected $Name = 'AutoISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto ISO'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 128, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 64, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISOMax.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISOMax.php deleted file mode 100644 index 7625d2d30..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISOMax.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoISOMax extends AbstractTag -{ - - protected $Id = '1.2'; - - protected $Name = 'AutoISOMax'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto ISO Max'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 16, - 'Label' => 400, - ), - 1 => array( - 'Id' => 32, - 'Label' => 800, - ), - 2 => array( - 'Id' => 48, - 'Label' => 1600, - ), - 3 => array( - 'Id' => 0, - 'Label' => 200, - ), - 4 => array( - 'Id' => 16, - 'Label' => 400, - ), - 5 => array( - 'Id' => 32, - 'Label' => 800, - ), - 6 => array( - 'Id' => 48, - 'Label' => 1600, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISOMinShutterSpeed.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISOMinShutterSpeed.php deleted file mode 100644 index 93a482903..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/AutoISOMinShutterSpeed.php +++ /dev/null @@ -1,124 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoISOMinShutterSpeed extends AbstractTag -{ - - protected $Id = '1.3'; - - protected $Name = 'AutoISOMinShutterSpeed'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto ISO Min Shutter Speed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/125 s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1/60 s', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1/30 s', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1/15 s', - ), - 4 => array( - 'Id' => 4, - 'Label' => '1/8 s', - ), - 5 => array( - 'Id' => 5, - 'Label' => '1/4 s', - ), - 6 => array( - 'Id' => 6, - 'Label' => '1/2 s', - ), - 7 => array( - 'Id' => 7, - 'Label' => '1 s', - ), - 8 => array( - 'Id' => 0, - 'Label' => '1/125 s', - ), - 9 => array( - 'Id' => 1, - 'Label' => '1/100 s', - ), - 10 => array( - 'Id' => 2, - 'Label' => '1/80 s', - ), - 11 => array( - 'Id' => 3, - 'Label' => '1/60 s', - ), - 12 => array( - 'Id' => 4, - 'Label' => '1/40 s', - ), - 13 => array( - 'Id' => 5, - 'Label' => '1/30 s', - ), - 14 => array( - 'Id' => 6, - 'Label' => '1/15 s', - ), - 15 => array( - 'Id' => 7, - 'Label' => '1/8 s', - ), - 16 => array( - 'Id' => 8, - 'Label' => '1/4 s', - ), - 17 => array( - 'Id' => 9, - 'Label' => '1/2 s', - ), - 18 => array( - 'Id' => 10, - 'Label' => '1 s', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/BatteryOrder.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/BatteryOrder.php deleted file mode 100644 index 1d7a5ceb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/BatteryOrder.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryOrder extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BatteryOrder'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Battery Order'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'MB-D10 First', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'Camera Battery First', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'MB-D11 First', - ), - 3 => array( - 'Id' => 64, - 'Label' => 'Camera Battery First', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/Beep.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/Beep.php deleted file mode 100644 index cdb133655..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/Beep.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Beep extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Beep'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Beep'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'High', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 128, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 128, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 64, - 'Label' => 'Low', - ), - 7 => array( - 'Id' => 128, - 'Label' => 'High', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 64, - 'Label' => 'Low', - ), - 10 => array( - 'Id' => 128, - 'Label' => 'High', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 12 => array( - 'Id' => 64, - 'Label' => 'Low', - ), - 13 => array( - 'Id' => 128, - 'Label' => 'High', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'High', - ), - 15 => array( - 'Id' => 64, - 'Label' => 'Low', - ), - 16 => array( - 'Id' => 128, - 'Label' => 'Off', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 18 => array( - 'Id' => 128, - 'Label' => 'Off', - ), - 19 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 20 => array( - 'Id' => 64, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/BeepPitch.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/BeepPitch.php deleted file mode 100644 index 5e89cbd2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/BeepPitch.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeepPitch extends AbstractTag -{ - - protected $Id = '3.1'; - - protected $Name = 'BeepPitch'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Beep Pitch'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Low', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/BeepVolume.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/BeepVolume.php deleted file mode 100644 index 1e578bd06..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/BeepVolume.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeepVolume extends AbstractTag -{ - - protected $Id = '4.5'; - - protected $Name = 'BeepVolume'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Beep Volume'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 1, - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 3, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CHModeShootingSpeed.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CHModeShootingSpeed.php deleted file mode 100644 index 2a2fdf905..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CHModeShootingSpeed.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CHModeShootingSpeed extends AbstractTag -{ - - protected $Id = '10.3'; - - protected $Name = 'CHModeShootingSpeed'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'CH Mode Shooting Speed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '9 fps', - ), - 16 => array( - 'Id' => 16, - 'Label' => '10 fps', - ), - 32 => array( - 'Id' => 32, - 'Label' => '11 fps', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CLModeShootingSpeed.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CLModeShootingSpeed.php deleted file mode 100644 index 8c034d50f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CLModeShootingSpeed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CLModeShootingSpeed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CLModeShootingSpeed'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'CL Mode Shooting Speed'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterAFArea.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterAFArea.php deleted file mode 100644 index 74f647e1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterAFArea.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterAFArea extends AbstractTag -{ - - protected $Id = '15.1'; - - protected $Name = 'CenterAFArea'; - - protected $FullName = 'NikonCustom::SettingsD80'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Center AF Area'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal Zone', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Wide Zone', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterFocusPoint.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterFocusPoint.php deleted file mode 100644 index 18f07b3f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterFocusPoint.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterFocusPoint extends AbstractTag -{ - - protected $Id = '2.2'; - - protected $Name = 'CenterFocusPoint'; - - protected $FullName = 'NikonCustom::SettingsD90'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Center Focus Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal Zone', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Wide Zone', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterWeightedAreaSize.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterWeightedAreaSize.php deleted file mode 100644 index 2fd36e25a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CenterWeightedAreaSize.php +++ /dev/null @@ -1,154 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CenterWeightedAreaSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CenterWeightedAreaSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Center Weighted Area Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '8 mm', - ), - 1 => array( - 'Id' => 32, - 'Label' => '12 mm', - ), - 2 => array( - 'Id' => 64, - 'Label' => '15 mm', - ), - 3 => array( - 'Id' => 96, - 'Label' => '20 mm', - ), - 4 => array( - 'Id' => 128, - 'Label' => 'Average', - ), - 5 => array( - 'Id' => 0, - 'Label' => '6 mm', - ), - 6 => array( - 'Id' => 32, - 'Label' => '8 mm', - ), - 7 => array( - 'Id' => 64, - 'Label' => '10 mm', - ), - 8 => array( - 'Id' => 96, - 'Label' => '13 mm', - ), - 9 => array( - 'Id' => 128, - 'Label' => 'Average', - ), - 10 => array( - 'Id' => 0, - 'Label' => '8 mm', - ), - 11 => array( - 'Id' => 16, - 'Label' => '12 mm', - ), - 12 => array( - 'Id' => 32, - 'Label' => '15 mm', - ), - 13 => array( - 'Id' => 48, - 'Label' => '20 mm', - ), - 14 => array( - 'Id' => 64, - 'Label' => 'Average', - ), - 15 => array( - 'Id' => 0, - 'Label' => '6 mm', - ), - 16 => array( - 'Id' => 32, - 'Label' => '8 mm', - ), - 17 => array( - 'Id' => 64, - 'Label' => '10 mm', - ), - 18 => array( - 'Id' => 96, - 'Label' => '13 mm', - ), - 19 => array( - 'Id' => 128, - 'Label' => 'Average', - ), - 20 => array( - 'Id' => 0, - 'Label' => '6 mm', - ), - 21 => array( - 'Id' => 4, - 'Label' => '8 mm', - ), - 22 => array( - 'Id' => 8, - 'Label' => '10 mm', - ), - 23 => array( - 'Id' => 0, - 'Label' => '6 mm', - ), - 24 => array( - 'Id' => 32, - 'Label' => '8 mm', - ), - 25 => array( - 'Id' => 64, - 'Label' => '10 mm', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDials.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDials.php deleted file mode 100644 index 88cdc9a69..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDials.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommandDials extends AbstractTag -{ - - protected $Id = '5.1'; - - protected $Name = 'CommandDials'; - - protected $FullName = 'NikonCustom::SettingsD80'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Command Dials'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard (Main Shutter, Sub Aperture)', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Reversed (Main Aperture, Sub Shutter)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsApertureSetting.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsApertureSetting.php deleted file mode 100644 index 51004d538..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsApertureSetting.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommandDialsApertureSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommandDialsApertureSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Command Dials Aperture Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Sub-command Dial', - ), - 1 => array( - 'Id' => 32, - 'Label' => 'Aperture Ring', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Sub-command Dial', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Aperture Ring', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsChangeMainSub.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsChangeMainSub.php deleted file mode 100644 index 3eb3b2d23..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsChangeMainSub.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommandDialsChangeMainSub extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommandDialsChangeMainSub'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Command Dials Change Main Sub'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 32, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 64, - 'Label' => 'On (A mode only)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsMenuAndPlayback.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsMenuAndPlayback.php deleted file mode 100644 index dd171d8c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsMenuAndPlayback.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommandDialsMenuAndPlayback extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommandDialsMenuAndPlayback'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Command Dials Menu And Playback'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 16, - 'Label' => 'On (Image Review Exclude)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsReverseRotation.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsReverseRotation.php deleted file mode 100644 index d0815a16f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommandDialsReverseRotation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommandDialsReverseRotation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommandDialsReverseRotation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Command Dials Reverse Rotation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderChannel.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderChannel.php deleted file mode 100644 index c56650c68..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderChannel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderChannel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderChannel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Channel'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupAManualOutput.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupAManualOutput.php deleted file mode 100644 index 6174228b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupAManualOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupAManualOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderGroupAManualOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group A Manual Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupAMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupAMode.php deleted file mode 100644 index 3415ef305..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupAMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupAMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderGroupAMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group A Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'Auto Aperture', - ), - 2 => array( - 'Id' => 32, - 'Label' => 'Manual', - ), - 3 => array( - 'Id' => 48, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 5 => array( - 'Id' => 64, - 'Label' => 'Auto Aperture', - ), - 6 => array( - 'Id' => 128, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 192, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupATTLAAComp.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupATTLAAComp.php deleted file mode 100644 index a59ae5a5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupATTLAAComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupATTLAAComp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderGroupA_TTL-AAComp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group A TTL-AA Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupATTLComp.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupATTLComp.php deleted file mode 100644 index 9964c1f74..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupATTLComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupATTLComp extends AbstractTag -{ - - protected $Id = '32.1'; - - protected $Name = 'CommanderGroupA_TTLComp'; - - protected $FullName = 'NikonCustom::SettingsD90'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group A TTL Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBManualOutput.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBManualOutput.php deleted file mode 100644 index b4fc07f4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBManualOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupBManualOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderGroupBManualOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group B Manual Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBMode.php deleted file mode 100644 index bf06e54ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupBMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderGroupBMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group B Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'Auto Aperture', - ), - 2 => array( - 'Id' => 8, - 'Label' => 'Manual', - ), - 3 => array( - 'Id' => 12, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 5 => array( - 'Id' => 64, - 'Label' => 'Auto Aperture', - ), - 6 => array( - 'Id' => 128, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 192, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBTTLAAComp.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBTTLAAComp.php deleted file mode 100644 index 590ce672b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBTTLAAComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupBTTLAAComp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderGroupB_TTL-AAComp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group B TTL-AA Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBTTLComp.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBTTLComp.php deleted file mode 100644 index 1a58692ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderGroupBTTLComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderGroupBTTLComp extends AbstractTag -{ - - protected $Id = '33.1'; - - protected $Name = 'CommanderGroupB_TTLComp'; - - protected $FullName = 'NikonCustom::SettingsD90'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Group B TTL Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalFlash.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalFlash.php deleted file mode 100644 index 3f6bb8404..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalFlash.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderInternalFlash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderInternalFlash'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Internal Flash'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalManualOutput.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalManualOutput.php deleted file mode 100644 index 6c2ec09f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalManualOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderInternalManualOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderInternalManualOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Internal Manual Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLChannel.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLChannel.php deleted file mode 100644 index ab8d1a4f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLChannel.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderInternalTTLChannel extends AbstractTag -{ - - protected $Id = '18.2'; - - protected $Name = 'CommanderInternalTTLChannel'; - - protected $FullName = 'NikonCustom::SettingsD700'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Internal TTL Channel'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1 ch', - ), - 1 => array( - 'Id' => 1, - 'Label' => '2 ch', - ), - 2 => array( - 'Id' => 2, - 'Label' => '3 ch', - ), - 3 => array( - 'Id' => 3, - 'Label' => '4 ch', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLComp.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLComp.php deleted file mode 100644 index f6b3c29c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderInternalTTLComp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderInternalTTLComp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Internal TTL Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompBuiltin.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompBuiltin.php deleted file mode 100644 index 5426cb04e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompBuiltin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderInternalTTLCompBuiltin extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderInternalTTLCompBuiltin'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Internal TTL Comp Builtin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompGroupA.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompGroupA.php deleted file mode 100644 index ae6b02be6..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompGroupA.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderInternalTTLCompGroupA extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderInternalTTLCompGroupA'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Internal TTL Comp Group A'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompGroupB.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompGroupB.php deleted file mode 100644 index b50be1520..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CommanderInternalTTLCompGroupB.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommanderInternalTTLCompGroupB extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CommanderInternalTTLCompGroupB'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Commander Internal TTL Comp Group B'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CustomSettingsAllDefault.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CustomSettingsAllDefault.php deleted file mode 100644 index fe0f400dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CustomSettingsAllDefault.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomSettingsAllDefault extends AbstractTag -{ - - protected $Id = '0.2'; - - protected $Name = 'CustomSettingsAllDefault'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Custom Settings All Default'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Yes', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'No', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/CustomSettingsBank.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/CustomSettingsBank.php deleted file mode 100644 index 7760e5824..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/CustomSettingsBank.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomSettingsBank extends AbstractTag -{ - - protected $Id = '0.1'; - - protected $Name = 'CustomSettingsBank'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Custom Settings Bank'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'A', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'B', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'C', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'D', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/DateImprint.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/DateImprint.php deleted file mode 100644 index ca63925ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/DateImprint.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateImprint extends AbstractTag -{ - - protected $Id = '4.2'; - - protected $Name = 'DateImprint'; - - protected $FullName = 'NikonCustom::SettingsD5000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Date Imprint'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/DynamicAFArea.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/DynamicAFArea.php deleted file mode 100644 index b5d0d1c95..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/DynamicAFArea.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicAFArea extends AbstractTag -{ - - protected $Id = '1.4'; - - protected $Name = 'DynamicAFArea'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Dynamic AF Area'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '9 Points', - ), - 4 => array( - 'Id' => 4, - 'Label' => '21 Points', - ), - 8 => array( - 'Id' => 8, - 'Label' => '51 Points', - ), - 12 => array( - 'Id' => 12, - 'Label' => '51 Points (3D-tracking)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/EVStepSize.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/EVStepSize.php deleted file mode 100644 index 0f1808df0..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/EVStepSize.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EVStepSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EVStepSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'EV Step Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 1 => array( - 'Id' => 64, - 'Label' => '1/2 EV', - ), - 2 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 3 => array( - 'Id' => 1, - 'Label' => '1/2 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/EasyExposureComp.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/EasyExposureComp.php deleted file mode 100644 index 8a2d79097..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/EasyExposureComp.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EasyExposureComp extends AbstractTag -{ - - protected $Id = '6.1'; - - protected $Name = 'EasyExposureComp'; - - protected $FullName = 'NikonCustom::SettingsD90'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Easy Exposure Comp'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/EasyExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/EasyExposureCompensation.php deleted file mode 100644 index 0efca09d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/EasyExposureCompensation.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EasyExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EasyExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Easy Exposure Compensation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (auto reset)', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'On Auto Reset', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureCompStepSize.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureCompStepSize.php deleted file mode 100644 index b83bbf2b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureCompStepSize.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompStepSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompStepSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Comp Step Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 4 => array( - 'Id' => 4, - 'Label' => '1/2 EV', - ), - 8 => array( - 'Id' => 8, - 'Label' => '1 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureControlStep.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureControlStep.php deleted file mode 100644 index 7262c2e64..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureControlStep.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlStep extends AbstractTag -{ - - protected $Id = '6.1'; - - protected $Name = 'ExposureControlStep'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Control Step'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 64 => array( - 'Id' => 64, - 'Label' => '1/2 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureControlStepSize.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureControlStepSize.php deleted file mode 100644 index 2708a6528..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureControlStepSize.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureControlStepSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureControlStepSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Control Step Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 1 => array( - 'Id' => 16, - 'Label' => '1/2 EV', - ), - 2 => array( - 'Id' => 32, - 'Label' => '1 EV', - ), - 3 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 4 => array( - 'Id' => 64, - 'Label' => '1/2 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureDelayMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureDelayMode.php deleted file mode 100644 index c88fb0d44..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ExposureDelayMode.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureDelayMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureDelayMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Delay Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 64, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 7 => array( - 'Id' => 32, - 'Label' => 'On', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 64, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FileNumberSequence.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FileNumberSequence.php deleted file mode 100644 index 70e318ca1..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FileNumberSequence.php +++ /dev/null @@ -1,114 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNumberSequence extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FileNumberSequence'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'File Number Sequence'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 5 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 7 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 9 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 11 => array( - 'Id' => 64, - 'Label' => 'Off', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 13 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 15 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptCenterWeighted.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptCenterWeighted.php deleted file mode 100644 index cb82bddd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptCenterWeighted.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FineTuneOptCenterWeighted extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FineTuneOptCenterWeighted'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Fine Tune Opt Center Weighted'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptMatrixMetering.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptMatrixMetering.php deleted file mode 100644 index 342a1ca3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptMatrixMetering.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FineTuneOptMatrixMetering extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FineTuneOptMatrixMetering'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Fine Tune Opt Matrix Metering'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptSpotMetering.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptSpotMetering.php deleted file mode 100644 index 1da473fda..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FineTuneOptSpotMetering.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FineTuneOptSpotMetering extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FineTuneOptSpotMetering'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Fine Tune Opt Spot Metering'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashControlBuiltIn.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashControlBuiltIn.php deleted file mode 100644 index 998035cda..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashControlBuiltIn.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashControlBuiltIn extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashControlBuilt-in'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Control Built-in'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Repeating Flash', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'Commander Mode', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashLevel.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashLevel.php deleted file mode 100644 index 1f75ecace..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashLevel extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'FlashLevel'; - - protected $FullName = 'NikonCustom::SettingsD40'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashShutterSpeed.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashShutterSpeed.php deleted file mode 100644 index 14f79c1c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashShutterSpeed.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashShutterSpeed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashShutterSpeed'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Shutter Speed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/60 s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1/30 s', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1/15 s', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1/8 s', - ), - 4 => array( - 'Id' => 4, - 'Label' => '1/4 s', - ), - 5 => array( - 'Id' => 5, - 'Label' => '1/2 s', - ), - 6 => array( - 'Id' => 6, - 'Label' => '1 s', - ), - 7 => array( - 'Id' => 7, - 'Label' => '2 s', - ), - 8 => array( - 'Id' => 8, - 'Label' => '4 s', - ), - 9 => array( - 'Id' => 9, - 'Label' => '8 s', - ), - 10 => array( - 'Id' => 10, - 'Label' => '15 s', - ), - 11 => array( - 'Id' => 11, - 'Label' => '30 s', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashSyncSpeed.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashSyncSpeed.php deleted file mode 100644 index debb8d33c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashSyncSpeed.php +++ /dev/null @@ -1,226 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashSyncSpeed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashSyncSpeed'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Sync Speed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/250 s (auto FP)', - ), - 1 => array( - 'Id' => 32, - 'Label' => '1/250 s', - ), - 2 => array( - 'Id' => 64, - 'Label' => '1/200 s', - ), - 3 => array( - 'Id' => 96, - 'Label' => '1/160 s', - ), - 4 => array( - 'Id' => 128, - 'Label' => '1/125 s', - ), - 5 => array( - 'Id' => 160, - 'Label' => '1/100 s', - ), - 6 => array( - 'Id' => 192, - 'Label' => '1/80 s', - ), - 7 => array( - 'Id' => 224, - 'Label' => '1/60 s', - ), - 8 => array( - 'Id' => 0, - 'Label' => '1/320 s (auto FP)', - ), - 9 => array( - 'Id' => 16, - 'Label' => '1/250 s (auto FP)', - ), - 10 => array( - 'Id' => 32, - 'Label' => '1/250 s', - ), - 11 => array( - 'Id' => 48, - 'Label' => '1/200 s', - ), - 12 => array( - 'Id' => 64, - 'Label' => '1/160 s', - ), - 13 => array( - 'Id' => 80, - 'Label' => '1/125 s', - ), - 14 => array( - 'Id' => 96, - 'Label' => '1/100 s', - ), - 15 => array( - 'Id' => 112, - 'Label' => '1/80 s', - ), - 16 => array( - 'Id' => 128, - 'Label' => '1/60 s', - ), - 17 => array( - 'Id' => 0, - 'Label' => '1/320 s (auto FP)', - ), - 18 => array( - 'Id' => 16, - 'Label' => '1/250 s (auto FP)', - ), - 19 => array( - 'Id' => 32, - 'Label' => '1/250 s', - ), - 20 => array( - 'Id' => 48, - 'Label' => '1/200 s', - ), - 21 => array( - 'Id' => 64, - 'Label' => '1/160 s', - ), - 22 => array( - 'Id' => 80, - 'Label' => '1/125 s', - ), - 23 => array( - 'Id' => 96, - 'Label' => '1/100 s', - ), - 24 => array( - 'Id' => 112, - 'Label' => '1/80 s', - ), - 25 => array( - 'Id' => 128, - 'Label' => '1/60 s', - ), - 26 => array( - 'Id' => 0, - 'Label' => '1/320 s (auto FP)', - ), - 27 => array( - 'Id' => 16, - 'Label' => '1/250 s (auto FP)', - ), - 28 => array( - 'Id' => 32, - 'Label' => '1/250 s', - ), - 29 => array( - 'Id' => 48, - 'Label' => '1/200 s', - ), - 30 => array( - 'Id' => 64, - 'Label' => '1/160 s', - ), - 31 => array( - 'Id' => 80, - 'Label' => '1/125 s', - ), - 32 => array( - 'Id' => 96, - 'Label' => '1/100 s', - ), - 33 => array( - 'Id' => 112, - 'Label' => '1/80 s', - ), - 34 => array( - 'Id' => 128, - 'Label' => '1/60 s', - ), - 35 => array( - 'Id' => 0, - 'Label' => '1/320 s (auto FP)', - ), - 36 => array( - 'Id' => 16, - 'Label' => '1/250 s (auto FP)', - ), - 37 => array( - 'Id' => 32, - 'Label' => '1/250 s', - ), - 38 => array( - 'Id' => 48, - 'Label' => '1/200 s', - ), - 39 => array( - 'Id' => 64, - 'Label' => '1/160 s', - ), - 40 => array( - 'Id' => 80, - 'Label' => '1/125 s', - ), - 41 => array( - 'Id' => 96, - 'Label' => '1/100 s', - ), - 42 => array( - 'Id' => 112, - 'Label' => '1/80 s', - ), - 43 => array( - 'Id' => 128, - 'Label' => '1/60 s', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashWarning.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashWarning.php deleted file mode 100644 index 98754becc..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FlashWarning.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashWarning extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashWarning'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Warning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusAreaSelection.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusAreaSelection.php deleted file mode 100644 index 1a84335b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusAreaSelection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusAreaSelection extends AbstractTag -{ - - protected $Id = '15.2'; - - protected $Name = 'FocusAreaSelection'; - - protected $FullName = 'NikonCustom::SettingsD80'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Area Selection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Wrap', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Wrap', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusModeSetting.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusModeSetting.php deleted file mode 100644 index 89dda9a04..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusModeSetting.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusModeSetting extends AbstractTag -{ - - protected $Id = '10.1'; - - protected $Name = 'FocusModeSetting'; - - protected $FullName = 'NikonCustom::SettingsD40'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'AF-S', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'AF-C', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'AF-A', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusPointWrap.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusPointWrap.php deleted file mode 100644 index ecbd89398..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusPointWrap.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusPointWrap extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusPointWrap'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Point Wrap'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Wrap', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Wrap', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusTrackingLockOn.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusTrackingLockOn.php deleted file mode 100644 index 7414bcafa..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FocusTrackingLockOn.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusTrackingLockOn extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusTrackingLockOn'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Tracking Lock On'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Long', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Short', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => '5 (Long)', - ), - 5 => array( - 'Id' => 1, - 'Label' => 4, - ), - 6 => array( - 'Id' => 2, - 'Label' => '3 (Normal)', - ), - 7 => array( - 'Id' => 3, - 'Label' => 2, - ), - 8 => array( - 'Id' => 4, - 'Label' => '1 (Short)', - ), - 9 => array( - 'Id' => 5, - 'Label' => 'Off', - ), - 10 => array( - 'Id' => 0, - 'Label' => '3 Normal', - ), - 11 => array( - 'Id' => 1, - 'Label' => 4, - ), - 12 => array( - 'Id' => 2, - 'Label' => '5 Long', - ), - 13 => array( - 'Id' => 3, - 'Label' => 2, - ), - 14 => array( - 'Id' => 4, - 'Label' => '1 Short', - ), - 15 => array( - 'Id' => 5, - 'Label' => 'Off', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 17 => array( - 'Id' => 1, - 'Label' => '1 Short', - ), - 18 => array( - 'Id' => 2, - 'Label' => 2, - ), - 19 => array( - 'Id' => 3, - 'Label' => '3 Normal', - ), - 20 => array( - 'Id' => 4, - 'Label' => 4, - ), - 21 => array( - 'Id' => 5, - 'Label' => '5 Long', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FuncButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FuncButton.php deleted file mode 100644 index 8099a809e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FuncButton.php +++ /dev/null @@ -1,366 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FuncButton extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FuncButton'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Func Button'; - - protected $flag_Permanent = true; - - protected $Index = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 3 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 4 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 5 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 6 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 7 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 8 => array( - 'Id' => 72, - 'Label' => 'Flash Off', - ), - 9 => array( - 'Id' => 80, - 'Label' => 'Bracketing Burst', - ), - 10 => array( - 'Id' => 88, - 'Label' => 'Matrix Metering', - ), - 11 => array( - 'Id' => 96, - 'Label' => 'Center-weighted Metering', - ), - 12 => array( - 'Id' => 104, - 'Label' => 'Spot Metering', - ), - 13 => array( - 'Id' => 112, - 'Label' => 'Playback', - ), - 14 => array( - 'Id' => 120, - 'Label' => 'My Menu Top', - ), - 15 => array( - 'Id' => 128, - 'Label' => '+ NEF (RAW)', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 17 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 18 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 19 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 20 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 21 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 22 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 23 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 24 => array( - 'Id' => 64, - 'Label' => 'Flash Off', - ), - 25 => array( - 'Id' => 72, - 'Label' => 'Bracketing Burst', - ), - 26 => array( - 'Id' => 80, - 'Label' => 'Matrix Metering', - ), - 27 => array( - 'Id' => 88, - 'Label' => 'Center-weighted Metering', - ), - 28 => array( - 'Id' => 96, - 'Label' => 'Spot Metering', - ), - 29 => array( - 'Id' => 104, - 'Label' => 'Virtual Horizon', - ), - 30 => array( - 'Id' => 120, - 'Label' => 'Playback', - ), - 31 => array( - 'Id' => 128, - 'Label' => 'My Menu Top', - ), - 32 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 33 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 34 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 35 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 36 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 37 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 38 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 39 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 40 => array( - 'Id' => 72, - 'Label' => 'Flash Off', - ), - 41 => array( - 'Id' => 80, - 'Label' => 'Bracketing Burst', - ), - 42 => array( - 'Id' => 88, - 'Label' => 'Matrix Metering', - ), - 43 => array( - 'Id' => 96, - 'Label' => 'Center-weighted Metering', - ), - 44 => array( - 'Id' => 104, - 'Label' => 'Spot Metering', - ), - 45 => array( - 'Id' => 112, - 'Label' => 'My Menu Top', - ), - 46 => array( - 'Id' => 120, - 'Label' => 'Live View', - ), - 47 => array( - 'Id' => 128, - 'Label' => '+ NEF (RAW)', - ), - 48 => array( - 'Id' => 136, - 'Label' => 'Virtual Horizon', - ), - 49 => array( - 'Id' => 0, - 'Label' => 'Grid Display', - ), - 50 => array( - 'Id' => 8, - 'Label' => 'FV Lock', - ), - 51 => array( - 'Id' => 16, - 'Label' => 'Flash Off', - ), - 52 => array( - 'Id' => 24, - 'Label' => 'Matrix Metering', - ), - 53 => array( - 'Id' => 32, - 'Label' => 'Center-weighted Metering', - ), - 54 => array( - 'Id' => 40, - 'Label' => 'Spot Metering', - ), - 55 => array( - 'Id' => 48, - 'Label' => 'My Menu Top', - ), - 56 => array( - 'Id' => 56, - 'Label' => '+ NEF (RAW)', - ), - 57 => array( - 'Id' => 64, - 'Label' => 'Active D-Lighting', - ), - 58 => array( - 'Id' => 72, - 'Label' => 'Preview', - ), - 59 => array( - 'Id' => 80, - 'Label' => 'AE/AF Lock', - ), - 60 => array( - 'Id' => 88, - 'Label' => 'AE Lock Only', - ), - 61 => array( - 'Id' => 96, - 'Label' => 'AF Lock Only', - ), - 62 => array( - 'Id' => 104, - 'Label' => 'AE Lock (hold)', - ), - 63 => array( - 'Id' => 112, - 'Label' => 'Bracketing Burst', - ), - 64 => array( - 'Id' => 120, - 'Label' => 'Playback', - ), - 65 => array( - 'Id' => 128, - 'Label' => '1EV Step Speed/Aperture', - ), - 66 => array( - 'Id' => 136, - 'Label' => 'Choose Non-CPU Lens', - ), - 67 => array( - 'Id' => 144, - 'Label' => 'Virtual Horizon', - ), - 68 => array( - 'Id' => 152, - 'Label' => 'Start Movie Recording', - ), - 69 => array( - 'Id' => 8, - 'Label' => 'Framing Grid', - ), - 70 => array( - 'Id' => 16, - 'Label' => 'AF-area Mode', - ), - 71 => array( - 'Id' => 24, - 'Label' => 'Center Focus Point', - ), - 72 => array( - 'Id' => 32, - 'Label' => 'FV Lock', - ), - 73 => array( - 'Id' => 40, - 'Label' => 'Flash Off', - ), - 74 => array( - 'Id' => 48, - 'Label' => 'Matrix Metering', - ), - 75 => array( - 'Id' => 56, - 'Label' => 'Center-weighted Metering', - ), - 76 => array( - 'Id' => 64, - 'Label' => 'Spot Metering', - ), - 77 => array( - 'Id' => 72, - 'Label' => 'My Menu Top', - ), - 78 => array( - 'Id' => 80, - 'Label' => '+ NEF (RAW)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FuncButtonPlusDials.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FuncButtonPlusDials.php deleted file mode 100644 index 39b79c067..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FuncButtonPlusDials.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FuncButtonPlusDials extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FuncButtonPlusDials'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Func Button Plus Dials'; - - protected $flag_Permanent = true; - - protected $Index = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'One Step Speed/Aperture', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 3 => array( - 'Id' => 5, - 'Label' => 'Auto Bracketing', - ), - 4 => array( - 'Id' => 6, - 'Label' => 'Dynamic AF Area', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Choose Image Area (FX/DX/5:4)', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'One Step Speed/Aperture', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Focus Point Selection', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Choose Image Area (FX/DX)', - ), - 11 => array( - 'Id' => 6, - 'Label' => 'Shooting Bank Menu', - ), - 12 => array( - 'Id' => 7, - 'Label' => 'Dynamic AF Area', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 14 => array( - 'Id' => 16, - 'Label' => 'Choose Image Area', - ), - 15 => array( - 'Id' => 32, - 'Label' => 'One Step Speed/Aperture', - ), - 16 => array( - 'Id' => 48, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 17 => array( - 'Id' => 80, - 'Label' => 'Auto bracketing', - ), - 18 => array( - 'Id' => 96, - 'Label' => 'Dynamic AF Area', - ), - 19 => array( - 'Id' => 112, - 'Label' => 'Shutter speed & Aperture lock', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/FunctionButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/FunctionButton.php deleted file mode 100644 index 07f98fd5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/FunctionButton.php +++ /dev/null @@ -1,140 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FunctionButton extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FunctionButton'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Function Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 3, - 'Label' => 'AE/AF Lock', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'AE Lock Only', - ), - 2 => array( - 'Id' => 6, - 'Label' => 'AE Lock (hold)', - ), - 3 => array( - 'Id' => 7, - 'Label' => 'AF Lock Only', - ), - 4 => array( - 'Id' => 8, - 'Label' => 'AF-ON', - ), - 5 => array( - 'Id' => 16, - 'Label' => '+ NEF (RAW)', - ), - 6 => array( - 'Id' => 18, - 'Label' => 'Active D-Lighting', - ), - 7 => array( - 'Id' => 25, - 'Label' => 'Live View', - ), - 8 => array( - 'Id' => 26, - 'Label' => 'Image Quality', - ), - 9 => array( - 'Id' => 27, - 'Label' => 'ISO', - ), - 10 => array( - 'Id' => 28, - 'Label' => 'White Balance', - ), - 11 => array( - 'Id' => 29, - 'Label' => 'HDR', - ), - 12 => array( - 'Id' => 30, - 'Label' => 'Auto Bracketing', - ), - 13 => array( - 'Id' => 31, - 'Label' => 'AF-area Mode', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'ISO Display', - ), - 15 => array( - 'Id' => 8, - 'Label' => 'Framing Grid', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'AF-area Mode', - ), - 17 => array( - 'Id' => 24, - 'Label' => 'Center AF Area', - ), - 18 => array( - 'Id' => 32, - 'Label' => 'FV Lock', - ), - 19 => array( - 'Id' => 40, - 'Label' => 'Flash Off', - ), - 20 => array( - 'Id' => 48, - 'Label' => 'Matrix Metering', - ), - 21 => array( - 'Id' => 56, - 'Label' => 'Center-weighted', - ), - 22 => array( - 'Id' => 64, - 'Label' => 'Spot Metering', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/GridDisplay.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/GridDisplay.php deleted file mode 100644 index f48e4102b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/GridDisplay.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridDisplay extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GridDisplay'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Grid Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 128, - 'Label' => 'On', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ISODisplay.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ISODisplay.php deleted file mode 100644 index d50dd3bb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ISODisplay.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISODisplay extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISODisplay'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Show ISO/Easy ISO', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Show ISO Sensitivity', - ), - 4 => array( - 'Id' => 12, - 'Label' => 'Show Frame Count', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Show ISO/Easy ISO', - ), - 6 => array( - 'Id' => 4, - 'Label' => 'Show ISO Sensitivity', - ), - 7 => array( - 'Id' => 12, - 'Label' => 'Show Frame Count', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ISOSensitivityStep.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ISOSensitivityStep.php deleted file mode 100644 index a371ab31b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ISOSensitivityStep.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSensitivityStep extends AbstractTag -{ - - protected $Id = '6.2'; - - protected $Name = 'ISOSensitivityStep'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Sensitivity Step'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 16 => array( - 'Id' => 16, - 'Label' => '1/2 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ISOStepSize.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ISOStepSize.php deleted file mode 100644 index 3ec9752ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ISOStepSize.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOStepSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISOStepSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Step Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/3 EV', - ), - 64 => array( - 'Id' => 64, - 'Label' => '1/2 EV', - ), - 128 => array( - 'Id' => 128, - 'Label' => '1 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/Illumination.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/Illumination.php deleted file mode 100644 index 01b2be97b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/Illumination.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Illumination extends AbstractTag -{ - - protected $Id = '0.5'; - - protected $Name = 'Illumination'; - - protected $FullName = 'NikonCustom::SettingsD80'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Illumination'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ImageReview.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ImageReview.php deleted file mode 100644 index df9b02cdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ImageReview.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageReview extends AbstractTag -{ - - protected $Id = '0.4'; - - protected $Name = 'ImageReview'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Review'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ImageReviewTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ImageReviewTime.php deleted file mode 100644 index db622e6bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ImageReviewTime.php +++ /dev/null @@ -1,200 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageReviewTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageReviewTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Review Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '8 s', - ), - 2 => array( - 'Id' => 2, - 'Label' => '20 s', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1 min', - ), - 4 => array( - 'Id' => 4, - 'Label' => '10 min', - ), - 5 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 6 => array( - 'Id' => 32, - 'Label' => '8 s', - ), - 7 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 8 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 9 => array( - 'Id' => 128, - 'Label' => '10 min', - ), - 10 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 11 => array( - 'Id' => 32, - 'Label' => '8 s', - ), - 12 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 13 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 14 => array( - 'Id' => 128, - 'Label' => '10 min', - ), - 15 => array( - 'Id' => 32, - 'Label' => '4 s', - ), - 16 => array( - 'Id' => 64, - 'Label' => '8 s', - ), - 17 => array( - 'Id' => 128, - 'Label' => '20 s', - ), - 18 => array( - 'Id' => 160, - 'Label' => '1 min', - ), - 19 => array( - 'Id' => 224, - 'Label' => '10 min', - ), - 20 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 21 => array( - 'Id' => 1, - 'Label' => '10 s', - ), - 22 => array( - 'Id' => 2, - 'Label' => '20 s', - ), - 23 => array( - 'Id' => 3, - 'Label' => '1 min', - ), - 24 => array( - 'Id' => 4, - 'Label' => '5 min', - ), - 25 => array( - 'Id' => 5, - 'Label' => '10 min', - ), - 26 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 27 => array( - 'Id' => 32, - 'Label' => '10 s', - ), - 28 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 29 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 30 => array( - 'Id' => 128, - 'Label' => '5 min', - ), - 31 => array( - 'Id' => 160, - 'Label' => '10 min', - ), - 32 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 33 => array( - 'Id' => 32, - 'Label' => '10 s', - ), - 34 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 35 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 36 => array( - 'Id' => 128, - 'Label' => '5 min', - ), - 37 => array( - 'Id' => 160, - 'Label' => '10 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/InitialZoomLiveView.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/InitialZoomLiveView.php deleted file mode 100644 index c6e076692..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/InitialZoomLiveView.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialZoomLiveView extends AbstractTag -{ - - protected $Id = '4.4'; - - protected $Name = 'InitialZoomLiveView'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Initial Zoom Live View'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Low Magnification', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Medium Magnification', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'High Magnification', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/InitialZoomSetting.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/InitialZoomSetting.php deleted file mode 100644 index 116cc897f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/InitialZoomSetting.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialZoomSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'InitialZoomSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Initial Zoom Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'High Magnification', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'Medium Magnification', - ), - 2 => array( - 'Id' => 8, - 'Label' => 'Low Magnification', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Low Magnification', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Medium Magnification', - ), - 5 => array( - 'Id' => 8, - 'Label' => 'High Magnification', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Low Magnification', - ), - 7 => array( - 'Id' => 4, - 'Label' => 'Medium Magnification', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'High Magnification', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/InternalFlash.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/InternalFlash.php deleted file mode 100644 index 7a9f187df..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/InternalFlash.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'InternalFlash'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 128, - 'Label' => 'Repeating Flash', - ), - 3 => array( - 'Id' => 192, - 'Label' => 'Commander Mode', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 5 => array( - 'Id' => 16, - 'Label' => 'Manual', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 7 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 9 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 11 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 12 => array( - 'Id' => 128, - 'Label' => 'Repeating Flash', - ), - 13 => array( - 'Id' => 192, - 'Label' => 'Commander Mode', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'TTL', - ), - 15 => array( - 'Id' => 64, - 'Label' => 'Manual', - ), - 16 => array( - 'Id' => 128, - 'Label' => 'Repeating Flash', - ), - 17 => array( - 'Id' => 192, - 'Label' => 'Commander Mode', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/LCDIllumination.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/LCDIllumination.php deleted file mode 100644 index 0942ad87b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/LCDIllumination.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LCDIllumination extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LCDIllumination'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LCD Illumination'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 32, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 32, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/LightSwitch.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/LightSwitch.php deleted file mode 100644 index f5d6b12a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/LightSwitch.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSwitch extends AbstractTag -{ - - protected $Id = '0.1'; - - protected $Name = 'LightSwitch'; - - protected $FullName = 'NikonCustom::SettingsD90'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Light Switch'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'LCD Backlight', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'LCD Backlight and Shooting Information', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAF.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAF.php deleted file mode 100644 index dcdc38555..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAF.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewAF extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LiveViewAF'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View AF'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Face Priority', - ), - 1 => array( - 'Id' => 32, - 'Label' => 'Wide Area', - ), - 2 => array( - 'Id' => 64, - 'Label' => 'Normal Area', - ), - 3 => array( - 'Id' => 96, - 'Label' => 'Subject Tracking', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Face Priority', - ), - 5 => array( - 'Id' => 64, - 'Label' => 'Wide Area', - ), - 6 => array( - 'Id' => 128, - 'Label' => 'Normal Area', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAFAreaMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAFAreaMode.php deleted file mode 100644 index 157739881..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAFAreaMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewAFAreaMode extends AbstractTag -{ - - protected $Id = '34.1'; - - protected $Name = 'LiveViewAFAreaMode'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View AF Area Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Face-Priority', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'NormalArea', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'WideArea', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'SubjectTracking', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAFMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAFMode.php deleted file mode 100644 index cdf5c674f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewAFMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewAFMode extends AbstractTag -{ - - protected $Id = '34.2'; - - protected $Name = 'LiveViewAFMode'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View AF Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF-C', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AF-F', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewMonitorOffTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewMonitorOffTime.php deleted file mode 100644 index de8b1c596..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/LiveViewMonitorOffTime.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewMonitorOffTime extends AbstractTag -{ - - protected $Id = '20.2'; - - protected $Name = 'LiveViewMonitorOffTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View Monitor Off Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '3 min', - ), - 1 => array( - 'Id' => 4, - 'Label' => '5 min', - ), - 2 => array( - 'Id' => 8, - 'Label' => '10 min', - ), - 3 => array( - 'Id' => 12, - 'Label' => '15 min', - ), - 4 => array( - 'Id' => 16, - 'Label' => '20 min', - ), - 5 => array( - 'Id' => 20, - 'Label' => '30 min', - ), - 6 => array( - 'Id' => 4, - 'Label' => '5 min', - ), - 7 => array( - 'Id' => 8, - 'Label' => '10 min', - ), - 8 => array( - 'Id' => 12, - 'Label' => '15 min', - ), - 9 => array( - 'Id' => 16, - 'Label' => '20 min', - ), - 10 => array( - 'Id' => 20, - 'Label' => '30 min', - ), - 11 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 12 => array( - 'Id' => 4, - 'Label' => '10 s', - ), - 13 => array( - 'Id' => 8, - 'Label' => '20 s', - ), - 14 => array( - 'Id' => 12, - 'Label' => '1 min', - ), - 15 => array( - 'Id' => 16, - 'Label' => '5 min', - ), - 16 => array( - 'Id' => 20, - 'Label' => '10 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD10Batteries.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD10Batteries.php deleted file mode 100644 index 7591b1dd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD10Batteries.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MBD10Batteries extends AbstractTag -{ - - protected $Id = '12.6'; - - protected $Name = 'MB-D10Batteries'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'MB-D10 Batteries'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'LR6 (AA alkaline)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'HR6 (AA Ni-MH)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FR6 (AA lithium)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ZR6 (AA Ni-Mn)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD10BatteryType.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD10BatteryType.php deleted file mode 100644 index db710529e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD10BatteryType.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MBD10BatteryType extends AbstractTag -{ - - protected $Id = '13.3'; - - protected $Name = 'MB-D10BatteryType'; - - protected $FullName = 'NikonCustom::SettingsD700'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'MB-D10 Battery Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'LR6 (AA alkaline)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'HR6 (AA Ni-MH)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FR6 (AA lithium)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ZR6 (AA Ni-Mn)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD11BatteryType.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD11BatteryType.php deleted file mode 100644 index 38bad470e..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD11BatteryType.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MBD11BatteryType extends AbstractTag -{ - - protected $Id = '2.3'; - - protected $Name = 'MB-D11BatteryType'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'MB-D11 Battery Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'LR6 (AA alkaline)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Ni-MH (AA Ni-MH)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FR6 (AA lithium)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD80Batteries.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD80Batteries.php deleted file mode 100644 index ec4976888..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD80Batteries.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MBD80Batteries extends AbstractTag -{ - - protected $Id = '6.5'; - - protected $Name = 'MB-D80Batteries'; - - protected $FullName = 'NikonCustom::SettingsD80'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'MB-D80 Batteries'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'LR6 (AA Alkaline)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'HR6 (AA Ni-MH)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FR6 (AA Lithium)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ZR6 (AA Ni-Mg)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD80BatteryType.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD80BatteryType.php deleted file mode 100644 index 88f333094..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MBD80BatteryType.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MBD80BatteryType extends AbstractTag -{ - - protected $Id = '3.2'; - - protected $Name = 'MB-D80BatteryType'; - - protected $FullName = 'NikonCustom::SettingsD90'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'MB-D80 Battery Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'LR6 (AA alkaline)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'HR6 (AA Ni-MH)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FR6 (AA lithium)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ZR6 (AA Ni-Mn)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MainDialExposureComp.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MainDialExposureComp.php deleted file mode 100644 index 47707f8e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MainDialExposureComp.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MainDialExposureComp extends AbstractTag -{ - - protected $Id = '0.6'; - - protected $Name = 'MainDialExposureComp'; - - protected $FullName = 'NikonCustom::SettingsD80'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Main Dial Exposure Comp'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ManualFlashOutput.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ManualFlashOutput.php deleted file mode 100644 index 29da904ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ManualFlashOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFlashOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ManualFlashOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Manual Flash Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MaxContinuousRelease.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MaxContinuousRelease.php deleted file mode 100644 index 3c8c93855..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MaxContinuousRelease.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxContinuousRelease extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxContinuousRelease'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Max Continuous Release'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MenuMonitorOffTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MenuMonitorOffTime.php deleted file mode 100644 index e74b0f2c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MenuMonitorOffTime.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MenuMonitorOffTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MenuMonitorOffTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Menu Monitor Off Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '10 s', - ), - 2 => array( - 'Id' => 2, - 'Label' => '20 s', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1 min', - ), - 4 => array( - 'Id' => 4, - 'Label' => '5 min', - ), - 5 => array( - 'Id' => 5, - 'Label' => '10 min', - ), - 6 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 7 => array( - 'Id' => 32, - 'Label' => '10 s', - ), - 8 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 9 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 10 => array( - 'Id' => 128, - 'Label' => '5 min', - ), - 11 => array( - 'Id' => 160, - 'Label' => '10 min', - ), - 12 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 13 => array( - 'Id' => 32, - 'Label' => '10 s', - ), - 14 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 15 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 16 => array( - 'Id' => 128, - 'Label' => '5 min', - ), - 17 => array( - 'Id' => 160, - 'Label' => '10 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/Metering.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/Metering.php deleted file mode 100644 index c95546e40..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/Metering.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Metering extends AbstractTag -{ - - protected $Id = '6.1'; - - protected $Name = 'Metering'; - - protected $FullName = 'NikonCustom::SettingsD40'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Metering'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Matrix', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center-weighted', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MeteringTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MeteringTime.php deleted file mode 100644 index 0e521b4e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MeteringTime.php +++ /dev/null @@ -1,288 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MeteringTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Metering Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '6 s', - ), - 2 => array( - 'Id' => 2, - 'Label' => '8 s', - ), - 3 => array( - 'Id' => 3, - 'Label' => '16 s', - ), - 4 => array( - 'Id' => 4, - 'Label' => '30 s', - ), - 5 => array( - 'Id' => 5, - 'Label' => '1 min', - ), - 6 => array( - 'Id' => 6, - 'Label' => '5 min', - ), - 7 => array( - 'Id' => 7, - 'Label' => '10 min', - ), - 8 => array( - 'Id' => 8, - 'Label' => '30 min', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'No Limit', - ), - 10 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 11 => array( - 'Id' => 4, - 'Label' => '8 s', - ), - 12 => array( - 'Id' => 8, - 'Label' => '20 s', - ), - 13 => array( - 'Id' => 12, - 'Label' => '1 min', - ), - 14 => array( - 'Id' => 16, - 'Label' => '30 min', - ), - 15 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 16 => array( - 'Id' => 16, - 'Label' => '8 s', - ), - 17 => array( - 'Id' => 32, - 'Label' => '20 s', - ), - 18 => array( - 'Id' => 48, - 'Label' => '1 min', - ), - 19 => array( - 'Id' => 64, - 'Label' => '30 min', - ), - 20 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 21 => array( - 'Id' => 16, - 'Label' => '8 s', - ), - 22 => array( - 'Id' => 32, - 'Label' => '20 s', - ), - 23 => array( - 'Id' => 48, - 'Label' => '1 min', - ), - 24 => array( - 'Id' => 64, - 'Label' => '30 min', - ), - 25 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 26 => array( - 'Id' => 1, - 'Label' => '6 s', - ), - 27 => array( - 'Id' => 2, - 'Label' => '8 s', - ), - 28 => array( - 'Id' => 3, - 'Label' => '16 s', - ), - 29 => array( - 'Id' => 4, - 'Label' => '30 s', - ), - 30 => array( - 'Id' => 5, - 'Label' => '1 min', - ), - 31 => array( - 'Id' => 6, - 'Label' => '5 min', - ), - 32 => array( - 'Id' => 7, - 'Label' => '10 min', - ), - 33 => array( - 'Id' => 8, - 'Label' => '30 min', - ), - 34 => array( - 'Id' => 9, - 'Label' => 'No Limit', - ), - 35 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 36 => array( - 'Id' => 16, - 'Label' => '6 s', - ), - 37 => array( - 'Id' => 32, - 'Label' => '8 s', - ), - 38 => array( - 'Id' => 48, - 'Label' => '16 s', - ), - 39 => array( - 'Id' => 64, - 'Label' => '30 s', - ), - 40 => array( - 'Id' => 80, - 'Label' => '1 min', - ), - 41 => array( - 'Id' => 96, - 'Label' => '5 min', - ), - 42 => array( - 'Id' => 112, - 'Label' => '10 min', - ), - 43 => array( - 'Id' => 128, - 'Label' => '30 min', - ), - 44 => array( - 'Id' => 144, - 'Label' => 'No Limit', - ), - 45 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 46 => array( - 'Id' => 4, - 'Label' => '6 s', - ), - 47 => array( - 'Id' => 8, - 'Label' => '8 s', - ), - 48 => array( - 'Id' => 12, - 'Label' => '16 s', - ), - 49 => array( - 'Id' => 16, - 'Label' => '30 s', - ), - 50 => array( - 'Id' => 20, - 'Label' => '30 min', - ), - 51 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 52 => array( - 'Id' => 16, - 'Label' => '6 s', - ), - 53 => array( - 'Id' => 32, - 'Label' => '8 s', - ), - 54 => array( - 'Id' => 48, - 'Label' => '16 s', - ), - 55 => array( - 'Id' => 64, - 'Label' => '30 s', - ), - 56 => array( - 'Id' => 80, - 'Label' => '1 min', - ), - 57 => array( - 'Id' => 96, - 'Label' => '5 min', - ), - 58 => array( - 'Id' => 112, - 'Label' => '10 min', - ), - 59 => array( - 'Id' => 128, - 'Label' => '30 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ModelingFlash.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ModelingFlash.php deleted file mode 100644 index 6593cdcd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ModelingFlash.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelingFlash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ModelingFlash'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Modeling Flash'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 32, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 7 => array( - 'Id' => 32, - 'Label' => 'Off', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 9 => array( - 'Id' => 32, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MonitorOffTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MonitorOffTime.php deleted file mode 100644 index 0af6a606b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MonitorOffTime.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonitorOffTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MonitorOffTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Monitor Off Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '10 s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '20 s', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1 min', - ), - 3 => array( - 'Id' => 3, - 'Label' => '5 min', - ), - 4 => array( - 'Id' => 4, - 'Label' => '10 min', - ), - 5 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 6 => array( - 'Id' => 32, - 'Label' => '8 s', - ), - 7 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 8 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 9 => array( - 'Id' => 128, - 'Label' => '10 min', - ), - 10 => array( - 'Id' => 0, - 'Label' => '5 s', - ), - 11 => array( - 'Id' => 32, - 'Label' => '10 s', - ), - 12 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 13 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 14 => array( - 'Id' => 128, - 'Label' => '5 min', - ), - 15 => array( - 'Id' => 160, - 'Label' => '10 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelector.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelector.php deleted file mode 100644 index 6ace770cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelector.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiSelector extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MultiSelector'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Multi Selector'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Do Nothing', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Reset Meter-off Delay', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorLiveView.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorLiveView.php deleted file mode 100644 index 274067c39..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorLiveView.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiSelectorLiveView extends AbstractTag -{ - - protected $Id = '4.3'; - - protected $Name = 'MultiSelectorLiveView'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Multi Selector Live View'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Reset', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Zoom On/Off', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Start Movie Recording', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'Not Used', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorPlaybackMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorPlaybackMode.php deleted file mode 100644 index 0710b2cd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorPlaybackMode.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiSelectorPlaybackMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MultiSelectorPlaybackMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Multi Selector Playback Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Thumbnail On/Off', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'View Histograms', - ), - 2 => array( - 'Id' => 32, - 'Label' => 'Zoom On/Off', - ), - 3 => array( - 'Id' => 48, - 'Label' => 'Choose Folder', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Thumbnail On/Off', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'View Histograms', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Zoom On/Off', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Thumbnail On/Off', - ), - 8 => array( - 'Id' => 16, - 'Label' => 'View Histograms', - ), - 9 => array( - 'Id' => 32, - 'Label' => 'Zoom On/Off', - ), - 10 => array( - 'Id' => 48, - 'Label' => 'Choose Folder', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorShootMode.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorShootMode.php deleted file mode 100644 index 5ecd9e04c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/MultiSelectorShootMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiSelectorShootMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MultiSelectorShootMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Multi Selector Shoot Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Select Center Focus Point', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Highlight Active Focus Point', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Not Used', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/NoMemoryCard.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/NoMemoryCard.php deleted file mode 100644 index a72cf89cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/NoMemoryCard.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoMemoryCard extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NoMemoryCard'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'No Memory Card'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 1 => array( - 'Id' => 128, - 'Label' => 'Enable Release', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 3 => array( - 'Id' => 32, - 'Label' => 'Enable Release', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 5 => array( - 'Id' => 32, - 'Label' => 'Enable Release', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 7 => array( - 'Id' => 32, - 'Label' => 'Enable Release', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 9 => array( - 'Id' => 32, - 'Label' => 'Enable Release', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'Enable Release', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 13 => array( - 'Id' => 32, - 'Label' => 'Enable Release', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 15 => array( - 'Id' => 32, - 'Label' => 'Enable Release', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'Release Locked', - ), - 17 => array( - 'Id' => 32, - 'Label' => 'Enable Release', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/NumberOfFocusPoints.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/NumberOfFocusPoints.php deleted file mode 100644 index 267264194..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/NumberOfFocusPoints.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfFocusPoints extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NumberOfFocusPoints'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Number Of Focus Points'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '39 Points', - ), - 16 => array( - 'Id' => 16, - 'Label' => '11 Points', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/OKButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/OKButton.php deleted file mode 100644 index aab0c8b72..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/OKButton.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OKButton extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OKButton'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'OK Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'Select Center Focus Point', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'Highlight Active Focus Point', - ), - 3 => array( - 'Id' => 24, - 'Label' => 'Not Used', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Not Used', - ), - 5 => array( - 'Id' => 8, - 'Label' => 'Select Center Focus Point', - ), - 6 => array( - 'Id' => 16, - 'Label' => 'Highlight Active Focus Point', - ), - 7 => array( - 'Id' => 24, - 'Label' => 'Not Used', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/PhotoInfoPlayback.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/PhotoInfoPlayback.php deleted file mode 100644 index ccee77b8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/PhotoInfoPlayback.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoInfoPlayback extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PhotoInfoPlayback'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Photo Info Playback'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Info Up-down, Playback Left-right', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'Info Left-right, Playback Up-down', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/PlaybackMenusTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/PlaybackMenusTime.php deleted file mode 100644 index 39c90b33f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/PlaybackMenusTime.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaybackMenusTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PlaybackMenusTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Playback Menus Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '8 s', - ), - 1 => array( - 'Id' => 32, - 'Label' => '12 s', - ), - 2 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 3 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 4 => array( - 'Id' => 128, - 'Label' => '10 min', - ), - 5 => array( - 'Id' => 32, - 'Label' => '8 s', - ), - 6 => array( - 'Id' => 128, - 'Label' => '20 s', - ), - 7 => array( - 'Id' => 160, - 'Label' => '1 min', - ), - 8 => array( - 'Id' => 192, - 'Label' => '5 min', - ), - 9 => array( - 'Id' => 224, - 'Label' => '10 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/PlaybackMonitorOffTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/PlaybackMonitorOffTime.php deleted file mode 100644 index 374347829..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/PlaybackMonitorOffTime.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaybackMonitorOffTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PlaybackMonitorOffTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Playback Monitor Off Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 1 => array( - 'Id' => 8, - 'Label' => '10 s', - ), - 2 => array( - 'Id' => 16, - 'Label' => '20 s', - ), - 3 => array( - 'Id' => 24, - 'Label' => '1 min', - ), - 4 => array( - 'Id' => 32, - 'Label' => '5 min', - ), - 5 => array( - 'Id' => 40, - 'Label' => '10 min', - ), - 6 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 7 => array( - 'Id' => 32, - 'Label' => '10 s', - ), - 8 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 9 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 10 => array( - 'Id' => 128, - 'Label' => '5 min', - ), - 11 => array( - 'Id' => 160, - 'Label' => '10 min', - ), - 12 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 13 => array( - 'Id' => 4, - 'Label' => '10 s', - ), - 14 => array( - 'Id' => 8, - 'Label' => '20 s', - ), - 15 => array( - 'Id' => 12, - 'Label' => '1 min', - ), - 16 => array( - 'Id' => 16, - 'Label' => '5 min', - ), - 17 => array( - 'Id' => 20, - 'Label' => '10 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/PreviewButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/PreviewButton.php deleted file mode 100644 index d7232ac65..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/PreviewButton.php +++ /dev/null @@ -1,330 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewButton extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewButton'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Preview Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 3 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 4 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 5 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 6 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 7 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 8 => array( - 'Id' => 64, - 'Label' => 'Flash Off', - ), - 9 => array( - 'Id' => 72, - 'Label' => 'Bracketing Burst', - ), - 10 => array( - 'Id' => 80, - 'Label' => 'Matrix Metering', - ), - 11 => array( - 'Id' => 88, - 'Label' => 'Center-weighted Metering', - ), - 12 => array( - 'Id' => 96, - 'Label' => 'Spot Metering', - ), - 13 => array( - 'Id' => 104, - 'Label' => 'Virtual Horizon', - ), - 14 => array( - 'Id' => 120, - 'Label' => 'Playback', - ), - 15 => array( - 'Id' => 128, - 'Label' => 'My Menu Top', - ), - 16 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 17 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 18 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 19 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 20 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 21 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 22 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 23 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 24 => array( - 'Id' => 72, - 'Label' => 'Flash Off', - ), - 25 => array( - 'Id' => 80, - 'Label' => 'Bracketing Burst', - ), - 26 => array( - 'Id' => 88, - 'Label' => 'Matrix Metering', - ), - 27 => array( - 'Id' => 96, - 'Label' => 'Center-weighted Metering', - ), - 28 => array( - 'Id' => 104, - 'Label' => 'Spot Metering', - ), - 29 => array( - 'Id' => 112, - 'Label' => 'Playback', - ), - 30 => array( - 'Id' => 120, - 'Label' => 'My Menu Top', - ), - 31 => array( - 'Id' => 128, - 'Label' => '+ NEF (RAW)', - ), - 32 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 33 => array( - 'Id' => 8, - 'Label' => 'Preview', - ), - 34 => array( - 'Id' => 16, - 'Label' => 'FV Lock', - ), - 35 => array( - 'Id' => 24, - 'Label' => 'AE/AF Lock', - ), - 36 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 37 => array( - 'Id' => 40, - 'Label' => 'AE Lock (reset on release)', - ), - 38 => array( - 'Id' => 48, - 'Label' => 'AE Lock (hold)', - ), - 39 => array( - 'Id' => 56, - 'Label' => 'AF Lock Only', - ), - 40 => array( - 'Id' => 64, - 'Label' => 'AF-ON', - ), - 41 => array( - 'Id' => 72, - 'Label' => 'Flash Off', - ), - 42 => array( - 'Id' => 80, - 'Label' => 'Bracketing Burst', - ), - 43 => array( - 'Id' => 88, - 'Label' => 'Matrix Metering', - ), - 44 => array( - 'Id' => 96, - 'Label' => 'Center-weighted Metering', - ), - 45 => array( - 'Id' => 104, - 'Label' => 'Spot Metering', - ), - 46 => array( - 'Id' => 112, - 'Label' => 'My Menu Top', - ), - 47 => array( - 'Id' => 120, - 'Label' => 'Live View', - ), - 48 => array( - 'Id' => 128, - 'Label' => '+ NEF (RAW)', - ), - 49 => array( - 'Id' => 136, - 'Label' => 'Virtual Horizon', - ), - 50 => array( - 'Id' => 0, - 'Label' => 'Grid Display', - ), - 51 => array( - 'Id' => 8, - 'Label' => 'FV Lock', - ), - 52 => array( - 'Id' => 16, - 'Label' => 'Flash Off', - ), - 53 => array( - 'Id' => 24, - 'Label' => 'Matrix Metering', - ), - 54 => array( - 'Id' => 32, - 'Label' => 'Center-weighted Metering', - ), - 55 => array( - 'Id' => 40, - 'Label' => 'Spot Metering', - ), - 56 => array( - 'Id' => 48, - 'Label' => 'My Menu Top', - ), - 57 => array( - 'Id' => 56, - 'Label' => '+ NEF (RAW)', - ), - 58 => array( - 'Id' => 64, - 'Label' => 'Active D-Lighting', - ), - 59 => array( - 'Id' => 72, - 'Label' => 'Preview', - ), - 60 => array( - 'Id' => 80, - 'Label' => 'AE/AF Lock', - ), - 61 => array( - 'Id' => 88, - 'Label' => 'AE Lock Only', - ), - 62 => array( - 'Id' => 96, - 'Label' => 'AF Lock Only', - ), - 63 => array( - 'Id' => 104, - 'Label' => 'AE Lock (hold)', - ), - 64 => array( - 'Id' => 112, - 'Label' => 'Bracketing Burst', - ), - 65 => array( - 'Id' => 120, - 'Label' => 'Playback', - ), - 66 => array( - 'Id' => 128, - 'Label' => '1EV Step Speed/Aperture', - ), - 67 => array( - 'Id' => 136, - 'Label' => 'Choose Non-CPU Lens', - ), - 68 => array( - 'Id' => 144, - 'Label' => 'Virtual Horizon', - ), - 69 => array( - 'Id' => 152, - 'Label' => 'Start Movie Recording', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/PreviewButtonPlusDials.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/PreviewButtonPlusDials.php deleted file mode 100644 index 291fee147..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/PreviewButtonPlusDials.php +++ /dev/null @@ -1,126 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewButtonPlusDials extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewButtonPlusDials'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Preview Button Plus Dials'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Choose Image Area (FX/DX/5:4)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'One Step Speed/Aperture', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Choose Image Area (FX/DX)', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'Shooting Bank Menu', - ), - 6 => array( - 'Id' => 7, - 'Label' => 'Dynamic AF Area', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'One Step Speed/Aperture', - ), - 9 => array( - 'Id' => 3, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Auto Bracketing', - ), - 11 => array( - 'Id' => 6, - 'Label' => 'Dynamic AF Area', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Choose Image Area', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'One Step Speed/Aperture', - ), - 15 => array( - 'Id' => 3, - 'Label' => 'Choose Non-CPU Lens Number', - ), - 16 => array( - 'Id' => 5, - 'Label' => 'Auto bracketing', - ), - 17 => array( - 'Id' => 6, - 'Label' => 'Dynamic AF Area', - ), - 18 => array( - 'Id' => 7, - 'Label' => 'Shutter speed & Aperture lock', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/RangeFinder.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/RangeFinder.php deleted file mode 100644 index 812d2c0a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/RangeFinder.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RangeFinder extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RangeFinder'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Range Finder'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/RearDisplay.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/RearDisplay.php deleted file mode 100644 index 6ca1bb2f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/RearDisplay.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RearDisplay extends AbstractTag -{ - - protected $Id = '12.3'; - - protected $Name = 'RearDisplay'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Rear Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'ISO', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Exposures Remaining', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReleaseButtonToUseDial.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ReleaseButtonToUseDial.php deleted file mode 100644 index 9274d944f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReleaseButtonToUseDial.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseButtonToUseDial extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReleaseButtonToUseDial'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Release Button To Use Dial'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/RemoteOnDuration.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/RemoteOnDuration.php deleted file mode 100644 index c83ea1dab..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/RemoteOnDuration.php +++ /dev/null @@ -1,160 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RemoteOnDuration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RemoteOnDuration'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Remote On Duration'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1 min', - ), - 1 => array( - 'Id' => 64, - 'Label' => '5 min', - ), - 2 => array( - 'Id' => 128, - 'Label' => '10 min', - ), - 3 => array( - 'Id' => 192, - 'Label' => '15 min', - ), - 4 => array( - 'Id' => 0, - 'Label' => '1 min', - ), - 5 => array( - 'Id' => 1, - 'Label' => '5 min', - ), - 6 => array( - 'Id' => 2, - 'Label' => '10 min', - ), - 7 => array( - 'Id' => 3, - 'Label' => '15 min', - ), - 8 => array( - 'Id' => 0, - 'Label' => '1 min', - ), - 9 => array( - 'Id' => 1, - 'Label' => '5 min', - ), - 10 => array( - 'Id' => 2, - 'Label' => '10 min', - ), - 11 => array( - 'Id' => 3, - 'Label' => '20 min', - ), - 12 => array( - 'Id' => 0, - 'Label' => '1 min', - ), - 13 => array( - 'Id' => 1, - 'Label' => '5 min', - ), - 14 => array( - 'Id' => 2, - 'Label' => '10 min', - ), - 15 => array( - 'Id' => 3, - 'Label' => '15 min', - ), - 16 => array( - 'Id' => 0, - 'Label' => '1 min', - ), - 17 => array( - 'Id' => 1, - 'Label' => '5 min', - ), - 18 => array( - 'Id' => 2, - 'Label' => '10 min', - ), - 19 => array( - 'Id' => 3, - 'Label' => '15 min', - ), - 20 => array( - 'Id' => 0, - 'Label' => '1 min', - ), - 21 => array( - 'Id' => 64, - 'Label' => '5 min', - ), - 22 => array( - 'Id' => 128, - 'Label' => '10 min', - ), - 23 => array( - 'Id' => 192, - 'Label' => '15 min', - ), - 24 => array( - 'Id' => 0, - 'Label' => '1 min', - ), - 25 => array( - 'Id' => 1, - 'Label' => '5 min', - ), - 26 => array( - 'Id' => 2, - 'Label' => '10 min', - ), - 27 => array( - 'Id' => 3, - 'Label' => '15 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashCount.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashCount.php deleted file mode 100644 index c8e1cd0b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RepeatingFlashCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashOutput.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashOutput.php deleted file mode 100644 index e0c00cd35..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashOutput.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashOutput extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RepeatingFlashOutput'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Output'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashRate.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashRate.php deleted file mode 100644 index 17efcf6f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/RepeatingFlashRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatingFlashRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RepeatingFlashRate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Repeating Flash Rate'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseExposureCompDial.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseExposureCompDial.php deleted file mode 100644 index c20ecda8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseExposureCompDial.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReverseExposureCompDial extends AbstractTag -{ - - protected $Id = '5.2'; - - protected $Name = 'ReverseExposureCompDial'; - - protected $FullName = 'NikonCustom::SettingsD5200'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Reverse Exposure Comp Dial'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseIndicators.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseIndicators.php deleted file mode 100644 index 9f965675d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseIndicators.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReverseIndicators extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReverseIndicators'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Reverse Indicators'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '+ 0 -', - ), - 1 => array( - 'Id' => 32, - 'Label' => '- 0 +', - ), - 2 => array( - 'Id' => 0, - 'Label' => '+ 0 -', - ), - 3 => array( - 'Id' => 128, - 'Label' => '- 0 +', - ), - 4 => array( - 'Id' => 0, - 'Label' => '+ 0 -', - ), - 5 => array( - 'Id' => 128, - 'Label' => '- 0 +', - ), - 6 => array( - 'Id' => 0, - 'Label' => '+ 0 -', - ), - 7 => array( - 'Id' => 128, - 'Label' => '- 0 +', - ), - 8 => array( - 'Id' => 0, - 'Label' => '+ 0 -', - ), - 9 => array( - 'Id' => 8, - 'Label' => '- 0 +', - ), - 10 => array( - 'Id' => 0, - 'Label' => '+ 0 -', - ), - 11 => array( - 'Id' => 128, - 'Label' => '- 0 +', - ), - 12 => array( - 'Id' => 0, - 'Label' => '+ 0 -', - ), - 13 => array( - 'Id' => 128, - 'Label' => '- 0 +', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseShutterSpeedAperture.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseShutterSpeedAperture.php deleted file mode 100644 index 3716b76bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ReverseShutterSpeedAperture.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReverseShutterSpeedAperture extends AbstractTag -{ - - protected $Id = '5.3'; - - protected $Name = 'ReverseShutterSpeedAperture'; - - protected $FullName = 'NikonCustom::SettingsD5200'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Reverse Shutter Speed Aperture'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ScreenTips.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ScreenTips.php deleted file mode 100644 index c006665b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ScreenTips.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenTips extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ScreenTips'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Screen Tips'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 8, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 4, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 7 => array( - 'Id' => 4, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerInterval.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerInterval.php deleted file mode 100644 index e132fda30..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerInterval.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimerInterval extends AbstractTag -{ - - protected $Id = '19.2'; - - protected $Name = 'SelfTimerInterval'; - - protected $FullName = 'NikonCustom::SettingsD7000'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Self Timer Interval'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0.5 s', - ), - 16 => array( - 'Id' => 16, - 'Label' => '1 s', - ), - 32 => array( - 'Id' => 32, - 'Label' => '2 s', - ), - 48 => array( - 'Id' => 48, - 'Label' => '3 s', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerShotCount.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerShotCount.php deleted file mode 100644 index 34a1ac4fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerShotCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimerShotCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SelfTimerShotCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Self Timer Shot Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerTime.php deleted file mode 100644 index bae53bbdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/SelfTimerTime.php +++ /dev/null @@ -1,192 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimerTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SelfTimerTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Self Timer Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 1 => array( - 'Id' => 8, - 'Label' => '5 s', - ), - 2 => array( - 'Id' => 16, - 'Label' => '10 s', - ), - 3 => array( - 'Id' => 24, - 'Label' => '20 s', - ), - 4 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 5 => array( - 'Id' => 1, - 'Label' => '5 s', - ), - 6 => array( - 'Id' => 2, - 'Label' => '10 s', - ), - 7 => array( - 'Id' => 3, - 'Label' => '20 s', - ), - 8 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 9 => array( - 'Id' => 64, - 'Label' => '5 s', - ), - 10 => array( - 'Id' => 128, - 'Label' => '10 s', - ), - 11 => array( - 'Id' => 192, - 'Label' => '20 s', - ), - 12 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 13 => array( - 'Id' => 64, - 'Label' => '5 s', - ), - 14 => array( - 'Id' => 128, - 'Label' => '10 s', - ), - 15 => array( - 'Id' => 192, - 'Label' => '20 s', - ), - 16 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 17 => array( - 'Id' => 64, - 'Label' => '5 s', - ), - 18 => array( - 'Id' => 128, - 'Label' => '10 s', - ), - 19 => array( - 'Id' => 192, - 'Label' => '20 s', - ), - 20 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 21 => array( - 'Id' => 16, - 'Label' => '5 s', - ), - 22 => array( - 'Id' => 32, - 'Label' => '10 s', - ), - 23 => array( - 'Id' => 48, - 'Label' => '20 s', - ), - 24 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 25 => array( - 'Id' => 64, - 'Label' => '5 s', - ), - 26 => array( - 'Id' => 128, - 'Label' => '10 s', - ), - 27 => array( - 'Id' => 192, - 'Label' => '20 s', - ), - 28 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 29 => array( - 'Id' => 1, - 'Label' => '5 s', - ), - 30 => array( - 'Id' => 2, - 'Label' => '10 s', - ), - 31 => array( - 'Id' => 3, - 'Label' => '20 s', - ), - 32 => array( - 'Id' => 0, - 'Label' => '2 s', - ), - 33 => array( - 'Id' => 64, - 'Label' => '5 s', - ), - 34 => array( - 'Id' => 128, - 'Label' => '10 s', - ), - 35 => array( - 'Id' => 192, - 'Label' => '20 s', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingInfoDisplay.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingInfoDisplay.php deleted file mode 100644 index dbf9e6b19..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingInfoDisplay.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingInfoDisplay extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShootingInfoDisplay'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shooting Info Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 32, - 'Label' => 'Manual (dark on light)', - ), - 3 => array( - 'Id' => 48, - 'Label' => 'Manual (light on dark)', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 128, - 'Label' => 'Manual (dark on light)', - ), - 6 => array( - 'Id' => 192, - 'Label' => 'Manual (light on dark)', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 8 => array( - 'Id' => 128, - 'Label' => 'Manual (dark on light)', - ), - 9 => array( - 'Id' => 192, - 'Label' => 'Manual (light on dark)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingInfoMonitorOffTime.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingInfoMonitorOffTime.php deleted file mode 100644 index c504ed65c..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingInfoMonitorOffTime.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingInfoMonitorOffTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShootingInfoMonitorOffTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shooting Info Monitor Off Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 1 => array( - 'Id' => 8, - 'Label' => '10 s', - ), - 2 => array( - 'Id' => 16, - 'Label' => '20 s', - ), - 3 => array( - 'Id' => 24, - 'Label' => '1 min', - ), - 4 => array( - 'Id' => 32, - 'Label' => '5 min', - ), - 5 => array( - 'Id' => 40, - 'Label' => '10 min', - ), - 6 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 7 => array( - 'Id' => 4, - 'Label' => '10 s', - ), - 8 => array( - 'Id' => 8, - 'Label' => '20 s', - ), - 9 => array( - 'Id' => 12, - 'Label' => '1 min', - ), - 10 => array( - 'Id' => 16, - 'Label' => '5 min', - ), - 11 => array( - 'Id' => 20, - 'Label' => '10 min', - ), - 12 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 13 => array( - 'Id' => 4, - 'Label' => '10 s', - ), - 14 => array( - 'Id' => 8, - 'Label' => '20 s', - ), - 15 => array( - 'Id' => 12, - 'Label' => '1 min', - ), - 16 => array( - 'Id' => 16, - 'Label' => '5 min', - ), - 17 => array( - 'Id' => 20, - 'Label' => '10 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingModeSetting.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingModeSetting.php deleted file mode 100644 index 7f57def36..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShootingModeSetting.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingModeSetting extends AbstractTag -{ - - protected $Id = '5.1'; - - protected $Name = 'ShootingModeSetting'; - - protected $FullName = 'NikonCustom::SettingsD40'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shooting Mode Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single Frame', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Continuous', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Self-timer', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Delayed Remote', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Quick-response Remote', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShutterReleaseButtonAEL.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ShutterReleaseButtonAEL.php deleted file mode 100644 index 7536b1866..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ShutterReleaseButtonAEL.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterReleaseButtonAEL extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShutterReleaseButtonAE-L'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shutter Release Button AE-L'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 128, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/StandbyTimer.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/StandbyTimer.php deleted file mode 100644 index eb496c55a..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/StandbyTimer.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandbyTimer extends AbstractTag -{ - - protected $Id = '18.1'; - - protected $Name = 'StandbyTimer'; - - protected $FullName = 'NikonCustom::SettingsD5200'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Standby Timer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4 s', - ), - 32 => array( - 'Id' => 32, - 'Label' => '8 s', - ), - 64 => array( - 'Id' => 64, - 'Label' => '20 s', - ), - 96 => array( - 'Id' => 96, - 'Label' => '1 min', - ), - 128 => array( - 'Id' => 128, - 'Label' => '30 min', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/TimerFunctionButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/TimerFunctionButton.php deleted file mode 100644 index 53aa14076..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/TimerFunctionButton.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimerFunctionButton extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TimerFunctionButton'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Timer Function Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Shooting Mode', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Image Quality/Size', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'ISO', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'White Balance', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Self-timer', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Self-timer', - ), - 6 => array( - 'Id' => 8, - 'Label' => 'Release Mode', - ), - 7 => array( - 'Id' => 16, - 'Label' => 'Image Quality/Size', - ), - 8 => array( - 'Id' => 24, - 'Label' => 'ISO', - ), - 9 => array( - 'Id' => 32, - 'Label' => 'White Balance', - ), - 10 => array( - 'Id' => 40, - 'Label' => 'Active D-Lighting', - ), - 11 => array( - 'Id' => 48, - 'Label' => '+ NEF (RAW)', - ), - 12 => array( - 'Id' => 56, - 'Label' => 'Auto Bracketing', - ), - 13 => array( - 'Id' => 0, - 'Label' => 'Self-timer', - ), - 14 => array( - 'Id' => 8, - 'Label' => 'Release Mode', - ), - 15 => array( - 'Id' => 16, - 'Label' => 'Image Quality/Size', - ), - 16 => array( - 'Id' => 24, - 'Label' => 'ISO', - ), - 17 => array( - 'Id' => 32, - 'Label' => 'White Balance', - ), - 18 => array( - 'Id' => 40, - 'Label' => 'Active D-Lighting', - ), - 19 => array( - 'Id' => 48, - 'Label' => '+ NEF (RAW)', - ), - 20 => array( - 'Id' => 56, - 'Label' => 'Auto Bracketing', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/VerticalAFOnButton.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/VerticalAFOnButton.php deleted file mode 100644 index 55bc2107f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/VerticalAFOnButton.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalAFOnButton extends AbstractTag -{ - - protected $Id = '3.2'; - - protected $Name = 'VerticalAFOnButton'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Vertical AF On Button'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF On', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'AE/AF Lock', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'AE Lock Only', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'AE Lock (reset on release)', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'AE Lock (hold)', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'AF Lock Only', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Same as AF On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ViewfinderDisplay.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ViewfinderDisplay.php deleted file mode 100644 index df930d118..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ViewfinderDisplay.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewfinderDisplay extends AbstractTag -{ - - protected $Id = '12.4'; - - protected $Name = 'ViewfinderDisplay'; - - protected $FullName = 'NikonCustom::SettingsD3'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Viewfinder Display'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Frame Count', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Exposures Remaining', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonCustom/ViewfinderWarning.php b/lib/PHPExiftool/Driver/Tag/NikonCustom/ViewfinderWarning.php deleted file mode 100644 index f0747bc58..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonCustom/ViewfinderWarning.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonCustom; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewfinderWarning extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ViewfinderWarning'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'NikonCustom'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonCustom'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Viewfinder Warning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 64, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/BitDepth.php b/lib/PHPExiftool/Driver/Tag/NikonScan/BitDepth.php deleted file mode 100644 index ff0046496..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/BitDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'BitDepth'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Bit Depth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/ColorGain.php b/lib/PHPExiftool/Driver/Tag/NikonScan/ColorGain.php deleted file mode 100644 index 6ab5fea40..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/ColorGain.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorGain extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'ColorGain'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Color Gain'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEHighlightAdj.php b/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEHighlightAdj.php deleted file mode 100644 index 7d9675d6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEHighlightAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalDEEHighlightAdj extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'DigitalDEEHighlightAdj'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Digital DEE Highlight Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEShadowAdj.php b/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEShadowAdj.php deleted file mode 100644 index fa5dabb15..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEShadowAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalDEEShadowAdj extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'DigitalDEEShadowAdj'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Digital DEE Shadow Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEThreshold.php b/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEThreshold.php deleted file mode 100644 index e705c873d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalDEEThreshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalDEEThreshold extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'DigitalDEEThreshold'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Digital DEE Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalGEM.php b/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalGEM.php deleted file mode 100644 index d1a4cb6f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalGEM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalGEM extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DigitalGEM'; - - protected $FullName = 'Nikon::GEM'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Digital GEM'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalICE.php b/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalICE.php deleted file mode 100644 index f888989a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalICE.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalICE extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'DigitalICE'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Digital ICE'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalROC.php b/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalROC.php deleted file mode 100644 index 221a14b1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/DigitalROC.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalROC extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DigitalROC'; - - protected $FullName = 'Nikon::ROC'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Digital ROC'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/FilmType.php b/lib/PHPExiftool/Driver/Tag/NikonScan/FilmType.php deleted file mode 100644 index e6b157c4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/FilmType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmType extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FilmType'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Film Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/MasterGain.php b/lib/PHPExiftool/Driver/Tag/NikonScan/MasterGain.php deleted file mode 100644 index dd5131e2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/MasterGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MasterGain extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'MasterGain'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Master Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/MultiSample.php b/lib/PHPExiftool/Driver/Tag/NikonScan/MultiSample.php deleted file mode 100644 index 466f86e17..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/MultiSample.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiSample extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'MultiSample'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Multi Sample'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/NikonScan/ScanImageEnhancer.php b/lib/PHPExiftool/Driver/Tag/NikonScan/ScanImageEnhancer.php deleted file mode 100644 index f4c47464f..000000000 --- a/lib/PHPExiftool/Driver/Tag/NikonScan/ScanImageEnhancer.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\NikonScan; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScanImageEnhancer extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'ScanImageEnhancer'; - - protected $FullName = 'Nikon::Scan'; - - protected $GroupName = 'NikonScan'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'NikonScan'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Scan Image Enhancer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nintendo/Category.php b/lib/PHPExiftool/Driver/Tag/Nintendo/Category.php deleted file mode 100644 index 95d92000e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nintendo/Category.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nintendo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'Category'; - - protected $FullName = 'Nintendo::CameraInfo'; - - protected $GroupName = 'Nintendo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nintendo'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Category'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 4096 => array( - 'Id' => 4096, - 'Label' => 'Mii', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'Man', - ), - 16384 => array( - 'Id' => 16384, - 'Label' => 'Woman', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nintendo/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Nintendo/InternalSerialNumber.php deleted file mode 100644 index d0e8691b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nintendo/InternalSerialNumber.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nintendo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'Nintendo::CameraInfo'; - - protected $GroupName = 'Nintendo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nintendo'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nintendo/ModelID.php b/lib/PHPExiftool/Driver/Tag/Nintendo/ModelID.php deleted file mode 100644 index ceac0c5cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nintendo/ModelID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nintendo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelID extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ModelID'; - - protected $FullName = 'Nintendo::CameraInfo'; - - protected $GroupName = 'Nintendo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nintendo'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Model ID'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nintendo/Parallax.php b/lib/PHPExiftool/Driver/Tag/Nintendo/Parallax.php deleted file mode 100644 index dfe88625d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nintendo/Parallax.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nintendo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Parallax extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'Parallax'; - - protected $FullName = 'Nintendo::CameraInfo'; - - protected $GroupName = 'Nintendo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nintendo'; - - protected $g2 = 'Image'; - - protected $Type = 'float'; - - protected $Writable = true; - - protected $Description = 'Parallax'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Nintendo/TimeStamp.php b/lib/PHPExiftool/Driver/Tag/Nintendo/TimeStamp.php deleted file mode 100644 index 67fba2fa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Nintendo/TimeStamp.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Nintendo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeStamp extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'TimeStamp'; - - protected $FullName = 'Nintendo::CameraInfo'; - - protected $GroupName = 'Nintendo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Nintendo'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Time Stamp'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ocad/OcadRevision.php b/lib/PHPExiftool/Driver/Tag/Ocad/OcadRevision.php deleted file mode 100644 index 9fdecbaf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ocad/OcadRevision.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ocad; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OcadRevision extends AbstractTag -{ - - protected $Id = 'Rev'; - - protected $Name = 'OcadRevision'; - - protected $FullName = 'JPEG::Ocad'; - - protected $GroupName = 'Ocad'; - - protected $g0 = 'APP0'; - - protected $g1 = 'Ocad'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Ocad Revision'; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AELock.php b/lib/PHPExiftool/Driver/Tag/Olympus/AELock.php deleted file mode 100644 index 111f7da08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AELock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELock extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'AELock'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AE Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AFAreas.php b/lib/PHPExiftool/Driver/Tag/Olympus/AFAreas.php deleted file mode 100644 index 462065484..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AFAreas.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreas extends AbstractTag -{ - - protected $Id = 772; - - protected $Name = 'AFAreas'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'AF Areas'; - - protected $flag_Permanent = true; - - protected $MaxLength = 64; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AFFineTune.php b/lib/PHPExiftool/Driver/Tag/Olympus/AFFineTune.php deleted file mode 100644 index 5401d10de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AFFineTune.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFineTune extends AbstractTag -{ - - protected $Id = 774; - - protected $Name = 'AFFineTune'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Fine Tune'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AFFineTuneAdj.php b/lib/PHPExiftool/Driver/Tag/Olympus/AFFineTuneAdj.php deleted file mode 100644 index a1f3d4600..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AFFineTuneAdj.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFineTuneAdj extends AbstractTag -{ - - protected $Id = 775; - - protected $Name = 'AFFineTuneAdj'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Fine Tune Adj'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AFPoint.php b/lib/PHPExiftool/Driver/Tag/Olympus/AFPoint.php deleted file mode 100644 index c78649092..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AFPoint.php +++ /dev/null @@ -1,174 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoint extends AbstractTag -{ - - protected $Id = 776; - - protected $Name = 'AFPoint'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Top-left (horizontal)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top-center (horizontal)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Top-right (horizontal)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Left (horizontal)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Mid-left (horizontal)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Center (horizontal)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Mid-right (horizontal)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Right (horizontal)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Bottom-left (horizontal)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Bottom-center (horizontal)', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Bottom-right (horizontal)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Top-left (vertical)', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Top-center (vertical)', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Top-right (vertical)', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Left (vertical)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Mid-left (vertical)', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Center (vertical)', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Mid-right (vertical)', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Right (vertical)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Bottom-left (vertical)', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Bottom-center (vertical)', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Bottom-right (vertical)', - ), - 23 => array( - 'Id' => 31, - 'Label' => 'n/a', - ), - 24 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 25 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 26 => array( - 'Id' => 0, - 'Label' => 'Left (or n/a)', - ), - 27 => array( - 'Id' => 1, - 'Label' => 'Center (horizontal)', - ), - 28 => array( - 'Id' => 2, - 'Label' => 'Right', - ), - 29 => array( - 'Id' => 3, - 'Label' => 'Center (vertical)', - ), - 30 => array( - 'Id' => 255, - 'Label' => 'None', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AFPointSelected.php b/lib/PHPExiftool/Driver/Tag/Olympus/AFPointSelected.php deleted file mode 100644 index b631001c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AFPointSelected.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelected extends AbstractTag -{ - - protected $Id = 773; - - protected $Name = 'AFPointSelected'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'AF Point Selected'; - - protected $flag_Permanent = true; - - protected $MaxLength = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AFResult.php b/lib/PHPExiftool/Driver/Tag/Olympus/AFResult.php deleted file mode 100644 index 0178b1e55..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AFResult.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFResult extends AbstractTag -{ - - protected $Id = 4152; - - protected $Name = 'AFResult'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Result'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AFSearch.php b/lib/PHPExiftool/Driver/Tag/Olympus/AFSearch.php deleted file mode 100644 index 8d755b848..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AFSearch.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFSearch extends AbstractTag -{ - - protected $Id = 771; - - protected $Name = 'AFSearch'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Search'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Ready', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Ready', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ApertureValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/ApertureValue.php deleted file mode 100644 index 0fee02206..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureValue extends AbstractTag -{ - - protected $Id = 4098; - - protected $Name = 'ApertureValue'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ArtFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/ArtFilter.php deleted file mode 100644 index b6a5de4d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ArtFilter.php +++ /dev/null @@ -1,162 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtFilter extends AbstractTag -{ - - protected $Id = 1321; - - protected $Name = 'ArtFilter'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Art Filter'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Soft Focus', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pop Art', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Pale & Light Color', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Light Tone', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Pin Hole', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Grainy Film', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Diorama', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cross Process', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Fish Eye', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Drawing', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Gentle Sepia', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Tender Light', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Pop Art II', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Pin Hole II', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Pin Hole III', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Grainy Film II', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Dramatic Tone', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Punk', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Soft Focus 2', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Sparkle', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Watercolor', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Key Line', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Miniature', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Reflection', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Fragmented', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Dramatic Tone B&W', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Watercolor II', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ArtFilterEffect.php b/lib/PHPExiftool/Driver/Tag/Olympus/ArtFilterEffect.php deleted file mode 100644 index 315c1f3fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ArtFilterEffect.php +++ /dev/null @@ -1,162 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtFilterEffect extends AbstractTag -{ - - protected $Id = 1327; - - protected $Name = 'ArtFilterEffect'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Art Filter Effect'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Soft Focus', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pop Art', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Pale & Light Color', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Light Tone', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Pin Hole', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Grainy Film', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Diorama', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cross Process', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Fish Eye', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Drawing', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Gentle Sepia', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Tender Light', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Pop Art II', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Pin Hole II', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Pin Hole III', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Grainy Film II', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Dramatic Tone', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Punk', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Soft Focus 2', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Sparkle', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Watercolor', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Key Line', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Miniature', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Reflection', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Fragmented', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Dramatic Tone B&W', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Watercolor II', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AspectFrame.php b/lib/PHPExiftool/Driver/Tag/Olympus/AspectFrame.php deleted file mode 100644 index 8b992f92e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AspectFrame.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectFrame extends AbstractTag -{ - - protected $Id = 4371; - - protected $Name = 'AspectFrame'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Aspect Frame'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AspectRatio.php b/lib/PHPExiftool/Driver/Tag/Olympus/AspectRatio.php deleted file mode 100644 index 3578613d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AspectRatio.php +++ /dev/null @@ -1,90 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatio extends AbstractTag -{ - - protected $Id = 4370; - - protected $Name = 'AspectRatio'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Aspect Ratio'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '1 1' => array( - 'Id' => '1 1', - 'Label' => '4:3', - ), - '1 4' => array( - 'Id' => '1 4', - 'Label' => '1:1', - ), - '2 2' => array( - 'Id' => '2 2', - 'Label' => '3:2', - ), - '3 3' => array( - 'Id' => '3 3', - 'Label' => '16:9', - ), - '4 4' => array( - 'Id' => '4 4', - 'Label' => '6:6', - ), - '5 5' => array( - 'Id' => '5 5', - 'Label' => '5:4', - ), - '6 6' => array( - 'Id' => '6 6', - 'Label' => '7:6', - ), - '7 7' => array( - 'Id' => '7 7', - 'Label' => '6:5', - ), - '8 8' => array( - 'Id' => '8 8', - 'Label' => '7:5', - ), - '9 9' => array( - 'Id' => '9 9', - 'Label' => '3:4', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/AutoFocus.php b/lib/PHPExiftool/Driver/Tag/Olympus/AutoFocus.php deleted file mode 100644 index ac1805794..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/AutoFocus.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoFocus extends AbstractTag -{ - - protected $Id = 521; - - protected $Name = 'AutoFocus'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto Focus'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/BWMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/BWMode.php deleted file mode 100644 index 111a0fee1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/BWMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BWMode extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'BWMode'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Black And White Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 6, - 'Label' => '(none)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/BlackLevel.php b/lib/PHPExiftool/Driver/Tag/Olympus/BlackLevel.php deleted file mode 100644 index 11633f6f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/BlackLevel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel extends AbstractTag -{ - - protected $Id = 4114; - - protected $Name = 'BlackLevel'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Black Level'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/BlackLevel2.php b/lib/PHPExiftool/Driver/Tag/Olympus/BlackLevel2.php deleted file mode 100644 index 7a92b7ecf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/BlackLevel2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel2 extends AbstractTag -{ - - protected $Id = 1536; - - protected $Name = 'BlackLevel2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Black Level 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/BlueBalance.php b/lib/PHPExiftool/Driver/Tag/Olympus/BlueBalance.php deleted file mode 100644 index ee3cd3078..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/BlueBalance.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueBalance extends AbstractTag -{ - - protected $Id = 4120; - - protected $Name = 'BlueBalance'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Blue Balance'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/BodyFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/BodyFirmwareVersion.php deleted file mode 100644 index 1348d4b47..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/BodyFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyFirmwareVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BodyFirmwareVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Body Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/BrightnessValue.php deleted file mode 100644 index 27f38acd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/BrightnessValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 4099; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Brightness Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CCDScanMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/CCDScanMode.php deleted file mode 100644 index 217fe99ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CCDScanMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CCDScanMode extends AbstractTag -{ - - protected $Id = 4153; - - protected $Name = 'CCDScanMode'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'CCD Scan Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Interlaced', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Progressive', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMContrast.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMContrast.php deleted file mode 100644 index c69701769..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMContrast.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMContrast extends AbstractTag -{ - - protected $Id = 8226; - - protected $Name = 'CMContrast'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'CM Contrast'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMExposureCompensation.php deleted file mode 100644 index a8a034614..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMExposureCompensation extends AbstractTag -{ - - protected $Id = 8192; - - protected $Name = 'CMExposureCompensation'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'CM Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMHue.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMHue.php deleted file mode 100644 index cab33b253..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMHue.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMHue extends AbstractTag -{ - - protected $Id = 8225; - - protected $Name = 'CMHue'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'CM Hue'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMSaturation.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMSaturation.php deleted file mode 100644 index 3c985e9f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMSaturation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMSaturation extends AbstractTag -{ - - protected $Id = 8224; - - protected $Name = 'CMSaturation'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'CM Saturation'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMSharpness.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMSharpness.php deleted file mode 100644 index 54d2279bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMSharpness.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMSharpness extends AbstractTag -{ - - protected $Id = 8227; - - protected $Name = 'CMSharpness'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'CM Sharpness'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalance.php deleted file mode 100644 index 9e193a77f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMWhiteBalance extends AbstractTag -{ - - protected $Id = 8193; - - protected $Name = 'CMWhiteBalance'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'CM White Balance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalanceComp.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalanceComp.php deleted file mode 100644 index 2952c9825..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalanceComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMWhiteBalanceComp extends AbstractTag -{ - - protected $Id = 8194; - - protected $Name = 'CMWhiteBalanceComp'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'CM White Balance Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalanceGrayPoint.php b/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalanceGrayPoint.php deleted file mode 100644 index 1e5308570..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CMWhiteBalanceGrayPoint.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CMWhiteBalanceGrayPoint extends AbstractTag -{ - - protected $Id = 8208; - - protected $Name = 'CMWhiteBalanceGrayPoint'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'CM White Balance Gray Point'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CameraID.php b/lib/PHPExiftool/Driver/Tag/Olympus/CameraID.php deleted file mode 100644 index 3990bb446..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CameraID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraID extends AbstractTag -{ - - protected $Id = 521; - - protected $Name = 'CameraID'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera ID'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CameraParameters.php b/lib/PHPExiftool/Driver/Tag/Olympus/CameraParameters.php deleted file mode 100644 index 496f28791..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CameraParameters.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraParameters extends AbstractTag -{ - - protected $Id = 8272; - - protected $Name = 'CameraParameters'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Camera Parameters'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CameraSettingsVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/CameraSettingsVersion.php deleted file mode 100644 index 89367bf0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CameraSettingsVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraSettingsVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CameraSettingsVersion'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Camera Settings Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CameraTemperature.php b/lib/PHPExiftool/Driver/Tag/Olympus/CameraTemperature.php deleted file mode 100644 index 949c45373..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CameraTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature extends AbstractTag -{ - - protected $Id = 4870; - - protected $Name = 'CameraTemperature'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Camera Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CameraType.php b/lib/PHPExiftool/Driver/Tag/Olympus/CameraType.php deleted file mode 100644 index 20b681b1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CameraType.php +++ /dev/null @@ -1,1146 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Camera Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'D4028' => array( - 'Id' => 'D4028', - 'Label' => 'X-2,C-50Z', - ), - 'D4029' => array( - 'Id' => 'D4029', - 'Label' => 'E-20,E-20N,E-20P', - ), - 'D4034' => array( - 'Id' => 'D4034', - 'Label' => 'C720UZ', - ), - 'D4040' => array( - 'Id' => 'D4040', - 'Label' => 'E-1', - ), - 'D4041' => array( - 'Id' => 'D4041', - 'Label' => 'E-300', - ), - 'D4083' => array( - 'Id' => 'D4083', - 'Label' => 'C2Z,D520Z,C220Z', - ), - 'D4106' => array( - 'Id' => 'D4106', - 'Label' => 'u20D,S400D,u400D', - ), - 'D4120' => array( - 'Id' => 'D4120', - 'Label' => 'X-1', - ), - 'D4122' => array( - 'Id' => 'D4122', - 'Label' => 'u10D,S300D,u300D', - ), - 'D4125' => array( - 'Id' => 'D4125', - 'Label' => 'AZ-1', - ), - 'D4141' => array( - 'Id' => 'D4141', - 'Label' => 'C150,D390', - ), - 'D4193' => array( - 'Id' => 'D4193', - 'Label' => 'C-5000Z', - ), - 'D4194' => array( - 'Id' => 'D4194', - 'Label' => 'X-3,C-60Z', - ), - 'D4199' => array( - 'Id' => 'D4199', - 'Label' => 'u30D,S410D,u410D', - ), - 'D4205' => array( - 'Id' => 'D4205', - 'Label' => 'X450,D535Z,C370Z', - ), - 'D4210' => array( - 'Id' => 'D4210', - 'Label' => 'C160,D395', - ), - 'D4211' => array( - 'Id' => 'D4211', - 'Label' => 'C725UZ', - ), - 'D4213' => array( - 'Id' => 'D4213', - 'Label' => 'FerrariMODEL2003', - ), - 'D4216' => array( - 'Id' => 'D4216', - 'Label' => 'u15D', - ), - 'D4217' => array( - 'Id' => 'D4217', - 'Label' => 'u25D', - ), - 'D4220' => array( - 'Id' => 'D4220', - 'Label' => 'u-miniD,Stylus V', - ), - 'D4221' => array( - 'Id' => 'D4221', - 'Label' => 'u40D,S500,uD500', - ), - 'D4231' => array( - 'Id' => 'D4231', - 'Label' => 'FerrariMODEL2004', - ), - 'D4240' => array( - 'Id' => 'D4240', - 'Label' => 'X500,D590Z,C470Z', - ), - 'D4244' => array( - 'Id' => 'D4244', - 'Label' => 'uD800,S800', - ), - 'D4256' => array( - 'Id' => 'D4256', - 'Label' => 'u720SW,S720SW', - ), - 'D4261' => array( - 'Id' => 'D4261', - 'Label' => 'X600,D630,FE5500', - ), - 'D4262' => array( - 'Id' => 'D4262', - 'Label' => 'uD600,S600', - ), - 'D4301' => array( - 'Id' => 'D4301', - 'Label' => 'u810/S810', - ), - 'D4302' => array( - 'Id' => 'D4302', - 'Label' => 'u710,S710', - ), - 'D4303' => array( - 'Id' => 'D4303', - 'Label' => 'u700,S700', - ), - 'D4304' => array( - 'Id' => 'D4304', - 'Label' => 'FE100,X710', - ), - 'D4305' => array( - 'Id' => 'D4305', - 'Label' => 'FE110,X705', - ), - 'D4310' => array( - 'Id' => 'D4310', - 'Label' => 'FE-130,X-720', - ), - 'D4311' => array( - 'Id' => 'D4311', - 'Label' => 'FE-140,X-725', - ), - 'D4312' => array( - 'Id' => 'D4312', - 'Label' => 'FE150,X730', - ), - 'D4313' => array( - 'Id' => 'D4313', - 'Label' => 'FE160,X735', - ), - 'D4314' => array( - 'Id' => 'D4314', - 'Label' => 'u740,S740', - ), - 'D4315' => array( - 'Id' => 'D4315', - 'Label' => 'u750,S750', - ), - 'D4316' => array( - 'Id' => 'D4316', - 'Label' => 'u730/S730', - ), - 'D4317' => array( - 'Id' => 'D4317', - 'Label' => 'FE115,X715', - ), - 'D4321' => array( - 'Id' => 'D4321', - 'Label' => 'SP550UZ', - ), - 'D4322' => array( - 'Id' => 'D4322', - 'Label' => 'SP510UZ', - ), - 'D4324' => array( - 'Id' => 'D4324', - 'Label' => 'FE170,X760', - ), - 'D4326' => array( - 'Id' => 'D4326', - 'Label' => 'FE200', - ), - 'D4327' => array( - 'Id' => 'D4327', - 'Label' => 'FE190/X750', - ), - 'D4328' => array( - 'Id' => 'D4328', - 'Label' => 'u760,S760', - ), - 'D4330' => array( - 'Id' => 'D4330', - 'Label' => 'FE180/X745', - ), - 'D4331' => array( - 'Id' => 'D4331', - 'Label' => 'u1000/S1000', - ), - 'D4332' => array( - 'Id' => 'D4332', - 'Label' => 'u770SW,S770SW', - ), - 'D4333' => array( - 'Id' => 'D4333', - 'Label' => 'FE240/X795', - ), - 'D4334' => array( - 'Id' => 'D4334', - 'Label' => 'FE210,X775', - ), - 'D4336' => array( - 'Id' => 'D4336', - 'Label' => 'FE230/X790', - ), - 'D4337' => array( - 'Id' => 'D4337', - 'Label' => 'FE220,X785', - ), - 'D4338' => array( - 'Id' => 'D4338', - 'Label' => 'u725SW,S725SW', - ), - 'D4339' => array( - 'Id' => 'D4339', - 'Label' => 'FE250/X800', - ), - 'D4341' => array( - 'Id' => 'D4341', - 'Label' => 'u780,S780', - ), - 'D4343' => array( - 'Id' => 'D4343', - 'Label' => 'u790SW,S790SW', - ), - 'D4344' => array( - 'Id' => 'D4344', - 'Label' => 'u1020,S1020', - ), - 'D4346' => array( - 'Id' => 'D4346', - 'Label' => 'FE15,X10', - ), - 'D4348' => array( - 'Id' => 'D4348', - 'Label' => 'FE280,X820,C520', - ), - 'D4349' => array( - 'Id' => 'D4349', - 'Label' => 'FE300,X830', - ), - 'D4350' => array( - 'Id' => 'D4350', - 'Label' => 'u820,S820', - ), - 'D4351' => array( - 'Id' => 'D4351', - 'Label' => 'u1200,S1200', - ), - 'D4352' => array( - 'Id' => 'D4352', - 'Label' => 'FE270,X815,C510', - ), - 'D4353' => array( - 'Id' => 'D4353', - 'Label' => 'u795SW,S795SW', - ), - 'D4354' => array( - 'Id' => 'D4354', - 'Label' => 'u1030SW,S1030SW', - ), - 'D4355' => array( - 'Id' => 'D4355', - 'Label' => 'SP560UZ', - ), - 'D4356' => array( - 'Id' => 'D4356', - 'Label' => 'u1010,S1010', - ), - 'D4357' => array( - 'Id' => 'D4357', - 'Label' => 'u830,S830', - ), - 'D4359' => array( - 'Id' => 'D4359', - 'Label' => 'u840,S840', - ), - 'D4360' => array( - 'Id' => 'D4360', - 'Label' => 'FE350WIDE,X865', - ), - 'D4361' => array( - 'Id' => 'D4361', - 'Label' => 'u850SW,S850SW', - ), - 'D4362' => array( - 'Id' => 'D4362', - 'Label' => 'FE340,X855,C560', - ), - 'D4363' => array( - 'Id' => 'D4363', - 'Label' => 'FE320,X835,C540', - ), - 'D4364' => array( - 'Id' => 'D4364', - 'Label' => 'SP570UZ', - ), - 'D4366' => array( - 'Id' => 'D4366', - 'Label' => 'FE330,X845,C550', - ), - 'D4368' => array( - 'Id' => 'D4368', - 'Label' => 'FE310,X840,C530', - ), - 'D4370' => array( - 'Id' => 'D4370', - 'Label' => 'u1050SW,S1050SW', - ), - 'D4371' => array( - 'Id' => 'D4371', - 'Label' => 'u1060,S1060', - ), - 'D4372' => array( - 'Id' => 'D4372', - 'Label' => 'FE370,X880,C575', - ), - 'D4374' => array( - 'Id' => 'D4374', - 'Label' => 'SP565UZ', - ), - 'D4377' => array( - 'Id' => 'D4377', - 'Label' => 'u1040,S1040', - ), - 'D4378' => array( - 'Id' => 'D4378', - 'Label' => 'FE360,X875,C570', - ), - 'D4379' => array( - 'Id' => 'D4379', - 'Label' => 'FE20,X15,C25', - ), - 'D4380' => array( - 'Id' => 'D4380', - 'Label' => 'uT6000,ST6000', - ), - 'D4381' => array( - 'Id' => 'D4381', - 'Label' => 'uT8000,ST8000', - ), - 'D4382' => array( - 'Id' => 'D4382', - 'Label' => 'u9000,S9000', - ), - 'D4384' => array( - 'Id' => 'D4384', - 'Label' => 'SP590UZ', - ), - 'D4385' => array( - 'Id' => 'D4385', - 'Label' => 'FE3010,X895', - ), - 'D4386' => array( - 'Id' => 'D4386', - 'Label' => 'FE3000,X890', - ), - 'D4387' => array( - 'Id' => 'D4387', - 'Label' => 'FE35,X30', - ), - 'D4388' => array( - 'Id' => 'D4388', - 'Label' => 'u550WP,S550WP', - ), - 'D4390' => array( - 'Id' => 'D4390', - 'Label' => 'FE5000,X905', - ), - 'D4391' => array( - 'Id' => 'D4391', - 'Label' => 'u5000', - ), - 'D4392' => array( - 'Id' => 'D4392', - 'Label' => 'u7000,S7000', - ), - 'D4396' => array( - 'Id' => 'D4396', - 'Label' => 'FE5010,X915', - ), - 'D4397' => array( - 'Id' => 'D4397', - 'Label' => 'FE25,X20', - ), - 'D4398' => array( - 'Id' => 'D4398', - 'Label' => 'FE45,X40', - ), - 'D4401' => array( - 'Id' => 'D4401', - 'Label' => 'XZ-1', - ), - 'D4402' => array( - 'Id' => 'D4402', - 'Label' => 'uT6010,ST6010', - ), - 'D4406' => array( - 'Id' => 'D4406', - 'Label' => 'u7010,S7010 / u7020,S7020', - ), - 'D4407' => array( - 'Id' => 'D4407', - 'Label' => 'FE4010,X930', - ), - 'D4408' => array( - 'Id' => 'D4408', - 'Label' => 'X560WP', - ), - 'D4409' => array( - 'Id' => 'D4409', - 'Label' => 'FE26,X21', - ), - 'D4410' => array( - 'Id' => 'D4410', - 'Label' => 'FE4000,X920,X925', - ), - 'D4411' => array( - 'Id' => 'D4411', - 'Label' => 'FE46,X41,X42', - ), - 'D4412' => array( - 'Id' => 'D4412', - 'Label' => 'FE5020,X935', - ), - 'D4413' => array( - 'Id' => 'D4413', - 'Label' => 'uTough-3000', - ), - 'D4414' => array( - 'Id' => 'D4414', - 'Label' => 'StylusTough-6020', - ), - 'D4415' => array( - 'Id' => 'D4415', - 'Label' => 'StylusTough-8010', - ), - 'D4417' => array( - 'Id' => 'D4417', - 'Label' => 'u5010,S5010', - ), - 'D4418' => array( - 'Id' => 'D4418', - 'Label' => 'u7040,S7040', - ), - 'D4419' => array( - 'Id' => 'D4419', - 'Label' => 'u9010,S9010', - ), - 'D4423' => array( - 'Id' => 'D4423', - 'Label' => 'FE4040', - ), - 'D4424' => array( - 'Id' => 'D4424', - 'Label' => 'FE47,X43', - ), - 'D4426' => array( - 'Id' => 'D4426', - 'Label' => 'FE4030,X950', - ), - 'D4428' => array( - 'Id' => 'D4428', - 'Label' => 'FE5030,X965,X960', - ), - 'D4430' => array( - 'Id' => 'D4430', - 'Label' => 'u7030,S7030', - ), - 'D4432' => array( - 'Id' => 'D4432', - 'Label' => 'SP600UZ', - ), - 'D4434' => array( - 'Id' => 'D4434', - 'Label' => 'SP800UZ', - ), - 'D4439' => array( - 'Id' => 'D4439', - 'Label' => 'FE4020,X940', - ), - 'D4442' => array( - 'Id' => 'D4442', - 'Label' => 'FE5035', - ), - 'D4448' => array( - 'Id' => 'D4448', - 'Label' => 'FE4050,X970', - ), - 'D4450' => array( - 'Id' => 'D4450', - 'Label' => 'FE5050,X985', - ), - 'D4454' => array( - 'Id' => 'D4454', - 'Label' => 'u-7050', - ), - 'D4464' => array( - 'Id' => 'D4464', - 'Label' => 'T10,X27', - ), - 'D4470' => array( - 'Id' => 'D4470', - 'Label' => 'FE5040,X980', - ), - 'D4472' => array( - 'Id' => 'D4472', - 'Label' => 'TG-310', - ), - 'D4474' => array( - 'Id' => 'D4474', - 'Label' => 'TG-610', - ), - 'D4476' => array( - 'Id' => 'D4476', - 'Label' => 'TG-810', - ), - 'D4478' => array( - 'Id' => 'D4478', - 'Label' => 'VG145,VG140,D715', - ), - 'D4479' => array( - 'Id' => 'D4479', - 'Label' => 'VG130,D710', - ), - 'D4480' => array( - 'Id' => 'D4480', - 'Label' => 'VG120,D705', - ), - 'D4482' => array( - 'Id' => 'D4482', - 'Label' => 'VR310,D720', - ), - 'D4484' => array( - 'Id' => 'D4484', - 'Label' => 'VR320,D725', - ), - 'D4486' => array( - 'Id' => 'D4486', - 'Label' => 'VR330,D730', - ), - 'D4488' => array( - 'Id' => 'D4488', - 'Label' => 'VG110,D700', - ), - 'D4490' => array( - 'Id' => 'D4490', - 'Label' => 'SP-610UZ', - ), - 'D4492' => array( - 'Id' => 'D4492', - 'Label' => 'SZ-10', - ), - 'D4494' => array( - 'Id' => 'D4494', - 'Label' => 'SZ-20', - ), - 'D4496' => array( - 'Id' => 'D4496', - 'Label' => 'SZ-30MR', - ), - 'D4498' => array( - 'Id' => 'D4498', - 'Label' => 'SP-810UZ', - ), - 'D4500' => array( - 'Id' => 'D4500', - 'Label' => 'SZ-11', - ), - 'D4504' => array( - 'Id' => 'D4504', - 'Label' => 'TG-615', - ), - 'D4508' => array( - 'Id' => 'D4508', - 'Label' => 'TG-620', - ), - 'D4510' => array( - 'Id' => 'D4510', - 'Label' => 'TG-820', - ), - 'D4512' => array( - 'Id' => 'D4512', - 'Label' => 'TG-1', - ), - 'D4516' => array( - 'Id' => 'D4516', - 'Label' => 'SH-21', - ), - 'D4519' => array( - 'Id' => 'D4519', - 'Label' => 'SZ-14', - ), - 'D4520' => array( - 'Id' => 'D4520', - 'Label' => 'SZ-31MR', - ), - 'D4521' => array( - 'Id' => 'D4521', - 'Label' => 'SH-25MR', - ), - 'D4523' => array( - 'Id' => 'D4523', - 'Label' => 'SP-720UZ', - ), - 'D4529' => array( - 'Id' => 'D4529', - 'Label' => 'VG170', - ), - 'D4531' => array( - 'Id' => 'D4531', - 'Label' => 'XZ-2', - ), - 'D4535' => array( - 'Id' => 'D4535', - 'Label' => 'SP-620UZ', - ), - 'D4536' => array( - 'Id' => 'D4536', - 'Label' => 'TG-320', - ), - 'D4537' => array( - 'Id' => 'D4537', - 'Label' => 'VR340,D750', - ), - 'D4538' => array( - 'Id' => 'D4538', - 'Label' => 'VG160,X990,D745', - ), - 'D4541' => array( - 'Id' => 'D4541', - 'Label' => 'SZ-12', - ), - 'D4545' => array( - 'Id' => 'D4545', - 'Label' => 'VH410', - ), - 'D4546' => array( - 'Id' => 'D4546', - 'Label' => 'XZ-10', - ), - 'D4547' => array( - 'Id' => 'D4547', - 'Label' => 'TG-2', - ), - 'D4548' => array( - 'Id' => 'D4548', - 'Label' => 'TG-830', - ), - 'D4549' => array( - 'Id' => 'D4549', - 'Label' => 'TG-630', - ), - 'D4550' => array( - 'Id' => 'D4550', - 'Label' => 'SH-50', - ), - 'D4553' => array( - 'Id' => 'D4553', - 'Label' => 'SZ-16,DZ-105', - ), - 'D4562' => array( - 'Id' => 'D4562', - 'Label' => 'SP-820UZ', - ), - 'D4566' => array( - 'Id' => 'D4566', - 'Label' => 'SZ-15', - ), - 'D4572' => array( - 'Id' => 'D4572', - 'Label' => 'STYLUS1', - ), - 'D4574' => array( - 'Id' => 'D4574', - 'Label' => 'TG-3', - ), - 'D4575' => array( - 'Id' => 'D4575', - 'Label' => 'TG-850', - ), - 'D4579' => array( - 'Id' => 'D4579', - 'Label' => 'SP-100EE', - ), - 'D4580' => array( - 'Id' => 'D4580', - 'Label' => 'SH-60', - ), - 'D4581' => array( - 'Id' => 'D4581', - 'Label' => 'SH-1', - ), - 'D4582' => array( - 'Id' => 'D4582', - 'Label' => 'TG-835', - ), - 'D4809' => array( - 'Id' => 'D4809', - 'Label' => 'C2500L', - ), - 'D4842' => array( - 'Id' => 'D4842', - 'Label' => 'E-10', - ), - 'D4856' => array( - 'Id' => 'D4856', - 'Label' => 'C-1', - ), - 'D4857' => array( - 'Id' => 'D4857', - 'Label' => 'C-1Z,D-150Z', - ), - 'DCHC' => array( - 'Id' => 'DCHC', - 'Label' => 'D500L', - ), - 'DCHT' => array( - 'Id' => 'DCHT', - 'Label' => 'D600L / D620L', - ), - 'S0003' => array( - 'Id' => 'S0003', - 'Label' => 'E-330', - ), - 'S0004' => array( - 'Id' => 'S0004', - 'Label' => 'E-500', - ), - 'S0009' => array( - 'Id' => 'S0009', - 'Label' => 'E-400', - ), - 'S0010' => array( - 'Id' => 'S0010', - 'Label' => 'E-510', - ), - 'S0011' => array( - 'Id' => 'S0011', - 'Label' => 'E-3', - ), - 'S0013' => array( - 'Id' => 'S0013', - 'Label' => 'E-410', - ), - 'S0016' => array( - 'Id' => 'S0016', - 'Label' => 'E-420', - ), - 'S0017' => array( - 'Id' => 'S0017', - 'Label' => 'E-30', - ), - 'S0018' => array( - 'Id' => 'S0018', - 'Label' => 'E-520', - ), - 'S0019' => array( - 'Id' => 'S0019', - 'Label' => 'E-P1', - ), - 'S0023' => array( - 'Id' => 'S0023', - 'Label' => 'E-620', - ), - 'S0026' => array( - 'Id' => 'S0026', - 'Label' => 'E-P2', - ), - 'S0027' => array( - 'Id' => 'S0027', - 'Label' => 'E-PL1', - ), - 'S0029' => array( - 'Id' => 'S0029', - 'Label' => 'E-450', - ), - 'S0030' => array( - 'Id' => 'S0030', - 'Label' => 'E-600', - ), - 'S0032' => array( - 'Id' => 'S0032', - 'Label' => 'E-P3', - ), - 'S0033' => array( - 'Id' => 'S0033', - 'Label' => 'E-5', - ), - 'S0034' => array( - 'Id' => 'S0034', - 'Label' => 'E-PL2', - ), - 'S0036' => array( - 'Id' => 'S0036', - 'Label' => 'E-M5', - ), - 'S0038' => array( - 'Id' => 'S0038', - 'Label' => 'E-PL3', - ), - 'S0039' => array( - 'Id' => 'S0039', - 'Label' => 'E-PM1', - ), - 'S0040' => array( - 'Id' => 'S0040', - 'Label' => 'E-PL1s', - ), - 'S0042' => array( - 'Id' => 'S0042', - 'Label' => 'E-PL5', - ), - 'S0043' => array( - 'Id' => 'S0043', - 'Label' => 'E-PM2', - ), - 'S0044' => array( - 'Id' => 'S0044', - 'Label' => 'E-P5', - ), - 'S0045' => array( - 'Id' => 'S0045', - 'Label' => 'E-PL6', - ), - 'S0046' => array( - 'Id' => 'S0046', - 'Label' => 'E-PL7', - ), - 'S0047' => array( - 'Id' => 'S0047', - 'Label' => 'E-M1', - ), - 'S0051' => array( - 'Id' => 'S0051', - 'Label' => 'E-M10', - ), - 'SR45' => array( - 'Id' => 'SR45', - 'Label' => 'D220', - ), - 'SR55' => array( - 'Id' => 'SR55', - 'Label' => 'D320L', - ), - 'SR83' => array( - 'Id' => 'SR83', - 'Label' => 'D340L', - ), - 'SR85' => array( - 'Id' => 'SR85', - 'Label' => 'C830L,D340R', - ), - 'SR852' => array( - 'Id' => 'SR852', - 'Label' => 'C860L,D360L', - ), - 'SR872' => array( - 'Id' => 'SR872', - 'Label' => 'C900Z,D400Z', - ), - 'SR874' => array( - 'Id' => 'SR874', - 'Label' => 'C960Z,D460Z', - ), - 'SR951' => array( - 'Id' => 'SR951', - 'Label' => 'C2000Z', - ), - 'SR952' => array( - 'Id' => 'SR952', - 'Label' => 'C21', - ), - 'SR953' => array( - 'Id' => 'SR953', - 'Label' => 'C21T.commu', - ), - 'SR954' => array( - 'Id' => 'SR954', - 'Label' => 'C2020Z', - ), - 'SR955' => array( - 'Id' => 'SR955', - 'Label' => 'C990Z,D490Z', - ), - 'SR956' => array( - 'Id' => 'SR956', - 'Label' => 'C211Z', - ), - 'SR959' => array( - 'Id' => 'SR959', - 'Label' => 'C990ZS,D490Z', - ), - 'SR95A' => array( - 'Id' => 'SR95A', - 'Label' => 'C2100UZ', - ), - 'SR971' => array( - 'Id' => 'SR971', - 'Label' => 'C100,D370', - ), - 'SR973' => array( - 'Id' => 'SR973', - 'Label' => 'C2,D230', - ), - 'SX151' => array( - 'Id' => 'SX151', - 'Label' => 'E100RS', - ), - 'SX351' => array( - 'Id' => 'SX351', - 'Label' => 'C3000Z / C3030Z', - ), - 'SX354' => array( - 'Id' => 'SX354', - 'Label' => 'C3040Z', - ), - 'SX355' => array( - 'Id' => 'SX355', - 'Label' => 'C2040Z', - ), - 'SX357' => array( - 'Id' => 'SX357', - 'Label' => 'C700UZ', - ), - 'SX358' => array( - 'Id' => 'SX358', - 'Label' => 'C200Z,D510Z', - ), - 'SX374' => array( - 'Id' => 'SX374', - 'Label' => 'C3100Z,C3020Z', - ), - 'SX552' => array( - 'Id' => 'SX552', - 'Label' => 'C4040Z', - ), - 'SX553' => array( - 'Id' => 'SX553', - 'Label' => 'C40Z,D40Z', - ), - 'SX556' => array( - 'Id' => 'SX556', - 'Label' => 'C730UZ', - ), - 'SX558' => array( - 'Id' => 'SX558', - 'Label' => 'C5050Z', - ), - 'SX571' => array( - 'Id' => 'SX571', - 'Label' => 'C120,D380', - ), - 'SX574' => array( - 'Id' => 'SX574', - 'Label' => 'C300Z,D550Z', - ), - 'SX575' => array( - 'Id' => 'SX575', - 'Label' => 'C4100Z,C4000Z', - ), - 'SX751' => array( - 'Id' => 'SX751', - 'Label' => 'X200,D560Z,C350Z', - ), - 'SX752' => array( - 'Id' => 'SX752', - 'Label' => 'X300,D565Z,C450Z', - ), - 'SX753' => array( - 'Id' => 'SX753', - 'Label' => 'C750UZ', - ), - 'SX754' => array( - 'Id' => 'SX754', - 'Label' => 'C740UZ', - ), - 'SX755' => array( - 'Id' => 'SX755', - 'Label' => 'C755UZ', - ), - 'SX756' => array( - 'Id' => 'SX756', - 'Label' => 'C5060WZ', - ), - 'SX757' => array( - 'Id' => 'SX757', - 'Label' => 'C8080WZ', - ), - 'SX758' => array( - 'Id' => 'SX758', - 'Label' => 'X350,D575Z,C360Z', - ), - 'SX759' => array( - 'Id' => 'SX759', - 'Label' => 'X400,D580Z,C460Z', - ), - 'SX75A' => array( - 'Id' => 'SX75A', - 'Label' => 'AZ-2ZOOM', - ), - 'SX75B' => array( - 'Id' => 'SX75B', - 'Label' => 'D595Z,C500Z', - ), - 'SX75C' => array( - 'Id' => 'SX75C', - 'Label' => 'X550,D545Z,C480Z', - ), - 'SX75D' => array( - 'Id' => 'SX75D', - 'Label' => 'IR-300', - ), - 'SX75F' => array( - 'Id' => 'SX75F', - 'Label' => 'C55Z,C5500Z', - ), - 'SX75G' => array( - 'Id' => 'SX75G', - 'Label' => 'C170,D425', - ), - 'SX75J' => array( - 'Id' => 'SX75J', - 'Label' => 'C180,D435', - ), - 'SX771' => array( - 'Id' => 'SX771', - 'Label' => 'C760UZ', - ), - 'SX772' => array( - 'Id' => 'SX772', - 'Label' => 'C770UZ', - ), - 'SX773' => array( - 'Id' => 'SX773', - 'Label' => 'C745UZ', - ), - 'SX774' => array( - 'Id' => 'SX774', - 'Label' => 'X250,D560Z,C350Z', - ), - 'SX775' => array( - 'Id' => 'SX775', - 'Label' => 'X100,D540Z,C310Z', - ), - 'SX776' => array( - 'Id' => 'SX776', - 'Label' => 'C460ZdelSol', - ), - 'SX777' => array( - 'Id' => 'SX777', - 'Label' => 'C765UZ', - ), - 'SX77A' => array( - 'Id' => 'SX77A', - 'Label' => 'D555Z,C315Z', - ), - 'SX851' => array( - 'Id' => 'SX851', - 'Label' => 'C7070WZ', - ), - 'SX852' => array( - 'Id' => 'SX852', - 'Label' => 'C70Z,C7000Z', - ), - 'SX853' => array( - 'Id' => 'SX853', - 'Label' => 'SP500UZ', - ), - 'SX854' => array( - 'Id' => 'SX854', - 'Label' => 'SP310', - ), - 'SX855' => array( - 'Id' => 'SX855', - 'Label' => 'SP350', - ), - 'SX873' => array( - 'Id' => 'SX873', - 'Label' => 'SP320', - ), - 'SX875' => array( - 'Id' => 'SX875', - 'Label' => 'FE180/X745', - ), - 'SX876' => array( - 'Id' => 'SX876', - 'Label' => 'FE190/X750', - ), - ); - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CameraType2.php b/lib/PHPExiftool/Driver/Tag/Olympus/CameraType2.php deleted file mode 100644 index 3fe474d6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CameraType2.php +++ /dev/null @@ -1,1146 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraType2 extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'CameraType2'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Type 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - - protected $Values = array( - 'D4028' => array( - 'Id' => 'D4028', - 'Label' => 'X-2,C-50Z', - ), - 'D4029' => array( - 'Id' => 'D4029', - 'Label' => 'E-20,E-20N,E-20P', - ), - 'D4034' => array( - 'Id' => 'D4034', - 'Label' => 'C720UZ', - ), - 'D4040' => array( - 'Id' => 'D4040', - 'Label' => 'E-1', - ), - 'D4041' => array( - 'Id' => 'D4041', - 'Label' => 'E-300', - ), - 'D4083' => array( - 'Id' => 'D4083', - 'Label' => 'C2Z,D520Z,C220Z', - ), - 'D4106' => array( - 'Id' => 'D4106', - 'Label' => 'u20D,S400D,u400D', - ), - 'D4120' => array( - 'Id' => 'D4120', - 'Label' => 'X-1', - ), - 'D4122' => array( - 'Id' => 'D4122', - 'Label' => 'u10D,S300D,u300D', - ), - 'D4125' => array( - 'Id' => 'D4125', - 'Label' => 'AZ-1', - ), - 'D4141' => array( - 'Id' => 'D4141', - 'Label' => 'C150,D390', - ), - 'D4193' => array( - 'Id' => 'D4193', - 'Label' => 'C-5000Z', - ), - 'D4194' => array( - 'Id' => 'D4194', - 'Label' => 'X-3,C-60Z', - ), - 'D4199' => array( - 'Id' => 'D4199', - 'Label' => 'u30D,S410D,u410D', - ), - 'D4205' => array( - 'Id' => 'D4205', - 'Label' => 'X450,D535Z,C370Z', - ), - 'D4210' => array( - 'Id' => 'D4210', - 'Label' => 'C160,D395', - ), - 'D4211' => array( - 'Id' => 'D4211', - 'Label' => 'C725UZ', - ), - 'D4213' => array( - 'Id' => 'D4213', - 'Label' => 'FerrariMODEL2003', - ), - 'D4216' => array( - 'Id' => 'D4216', - 'Label' => 'u15D', - ), - 'D4217' => array( - 'Id' => 'D4217', - 'Label' => 'u25D', - ), - 'D4220' => array( - 'Id' => 'D4220', - 'Label' => 'u-miniD,Stylus V', - ), - 'D4221' => array( - 'Id' => 'D4221', - 'Label' => 'u40D,S500,uD500', - ), - 'D4231' => array( - 'Id' => 'D4231', - 'Label' => 'FerrariMODEL2004', - ), - 'D4240' => array( - 'Id' => 'D4240', - 'Label' => 'X500,D590Z,C470Z', - ), - 'D4244' => array( - 'Id' => 'D4244', - 'Label' => 'uD800,S800', - ), - 'D4256' => array( - 'Id' => 'D4256', - 'Label' => 'u720SW,S720SW', - ), - 'D4261' => array( - 'Id' => 'D4261', - 'Label' => 'X600,D630,FE5500', - ), - 'D4262' => array( - 'Id' => 'D4262', - 'Label' => 'uD600,S600', - ), - 'D4301' => array( - 'Id' => 'D4301', - 'Label' => 'u810/S810', - ), - 'D4302' => array( - 'Id' => 'D4302', - 'Label' => 'u710,S710', - ), - 'D4303' => array( - 'Id' => 'D4303', - 'Label' => 'u700,S700', - ), - 'D4304' => array( - 'Id' => 'D4304', - 'Label' => 'FE100,X710', - ), - 'D4305' => array( - 'Id' => 'D4305', - 'Label' => 'FE110,X705', - ), - 'D4310' => array( - 'Id' => 'D4310', - 'Label' => 'FE-130,X-720', - ), - 'D4311' => array( - 'Id' => 'D4311', - 'Label' => 'FE-140,X-725', - ), - 'D4312' => array( - 'Id' => 'D4312', - 'Label' => 'FE150,X730', - ), - 'D4313' => array( - 'Id' => 'D4313', - 'Label' => 'FE160,X735', - ), - 'D4314' => array( - 'Id' => 'D4314', - 'Label' => 'u740,S740', - ), - 'D4315' => array( - 'Id' => 'D4315', - 'Label' => 'u750,S750', - ), - 'D4316' => array( - 'Id' => 'D4316', - 'Label' => 'u730/S730', - ), - 'D4317' => array( - 'Id' => 'D4317', - 'Label' => 'FE115,X715', - ), - 'D4321' => array( - 'Id' => 'D4321', - 'Label' => 'SP550UZ', - ), - 'D4322' => array( - 'Id' => 'D4322', - 'Label' => 'SP510UZ', - ), - 'D4324' => array( - 'Id' => 'D4324', - 'Label' => 'FE170,X760', - ), - 'D4326' => array( - 'Id' => 'D4326', - 'Label' => 'FE200', - ), - 'D4327' => array( - 'Id' => 'D4327', - 'Label' => 'FE190/X750', - ), - 'D4328' => array( - 'Id' => 'D4328', - 'Label' => 'u760,S760', - ), - 'D4330' => array( - 'Id' => 'D4330', - 'Label' => 'FE180/X745', - ), - 'D4331' => array( - 'Id' => 'D4331', - 'Label' => 'u1000/S1000', - ), - 'D4332' => array( - 'Id' => 'D4332', - 'Label' => 'u770SW,S770SW', - ), - 'D4333' => array( - 'Id' => 'D4333', - 'Label' => 'FE240/X795', - ), - 'D4334' => array( - 'Id' => 'D4334', - 'Label' => 'FE210,X775', - ), - 'D4336' => array( - 'Id' => 'D4336', - 'Label' => 'FE230/X790', - ), - 'D4337' => array( - 'Id' => 'D4337', - 'Label' => 'FE220,X785', - ), - 'D4338' => array( - 'Id' => 'D4338', - 'Label' => 'u725SW,S725SW', - ), - 'D4339' => array( - 'Id' => 'D4339', - 'Label' => 'FE250/X800', - ), - 'D4341' => array( - 'Id' => 'D4341', - 'Label' => 'u780,S780', - ), - 'D4343' => array( - 'Id' => 'D4343', - 'Label' => 'u790SW,S790SW', - ), - 'D4344' => array( - 'Id' => 'D4344', - 'Label' => 'u1020,S1020', - ), - 'D4346' => array( - 'Id' => 'D4346', - 'Label' => 'FE15,X10', - ), - 'D4348' => array( - 'Id' => 'D4348', - 'Label' => 'FE280,X820,C520', - ), - 'D4349' => array( - 'Id' => 'D4349', - 'Label' => 'FE300,X830', - ), - 'D4350' => array( - 'Id' => 'D4350', - 'Label' => 'u820,S820', - ), - 'D4351' => array( - 'Id' => 'D4351', - 'Label' => 'u1200,S1200', - ), - 'D4352' => array( - 'Id' => 'D4352', - 'Label' => 'FE270,X815,C510', - ), - 'D4353' => array( - 'Id' => 'D4353', - 'Label' => 'u795SW,S795SW', - ), - 'D4354' => array( - 'Id' => 'D4354', - 'Label' => 'u1030SW,S1030SW', - ), - 'D4355' => array( - 'Id' => 'D4355', - 'Label' => 'SP560UZ', - ), - 'D4356' => array( - 'Id' => 'D4356', - 'Label' => 'u1010,S1010', - ), - 'D4357' => array( - 'Id' => 'D4357', - 'Label' => 'u830,S830', - ), - 'D4359' => array( - 'Id' => 'D4359', - 'Label' => 'u840,S840', - ), - 'D4360' => array( - 'Id' => 'D4360', - 'Label' => 'FE350WIDE,X865', - ), - 'D4361' => array( - 'Id' => 'D4361', - 'Label' => 'u850SW,S850SW', - ), - 'D4362' => array( - 'Id' => 'D4362', - 'Label' => 'FE340,X855,C560', - ), - 'D4363' => array( - 'Id' => 'D4363', - 'Label' => 'FE320,X835,C540', - ), - 'D4364' => array( - 'Id' => 'D4364', - 'Label' => 'SP570UZ', - ), - 'D4366' => array( - 'Id' => 'D4366', - 'Label' => 'FE330,X845,C550', - ), - 'D4368' => array( - 'Id' => 'D4368', - 'Label' => 'FE310,X840,C530', - ), - 'D4370' => array( - 'Id' => 'D4370', - 'Label' => 'u1050SW,S1050SW', - ), - 'D4371' => array( - 'Id' => 'D4371', - 'Label' => 'u1060,S1060', - ), - 'D4372' => array( - 'Id' => 'D4372', - 'Label' => 'FE370,X880,C575', - ), - 'D4374' => array( - 'Id' => 'D4374', - 'Label' => 'SP565UZ', - ), - 'D4377' => array( - 'Id' => 'D4377', - 'Label' => 'u1040,S1040', - ), - 'D4378' => array( - 'Id' => 'D4378', - 'Label' => 'FE360,X875,C570', - ), - 'D4379' => array( - 'Id' => 'D4379', - 'Label' => 'FE20,X15,C25', - ), - 'D4380' => array( - 'Id' => 'D4380', - 'Label' => 'uT6000,ST6000', - ), - 'D4381' => array( - 'Id' => 'D4381', - 'Label' => 'uT8000,ST8000', - ), - 'D4382' => array( - 'Id' => 'D4382', - 'Label' => 'u9000,S9000', - ), - 'D4384' => array( - 'Id' => 'D4384', - 'Label' => 'SP590UZ', - ), - 'D4385' => array( - 'Id' => 'D4385', - 'Label' => 'FE3010,X895', - ), - 'D4386' => array( - 'Id' => 'D4386', - 'Label' => 'FE3000,X890', - ), - 'D4387' => array( - 'Id' => 'D4387', - 'Label' => 'FE35,X30', - ), - 'D4388' => array( - 'Id' => 'D4388', - 'Label' => 'u550WP,S550WP', - ), - 'D4390' => array( - 'Id' => 'D4390', - 'Label' => 'FE5000,X905', - ), - 'D4391' => array( - 'Id' => 'D4391', - 'Label' => 'u5000', - ), - 'D4392' => array( - 'Id' => 'D4392', - 'Label' => 'u7000,S7000', - ), - 'D4396' => array( - 'Id' => 'D4396', - 'Label' => 'FE5010,X915', - ), - 'D4397' => array( - 'Id' => 'D4397', - 'Label' => 'FE25,X20', - ), - 'D4398' => array( - 'Id' => 'D4398', - 'Label' => 'FE45,X40', - ), - 'D4401' => array( - 'Id' => 'D4401', - 'Label' => 'XZ-1', - ), - 'D4402' => array( - 'Id' => 'D4402', - 'Label' => 'uT6010,ST6010', - ), - 'D4406' => array( - 'Id' => 'D4406', - 'Label' => 'u7010,S7010 / u7020,S7020', - ), - 'D4407' => array( - 'Id' => 'D4407', - 'Label' => 'FE4010,X930', - ), - 'D4408' => array( - 'Id' => 'D4408', - 'Label' => 'X560WP', - ), - 'D4409' => array( - 'Id' => 'D4409', - 'Label' => 'FE26,X21', - ), - 'D4410' => array( - 'Id' => 'D4410', - 'Label' => 'FE4000,X920,X925', - ), - 'D4411' => array( - 'Id' => 'D4411', - 'Label' => 'FE46,X41,X42', - ), - 'D4412' => array( - 'Id' => 'D4412', - 'Label' => 'FE5020,X935', - ), - 'D4413' => array( - 'Id' => 'D4413', - 'Label' => 'uTough-3000', - ), - 'D4414' => array( - 'Id' => 'D4414', - 'Label' => 'StylusTough-6020', - ), - 'D4415' => array( - 'Id' => 'D4415', - 'Label' => 'StylusTough-8010', - ), - 'D4417' => array( - 'Id' => 'D4417', - 'Label' => 'u5010,S5010', - ), - 'D4418' => array( - 'Id' => 'D4418', - 'Label' => 'u7040,S7040', - ), - 'D4419' => array( - 'Id' => 'D4419', - 'Label' => 'u9010,S9010', - ), - 'D4423' => array( - 'Id' => 'D4423', - 'Label' => 'FE4040', - ), - 'D4424' => array( - 'Id' => 'D4424', - 'Label' => 'FE47,X43', - ), - 'D4426' => array( - 'Id' => 'D4426', - 'Label' => 'FE4030,X950', - ), - 'D4428' => array( - 'Id' => 'D4428', - 'Label' => 'FE5030,X965,X960', - ), - 'D4430' => array( - 'Id' => 'D4430', - 'Label' => 'u7030,S7030', - ), - 'D4432' => array( - 'Id' => 'D4432', - 'Label' => 'SP600UZ', - ), - 'D4434' => array( - 'Id' => 'D4434', - 'Label' => 'SP800UZ', - ), - 'D4439' => array( - 'Id' => 'D4439', - 'Label' => 'FE4020,X940', - ), - 'D4442' => array( - 'Id' => 'D4442', - 'Label' => 'FE5035', - ), - 'D4448' => array( - 'Id' => 'D4448', - 'Label' => 'FE4050,X970', - ), - 'D4450' => array( - 'Id' => 'D4450', - 'Label' => 'FE5050,X985', - ), - 'D4454' => array( - 'Id' => 'D4454', - 'Label' => 'u-7050', - ), - 'D4464' => array( - 'Id' => 'D4464', - 'Label' => 'T10,X27', - ), - 'D4470' => array( - 'Id' => 'D4470', - 'Label' => 'FE5040,X980', - ), - 'D4472' => array( - 'Id' => 'D4472', - 'Label' => 'TG-310', - ), - 'D4474' => array( - 'Id' => 'D4474', - 'Label' => 'TG-610', - ), - 'D4476' => array( - 'Id' => 'D4476', - 'Label' => 'TG-810', - ), - 'D4478' => array( - 'Id' => 'D4478', - 'Label' => 'VG145,VG140,D715', - ), - 'D4479' => array( - 'Id' => 'D4479', - 'Label' => 'VG130,D710', - ), - 'D4480' => array( - 'Id' => 'D4480', - 'Label' => 'VG120,D705', - ), - 'D4482' => array( - 'Id' => 'D4482', - 'Label' => 'VR310,D720', - ), - 'D4484' => array( - 'Id' => 'D4484', - 'Label' => 'VR320,D725', - ), - 'D4486' => array( - 'Id' => 'D4486', - 'Label' => 'VR330,D730', - ), - 'D4488' => array( - 'Id' => 'D4488', - 'Label' => 'VG110,D700', - ), - 'D4490' => array( - 'Id' => 'D4490', - 'Label' => 'SP-610UZ', - ), - 'D4492' => array( - 'Id' => 'D4492', - 'Label' => 'SZ-10', - ), - 'D4494' => array( - 'Id' => 'D4494', - 'Label' => 'SZ-20', - ), - 'D4496' => array( - 'Id' => 'D4496', - 'Label' => 'SZ-30MR', - ), - 'D4498' => array( - 'Id' => 'D4498', - 'Label' => 'SP-810UZ', - ), - 'D4500' => array( - 'Id' => 'D4500', - 'Label' => 'SZ-11', - ), - 'D4504' => array( - 'Id' => 'D4504', - 'Label' => 'TG-615', - ), - 'D4508' => array( - 'Id' => 'D4508', - 'Label' => 'TG-620', - ), - 'D4510' => array( - 'Id' => 'D4510', - 'Label' => 'TG-820', - ), - 'D4512' => array( - 'Id' => 'D4512', - 'Label' => 'TG-1', - ), - 'D4516' => array( - 'Id' => 'D4516', - 'Label' => 'SH-21', - ), - 'D4519' => array( - 'Id' => 'D4519', - 'Label' => 'SZ-14', - ), - 'D4520' => array( - 'Id' => 'D4520', - 'Label' => 'SZ-31MR', - ), - 'D4521' => array( - 'Id' => 'D4521', - 'Label' => 'SH-25MR', - ), - 'D4523' => array( - 'Id' => 'D4523', - 'Label' => 'SP-720UZ', - ), - 'D4529' => array( - 'Id' => 'D4529', - 'Label' => 'VG170', - ), - 'D4531' => array( - 'Id' => 'D4531', - 'Label' => 'XZ-2', - ), - 'D4535' => array( - 'Id' => 'D4535', - 'Label' => 'SP-620UZ', - ), - 'D4536' => array( - 'Id' => 'D4536', - 'Label' => 'TG-320', - ), - 'D4537' => array( - 'Id' => 'D4537', - 'Label' => 'VR340,D750', - ), - 'D4538' => array( - 'Id' => 'D4538', - 'Label' => 'VG160,X990,D745', - ), - 'D4541' => array( - 'Id' => 'D4541', - 'Label' => 'SZ-12', - ), - 'D4545' => array( - 'Id' => 'D4545', - 'Label' => 'VH410', - ), - 'D4546' => array( - 'Id' => 'D4546', - 'Label' => 'XZ-10', - ), - 'D4547' => array( - 'Id' => 'D4547', - 'Label' => 'TG-2', - ), - 'D4548' => array( - 'Id' => 'D4548', - 'Label' => 'TG-830', - ), - 'D4549' => array( - 'Id' => 'D4549', - 'Label' => 'TG-630', - ), - 'D4550' => array( - 'Id' => 'D4550', - 'Label' => 'SH-50', - ), - 'D4553' => array( - 'Id' => 'D4553', - 'Label' => 'SZ-16,DZ-105', - ), - 'D4562' => array( - 'Id' => 'D4562', - 'Label' => 'SP-820UZ', - ), - 'D4566' => array( - 'Id' => 'D4566', - 'Label' => 'SZ-15', - ), - 'D4572' => array( - 'Id' => 'D4572', - 'Label' => 'STYLUS1', - ), - 'D4574' => array( - 'Id' => 'D4574', - 'Label' => 'TG-3', - ), - 'D4575' => array( - 'Id' => 'D4575', - 'Label' => 'TG-850', - ), - 'D4579' => array( - 'Id' => 'D4579', - 'Label' => 'SP-100EE', - ), - 'D4580' => array( - 'Id' => 'D4580', - 'Label' => 'SH-60', - ), - 'D4581' => array( - 'Id' => 'D4581', - 'Label' => 'SH-1', - ), - 'D4582' => array( - 'Id' => 'D4582', - 'Label' => 'TG-835', - ), - 'D4809' => array( - 'Id' => 'D4809', - 'Label' => 'C2500L', - ), - 'D4842' => array( - 'Id' => 'D4842', - 'Label' => 'E-10', - ), - 'D4856' => array( - 'Id' => 'D4856', - 'Label' => 'C-1', - ), - 'D4857' => array( - 'Id' => 'D4857', - 'Label' => 'C-1Z,D-150Z', - ), - 'DCHC' => array( - 'Id' => 'DCHC', - 'Label' => 'D500L', - ), - 'DCHT' => array( - 'Id' => 'DCHT', - 'Label' => 'D600L / D620L', - ), - 'S0003' => array( - 'Id' => 'S0003', - 'Label' => 'E-330', - ), - 'S0004' => array( - 'Id' => 'S0004', - 'Label' => 'E-500', - ), - 'S0009' => array( - 'Id' => 'S0009', - 'Label' => 'E-400', - ), - 'S0010' => array( - 'Id' => 'S0010', - 'Label' => 'E-510', - ), - 'S0011' => array( - 'Id' => 'S0011', - 'Label' => 'E-3', - ), - 'S0013' => array( - 'Id' => 'S0013', - 'Label' => 'E-410', - ), - 'S0016' => array( - 'Id' => 'S0016', - 'Label' => 'E-420', - ), - 'S0017' => array( - 'Id' => 'S0017', - 'Label' => 'E-30', - ), - 'S0018' => array( - 'Id' => 'S0018', - 'Label' => 'E-520', - ), - 'S0019' => array( - 'Id' => 'S0019', - 'Label' => 'E-P1', - ), - 'S0023' => array( - 'Id' => 'S0023', - 'Label' => 'E-620', - ), - 'S0026' => array( - 'Id' => 'S0026', - 'Label' => 'E-P2', - ), - 'S0027' => array( - 'Id' => 'S0027', - 'Label' => 'E-PL1', - ), - 'S0029' => array( - 'Id' => 'S0029', - 'Label' => 'E-450', - ), - 'S0030' => array( - 'Id' => 'S0030', - 'Label' => 'E-600', - ), - 'S0032' => array( - 'Id' => 'S0032', - 'Label' => 'E-P3', - ), - 'S0033' => array( - 'Id' => 'S0033', - 'Label' => 'E-5', - ), - 'S0034' => array( - 'Id' => 'S0034', - 'Label' => 'E-PL2', - ), - 'S0036' => array( - 'Id' => 'S0036', - 'Label' => 'E-M5', - ), - 'S0038' => array( - 'Id' => 'S0038', - 'Label' => 'E-PL3', - ), - 'S0039' => array( - 'Id' => 'S0039', - 'Label' => 'E-PM1', - ), - 'S0040' => array( - 'Id' => 'S0040', - 'Label' => 'E-PL1s', - ), - 'S0042' => array( - 'Id' => 'S0042', - 'Label' => 'E-PL5', - ), - 'S0043' => array( - 'Id' => 'S0043', - 'Label' => 'E-PM2', - ), - 'S0044' => array( - 'Id' => 'S0044', - 'Label' => 'E-P5', - ), - 'S0045' => array( - 'Id' => 'S0045', - 'Label' => 'E-PL6', - ), - 'S0046' => array( - 'Id' => 'S0046', - 'Label' => 'E-PL7', - ), - 'S0047' => array( - 'Id' => 'S0047', - 'Label' => 'E-M1', - ), - 'S0051' => array( - 'Id' => 'S0051', - 'Label' => 'E-M10', - ), - 'SR45' => array( - 'Id' => 'SR45', - 'Label' => 'D220', - ), - 'SR55' => array( - 'Id' => 'SR55', - 'Label' => 'D320L', - ), - 'SR83' => array( - 'Id' => 'SR83', - 'Label' => 'D340L', - ), - 'SR85' => array( - 'Id' => 'SR85', - 'Label' => 'C830L,D340R', - ), - 'SR852' => array( - 'Id' => 'SR852', - 'Label' => 'C860L,D360L', - ), - 'SR872' => array( - 'Id' => 'SR872', - 'Label' => 'C900Z,D400Z', - ), - 'SR874' => array( - 'Id' => 'SR874', - 'Label' => 'C960Z,D460Z', - ), - 'SR951' => array( - 'Id' => 'SR951', - 'Label' => 'C2000Z', - ), - 'SR952' => array( - 'Id' => 'SR952', - 'Label' => 'C21', - ), - 'SR953' => array( - 'Id' => 'SR953', - 'Label' => 'C21T.commu', - ), - 'SR954' => array( - 'Id' => 'SR954', - 'Label' => 'C2020Z', - ), - 'SR955' => array( - 'Id' => 'SR955', - 'Label' => 'C990Z,D490Z', - ), - 'SR956' => array( - 'Id' => 'SR956', - 'Label' => 'C211Z', - ), - 'SR959' => array( - 'Id' => 'SR959', - 'Label' => 'C990ZS,D490Z', - ), - 'SR95A' => array( - 'Id' => 'SR95A', - 'Label' => 'C2100UZ', - ), - 'SR971' => array( - 'Id' => 'SR971', - 'Label' => 'C100,D370', - ), - 'SR973' => array( - 'Id' => 'SR973', - 'Label' => 'C2,D230', - ), - 'SX151' => array( - 'Id' => 'SX151', - 'Label' => 'E100RS', - ), - 'SX351' => array( - 'Id' => 'SX351', - 'Label' => 'C3000Z / C3030Z', - ), - 'SX354' => array( - 'Id' => 'SX354', - 'Label' => 'C3040Z', - ), - 'SX355' => array( - 'Id' => 'SX355', - 'Label' => 'C2040Z', - ), - 'SX357' => array( - 'Id' => 'SX357', - 'Label' => 'C700UZ', - ), - 'SX358' => array( - 'Id' => 'SX358', - 'Label' => 'C200Z,D510Z', - ), - 'SX374' => array( - 'Id' => 'SX374', - 'Label' => 'C3100Z,C3020Z', - ), - 'SX552' => array( - 'Id' => 'SX552', - 'Label' => 'C4040Z', - ), - 'SX553' => array( - 'Id' => 'SX553', - 'Label' => 'C40Z,D40Z', - ), - 'SX556' => array( - 'Id' => 'SX556', - 'Label' => 'C730UZ', - ), - 'SX558' => array( - 'Id' => 'SX558', - 'Label' => 'C5050Z', - ), - 'SX571' => array( - 'Id' => 'SX571', - 'Label' => 'C120,D380', - ), - 'SX574' => array( - 'Id' => 'SX574', - 'Label' => 'C300Z,D550Z', - ), - 'SX575' => array( - 'Id' => 'SX575', - 'Label' => 'C4100Z,C4000Z', - ), - 'SX751' => array( - 'Id' => 'SX751', - 'Label' => 'X200,D560Z,C350Z', - ), - 'SX752' => array( - 'Id' => 'SX752', - 'Label' => 'X300,D565Z,C450Z', - ), - 'SX753' => array( - 'Id' => 'SX753', - 'Label' => 'C750UZ', - ), - 'SX754' => array( - 'Id' => 'SX754', - 'Label' => 'C740UZ', - ), - 'SX755' => array( - 'Id' => 'SX755', - 'Label' => 'C755UZ', - ), - 'SX756' => array( - 'Id' => 'SX756', - 'Label' => 'C5060WZ', - ), - 'SX757' => array( - 'Id' => 'SX757', - 'Label' => 'C8080WZ', - ), - 'SX758' => array( - 'Id' => 'SX758', - 'Label' => 'X350,D575Z,C360Z', - ), - 'SX759' => array( - 'Id' => 'SX759', - 'Label' => 'X400,D580Z,C460Z', - ), - 'SX75A' => array( - 'Id' => 'SX75A', - 'Label' => 'AZ-2ZOOM', - ), - 'SX75B' => array( - 'Id' => 'SX75B', - 'Label' => 'D595Z,C500Z', - ), - 'SX75C' => array( - 'Id' => 'SX75C', - 'Label' => 'X550,D545Z,C480Z', - ), - 'SX75D' => array( - 'Id' => 'SX75D', - 'Label' => 'IR-300', - ), - 'SX75F' => array( - 'Id' => 'SX75F', - 'Label' => 'C55Z,C5500Z', - ), - 'SX75G' => array( - 'Id' => 'SX75G', - 'Label' => 'C170,D425', - ), - 'SX75J' => array( - 'Id' => 'SX75J', - 'Label' => 'C180,D435', - ), - 'SX771' => array( - 'Id' => 'SX771', - 'Label' => 'C760UZ', - ), - 'SX772' => array( - 'Id' => 'SX772', - 'Label' => 'C770UZ', - ), - 'SX773' => array( - 'Id' => 'SX773', - 'Label' => 'C745UZ', - ), - 'SX774' => array( - 'Id' => 'SX774', - 'Label' => 'X250,D560Z,C350Z', - ), - 'SX775' => array( - 'Id' => 'SX775', - 'Label' => 'X100,D540Z,C310Z', - ), - 'SX776' => array( - 'Id' => 'SX776', - 'Label' => 'C460ZdelSol', - ), - 'SX777' => array( - 'Id' => 'SX777', - 'Label' => 'C765UZ', - ), - 'SX77A' => array( - 'Id' => 'SX77A', - 'Label' => 'D555Z,C315Z', - ), - 'SX851' => array( - 'Id' => 'SX851', - 'Label' => 'C7070WZ', - ), - 'SX852' => array( - 'Id' => 'SX852', - 'Label' => 'C70Z,C7000Z', - ), - 'SX853' => array( - 'Id' => 'SX853', - 'Label' => 'SP500UZ', - ), - 'SX854' => array( - 'Id' => 'SX854', - 'Label' => 'SP310', - ), - 'SX855' => array( - 'Id' => 'SX855', - 'Label' => 'SP350', - ), - 'SX873' => array( - 'Id' => 'SX873', - 'Label' => 'SP320', - ), - 'SX875' => array( - 'Id' => 'SX875', - 'Label' => 'FE180/X745', - ), - 'SX876' => array( - 'Id' => 'SX876', - 'Label' => 'FE190/X750', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ColorControl.php b/lib/PHPExiftool/Driver/Tag/Olympus/ColorControl.php deleted file mode 100644 index 4ab4dcaa5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ColorControl.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorControl extends AbstractTag -{ - - protected $Id = 4139; - - protected $Name = 'ColorControl'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Control'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrix.php b/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrix.php deleted file mode 100644 index 0e497c205..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrix.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrix extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorMatrix'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Matrix'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrix2.php b/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrix2.php deleted file mode 100644 index d2db1db80..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrix2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrix2 extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'ColorMatrix2'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Matrix 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrixNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrixNumber.php deleted file mode 100644 index 5933b83c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ColorMatrixNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrixNumber extends AbstractTag -{ - - protected $Id = 4121; - - protected $Name = 'ColorMatrixNumber'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Matrix Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Olympus/ColorSpace.php deleted file mode 100644 index e0e99f2a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ColorSpace.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 1287; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'sRGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adobe RGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pro Photo RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ColorTemperatureBG.php b/lib/PHPExiftool/Driver/Tag/Olympus/ColorTemperatureBG.php deleted file mode 100644 index 39946d7d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ColorTemperatureBG.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperatureBG extends AbstractTag -{ - - protected $Id = 4115; - - protected $Name = 'ColorTemperatureBG'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature BG'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ColorTemperatureRG.php b/lib/PHPExiftool/Driver/Tag/Olympus/ColorTemperatureRG.php deleted file mode 100644 index 2accf9c1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ColorTemperatureRG.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperatureRG extends AbstractTag -{ - - protected $Id = 4116; - - protected $Name = 'ColorTemperatureRG'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature RG'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CompressedImageSize.php b/lib/PHPExiftool/Driver/Tag/Olympus/CompressedImageSize.php deleted file mode 100644 index 69365fdd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CompressedImageSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedImageSize extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'CompressedImageSize'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Compressed Image Size'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CompressionFactor.php b/lib/PHPExiftool/Driver/Tag/Olympus/CompressionFactor.php deleted file mode 100644 index d3bea93a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CompressionFactor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionFactor extends AbstractTag -{ - - protected $Id = 1293; - - protected $Name = 'CompressionFactor'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Compression Factor'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CompressionRatio.php b/lib/PHPExiftool/Driver/Tag/Olympus/CompressionRatio.php deleted file mode 100644 index 2d26052bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CompressionRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionRatio extends AbstractTag -{ - - protected $Id = 4148; - - protected $Name = 'CompressionRatio'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Compression Ratio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Contrast.php b/lib/PHPExiftool/Driver/Tag/Olympus/Contrast.php deleted file mode 100644 index cdae3185c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Contrast.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 4137; - - protected $Name = 'Contrast'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'High', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ContrastSetting.php b/lib/PHPExiftool/Driver/Tag/Olympus/ContrastSetting.php deleted file mode 100644 index 732342e90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ContrastSetting.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Contrast Setting'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ConversionLens.php b/lib/PHPExiftool/Driver/Tag/Olympus/ConversionLens.php deleted file mode 100644 index 22e8d725d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ConversionLens.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConversionLens extends AbstractTag -{ - - protected $Id = 1027; - - protected $Name = 'ConversionLens'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Conversion Lens'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CoringFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/CoringFilter.php deleted file mode 100644 index 509d8c9d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CoringFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoringFilter extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CoringFilter'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Coring Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CoringValues.php b/lib/PHPExiftool/Driver/Tag/Olympus/CoringValues.php deleted file mode 100644 index 224297cad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CoringValues.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoringValues extends AbstractTag -{ - - protected $Id = 785; - - protected $Name = 'CoringValues'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Coring Values'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CropHeight.php b/lib/PHPExiftool/Driver/Tag/Olympus/CropHeight.php deleted file mode 100644 index 3e83602f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CropHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropHeight extends AbstractTag -{ - - protected $Id = 1557; - - protected $Name = 'CropHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Crop Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CropLeft.php b/lib/PHPExiftool/Driver/Tag/Olympus/CropLeft.php deleted file mode 100644 index ddb18d468..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CropLeft.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeft extends AbstractTag -{ - - protected $Id = 1554; - - protected $Name = 'CropLeft'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Left'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CropTop.php b/lib/PHPExiftool/Driver/Tag/Olympus/CropTop.php deleted file mode 100644 index 9dc5b7093..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CropTop.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTop extends AbstractTag -{ - - protected $Id = 1555; - - protected $Name = 'CropTop'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Top'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CropWidth.php b/lib/PHPExiftool/Driver/Tag/Olympus/CropWidth.php deleted file mode 100644 index 22989cdea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CropWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropWidth extends AbstractTag -{ - - protected $Id = 1556; - - protected $Name = 'CropWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Crop Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/CustomSaturation.php b/lib/PHPExiftool/Driver/Tag/Olympus/CustomSaturation.php deleted file mode 100644 index 0ee2ce607..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/CustomSaturation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomSaturation extends AbstractTag -{ - - protected $Id = 1283; - - protected $Name = 'CustomSaturation'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Custom Saturation'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DataDump.php b/lib/PHPExiftool/Driver/Tag/Olympus/DataDump.php deleted file mode 100644 index 94d8051c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DataDump.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDump extends AbstractTag -{ - - protected $Id = 3840; - - protected $Name = 'DataDump'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Data Dump'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DataDump2.php b/lib/PHPExiftool/Driver/Tag/Olympus/DataDump2.php deleted file mode 100644 index 1f9880454..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DataDump2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDump2 extends AbstractTag -{ - - protected $Id = 3841; - - protected $Name = 'DataDump2'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Data Dump 2'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DateTime1.php b/lib/PHPExiftool/Driver/Tag/Olympus/DateTime1.php deleted file mode 100644 index f76fab97d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DateTime1.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTime1 extends AbstractTag -{ - - protected $Id = 131; - - protected $Name = 'DateTime1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Date Time 1'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DateTime2.php b/lib/PHPExiftool/Driver/Tag/Olympus/DateTime2.php deleted file mode 100644 index 37f373002..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DateTime2.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTime2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTime2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Date Time 2'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeEnd.php b/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeEnd.php deleted file mode 100644 index a6bb7d51b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeEnd.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeEnd extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'DateTimeEnd'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Date Time End'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeOriginal.php deleted file mode 100644 index dd43e653e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeOriginal.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'mixed'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeUTC.php b/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeUTC.php deleted file mode 100644 index 9ac27a474..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DateTimeUTC.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeUTC extends AbstractTag -{ - - protected $Id = 2312; - - protected $Name = 'DateTimeUTC'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Date Time UTC'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DecoderVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/DecoderVersion.php deleted file mode 100644 index 9cb5e284a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DecoderVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DecoderVersion extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'DecoderVersion'; - - protected $FullName = 'Olympus::MovableInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Decoder Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Olympus/DigitalZoom.php deleted file mode 100644 index 7eb504cb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DigitalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 516; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DistortionCorrection.php b/lib/PHPExiftool/Driver/Tag/Olympus/DistortionCorrection.php deleted file mode 100644 index 3f0162a5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DistortionCorrection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrection extends AbstractTag -{ - - protected $Id = 1291; - - protected $Name = 'DistortionCorrection'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DistortionCorrection2.php b/lib/PHPExiftool/Driver/Tag/Olympus/DistortionCorrection2.php deleted file mode 100644 index 0112b3a27..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DistortionCorrection2.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrection2 extends AbstractTag -{ - - protected $Id = 4113; - - protected $Name = 'DistortionCorrection2'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/DriveMode.php deleted file mode 100644 index eea45635f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/DriveMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 1536; - - protected $Name = 'DriveMode'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Drive Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Duration.php b/lib/PHPExiftool/Driver/Tag/Olympus/Duration.php deleted file mode 100644 index 9dd647645..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Duration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'Duration'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Duration'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/EncoderVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/EncoderVersion.php deleted file mode 100644 index b11a32af6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/EncoderVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncoderVersion extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'EncoderVersion'; - - protected $FullName = 'Olympus::MovableInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Encoder Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Enhancer.php b/lib/PHPExiftool/Driver/Tag/Olympus/Enhancer.php deleted file mode 100644 index 09255258d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Enhancer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Enhancer extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'Enhancer'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Enhancer'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/EnhancerValues.php b/lib/PHPExiftool/Driver/Tag/Olympus/EnhancerValues.php deleted file mode 100644 index e8be21f74..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/EnhancerValues.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnhancerValues extends AbstractTag -{ - - protected $Id = 769; - - protected $Name = 'EnhancerValues'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Enhancer Values'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/EpsonImageHeight.php b/lib/PHPExiftool/Driver/Tag/Olympus/EpsonImageHeight.php deleted file mode 100644 index 84e55628a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/EpsonImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpsonImageHeight extends AbstractTag -{ - - protected $Id = 524; - - protected $Name = 'EpsonImageHeight'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Epson Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/EpsonImageWidth.php b/lib/PHPExiftool/Driver/Tag/Olympus/EpsonImageWidth.php deleted file mode 100644 index 483844432..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/EpsonImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpsonImageWidth extends AbstractTag -{ - - protected $Id = 523; - - protected $Name = 'EpsonImageWidth'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Epson Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/EpsonSoftware.php b/lib/PHPExiftool/Driver/Tag/Olympus/EpsonSoftware.php deleted file mode 100644 index 601ac3442..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/EpsonSoftware.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpsonSoftware extends AbstractTag -{ - - protected $Id = 525; - - protected $Name = 'EpsonSoftware'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Epson Software'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/EquipmentVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/EquipmentVersion.php deleted file mode 100644 index 71e583d35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/EquipmentVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EquipmentVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'EquipmentVersion'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Equipment Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExposureCompensation.php deleted file mode 100644 index 24b6ab7f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExposureMode.php deleted file mode 100644 index 69e16e3be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Program-shift', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureShift.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExposureShift.php deleted file mode 100644 index eca5543b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureShift.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureShift extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'ExposureShift'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Exposure Shift'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExposureTime.php deleted file mode 100644 index 2bedb2bd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'Olympus::MOV2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureUnknown.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExposureUnknown.php deleted file mode 100644 index da6b02458..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExposureUnknown.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureUnknown extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'ExposureUnknown'; - - protected $FullName = 'Olympus::MOV1'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Exposure Unknown'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExtendedWBDetect.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExtendedWBDetect.php deleted file mode 100644 index 20d0255e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExtendedWBDetect.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtendedWBDetect extends AbstractTag -{ - - protected $Id = 2306; - - protected $Name = 'ExtendedWBDetect'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Extended WB Detect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Extender.php b/lib/PHPExiftool/Driver/Tag/Olympus/Extender.php deleted file mode 100644 index a0eb3ce09..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Extender.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Extender extends AbstractTag -{ - - protected $Id = 769; - - protected $Name = 'Extender'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Extender'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - - protected $Values = array( - '0 00' => array( - 'Id' => '0 00', - 'Label' => 'None', - ), - '0 04' => array( - 'Id' => '0 04', - 'Label' => 'Olympus Zuiko Digital EC-14 1.4x Teleconverter', - ), - '0 08' => array( - 'Id' => '0 08', - 'Label' => 'Olympus EX-25 Extension Tube', - ), - '0 10' => array( - 'Id' => '0 10', - 'Label' => 'Olympus Zuiko Digital EC-20 2.0x Teleconverter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderFirmwareVersion.php deleted file mode 100644 index a3a3c1407..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderFirmwareVersion extends AbstractTag -{ - - protected $Id = 772; - - protected $Name = 'ExtenderFirmwareVersion'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Extender Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderModel.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderModel.php deleted file mode 100644 index f1532ea4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderModel extends AbstractTag -{ - - protected $Id = 771; - - protected $Name = 'ExtenderModel'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Extender Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderSerialNumber.php deleted file mode 100644 index 9a44108a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExtenderSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtenderSerialNumber extends AbstractTag -{ - - protected $Id = 770; - - protected $Name = 'ExtenderSerialNumber'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Extender Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlash.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlash.php deleted file mode 100644 index 178f7687b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlash.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlash extends AbstractTag -{ - - protected $Id = 4609; - - protected $Name = 'ExternalFlash'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'External Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'Off', - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE1.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE1.php deleted file mode 100644 index aaec89529..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashAE1 extends AbstractTag -{ - - protected $Id = 4127; - - protected $Name = 'ExternalFlashAE1'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'External Flash AE1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE10.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE10.php deleted file mode 100644 index d27223a59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashAE10 extends AbstractTag -{ - - protected $Id = 4123; - - protected $Name = 'ExternalFlashAE1_0'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'External Flash AE1 0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE2.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE2.php deleted file mode 100644 index a9d1e92bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashAE2 extends AbstractTag -{ - - protected $Id = 4128; - - protected $Name = 'ExternalFlashAE2'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'External Flash AE2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE20.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE20.php deleted file mode 100644 index 68d63c10b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashAE20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashAE20 extends AbstractTag -{ - - protected $Id = 4124; - - protected $Name = 'ExternalFlashAE2_0'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'External Flash AE2 0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashBounce.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashBounce.php deleted file mode 100644 index f5646dc02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashBounce.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashBounce extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExternalFlashBounce'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'External Flash Bounce'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bounce or Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Direct', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashGValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashGValue.php deleted file mode 100644 index e4e65ddc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashGValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashGValue extends AbstractTag -{ - - protected $Id = 4133; - - protected $Name = 'ExternalFlashGValue'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'External Flash G Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashGuideNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashGuideNumber.php deleted file mode 100644 index 40fc301fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashGuideNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashGuideNumber extends AbstractTag -{ - - protected $Id = 4611; - - protected $Name = 'ExternalFlashGuideNumber'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'External Flash Guide Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashMode.php deleted file mode 100644 index a9cb15b3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashMode extends AbstractTag -{ - - protected $Id = 4136; - - protected $Name = 'ExternalFlashMode'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'External Flash Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashZoom.php b/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashZoom.php deleted file mode 100644 index 9bc0ebc5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ExternalFlashZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashZoom extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExternalFlashZoom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'External Flash Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/FNumber.php deleted file mode 100644 index b6cd58d19..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectArea.php b/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectArea.php deleted file mode 100644 index e0ba4a82b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectArea.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectArea extends AbstractTag -{ - - protected $Id = 4609; - - protected $Name = 'FaceDetectArea'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face Detect Area'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectFrameCrop.php b/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectFrameCrop.php deleted file mode 100644 index ec59257c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectFrameCrop.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectFrameCrop extends AbstractTag -{ - - protected $Id = 4615; - - protected $Name = 'FaceDetectFrameCrop'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Face Detect Frame Crop'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectFrameSize.php b/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectFrameSize.php deleted file mode 100644 index 04564a645..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FaceDetectFrameSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectFrameSize extends AbstractTag -{ - - protected $Id = 4611; - - protected $Name = 'FaceDetectFrameSize'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Detect Frame Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Olympus/FacesDetected.php deleted file mode 100644 index cb6f26c9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 4608; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FieldCount.php b/lib/PHPExiftool/Driver/Tag/Olympus/FieldCount.php deleted file mode 100644 index cba226bfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FieldCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldCount extends AbstractTag -{ - - protected $Id = 4159; - - protected $Name = 'FieldCount'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Field Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FileNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/FileNumber.php deleted file mode 100644 index 307d2edd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FileNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNumber extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'FileNumber'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Firmware.php b/lib/PHPExiftool/Driver/Tag/Olympus/Firmware.php deleted file mode 100644 index 5c0ce77f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Firmware.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Firmware extends AbstractTag -{ - - protected $Id = 1029; - - protected $Name = 'Firmware'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashChargeLevel.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashChargeLevel.php deleted file mode 100644 index 4da563bdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashChargeLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashChargeLevel extends AbstractTag -{ - - protected $Id = 4112; - - protected $Name = 'FlashChargeLevel'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Charge Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashControlMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashControlMode.php deleted file mode 100644 index 1ecaef82c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashControlMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashControlMode extends AbstractTag -{ - - protected $Id = 1028; - - protected $Name = 'FlashControlMode'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Control Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'TTL', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashDevice.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashDevice.php deleted file mode 100644 index 890708a39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashDevice.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashDevice extends AbstractTag -{ - - protected $Id = 4101; - - protected $Name = 'FlashDevice'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Device'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Internal', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'External', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Internal + External', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashExposureComp.php deleted file mode 100644 index 50b2f4283..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashFirmwareVersion.php deleted file mode 100644 index de4243f4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFirmwareVersion extends AbstractTag -{ - - protected $Id = 4098; - - protected $Name = 'FlashFirmwareVersion'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Flash Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashIntensity.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashIntensity.php deleted file mode 100644 index e45abe6ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashIntensity.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashIntensity extends AbstractTag -{ - - protected $Id = 1029; - - protected $Name = 'FlashIntensity'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Flash Intensity'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'undef undef undef' => array( - 'Id' => 'undef undef undef', - 'Label' => 'n/a', - ), - 'undef undef undef undef' => array( - 'Id' => 'undef undef undef undef', - 'Label' => 'n/a (x4)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashMode.php deleted file mode 100644 index 39cc07e87..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashMode.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fill-in', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Red-eye', - ), - 4 => array( - 'Id' => 8, - 'Label' => 'Slow-sync', - ), - 5 => array( - 'Id' => 16, - 'Label' => 'Forced On', - ), - 6 => array( - 'Id' => 32, - 'Label' => '2nd Curtain', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashModel.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashModel.php deleted file mode 100644 index e214d93ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashModel.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashModel extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'FlashModel'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Model'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'FL-20', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'FL-50', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'RF-11', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'TF-22', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'FL-36', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'FL-50R', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'FL-36R', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashRemoteControl.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashRemoteControl.php deleted file mode 100644 index 971a708b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashRemoteControl.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashRemoteControl extends AbstractTag -{ - - protected $Id = 1027; - - protected $Name = 'FlashRemoteControl'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Remote Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Channel 1, Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Channel 2, Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Channel 3, Low', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Channel 4, Low', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Channel 1, Mid', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Channel 2, Mid', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Channel 3, Mid', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Channel 4, Mid', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Channel 1, High', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Channel 2, High', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Channel 3, High', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Channel 4, High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashSerialNumber.php deleted file mode 100644 index e2f699e17..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashSerialNumber extends AbstractTag -{ - - protected $Id = 4099; - - protected $Name = 'FlashSerialNumber'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FlashType.php b/lib/PHPExiftool/Driver/Tag/Olympus/FlashType.php deleted file mode 100644 index 1cac75cc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FlashType.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashType extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'FlashType'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Simple E-System', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'E-System', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocalLength.php deleted file mode 100644 index 1b308bef5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocalPlaneDiagonal.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocalPlaneDiagonal.php deleted file mode 100644 index 9f87d4acd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocalPlaneDiagonal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneDiagonal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalPlaneDiagonal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Focal Plane Diagonal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusDistance.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusDistance.php deleted file mode 100644 index ef86db1b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusDistance.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistance extends AbstractTag -{ - - protected $Id = 773; - - protected $Name = 'FocusDistance'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Focus Distance'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusInfoVersion.php deleted file mode 100644 index b0f34eea9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FocusInfoVersion'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Focus Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusMode.php deleted file mode 100644 index e7a7fbbf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusMode.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sequential shooting AF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous AF', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Multi AF', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Face detect', - ), - 5 => array( - 'Id' => 10, - 'Label' => 'MF', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusProcess.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusProcess.php deleted file mode 100644 index deec6965f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusProcess.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusProcess extends AbstractTag -{ - - protected $Id = 770; - - protected $Name = 'FocusProcess'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Process'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF Not Used', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF Used', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusRange.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusRange.php deleted file mode 100644 index 02b03768d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusRange.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusRange extends AbstractTag -{ - - protected $Id = 4106; - - protected $Name = 'FocusRange'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Range'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepCount.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepCount.php deleted file mode 100644 index c026567e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusStepCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusStepCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Step Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepInfinity.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepInfinity.php deleted file mode 100644 index b62b77fe3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepInfinity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusStepInfinity extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusStepInfinity'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Step Infinity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepNear.php b/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepNear.php deleted file mode 100644 index a1bbdbdf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/FocusStepNear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusStepNear extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusStepNear'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Step Near'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/GainBase.php b/lib/PHPExiftool/Driver/Tag/Olympus/GainBase.php deleted file mode 100644 index cb4b49349..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/GainBase.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainBase extends AbstractTag -{ - - protected $Id = 1552; - - protected $Name = 'GainBase'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Gain Base'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Gradation.php b/lib/PHPExiftool/Driver/Tag/Olympus/Gradation.php deleted file mode 100644 index f1a9f7e59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Gradation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gradation extends AbstractTag -{ - - protected $Id = 1295; - - protected $Name = 'Gradation'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Gradation'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-1 -1 1' => array( - 'Id' => '-1 -1 1', - 'Label' => 'Low Key', - ), - '0 -1 1' => array( - 'Id' => '0 -1 1', - 'Label' => 'Normal', - ), - '0 0 0' => array( - 'Id' => '0 0 0', - 'Label' => 'n/a', - ), - '1 -1 1' => array( - 'Id' => '1 -1 1', - 'Label' => 'High Key', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/HueSetting.php b/lib/PHPExiftool/Driver/Tag/Olympus/HueSetting.php deleted file mode 100644 index f8bc7fb8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/HueSetting.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueSetting extends AbstractTag -{ - - protected $Id = 4113; - - protected $Name = 'HueSetting'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Hue Setting'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ISO.php b/lib/PHPExiftool/Driver/Tag/Olympus/ISO.php deleted file mode 100644 index d61b08e5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ISOValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/ISOValue.php deleted file mode 100644 index ec1a1165b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ISOValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOValue extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'ISOValue'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'ISO Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ImageProcessingVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/ImageProcessingVersion.php deleted file mode 100644 index 19dd4f4a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ImageProcessingVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageProcessingVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageProcessingVersion'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Image Processing Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ImageQuality2.php b/lib/PHPExiftool/Driver/Tag/Olympus/ImageQuality2.php deleted file mode 100644 index 8443846fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ImageQuality2.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageQuality2 extends AbstractTag -{ - - protected $Id = 1539; - - protected $Name = 'ImageQuality2'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Quality 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'SQ', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'HQ', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'SHQ', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RAW', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'SQ (5)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/Olympus/ImageStabilization.php deleted file mode 100644 index 85588d8dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ImageStabilization.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On, Mode 1', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On, Mode 2', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'On, Mode 3', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'On, Mode 4', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index01.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index01.php deleted file mode 100644 index de6ea9336..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index01 extends AbstractTag -{ - - protected $Id = 522; - - protected $Name = 'Index01'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index02.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index02.php deleted file mode 100644 index 4b9af0858..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index02 extends AbstractTag -{ - - protected $Id = 532; - - protected $Name = 'Index02'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index03.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index03.php deleted file mode 100644 index 7d5cc0783..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index03 extends AbstractTag -{ - - protected $Id = 542; - - protected $Name = 'Index03'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index04.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index04.php deleted file mode 100644 index 66fac09be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index04 extends AbstractTag -{ - - protected $Id = 552; - - protected $Name = 'Index04'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index05.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index05.php deleted file mode 100644 index 7146d09e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index05 extends AbstractTag -{ - - protected $Id = 562; - - protected $Name = 'Index05'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index06.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index06.php deleted file mode 100644 index c48eb958c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index06 extends AbstractTag -{ - - protected $Id = 572; - - protected $Name = 'Index06'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index07.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index07.php deleted file mode 100644 index 43f513c58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index07 extends AbstractTag -{ - - protected $Id = 582; - - protected $Name = 'Index07'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index08.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index08.php deleted file mode 100644 index 88b517e2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index08 extends AbstractTag -{ - - protected $Id = 592; - - protected $Name = 'Index08'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index09.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index09.php deleted file mode 100644 index 8be57f5a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index09 extends AbstractTag -{ - - protected $Id = 602; - - protected $Name = 'Index09'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index10.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index10.php deleted file mode 100644 index 2884468a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index10 extends AbstractTag -{ - - protected $Id = 612; - - protected $Name = 'Index10'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index11.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index11.php deleted file mode 100644 index c1892d9be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index11 extends AbstractTag -{ - - protected $Id = 622; - - protected $Name = 'Index11'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index12.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index12.php deleted file mode 100644 index ca940fa61..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index12 extends AbstractTag -{ - - protected $Id = 632; - - protected $Name = 'Index12'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index13.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index13.php deleted file mode 100644 index 9d9fd35d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index13 extends AbstractTag -{ - - protected $Id = 642; - - protected $Name = 'Index13'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index14.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index14.php deleted file mode 100644 index b4a5062f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index14 extends AbstractTag -{ - - protected $Id = 652; - - protected $Name = 'Index14'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index15.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index15.php deleted file mode 100644 index 6af8be263..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index15 extends AbstractTag -{ - - protected $Id = 662; - - protected $Name = 'Index15'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Index16.php b/lib/PHPExiftool/Driver/Tag/Olympus/Index16.php deleted file mode 100644 index 38bc810b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Index16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Index16 extends AbstractTag -{ - - protected $Id = 672; - - protected $Name = 'Index16'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlash.php b/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlash.php deleted file mode 100644 index 5306f2765..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlash.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlash extends AbstractTag -{ - - protected $Id = 4616; - - protected $Name = 'InternalFlash'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'Off', - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE1.php b/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE1.php deleted file mode 100644 index 9e681c6b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlashAE1 extends AbstractTag -{ - - protected $Id = 4129; - - protected $Name = 'InternalFlashAE1'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash AE1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE10.php b/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE10.php deleted file mode 100644 index 278c3261d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlashAE10 extends AbstractTag -{ - - protected $Id = 4125; - - protected $Name = 'InternalFlashAE1_0'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash AE1 0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE2.php b/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE2.php deleted file mode 100644 index 014e86276..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlashAE2 extends AbstractTag -{ - - protected $Id = 4130; - - protected $Name = 'InternalFlashAE2'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash AE2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE20.php b/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE20.php deleted file mode 100644 index ff0415a96..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashAE20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlashAE20 extends AbstractTag -{ - - protected $Id = 4126; - - protected $Name = 'InternalFlashAE2_0'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash AE2 0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashTable.php b/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashTable.php deleted file mode 100644 index d4d9888b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/InternalFlashTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlashTable extends AbstractTag -{ - - protected $Id = 4132; - - protected $Name = 'InternalFlashTable'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash Table'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/InternalSerialNumber.php deleted file mode 100644 index 0938e06c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/InternalSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 258; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LensDistortionParams.php b/lib/PHPExiftool/Driver/Tag/Olympus/LensDistortionParams.php deleted file mode 100644 index 68afbde31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LensDistortionParams.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensDistortionParams extends AbstractTag -{ - - protected $Id = 518; - - protected $Name = 'LensDistortionParams'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Lens Distortion Params'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LensFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/LensFirmwareVersion.php deleted file mode 100644 index 6a8da19c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LensFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFirmwareVersion extends AbstractTag -{ - - protected $Id = 516; - - protected $Name = 'LensFirmwareVersion'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Lens Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LensModel.php b/lib/PHPExiftool/Driver/Tag/Olympus/LensModel.php deleted file mode 100644 index ddbe3845a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LensModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'LensModel'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LensProperties.php b/lib/PHPExiftool/Driver/Tag/Olympus/LensProperties.php deleted file mode 100644 index a33d06715..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LensProperties.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProperties extends AbstractTag -{ - - protected $Id = 523; - - protected $Name = 'LensProperties'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Lens Properties'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/LensSerialNumber.php deleted file mode 100644 index 385a5042d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LensSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LensTemperature.php b/lib/PHPExiftool/Driver/Tag/Olympus/LensTemperature.php deleted file mode 100644 index 76eb18ea8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LensTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensTemperature extends AbstractTag -{ - - protected $Id = 4104; - - protected $Name = 'LensTemperature'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Lens Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LensType.php b/lib/PHPExiftool/Driver/Tag/Olympus/LensType.php deleted file mode 100644 index 6c10eef90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LensType.php +++ /dev/null @@ -1,442 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'LensType'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - - protected $Values = array( - '0 00 00' => array( - 'Id' => '0 00 00', - 'Label' => 'None', - ), - '0 01 00' => array( - 'Id' => '0 01 00', - 'Label' => 'Olympus Zuiko Digital ED 50mm F2.0 Macro', - ), - '0 01 01' => array( - 'Id' => '0 01 01', - 'Label' => 'Olympus Zuiko Digital 40-150mm F3.5-4.5', - ), - '0 01 10' => array( - 'Id' => '0 01 10', - 'Label' => 'Olympus M.Zuiko Digital ED 14-42mm F3.5-5.6', - ), - '0 02 00' => array( - 'Id' => '0 02 00', - 'Label' => 'Olympus Zuiko Digital ED 150mm F2.0', - ), - '0 02 10' => array( - 'Id' => '0 02 10', - 'Label' => 'Olympus M.Zuiko Digital 17mm F2.8 Pancake', - ), - '0 03 00' => array( - 'Id' => '0 03 00', - 'Label' => 'Olympus Zuiko Digital ED 300mm F2.8', - ), - '0 03 10' => array( - 'Id' => '0 03 10', - 'Label' => 'Olympus M.Zuiko Digital ED 14-150mm F4.0-5.6', - ), - '0 04 10' => array( - 'Id' => '0 04 10', - 'Label' => 'Olympus M.Zuiko Digital ED 9-18mm F4.0-5.6', - ), - '0 05 00' => array( - 'Id' => '0 05 00', - 'Label' => 'Olympus Zuiko Digital 14-54mm F2.8-3.5', - ), - '0 05 01' => array( - 'Id' => '0 05 01', - 'Label' => 'Olympus Zuiko Digital Pro ED 90-250mm F2.8', - ), - '0 05 10' => array( - 'Id' => '0 05 10', - 'Label' => 'Olympus M.Zuiko Digital ED 14-42mm F3.5-5.6 L', - ), - '0 06 00' => array( - 'Id' => '0 06 00', - 'Label' => 'Olympus Zuiko Digital ED 50-200mm F2.8-3.5', - ), - '0 06 01' => array( - 'Id' => '0 06 01', - 'Label' => 'Olympus Zuiko Digital ED 8mm F3.5 Fisheye', - ), - '0 06 10' => array( - 'Id' => '0 06 10', - 'Label' => 'Olympus M.Zuiko Digital ED 40-150mm F4.0-5.6', - ), - '0 07 00' => array( - 'Id' => '0 07 00', - 'Label' => 'Olympus Zuiko Digital 11-22mm F2.8-3.5', - ), - '0 07 01' => array( - 'Id' => '0 07 01', - 'Label' => 'Olympus Zuiko Digital 18-180mm F3.5-6.3', - ), - '0 07 10' => array( - 'Id' => '0 07 10', - 'Label' => 'Olympus M.Zuiko Digital ED 12mm F2.0', - ), - '0 08 01' => array( - 'Id' => '0 08 01', - 'Label' => 'Olympus Zuiko Digital 70-300mm F4.0-5.6', - ), - '0 08 10' => array( - 'Id' => '0 08 10', - 'Label' => 'Olympus M.Zuiko Digital ED 75-300mm F4.8-6.7', - ), - '0 09 10' => array( - 'Id' => '0 09 10', - 'Label' => 'Olympus M.Zuiko Digital 14-42mm F3.5-5.6 II', - ), - '0 10 01' => array( - 'Id' => '0 10 01', - 'Label' => 'Kenko Tokina Reflex 300mm F6.3 MF Macro', - ), - '0 10 10' => array( - 'Id' => '0 10 10', - 'Label' => 'Olympus M.Zuiko Digital ED 12-50mm F3.5-6.3 EZ', - ), - '0 11 10' => array( - 'Id' => '0 11 10', - 'Label' => 'Olympus M.Zuiko Digital 45mm F1.8', - ), - '0 12 10' => array( - 'Id' => '0 12 10', - 'Label' => 'Olympus M.Zuiko Digital ED 60mm F2.8 Macro', - ), - '0 13 10' => array( - 'Id' => '0 13 10', - 'Label' => 'Olympus M.Zuiko Digital 14-42mm F3.5-5.6 II R', - ), - '0 14 10' => array( - 'Id' => '0 14 10', - 'Label' => 'Olympus M.Zuiko Digital ED 40-150mm F4.0-5.6 R', - ), - '0 15 00' => array( - 'Id' => '0 15 00', - 'Label' => 'Olympus Zuiko Digital ED 7-14mm F4.0', - ), - '0 15 10' => array( - 'Id' => '0 15 10', - 'Label' => 'Olympus M.Zuiko Digital ED 75mm F1.8', - ), - '0 16 10' => array( - 'Id' => '0 16 10', - 'Label' => 'Olympus M.Zuiko Digital 17mm F1.8', - ), - '0 17 00' => array( - 'Id' => '0 17 00', - 'Label' => 'Olympus Zuiko Digital Pro ED 35-100mm F2.0', - ), - '0 18 00' => array( - 'Id' => '0 18 00', - 'Label' => 'Olympus Zuiko Digital 14-45mm F3.5-5.6', - ), - '0 18 10' => array( - 'Id' => '0 18 10', - 'Label' => 'Olympus M.Zuiko Digital ED 75-300mm F4.8-6.7 II', - ), - '0 19 10' => array( - 'Id' => '0 19 10', - 'Label' => 'Olympus M.Zuiko Digital ED 12-40mm F2.8 Pro', - ), - '0 20 00' => array( - 'Id' => '0 20 00', - 'Label' => 'Olympus Zuiko Digital 35mm F3.5 Macro', - ), - '0 21 10' => array( - 'Id' => '0 21 10', - 'Label' => 'Olympus M.Zuiko Digital ED 14-42mm F3.5-5.6 EZ', - ), - '0 22 00' => array( - 'Id' => '0 22 00', - 'Label' => 'Olympus Zuiko Digital 17.5-45mm F3.5-5.6', - ), - '0 22 10' => array( - 'Id' => '0 22 10', - 'Label' => 'Olympus M.Zuiko Digital 25mm F1.8', - ), - '0 23 00' => array( - 'Id' => '0 23 00', - 'Label' => 'Olympus Zuiko Digital ED 14-42mm F3.5-5.6', - ), - '0 24 00' => array( - 'Id' => '0 24 00', - 'Label' => 'Olympus Zuiko Digital ED 40-150mm F4.0-5.6', - ), - '0 30 00' => array( - 'Id' => '0 30 00', - 'Label' => 'Olympus Zuiko Digital ED 50-200mm F2.8-3.5 SWD', - ), - '0 31 00' => array( - 'Id' => '0 31 00', - 'Label' => 'Olympus Zuiko Digital ED 12-60mm F2.8-4.0 SWD', - ), - '0 32 00' => array( - 'Id' => '0 32 00', - 'Label' => 'Olympus Zuiko Digital ED 14-35mm F2.0 SWD', - ), - '0 33 00' => array( - 'Id' => '0 33 00', - 'Label' => 'Olympus Zuiko Digital 25mm F2.8', - ), - '0 34 00' => array( - 'Id' => '0 34 00', - 'Label' => 'Olympus Zuiko Digital ED 9-18mm F4.0-5.6', - ), - '0 35 00' => array( - 'Id' => '0 35 00', - 'Label' => 'Olympus Zuiko Digital 14-54mm F2.8-3.5 II', - ), - '1 01 00' => array( - 'Id' => '1 01 00', - 'Label' => 'Sigma 18-50mm F3.5-5.6 DC', - ), - '1 01 10' => array( - 'Id' => '1 01 10', - 'Label' => 'Sigma 30mm F2.8 EX DN', - ), - '1 02 00' => array( - 'Id' => '1 02 00', - 'Label' => 'Sigma 55-200mm F4.0-5.6 DC', - ), - '1 02 10' => array( - 'Id' => '1 02 10', - 'Label' => 'Sigma 19mm F2.8 EX DN', - ), - '1 03 00' => array( - 'Id' => '1 03 00', - 'Label' => 'Sigma 18-125mm F3.5-5.6 DC', - ), - '1 03 10' => array( - 'Id' => '1 03 10', - 'Label' => 'Sigma 30mm F2.8 DN | A', - ), - '1 04 00' => array( - 'Id' => '1 04 00', - 'Label' => 'Sigma 18-125mm F3.5-5.6 DC', - ), - '1 04 10' => array( - 'Id' => '1 04 10', - 'Label' => 'Sigma 19mm F2.8 DN | A', - ), - '1 05 00' => array( - 'Id' => '1 05 00', - 'Label' => 'Sigma 30mm F1.4 EX DC HSM', - ), - '1 05 10' => array( - 'Id' => '1 05 10', - 'Label' => 'Sigma 60mm F2.8 DN | A', - ), - '1 06 00' => array( - 'Id' => '1 06 00', - 'Label' => 'Sigma APO 50-500mm F4.0-6.3 EX DG HSM', - ), - '1 07 00' => array( - 'Id' => '1 07 00', - 'Label' => 'Sigma Macro 105mm F2.8 EX DG', - ), - '1 08 00' => array( - 'Id' => '1 08 00', - 'Label' => 'Sigma APO Macro 150mm F2.8 EX DG HSM', - ), - '1 09 00' => array( - 'Id' => '1 09 00', - 'Label' => 'Sigma 18-50mm F2.8 EX DC Macro', - ), - '1 10 00' => array( - 'Id' => '1 10 00', - 'Label' => 'Sigma 24mm F1.8 EX DG Aspherical Macro', - ), - '1 11 00' => array( - 'Id' => '1 11 00', - 'Label' => 'Sigma APO 135-400mm F4.5-5.6 DG', - ), - '1 12 00' => array( - 'Id' => '1 12 00', - 'Label' => 'Sigma APO 300-800mm F5.6 EX DG HSM', - ), - '1 13 00' => array( - 'Id' => '1 13 00', - 'Label' => 'Sigma 30mm F1.4 EX DC HSM', - ), - '1 14 00' => array( - 'Id' => '1 14 00', - 'Label' => 'Sigma APO 50-500mm F4.0-6.3 EX DG HSM', - ), - '1 15 00' => array( - 'Id' => '1 15 00', - 'Label' => 'Sigma 10-20mm F4.0-5.6 EX DC HSM', - ), - '1 16 00' => array( - 'Id' => '1 16 00', - 'Label' => 'Sigma APO 70-200mm F2.8 II EX DG Macro HSM', - ), - '1 17 00' => array( - 'Id' => '1 17 00', - 'Label' => 'Sigma 50mm F1.4 EX DG HSM', - ), - '2 01 00' => array( - 'Id' => '2 01 00', - 'Label' => 'Leica D Vario Elmarit 14-50mm F2.8-3.5 Asph.', - ), - '2 01 10' => array( - 'Id' => '2 01 10', - 'Label' => 'Lumix G Vario 14-45mm F3.5-5.6 Asph. Mega OIS', - ), - '2 02 00' => array( - 'Id' => '2 02 00', - 'Label' => 'Leica D Summilux 25mm F1.4 Asph.', - ), - '2 02 10' => array( - 'Id' => '2 02 10', - 'Label' => 'Lumix G Vario 45-200mm F4.0-5.6 Mega OIS', - ), - '2 03 00' => array( - 'Id' => '2 03 00', - 'Label' => 'Leica D Vario Elmar 14-50mm F3.8-5.6 Asph. Mega OIS', - ), - '2 03 01' => array( - 'Id' => '2 03 01', - 'Label' => 'Leica D Vario Elmar 14-50mm F3.8-5.6 Asph.', - ), - '2 03 10' => array( - 'Id' => '2 03 10', - 'Label' => 'Lumix G Vario HD 14-140mm F4.0-5.8 Asph. Mega OIS', - ), - '2 04 00' => array( - 'Id' => '2 04 00', - 'Label' => 'Leica D Vario Elmar 14-150mm F3.5-5.6', - ), - '2 04 10' => array( - 'Id' => '2 04 10', - 'Label' => 'Lumix G Vario 7-14mm F4.0 Asph.', - ), - '2 05 10' => array( - 'Id' => '2 05 10', - 'Label' => 'Lumix G 20mm F1.7 Asph.', - ), - '2 06 10' => array( - 'Id' => '2 06 10', - 'Label' => 'Leica DG Macro-Elmarit 45mm F2.8 Asph. Mega OIS', - ), - '2 07 10' => array( - 'Id' => '2 07 10', - 'Label' => 'Lumix G Vario 14-42mm F3.5-5.6 Asph. Mega OIS', - ), - '2 08 10' => array( - 'Id' => '2 08 10', - 'Label' => 'Lumix G Fisheye 8mm F3.5', - ), - '2 09 10' => array( - 'Id' => '2 09 10', - 'Label' => 'Lumix G Vario 100-300mm F4.0-5.6 Mega OIS', - ), - '2 10 10' => array( - 'Id' => '2 10 10', - 'Label' => 'Lumix G 14mm F2.5 Asph.', - ), - '2 11 10' => array( - 'Id' => '2 11 10', - 'Label' => 'Lumix G 12.5mm F12 3D', - ), - '2 12 10' => array( - 'Id' => '2 12 10', - 'Label' => 'Leica DG Summilux 25mm F1.4 Asph.', - ), - '2 13 10' => array( - 'Id' => '2 13 10', - 'Label' => 'Lumix G X Vario PZ 45-175mm F4.0-5.6 Asph. Power OIS', - ), - '2 14 10' => array( - 'Id' => '2 14 10', - 'Label' => 'Lumix G X Vario PZ 14-42mm F3.5-5.6 Asph. Power OIS', - ), - '2 15 10' => array( - 'Id' => '2 15 10', - 'Label' => 'Lumix G X Vario 12-35mm F2.8 Asph. Power OIS', - ), - '2 16 10' => array( - 'Id' => '2 16 10', - 'Label' => 'Lumix G Vario 45-150mm F4.0-5.6 Asph. Mega OIS', - ), - '2 17 10' => array( - 'Id' => '2 17 10', - 'Label' => 'Lumix G X Vario 35-100mm F2.8 Power OIS', - ), - '2 18 10' => array( - 'Id' => '2 18 10', - 'Label' => 'Lumix G Vario 14-42mm F3.5-5.6 II Asph. Mega OIS', - ), - '2 19 10' => array( - 'Id' => '2 19 10', - 'Label' => 'Lumix G Vario 14-140mm F3.5-5.6 Asph. Power OIS', - ), - '2 20 10' => array( - 'Id' => '2 20 10', - 'Label' => 'Lumix G Vario 12-32mm F3.5-5.6 Asph. Mega OIS', - ), - '2 21 10' => array( - 'Id' => '2 21 10', - 'Label' => 'Leica DG Nocticron 42.5mm F1.2 Asph. Power OIS', - ), - '2 22 10' => array( - 'Id' => '2 22 10', - 'Label' => 'Leica DG Summilux 15mm F1.7 Asph.', - ), - '3 01 00' => array( - 'Id' => '3 01 00', - 'Label' => 'Leica D Vario Elmarit 14-50mm F2.8-3.5 Asph.', - ), - '3 02 00' => array( - 'Id' => '3 02 00', - 'Label' => 'Leica D Summilux 25mm F1.4 Asph.', - ), - '5 01 10' => array( - 'Id' => '5 01 10', - 'Label' => 'Tamron 14-150mm F3.5-5.8 Di III', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LevelGaugePitch.php b/lib/PHPExiftool/Driver/Tag/Olympus/LevelGaugePitch.php deleted file mode 100644 index 05966450b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LevelGaugePitch.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LevelGaugePitch extends AbstractTag -{ - - protected $Id = 2308; - - protected $Name = 'LevelGaugePitch'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Level Gauge Pitch'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LevelGaugeRoll.php b/lib/PHPExiftool/Driver/Tag/Olympus/LevelGaugeRoll.php deleted file mode 100644 index ac72d86aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LevelGaugeRoll.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LevelGaugeRoll extends AbstractTag -{ - - protected $Id = 2307; - - protected $Name = 'LevelGaugeRoll'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Level Gauge Roll'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LightCondition.php b/lib/PHPExiftool/Driver/Tag/Olympus/LightCondition.php deleted file mode 100644 index 717e49a19..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LightCondition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightCondition extends AbstractTag -{ - - protected $Id = 4105; - - protected $Name = 'LightCondition'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Light Condition'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LightSource.php b/lib/PHPExiftool/Driver/Tag/Olympus/LightSource.php deleted file mode 100644 index 11b36a64b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LightSource.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSource extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'LightSource'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Light Source'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Shade', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Cloudy', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Fine Weather', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Tungsten (Incandescent)', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Evening Sunlight', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Daylight Fluorescent', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Day White Fluorescent', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Cool White Fluorescent', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'White Fluorescent', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'One Touch White Balance', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Custom 1-4', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LightValueCenter.php b/lib/PHPExiftool/Driver/Tag/Olympus/LightValueCenter.php deleted file mode 100644 index 14fafc636..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LightValueCenter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightValueCenter extends AbstractTag -{ - - protected $Id = 4157; - - protected $Name = 'LightValueCenter'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Light Value Center'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/LightValuePeriphery.php b/lib/PHPExiftool/Driver/Tag/Olympus/LightValuePeriphery.php deleted file mode 100644 index 8f0f0b70b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/LightValuePeriphery.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightValuePeriphery extends AbstractTag -{ - - protected $Id = 4158; - - protected $Name = 'LightValuePeriphery'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Light Value Periphery'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Macro.php b/lib/PHPExiftool/Driver/Tag/Olympus/Macro.php deleted file mode 100644 index 35343cc63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Macro.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Macro extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'Macro'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Super Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MacroLED.php b/lib/PHPExiftool/Driver/Tag/Olympus/MacroLED.php deleted file mode 100644 index 4e223861c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MacroLED.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroLED extends AbstractTag -{ - - protected $Id = 4618; - - protected $Name = 'MacroLED'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro LED'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MacroMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/MacroMode.php deleted file mode 100644 index b1f002521..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MacroMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroMode extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'MacroMode'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Super Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MagicFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/MagicFilter.php deleted file mode 100644 index 1f86a6769..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MagicFilter.php +++ /dev/null @@ -1,162 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MagicFilter extends AbstractTag -{ - - protected $Id = 1324; - - protected $Name = 'MagicFilter'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Magic Filter'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Soft Focus', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pop Art', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Pale & Light Color', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Light Tone', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Pin Hole', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Grainy Film', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Diorama', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cross Process', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Fish Eye', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Drawing', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Gentle Sepia', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Tender Light', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Pop Art II', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Pin Hole II', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Pin Hole III', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Grainy Film II', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Dramatic Tone', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Punk', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Soft Focus 2', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Sparkle', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Watercolor', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Key Line', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Miniature', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Reflection', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Fragmented', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Dramatic Tone B&W', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Watercolor II', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Make.php b/lib/PHPExiftool/Driver/Tag/Olympus/Make.php deleted file mode 100644 index f7c07c67e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Make'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/MakerNoteVersion.php deleted file mode 100644 index aa3e8735b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MakerNoteVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ManometerPressure.php b/lib/PHPExiftool/Driver/Tag/Olympus/ManometerPressure.php deleted file mode 100644 index a30cb12cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ManometerPressure.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManometerPressure extends AbstractTag -{ - - protected $Id = 2304; - - protected $Name = 'ManometerPressure'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Manometer Pressure'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ManometerReading.php b/lib/PHPExiftool/Driver/Tag/Olympus/ManometerReading.php deleted file mode 100644 index 5c49d5137..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ManometerReading.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManometerReading extends AbstractTag -{ - - protected $Id = 2305; - - protected $Name = 'ManometerReading'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Manometer Reading'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ManualFlash.php b/lib/PHPExiftool/Driver/Tag/Olympus/ManualFlash.php deleted file mode 100644 index eb95e1eb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ManualFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFlash extends AbstractTag -{ - - protected $Id = 4617; - - protected $Name = 'ManualFlash'; - - protected $FullName = 'Olympus::FocusInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Manual Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ManualFlashStrength.php b/lib/PHPExiftool/Driver/Tag/Olympus/ManualFlashStrength.php deleted file mode 100644 index 5be7510e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ManualFlashStrength.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFlashStrength extends AbstractTag -{ - - protected $Id = 1030; - - protected $Name = 'ManualFlashStrength'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Manual Flash Strength'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'undef undef undef' => array( - 'Id' => 'undef undef undef', - 'Label' => 'n/a', - ), - 'undef undef undef undef' => array( - 'Id' => 'undef undef undef undef', - 'Label' => 'n/a (x4)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ManualFocusDistance.php b/lib/PHPExiftool/Driver/Tag/Olympus/ManualFocusDistance.php deleted file mode 100644 index f5ef6ffa4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ManualFocusDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFocusDistance extends AbstractTag -{ - - protected $Id = 4108; - - protected $Name = 'ManualFocusDistance'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Manual Focus Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/Olympus/MaxAperture.php deleted file mode 100644 index 4745f2600..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 522; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MaxApertureAtMaxFocal.php b/lib/PHPExiftool/Driver/Tag/Olympus/MaxApertureAtMaxFocal.php deleted file mode 100644 index 233f10b2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MaxApertureAtMaxFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMaxFocal extends AbstractTag -{ - - protected $Id = 518; - - protected $Name = 'MaxApertureAtMaxFocal'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture At Max Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MaxApertureAtMinFocal.php b/lib/PHPExiftool/Driver/Tag/Olympus/MaxApertureAtMinFocal.php deleted file mode 100644 index 0b0357e96..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MaxApertureAtMinFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMinFocal extends AbstractTag -{ - - protected $Id = 517; - - protected $Name = 'MaxApertureAtMinFocal'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture At Min Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MaxFaces.php b/lib/PHPExiftool/Driver/Tag/Olympus/MaxFaces.php deleted file mode 100644 index 3ceadcf0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MaxFaces.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxFaces extends AbstractTag -{ - - protected $Id = 4610; - - protected $Name = 'MaxFaces'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Max Faces'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MaxFocalLength.php b/lib/PHPExiftool/Driver/Tag/Olympus/MaxFocalLength.php deleted file mode 100644 index 5a4a8836b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MaxFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxFocalLength extends AbstractTag -{ - - protected $Id = 520; - - protected $Name = 'MaxFocalLength'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Max Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/MeteringMode.php deleted file mode 100644 index 52be3a509..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MeteringMode.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'ESP', - ), - 261 => array( - 'Id' => 261, - 'Label' => 'Pattern+AF', - ), - 515 => array( - 'Id' => 515, - 'Label' => 'Spot+Highlight control', - ), - 1027 => array( - 'Id' => 1027, - 'Label' => 'Spot+Shadow control', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MinFocalLength.php b/lib/PHPExiftool/Driver/Tag/Olympus/MinFocalLength.php deleted file mode 100644 index c491f4fca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MinFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinFocalLength extends AbstractTag -{ - - protected $Id = 519; - - protected $Name = 'MinFocalLength'; - - protected $FullName = 'Olympus::Equipment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Min Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Model.php b/lib/PHPExiftool/Driver/Tag/Olympus/Model.php deleted file mode 100644 index 2db56783d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Model.php +++ /dev/null @@ -1,1182 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Model'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'mixed'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - - protected $Values = array( - 'D4028' => array( - 'Id' => 'D4028', - 'Label' => 'X-2,C-50Z', - ), - 'D4029' => array( - 'Id' => 'D4029', - 'Label' => 'E-20,E-20N,E-20P', - ), - 'D4034' => array( - 'Id' => 'D4034', - 'Label' => 'C720UZ', - ), - 'D4040' => array( - 'Id' => 'D4040', - 'Label' => 'E-1', - ), - 'D4041' => array( - 'Id' => 'D4041', - 'Label' => 'E-300', - ), - 'D4083' => array( - 'Id' => 'D4083', - 'Label' => 'C2Z,D520Z,C220Z', - ), - 'D4106' => array( - 'Id' => 'D4106', - 'Label' => 'u20D,S400D,u400D', - ), - 'D4120' => array( - 'Id' => 'D4120', - 'Label' => 'X-1', - ), - 'D4122' => array( - 'Id' => 'D4122', - 'Label' => 'u10D,S300D,u300D', - ), - 'D4125' => array( - 'Id' => 'D4125', - 'Label' => 'AZ-1', - ), - 'D4141' => array( - 'Id' => 'D4141', - 'Label' => 'C150,D390', - ), - 'D4193' => array( - 'Id' => 'D4193', - 'Label' => 'C-5000Z', - ), - 'D4194' => array( - 'Id' => 'D4194', - 'Label' => 'X-3,C-60Z', - ), - 'D4199' => array( - 'Id' => 'D4199', - 'Label' => 'u30D,S410D,u410D', - ), - 'D4205' => array( - 'Id' => 'D4205', - 'Label' => 'X450,D535Z,C370Z', - ), - 'D4210' => array( - 'Id' => 'D4210', - 'Label' => 'C160,D395', - ), - 'D4211' => array( - 'Id' => 'D4211', - 'Label' => 'C725UZ', - ), - 'D4213' => array( - 'Id' => 'D4213', - 'Label' => 'FerrariMODEL2003', - ), - 'D4216' => array( - 'Id' => 'D4216', - 'Label' => 'u15D', - ), - 'D4217' => array( - 'Id' => 'D4217', - 'Label' => 'u25D', - ), - 'D4220' => array( - 'Id' => 'D4220', - 'Label' => 'u-miniD,Stylus V', - ), - 'D4221' => array( - 'Id' => 'D4221', - 'Label' => 'u40D,S500,uD500', - ), - 'D4231' => array( - 'Id' => 'D4231', - 'Label' => 'FerrariMODEL2004', - ), - 'D4240' => array( - 'Id' => 'D4240', - 'Label' => 'X500,D590Z,C470Z', - ), - 'D4244' => array( - 'Id' => 'D4244', - 'Label' => 'uD800,S800', - ), - 'D4256' => array( - 'Id' => 'D4256', - 'Label' => 'u720SW,S720SW', - ), - 'D4261' => array( - 'Id' => 'D4261', - 'Label' => 'X600,D630,FE5500', - ), - 'D4262' => array( - 'Id' => 'D4262', - 'Label' => 'uD600,S600', - ), - 'D4301' => array( - 'Id' => 'D4301', - 'Label' => 'u810/S810', - ), - 'D4302' => array( - 'Id' => 'D4302', - 'Label' => 'u710,S710', - ), - 'D4303' => array( - 'Id' => 'D4303', - 'Label' => 'u700,S700', - ), - 'D4304' => array( - 'Id' => 'D4304', - 'Label' => 'FE100,X710', - ), - 'D4305' => array( - 'Id' => 'D4305', - 'Label' => 'FE110,X705', - ), - 'D4310' => array( - 'Id' => 'D4310', - 'Label' => 'FE-130,X-720', - ), - 'D4311' => array( - 'Id' => 'D4311', - 'Label' => 'FE-140,X-725', - ), - 'D4312' => array( - 'Id' => 'D4312', - 'Label' => 'FE150,X730', - ), - 'D4313' => array( - 'Id' => 'D4313', - 'Label' => 'FE160,X735', - ), - 'D4314' => array( - 'Id' => 'D4314', - 'Label' => 'u740,S740', - ), - 'D4315' => array( - 'Id' => 'D4315', - 'Label' => 'u750,S750', - ), - 'D4316' => array( - 'Id' => 'D4316', - 'Label' => 'u730/S730', - ), - 'D4317' => array( - 'Id' => 'D4317', - 'Label' => 'FE115,X715', - ), - 'D4321' => array( - 'Id' => 'D4321', - 'Label' => 'SP550UZ', - ), - 'D4322' => array( - 'Id' => 'D4322', - 'Label' => 'SP510UZ', - ), - 'D4324' => array( - 'Id' => 'D4324', - 'Label' => 'FE170,X760', - ), - 'D4326' => array( - 'Id' => 'D4326', - 'Label' => 'FE200', - ), - 'D4327' => array( - 'Id' => 'D4327', - 'Label' => 'FE190/X750', - ), - 'D4328' => array( - 'Id' => 'D4328', - 'Label' => 'u760,S760', - ), - 'D4330' => array( - 'Id' => 'D4330', - 'Label' => 'FE180/X745', - ), - 'D4331' => array( - 'Id' => 'D4331', - 'Label' => 'u1000/S1000', - ), - 'D4332' => array( - 'Id' => 'D4332', - 'Label' => 'u770SW,S770SW', - ), - 'D4333' => array( - 'Id' => 'D4333', - 'Label' => 'FE240/X795', - ), - 'D4334' => array( - 'Id' => 'D4334', - 'Label' => 'FE210,X775', - ), - 'D4336' => array( - 'Id' => 'D4336', - 'Label' => 'FE230/X790', - ), - 'D4337' => array( - 'Id' => 'D4337', - 'Label' => 'FE220,X785', - ), - 'D4338' => array( - 'Id' => 'D4338', - 'Label' => 'u725SW,S725SW', - ), - 'D4339' => array( - 'Id' => 'D4339', - 'Label' => 'FE250/X800', - ), - 'D4341' => array( - 'Id' => 'D4341', - 'Label' => 'u780,S780', - ), - 'D4343' => array( - 'Id' => 'D4343', - 'Label' => 'u790SW,S790SW', - ), - 'D4344' => array( - 'Id' => 'D4344', - 'Label' => 'u1020,S1020', - ), - 'D4346' => array( - 'Id' => 'D4346', - 'Label' => 'FE15,X10', - ), - 'D4348' => array( - 'Id' => 'D4348', - 'Label' => 'FE280,X820,C520', - ), - 'D4349' => array( - 'Id' => 'D4349', - 'Label' => 'FE300,X830', - ), - 'D4350' => array( - 'Id' => 'D4350', - 'Label' => 'u820,S820', - ), - 'D4351' => array( - 'Id' => 'D4351', - 'Label' => 'u1200,S1200', - ), - 'D4352' => array( - 'Id' => 'D4352', - 'Label' => 'FE270,X815,C510', - ), - 'D4353' => array( - 'Id' => 'D4353', - 'Label' => 'u795SW,S795SW', - ), - 'D4354' => array( - 'Id' => 'D4354', - 'Label' => 'u1030SW,S1030SW', - ), - 'D4355' => array( - 'Id' => 'D4355', - 'Label' => 'SP560UZ', - ), - 'D4356' => array( - 'Id' => 'D4356', - 'Label' => 'u1010,S1010', - ), - 'D4357' => array( - 'Id' => 'D4357', - 'Label' => 'u830,S830', - ), - 'D4359' => array( - 'Id' => 'D4359', - 'Label' => 'u840,S840', - ), - 'D4360' => array( - 'Id' => 'D4360', - 'Label' => 'FE350WIDE,X865', - ), - 'D4361' => array( - 'Id' => 'D4361', - 'Label' => 'u850SW,S850SW', - ), - 'D4362' => array( - 'Id' => 'D4362', - 'Label' => 'FE340,X855,C560', - ), - 'D4363' => array( - 'Id' => 'D4363', - 'Label' => 'FE320,X835,C540', - ), - 'D4364' => array( - 'Id' => 'D4364', - 'Label' => 'SP570UZ', - ), - 'D4366' => array( - 'Id' => 'D4366', - 'Label' => 'FE330,X845,C550', - ), - 'D4368' => array( - 'Id' => 'D4368', - 'Label' => 'FE310,X840,C530', - ), - 'D4370' => array( - 'Id' => 'D4370', - 'Label' => 'u1050SW,S1050SW', - ), - 'D4371' => array( - 'Id' => 'D4371', - 'Label' => 'u1060,S1060', - ), - 'D4372' => array( - 'Id' => 'D4372', - 'Label' => 'FE370,X880,C575', - ), - 'D4374' => array( - 'Id' => 'D4374', - 'Label' => 'SP565UZ', - ), - 'D4377' => array( - 'Id' => 'D4377', - 'Label' => 'u1040,S1040', - ), - 'D4378' => array( - 'Id' => 'D4378', - 'Label' => 'FE360,X875,C570', - ), - 'D4379' => array( - 'Id' => 'D4379', - 'Label' => 'FE20,X15,C25', - ), - 'D4380' => array( - 'Id' => 'D4380', - 'Label' => 'uT6000,ST6000', - ), - 'D4381' => array( - 'Id' => 'D4381', - 'Label' => 'uT8000,ST8000', - ), - 'D4382' => array( - 'Id' => 'D4382', - 'Label' => 'u9000,S9000', - ), - 'D4384' => array( - 'Id' => 'D4384', - 'Label' => 'SP590UZ', - ), - 'D4385' => array( - 'Id' => 'D4385', - 'Label' => 'FE3010,X895', - ), - 'D4386' => array( - 'Id' => 'D4386', - 'Label' => 'FE3000,X890', - ), - 'D4387' => array( - 'Id' => 'D4387', - 'Label' => 'FE35,X30', - ), - 'D4388' => array( - 'Id' => 'D4388', - 'Label' => 'u550WP,S550WP', - ), - 'D4390' => array( - 'Id' => 'D4390', - 'Label' => 'FE5000,X905', - ), - 'D4391' => array( - 'Id' => 'D4391', - 'Label' => 'u5000', - ), - 'D4392' => array( - 'Id' => 'D4392', - 'Label' => 'u7000,S7000', - ), - 'D4396' => array( - 'Id' => 'D4396', - 'Label' => 'FE5010,X915', - ), - 'D4397' => array( - 'Id' => 'D4397', - 'Label' => 'FE25,X20', - ), - 'D4398' => array( - 'Id' => 'D4398', - 'Label' => 'FE45,X40', - ), - 'D4401' => array( - 'Id' => 'D4401', - 'Label' => 'XZ-1', - ), - 'D4402' => array( - 'Id' => 'D4402', - 'Label' => 'uT6010,ST6010', - ), - 'D4406' => array( - 'Id' => 'D4406', - 'Label' => 'u7010,S7010 / u7020,S7020', - ), - 'D4407' => array( - 'Id' => 'D4407', - 'Label' => 'FE4010,X930', - ), - 'D4408' => array( - 'Id' => 'D4408', - 'Label' => 'X560WP', - ), - 'D4409' => array( - 'Id' => 'D4409', - 'Label' => 'FE26,X21', - ), - 'D4410' => array( - 'Id' => 'D4410', - 'Label' => 'FE4000,X920,X925', - ), - 'D4411' => array( - 'Id' => 'D4411', - 'Label' => 'FE46,X41,X42', - ), - 'D4412' => array( - 'Id' => 'D4412', - 'Label' => 'FE5020,X935', - ), - 'D4413' => array( - 'Id' => 'D4413', - 'Label' => 'uTough-3000', - ), - 'D4414' => array( - 'Id' => 'D4414', - 'Label' => 'StylusTough-6020', - ), - 'D4415' => array( - 'Id' => 'D4415', - 'Label' => 'StylusTough-8010', - ), - 'D4417' => array( - 'Id' => 'D4417', - 'Label' => 'u5010,S5010', - ), - 'D4418' => array( - 'Id' => 'D4418', - 'Label' => 'u7040,S7040', - ), - 'D4419' => array( - 'Id' => 'D4419', - 'Label' => 'u9010,S9010', - ), - 'D4423' => array( - 'Id' => 'D4423', - 'Label' => 'FE4040', - ), - 'D4424' => array( - 'Id' => 'D4424', - 'Label' => 'FE47,X43', - ), - 'D4426' => array( - 'Id' => 'D4426', - 'Label' => 'FE4030,X950', - ), - 'D4428' => array( - 'Id' => 'D4428', - 'Label' => 'FE5030,X965,X960', - ), - 'D4430' => array( - 'Id' => 'D4430', - 'Label' => 'u7030,S7030', - ), - 'D4432' => array( - 'Id' => 'D4432', - 'Label' => 'SP600UZ', - ), - 'D4434' => array( - 'Id' => 'D4434', - 'Label' => 'SP800UZ', - ), - 'D4439' => array( - 'Id' => 'D4439', - 'Label' => 'FE4020,X940', - ), - 'D4442' => array( - 'Id' => 'D4442', - 'Label' => 'FE5035', - ), - 'D4448' => array( - 'Id' => 'D4448', - 'Label' => 'FE4050,X970', - ), - 'D4450' => array( - 'Id' => 'D4450', - 'Label' => 'FE5050,X985', - ), - 'D4454' => array( - 'Id' => 'D4454', - 'Label' => 'u-7050', - ), - 'D4464' => array( - 'Id' => 'D4464', - 'Label' => 'T10,X27', - ), - 'D4470' => array( - 'Id' => 'D4470', - 'Label' => 'FE5040,X980', - ), - 'D4472' => array( - 'Id' => 'D4472', - 'Label' => 'TG-310', - ), - 'D4474' => array( - 'Id' => 'D4474', - 'Label' => 'TG-610', - ), - 'D4476' => array( - 'Id' => 'D4476', - 'Label' => 'TG-810', - ), - 'D4478' => array( - 'Id' => 'D4478', - 'Label' => 'VG145,VG140,D715', - ), - 'D4479' => array( - 'Id' => 'D4479', - 'Label' => 'VG130,D710', - ), - 'D4480' => array( - 'Id' => 'D4480', - 'Label' => 'VG120,D705', - ), - 'D4482' => array( - 'Id' => 'D4482', - 'Label' => 'VR310,D720', - ), - 'D4484' => array( - 'Id' => 'D4484', - 'Label' => 'VR320,D725', - ), - 'D4486' => array( - 'Id' => 'D4486', - 'Label' => 'VR330,D730', - ), - 'D4488' => array( - 'Id' => 'D4488', - 'Label' => 'VG110,D700', - ), - 'D4490' => array( - 'Id' => 'D4490', - 'Label' => 'SP-610UZ', - ), - 'D4492' => array( - 'Id' => 'D4492', - 'Label' => 'SZ-10', - ), - 'D4494' => array( - 'Id' => 'D4494', - 'Label' => 'SZ-20', - ), - 'D4496' => array( - 'Id' => 'D4496', - 'Label' => 'SZ-30MR', - ), - 'D4498' => array( - 'Id' => 'D4498', - 'Label' => 'SP-810UZ', - ), - 'D4500' => array( - 'Id' => 'D4500', - 'Label' => 'SZ-11', - ), - 'D4504' => array( - 'Id' => 'D4504', - 'Label' => 'TG-615', - ), - 'D4508' => array( - 'Id' => 'D4508', - 'Label' => 'TG-620', - ), - 'D4510' => array( - 'Id' => 'D4510', - 'Label' => 'TG-820', - ), - 'D4512' => array( - 'Id' => 'D4512', - 'Label' => 'TG-1', - ), - 'D4516' => array( - 'Id' => 'D4516', - 'Label' => 'SH-21', - ), - 'D4519' => array( - 'Id' => 'D4519', - 'Label' => 'SZ-14', - ), - 'D4520' => array( - 'Id' => 'D4520', - 'Label' => 'SZ-31MR', - ), - 'D4521' => array( - 'Id' => 'D4521', - 'Label' => 'SH-25MR', - ), - 'D4523' => array( - 'Id' => 'D4523', - 'Label' => 'SP-720UZ', - ), - 'D4529' => array( - 'Id' => 'D4529', - 'Label' => 'VG170', - ), - 'D4531' => array( - 'Id' => 'D4531', - 'Label' => 'XZ-2', - ), - 'D4535' => array( - 'Id' => 'D4535', - 'Label' => 'SP-620UZ', - ), - 'D4536' => array( - 'Id' => 'D4536', - 'Label' => 'TG-320', - ), - 'D4537' => array( - 'Id' => 'D4537', - 'Label' => 'VR340,D750', - ), - 'D4538' => array( - 'Id' => 'D4538', - 'Label' => 'VG160,X990,D745', - ), - 'D4541' => array( - 'Id' => 'D4541', - 'Label' => 'SZ-12', - ), - 'D4545' => array( - 'Id' => 'D4545', - 'Label' => 'VH410', - ), - 'D4546' => array( - 'Id' => 'D4546', - 'Label' => 'XZ-10', - ), - 'D4547' => array( - 'Id' => 'D4547', - 'Label' => 'TG-2', - ), - 'D4548' => array( - 'Id' => 'D4548', - 'Label' => 'TG-830', - ), - 'D4549' => array( - 'Id' => 'D4549', - 'Label' => 'TG-630', - ), - 'D4550' => array( - 'Id' => 'D4550', - 'Label' => 'SH-50', - ), - 'D4553' => array( - 'Id' => 'D4553', - 'Label' => 'SZ-16,DZ-105', - ), - 'D4562' => array( - 'Id' => 'D4562', - 'Label' => 'SP-820UZ', - ), - 'D4566' => array( - 'Id' => 'D4566', - 'Label' => 'SZ-15', - ), - 'D4572' => array( - 'Id' => 'D4572', - 'Label' => 'STYLUS1', - ), - 'D4574' => array( - 'Id' => 'D4574', - 'Label' => 'TG-3', - ), - 'D4575' => array( - 'Id' => 'D4575', - 'Label' => 'TG-850', - ), - 'D4579' => array( - 'Id' => 'D4579', - 'Label' => 'SP-100EE', - ), - 'D4580' => array( - 'Id' => 'D4580', - 'Label' => 'SH-60', - ), - 'D4581' => array( - 'Id' => 'D4581', - 'Label' => 'SH-1', - ), - 'D4582' => array( - 'Id' => 'D4582', - 'Label' => 'TG-835', - ), - 'D4809' => array( - 'Id' => 'D4809', - 'Label' => 'C2500L', - ), - 'D4842' => array( - 'Id' => 'D4842', - 'Label' => 'E-10', - ), - 'D4856' => array( - 'Id' => 'D4856', - 'Label' => 'C-1', - ), - 'D4857' => array( - 'Id' => 'D4857', - 'Label' => 'C-1Z,D-150Z', - ), - 'DCHC' => array( - 'Id' => 'DCHC', - 'Label' => 'D500L', - ), - 'DCHT' => array( - 'Id' => 'DCHT', - 'Label' => 'D600L / D620L', - ), - 'S0003' => array( - 'Id' => 'S0003', - 'Label' => 'E-330', - ), - 'S0004' => array( - 'Id' => 'S0004', - 'Label' => 'E-500', - ), - 'S0009' => array( - 'Id' => 'S0009', - 'Label' => 'E-400', - ), - 'S0010' => array( - 'Id' => 'S0010', - 'Label' => 'E-510', - ), - 'S0011' => array( - 'Id' => 'S0011', - 'Label' => 'E-3', - ), - 'S0013' => array( - 'Id' => 'S0013', - 'Label' => 'E-410', - ), - 'S0016' => array( - 'Id' => 'S0016', - 'Label' => 'E-420', - ), - 'S0017' => array( - 'Id' => 'S0017', - 'Label' => 'E-30', - ), - 'S0018' => array( - 'Id' => 'S0018', - 'Label' => 'E-520', - ), - 'S0019' => array( - 'Id' => 'S0019', - 'Label' => 'E-P1', - ), - 'S0023' => array( - 'Id' => 'S0023', - 'Label' => 'E-620', - ), - 'S0026' => array( - 'Id' => 'S0026', - 'Label' => 'E-P2', - ), - 'S0027' => array( - 'Id' => 'S0027', - 'Label' => 'E-PL1', - ), - 'S0029' => array( - 'Id' => 'S0029', - 'Label' => 'E-450', - ), - 'S0030' => array( - 'Id' => 'S0030', - 'Label' => 'E-600', - ), - 'S0032' => array( - 'Id' => 'S0032', - 'Label' => 'E-P3', - ), - 'S0033' => array( - 'Id' => 'S0033', - 'Label' => 'E-5', - ), - 'S0034' => array( - 'Id' => 'S0034', - 'Label' => 'E-PL2', - ), - 'S0036' => array( - 'Id' => 'S0036', - 'Label' => 'E-M5', - ), - 'S0038' => array( - 'Id' => 'S0038', - 'Label' => 'E-PL3', - ), - 'S0039' => array( - 'Id' => 'S0039', - 'Label' => 'E-PM1', - ), - 'S0040' => array( - 'Id' => 'S0040', - 'Label' => 'E-PL1s', - ), - 'S0042' => array( - 'Id' => 'S0042', - 'Label' => 'E-PL5', - ), - 'S0043' => array( - 'Id' => 'S0043', - 'Label' => 'E-PM2', - ), - 'S0044' => array( - 'Id' => 'S0044', - 'Label' => 'E-P5', - ), - 'S0045' => array( - 'Id' => 'S0045', - 'Label' => 'E-PL6', - ), - 'S0046' => array( - 'Id' => 'S0046', - 'Label' => 'E-PL7', - ), - 'S0047' => array( - 'Id' => 'S0047', - 'Label' => 'E-M1', - ), - 'S0051' => array( - 'Id' => 'S0051', - 'Label' => 'E-M10', - ), - 'SR45' => array( - 'Id' => 'SR45', - 'Label' => 'D220', - ), - 'SR55' => array( - 'Id' => 'SR55', - 'Label' => 'D320L', - ), - 'SR83' => array( - 'Id' => 'SR83', - 'Label' => 'D340L', - ), - 'SR85' => array( - 'Id' => 'SR85', - 'Label' => 'C830L,D340R', - ), - 'SR852' => array( - 'Id' => 'SR852', - 'Label' => 'C860L,D360L', - ), - 'SR872' => array( - 'Id' => 'SR872', - 'Label' => 'C900Z,D400Z', - ), - 'SR874' => array( - 'Id' => 'SR874', - 'Label' => 'C960Z,D460Z', - ), - 'SR951' => array( - 'Id' => 'SR951', - 'Label' => 'C2000Z', - ), - 'SR952' => array( - 'Id' => 'SR952', - 'Label' => 'C21', - ), - 'SR953' => array( - 'Id' => 'SR953', - 'Label' => 'C21T.commu', - ), - 'SR954' => array( - 'Id' => 'SR954', - 'Label' => 'C2020Z', - ), - 'SR955' => array( - 'Id' => 'SR955', - 'Label' => 'C990Z,D490Z', - ), - 'SR956' => array( - 'Id' => 'SR956', - 'Label' => 'C211Z', - ), - 'SR959' => array( - 'Id' => 'SR959', - 'Label' => 'C990ZS,D490Z', - ), - 'SR95A' => array( - 'Id' => 'SR95A', - 'Label' => 'C2100UZ', - ), - 'SR971' => array( - 'Id' => 'SR971', - 'Label' => 'C100,D370', - ), - 'SR973' => array( - 'Id' => 'SR973', - 'Label' => 'C2,D230', - ), - 'SX151' => array( - 'Id' => 'SX151', - 'Label' => 'E100RS', - ), - 'SX351' => array( - 'Id' => 'SX351', - 'Label' => 'C3000Z / C3030Z', - ), - 'SX354' => array( - 'Id' => 'SX354', - 'Label' => 'C3040Z', - ), - 'SX355' => array( - 'Id' => 'SX355', - 'Label' => 'C2040Z', - ), - 'SX357' => array( - 'Id' => 'SX357', - 'Label' => 'C700UZ', - ), - 'SX358' => array( - 'Id' => 'SX358', - 'Label' => 'C200Z,D510Z', - ), - 'SX374' => array( - 'Id' => 'SX374', - 'Label' => 'C3100Z,C3020Z', - ), - 'SX552' => array( - 'Id' => 'SX552', - 'Label' => 'C4040Z', - ), - 'SX553' => array( - 'Id' => 'SX553', - 'Label' => 'C40Z,D40Z', - ), - 'SX556' => array( - 'Id' => 'SX556', - 'Label' => 'C730UZ', - ), - 'SX558' => array( - 'Id' => 'SX558', - 'Label' => 'C5050Z', - ), - 'SX571' => array( - 'Id' => 'SX571', - 'Label' => 'C120,D380', - ), - 'SX574' => array( - 'Id' => 'SX574', - 'Label' => 'C300Z,D550Z', - ), - 'SX575' => array( - 'Id' => 'SX575', - 'Label' => 'C4100Z,C4000Z', - ), - 'SX751' => array( - 'Id' => 'SX751', - 'Label' => 'X200,D560Z,C350Z', - ), - 'SX752' => array( - 'Id' => 'SX752', - 'Label' => 'X300,D565Z,C450Z', - ), - 'SX753' => array( - 'Id' => 'SX753', - 'Label' => 'C750UZ', - ), - 'SX754' => array( - 'Id' => 'SX754', - 'Label' => 'C740UZ', - ), - 'SX755' => array( - 'Id' => 'SX755', - 'Label' => 'C755UZ', - ), - 'SX756' => array( - 'Id' => 'SX756', - 'Label' => 'C5060WZ', - ), - 'SX757' => array( - 'Id' => 'SX757', - 'Label' => 'C8080WZ', - ), - 'SX758' => array( - 'Id' => 'SX758', - 'Label' => 'X350,D575Z,C360Z', - ), - 'SX759' => array( - 'Id' => 'SX759', - 'Label' => 'X400,D580Z,C460Z', - ), - 'SX75A' => array( - 'Id' => 'SX75A', - 'Label' => 'AZ-2ZOOM', - ), - 'SX75B' => array( - 'Id' => 'SX75B', - 'Label' => 'D595Z,C500Z', - ), - 'SX75C' => array( - 'Id' => 'SX75C', - 'Label' => 'X550,D545Z,C480Z', - ), - 'SX75D' => array( - 'Id' => 'SX75D', - 'Label' => 'IR-300', - ), - 'SX75F' => array( - 'Id' => 'SX75F', - 'Label' => 'C55Z,C5500Z', - ), - 'SX75G' => array( - 'Id' => 'SX75G', - 'Label' => 'C170,D425', - ), - 'SX75J' => array( - 'Id' => 'SX75J', - 'Label' => 'C180,D435', - ), - 'SX771' => array( - 'Id' => 'SX771', - 'Label' => 'C760UZ', - ), - 'SX772' => array( - 'Id' => 'SX772', - 'Label' => 'C770UZ', - ), - 'SX773' => array( - 'Id' => 'SX773', - 'Label' => 'C745UZ', - ), - 'SX774' => array( - 'Id' => 'SX774', - 'Label' => 'X250,D560Z,C350Z', - ), - 'SX775' => array( - 'Id' => 'SX775', - 'Label' => 'X100,D540Z,C310Z', - ), - 'SX776' => array( - 'Id' => 'SX776', - 'Label' => 'C460ZdelSol', - ), - 'SX777' => array( - 'Id' => 'SX777', - 'Label' => 'C765UZ', - ), - 'SX77A' => array( - 'Id' => 'SX77A', - 'Label' => 'D555Z,C315Z', - ), - 'SX851' => array( - 'Id' => 'SX851', - 'Label' => 'C7070WZ', - ), - 'SX852' => array( - 'Id' => 'SX852', - 'Label' => 'C70Z,C7000Z', - ), - 'SX853' => array( - 'Id' => 'SX853', - 'Label' => 'SP500UZ', - ), - 'SX854' => array( - 'Id' => 'SX854', - 'Label' => 'SP310', - ), - 'SX855' => array( - 'Id' => 'SX855', - 'Label' => 'SP350', - ), - 'SX873' => array( - 'Id' => 'SX873', - 'Label' => 'SP320', - ), - 'SX875' => array( - 'Id' => 'SX875', - 'Label' => 'FE180/X745', - ), - 'SX876' => array( - 'Id' => 'SX876', - 'Label' => 'FE190/X750', - ), - 'SG472' => array( - 'Id' => 'SG472', - 'Label' => 'u7040,S7040', - ), - 'SG473' => array( - 'Id' => 'SG473', - 'Label' => 'u9010,S9010', - ), - 'SG475' => array( - 'Id' => 'SG475', - 'Label' => 'SP800UZ', - ), - 'SG551' => array( - 'Id' => 'SG551', - 'Label' => 'SZ-30MR', - ), - 'SG553' => array( - 'Id' => 'SG553', - 'Label' => 'SP-610UZ', - ), - 'SG554' => array( - 'Id' => 'SG554', - 'Label' => 'SZ-10', - ), - 'SG555' => array( - 'Id' => 'SG555', - 'Label' => 'SZ-20', - ), - 'SG573' => array( - 'Id' => 'SG573', - 'Label' => 'SZ-14', - ), - 'SG575' => array( - 'Id' => 'SG575', - 'Label' => 'SP-620UZ', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ModifiedSaturation.php b/lib/PHPExiftool/Driver/Tag/Olympus/ModifiedSaturation.php deleted file mode 100644 index aa47e6aad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ModifiedSaturation.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedSaturation extends AbstractTag -{ - - protected $Id = 1284; - - protected $Name = 'ModifiedSaturation'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Modified Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'CM1 (Red Enhance)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'CM2 (Green Enhance)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'CM3 (Blue Enhance)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'CM4 (Skin Tones)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/MultipleExposureMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/MultipleExposureMode.php deleted file mode 100644 index 0a1089fec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/MultipleExposureMode.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultipleExposureMode extends AbstractTag -{ - - protected $Id = 4124; - - protected $Name = 'MultipleExposureMode'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Multiple Exposure Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (2 frames)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'On (3 frames)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/NDFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/NDFilter.php deleted file mode 100644 index 16c5c6d6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/NDFilter.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NDFilter extends AbstractTag -{ - - protected $Id = 516; - - protected $Name = 'NDFilter'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'ND Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/NoiseFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/NoiseFilter.php deleted file mode 100644 index 8e1f1a5aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/NoiseFilter.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseFilter extends AbstractTag -{ - - protected $Id = 1319; - - protected $Name = 'NoiseFilter'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Noise Filter'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - '-1 -2 1' => array( - 'Id' => '-1 -2 1', - 'Label' => 'Low', - ), - '-2 -2 1' => array( - 'Id' => '-2 -2 1', - 'Label' => 'Off', - ), - '0 -2 1' => array( - 'Id' => '0 -2 1', - 'Label' => 'Standard', - ), - '0 0 0' => array( - 'Id' => '0 0 0', - 'Label' => 'n/a', - ), - '1 -2 1' => array( - 'Id' => '1 -2 1', - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Olympus/NoiseReduction.php deleted file mode 100644 index 52899380b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/NoiseReduction.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Noise Reduction', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Noise Filter', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Noise Filter (ISO Boost)', - ), - 4 => array( - 'Id' => 8, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/NoiseReduction2.php b/lib/PHPExiftool/Driver/Tag/Olympus/NoiseReduction2.php deleted file mode 100644 index 801fea18c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/NoiseReduction2.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction2 extends AbstractTag -{ - - protected $Id = 4112; - - protected $Name = 'NoiseReduction2'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Noise Reduction', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Noise Filter', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Noise Filter (ISO Boost)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/OlympusImageHeight.php b/lib/PHPExiftool/Driver/Tag/Olympus/OlympusImageHeight.php deleted file mode 100644 index 86afcac8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/OlympusImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OlympusImageHeight extends AbstractTag -{ - - protected $Id = 4143; - - protected $Name = 'OlympusImageHeight'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Olympus Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/OlympusImageWidth.php b/lib/PHPExiftool/Driver/Tag/Olympus/OlympusImageWidth.php deleted file mode 100644 index 213af24f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/OlympusImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OlympusImageWidth extends AbstractTag -{ - - protected $Id = 4142; - - protected $Name = 'OlympusImageWidth'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Olympus Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/OneTouchWB.php b/lib/PHPExiftool/Driver/Tag/Olympus/OneTouchWB.php deleted file mode 100644 index 001e7b034..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/OneTouchWB.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OneTouchWB extends AbstractTag -{ - - protected $Id = 770; - - protected $Name = 'OneTouchWB'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'One Touch WB'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (Preset)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PanoramaMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/PanoramaMode.php deleted file mode 100644 index 082ecefb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PanoramaMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaMode extends AbstractTag -{ - - protected $Id = 1537; - - protected $Name = 'PanoramaMode'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Panorama Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureMode.php deleted file mode 100644 index e827ee243..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureMode.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMode extends AbstractTag -{ - - protected $Id = 1312; - - protected $Name = 'PictureMode'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Natural', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Muted', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Portrait', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'i-Enhance', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Monotone', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Sepia', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeBWFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeBWFilter.php deleted file mode 100644 index 1c028d1da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeBWFilter.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureModeBWFilter extends AbstractTag -{ - - protected $Id = 1317; - - protected $Name = 'PictureModeBWFilter'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Mode BW Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Neutral', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Yellow', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Orange', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Red', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeContrast.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeContrast.php deleted file mode 100644 index 9b7d91692..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeContrast.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureModeContrast extends AbstractTag -{ - - protected $Id = 1315; - - protected $Name = 'PictureModeContrast'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Mode Contrast'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeEffect.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeEffect.php deleted file mode 100644 index 695b69e33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeEffect.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureModeEffect extends AbstractTag -{ - - protected $Id = 1325; - - protected $Name = 'PictureModeEffect'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Mode Effect'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - - protected $Values = array( - '-1 -1 1' => array( - 'Id' => '-1 -1 1', - 'Label' => 'Low', - ), - '0 -1 1' => array( - 'Id' => '0 -1 1', - 'Label' => 'Standard', - ), - '0 0 0' => array( - 'Id' => '0 0 0', - 'Label' => 'n/a', - ), - '1 -1 1' => array( - 'Id' => '1 -1 1', - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeHue.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeHue.php deleted file mode 100644 index f3b83768c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeHue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureModeHue extends AbstractTag -{ - - protected $Id = 1314; - - protected $Name = 'PictureModeHue'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Mode Hue'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeSaturation.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeSaturation.php deleted file mode 100644 index d15bf24c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeSaturation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureModeSaturation extends AbstractTag -{ - - protected $Id = 1313; - - protected $Name = 'PictureModeSaturation'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Mode Saturation'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeSharpness.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeSharpness.php deleted file mode 100644 index d0f49ac6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeSharpness.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureModeSharpness extends AbstractTag -{ - - protected $Id = 1316; - - protected $Name = 'PictureModeSharpness'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Mode Sharpness'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeTone.php b/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeTone.php deleted file mode 100644 index b9142183c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PictureModeTone.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureModeTone extends AbstractTag -{ - - protected $Id = 1318; - - protected $Name = 'PictureModeTone'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Picture Mode Tone'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Neutral', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Sepia', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Blue', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Purple', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PreCaptureFrames.php b/lib/PHPExiftool/Driver/Tag/Olympus/PreCaptureFrames.php deleted file mode 100644 index c14182b11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PreCaptureFrames.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreCaptureFrames extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'PreCaptureFrames'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Pre Capture Frames'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImage.php deleted file mode 100644 index 534205d93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageData.php b/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageData.php deleted file mode 100644 index dd675b7ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageData extends AbstractTag -{ - - protected $Id = 129; - - protected $Name = 'PreviewImageData'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Preview Image Data'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageLength.php deleted file mode 100644 index 603e246b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageStart.php deleted file mode 100644 index 051f7c3e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageValid.php b/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageValid.php deleted file mode 100644 index 9ca888135..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/PreviewImageValid.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageValid extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageValid'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Valid'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Quality.php b/lib/PHPExiftool/Driver/Tag/Olympus/Quality.php deleted file mode 100644 index 50d330469..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Quality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'Quality'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevArtFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevArtFilter.php deleted file mode 100644 index 45a4adc0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevArtFilter.php +++ /dev/null @@ -1,162 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevArtFilter extends AbstractTag -{ - - protected $Id = 289; - - protected $Name = 'RawDevArtFilter'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Art Filter'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Soft Focus', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pop Art', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Pale & Light Color', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Light Tone', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Pin Hole', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Grainy Film', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Diorama', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cross Process', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Fish Eye', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Drawing', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Gentle Sepia', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Tender Light', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Pop Art II', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Pin Hole II', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Pin Hole III', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Grainy Film II', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Dramatic Tone', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Punk', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Soft Focus 2', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Sparkle', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Watercolor', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Key Line', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Miniature', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Reflection', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Fragmented', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Dramatic Tone B&W', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Watercolor II', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevAutoGradation.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevAutoGradation.php deleted file mode 100644 index 9f4a458fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevAutoGradation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevAutoGradation extends AbstractTag -{ - - protected $Id = 281; - - protected $Name = 'RawDevAutoGradation'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Auto Gradation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevColorSpace.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevColorSpace.php deleted file mode 100644 index 06b113d21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevColorSpace.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevColorSpace extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevColorSpace'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'sRGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adobe RGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pro Photo RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevContrastValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevContrastValue.php deleted file mode 100644 index 3d7102452..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevContrastValue.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevContrastValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevContrastValue'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Contrast Value'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevEditStatus.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevEditStatus.php deleted file mode 100644 index aa7160ddf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevEditStatus.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevEditStatus extends AbstractTag -{ - - protected $Id = 267; - - protected $Name = 'RawDevEditStatus'; - - protected $FullName = 'Olympus::RawDevelopment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Edit Status'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Original', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Edited (Landscape)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Edited (Portrait)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Edited (Portrait)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevEngine.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevEngine.php deleted file mode 100644 index a000c5562..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevEngine.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevEngine extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevEngine'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Engine'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'High Speed', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'High Function', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced High Speed', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Advanced High Function', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'High Speed', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'High Function', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevExposureBiasValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevExposureBiasValue.php deleted file mode 100644 index 5f9cdf2f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevExposureBiasValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevExposureBiasValue extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'RawDevExposureBiasValue'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Exposure Bias Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevGradation.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevGradation.php deleted file mode 100644 index a98e3c4ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevGradation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevGradation extends AbstractTag -{ - - protected $Id = 274; - - protected $Name = 'RawDevGradation'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Gradation'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevGrayPoint.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevGrayPoint.php deleted file mode 100644 index a7f231e8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevGrayPoint.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevGrayPoint extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevGrayPoint'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Gray Point'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevMemoryColorEmphasis.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevMemoryColorEmphasis.php deleted file mode 100644 index 1738f0481..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevMemoryColorEmphasis.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevMemoryColorEmphasis extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevMemoryColorEmphasis'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Memory Color Emphasis'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevNoiseReduction.php deleted file mode 100644 index 07861a7f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevNoiseReduction.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevNoiseReduction extends AbstractTag -{ - - protected $Id = 266; - - protected $Name = 'RawDevNoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Noise Reduction', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Noise Filter', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Noise Filter (ISO Boost)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMBWFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMBWFilter.php deleted file mode 100644 index 401d4336f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMBWFilter.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevPMBWFilter extends AbstractTag -{ - - protected $Id = 272; - - protected $Name = 'RawDevPM_BWFilter'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev PM BW Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Neutral', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Yellow', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Orange', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Red', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMContrast.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMContrast.php deleted file mode 100644 index 21f323738..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMContrast.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevPMContrast extends AbstractTag -{ - - protected $Id = 270; - - protected $Name = 'RawDevPMContrast'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev PM Contrast'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMNoiseFilter.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMNoiseFilter.php deleted file mode 100644 index 92f83754f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMNoiseFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevPMNoiseFilter extends AbstractTag -{ - - protected $Id = 288; - - protected $Name = 'RawDevPMNoiseFilter'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev PM Noise Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMPictureTone.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMPictureTone.php deleted file mode 100644 index c0e830276..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMPictureTone.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevPMPictureTone extends AbstractTag -{ - - protected $Id = 273; - - protected $Name = 'RawDevPMPictureTone'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev PM Picture Tone'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Neutral', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Sepia', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Blue', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Purple', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Green', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMSaturation.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMSaturation.php deleted file mode 100644 index 730d02de7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMSaturation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevPMSaturation extends AbstractTag -{ - - protected $Id = 269; - - protected $Name = 'RawDevPMSaturation'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev PM Saturation'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMSharpness.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMSharpness.php deleted file mode 100644 index d4566e538..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPMSharpness.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevPMSharpness extends AbstractTag -{ - - protected $Id = 271; - - protected $Name = 'RawDevPMSharpness'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev PM Sharpness'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPictureMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPictureMode.php deleted file mode 100644 index 1872b46b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevPictureMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevPictureMode extends AbstractTag -{ - - protected $Id = 268; - - protected $Name = 'RawDevPictureMode'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Picture Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Natural', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Muted', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Monotone', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Sepia', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSaturation3.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSaturation3.php deleted file mode 100644 index 54ded5d32..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSaturation3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevSaturation3 extends AbstractTag -{ - - protected $Id = 275; - - protected $Name = 'RawDevSaturation3'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Saturation 3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSaturationEmphasis.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSaturationEmphasis.php deleted file mode 100644 index 63c9fb3bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSaturationEmphasis.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevSaturationEmphasis extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevSaturationEmphasis'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Saturation Emphasis'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSettings.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSettings.php deleted file mode 100644 index b170e0224..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSettings.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevSettings extends AbstractTag -{ - - protected $Id = 268; - - protected $Name = 'RawDevSettings'; - - protected $FullName = 'Olympus::RawDevelopment'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Settings'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'WB Color Temp', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'WB Gray Point', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Saturation', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Contrast', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Sharpness', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Color Space', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'High Function', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Noise Reduction', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSharpnessValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSharpnessValue.php deleted file mode 100644 index b36e7e492..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevSharpnessValue.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevSharpnessValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevSharpnessValue'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Sharpness Value'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevVersion.php deleted file mode 100644 index 8fd8bde4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'RawDevVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Raw Dev Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWBFineAdjustment.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWBFineAdjustment.php deleted file mode 100644 index 6cfe287db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWBFineAdjustment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevWBFineAdjustment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevWBFineAdjustment'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Raw Dev WB Fine Adjustment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWhiteBalance.php deleted file mode 100644 index 9eacda462..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWhiteBalance.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevWhiteBalance extends AbstractTag -{ - - protected $Id = 257; - - protected $Name = 'RawDevWhiteBalance'; - - protected $FullName = 'Olympus::RawDevelopment2'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Color Temperature', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Gray Point', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWhiteBalanceValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWhiteBalanceValue.php deleted file mode 100644 index 857b7c22c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawDevWhiteBalanceValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevWhiteBalanceValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'RawDevWhiteBalanceValue'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Dev White Balance Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RawInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Olympus/RawInfoVersion.php deleted file mode 100644 index 0e771e8bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RawInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawInfoVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'RawInfoVersion'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Raw Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RecordingTime.php b/lib/PHPExiftool/Driver/Tag/Olympus/RecordingTime.php deleted file mode 100644 index 52a7801e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RecordingTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingTime extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'RecordingTime'; - - protected $FullName = 'Olympus::WAV'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Recording Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/RedBalance.php b/lib/PHPExiftool/Driver/Tag/Olympus/RedBalance.php deleted file mode 100644 index 194a24006..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/RedBalance.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedBalance extends AbstractTag -{ - - protected $Id = 4119; - - protected $Name = 'RedBalance'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Red Balance'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Resolution.php b/lib/PHPExiftool/Driver/Tag/Olympus/Resolution.php deleted file mode 100644 index 7a510585f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Resolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Resolution extends AbstractTag -{ - - protected $Id = 'Resolution'; - - protected $Name = 'Resolution'; - - protected $FullName = 'Olympus::TextInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resolution'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SaturationSetting.php b/lib/PHPExiftool/Driver/Tag/Olympus/SaturationSetting.php deleted file mode 100644 index c1de86b67..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SaturationSetting.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationSetting extends AbstractTag -{ - - protected $Id = 4112; - - protected $Name = 'SaturationSetting'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Saturation Setting'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SceneArea.php b/lib/PHPExiftool/Driver/Tag/Olympus/SceneArea.php deleted file mode 100644 index f49b3e827..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SceneArea.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneArea extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SceneArea'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Scene Area'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SceneDetect.php b/lib/PHPExiftool/Driver/Tag/Olympus/SceneDetect.php deleted file mode 100644 index 2631746d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SceneDetect.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneDetect extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SceneDetect'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Scene Detect'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SceneDetectData.php b/lib/PHPExiftool/Driver/Tag/Olympus/SceneDetectData.php deleted file mode 100644 index 13752aa8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SceneDetectData.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneDetectData extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SceneDetectData'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Scene Detect Data'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - - protected $MaxLength = 720; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SceneMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/SceneMode.php deleted file mode 100644 index 60f12a670..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SceneMode.php +++ /dev/null @@ -1,436 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SceneMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Scene Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 6, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 7, - 'Label' => 'Sport', - ), - 3 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 4 => array( - 'Id' => 9, - 'Label' => 'Landscape+Portrait', - ), - 5 => array( - 'Id' => 10, - 'Label' => 'Landscape', - ), - 6 => array( - 'Id' => 11, - 'Label' => 'Night Scene', - ), - 7 => array( - 'Id' => 12, - 'Label' => 'Self Portrait', - ), - 8 => array( - 'Id' => 13, - 'Label' => 'Panorama', - ), - 9 => array( - 'Id' => 14, - 'Label' => '2 in 1', - ), - 10 => array( - 'Id' => 15, - 'Label' => 'Movie', - ), - 11 => array( - 'Id' => 16, - 'Label' => 'Landscape+Portrait', - ), - 12 => array( - 'Id' => 17, - 'Label' => 'Night+Portrait', - ), - 13 => array( - 'Id' => 18, - 'Label' => 'Indoor', - ), - 14 => array( - 'Id' => 19, - 'Label' => 'Fireworks', - ), - 15 => array( - 'Id' => 20, - 'Label' => 'Sunset', - ), - 16 => array( - 'Id' => 21, - 'Label' => 'Beauty Skin', - ), - 17 => array( - 'Id' => 22, - 'Label' => 'Macro', - ), - 18 => array( - 'Id' => 23, - 'Label' => 'Super Macro', - ), - 19 => array( - 'Id' => 24, - 'Label' => 'Food', - ), - 20 => array( - 'Id' => 25, - 'Label' => 'Documents', - ), - 21 => array( - 'Id' => 26, - 'Label' => 'Museum', - ), - 22 => array( - 'Id' => 27, - 'Label' => 'Shoot & Select', - ), - 23 => array( - 'Id' => 28, - 'Label' => 'Beach & Snow', - ), - 24 => array( - 'Id' => 29, - 'Label' => 'Self Protrait+Timer', - ), - 25 => array( - 'Id' => 30, - 'Label' => 'Candle', - ), - 26 => array( - 'Id' => 31, - 'Label' => 'Available Light', - ), - 27 => array( - 'Id' => 32, - 'Label' => 'Behind Glass', - ), - 28 => array( - 'Id' => 33, - 'Label' => 'My Mode', - ), - 29 => array( - 'Id' => 34, - 'Label' => 'Pet', - ), - 30 => array( - 'Id' => 35, - 'Label' => 'Underwater Wide1', - ), - 31 => array( - 'Id' => 36, - 'Label' => 'Underwater Macro', - ), - 32 => array( - 'Id' => 37, - 'Label' => 'Shoot & Select1', - ), - 33 => array( - 'Id' => 38, - 'Label' => 'Shoot & Select2', - ), - 34 => array( - 'Id' => 39, - 'Label' => 'High Key', - ), - 35 => array( - 'Id' => 40, - 'Label' => 'Digital Image Stabilization', - ), - 36 => array( - 'Id' => 41, - 'Label' => 'Auction', - ), - 37 => array( - 'Id' => 42, - 'Label' => 'Beach', - ), - 38 => array( - 'Id' => 43, - 'Label' => 'Snow', - ), - 39 => array( - 'Id' => 44, - 'Label' => 'Underwater Wide2', - ), - 40 => array( - 'Id' => 45, - 'Label' => 'Low Key', - ), - 41 => array( - 'Id' => 46, - 'Label' => 'Children', - ), - 42 => array( - 'Id' => 47, - 'Label' => 'Vivid', - ), - 43 => array( - 'Id' => 48, - 'Label' => 'Nature Macro', - ), - 44 => array( - 'Id' => 49, - 'Label' => 'Underwater Snapshot', - ), - 45 => array( - 'Id' => 50, - 'Label' => 'Shooting Guide', - ), - 46 => array( - 'Id' => 54, - 'Label' => 'Face Portrait', - ), - 47 => array( - 'Id' => 57, - 'Label' => 'Bulb', - ), - 48 => array( - 'Id' => 59, - 'Label' => 'Smile Shot', - ), - 49 => array( - 'Id' => 60, - 'Label' => 'Quick Shutter', - ), - 50 => array( - 'Id' => 63, - 'Label' => 'Slow Shutter', - ), - 51 => array( - 'Id' => 64, - 'Label' => 'Bird Watching', - ), - 52 => array( - 'Id' => 65, - 'Label' => 'Multiple Exposure', - ), - 53 => array( - 'Id' => 66, - 'Label' => 'e-Portrait', - ), - 54 => array( - 'Id' => 67, - 'Label' => 'Soft Background Shot', - ), - 55 => array( - 'Id' => 142, - 'Label' => 'Hand-held Starlight', - ), - 56 => array( - 'Id' => 154, - 'Label' => 'HDR', - ), - 57 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 58 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 59 => array( - 'Id' => 2, - 'Label' => 'Auto', - ), - 60 => array( - 'Id' => 3, - 'Label' => 'Intelligent Auto', - ), - 61 => array( - 'Id' => 4, - 'Label' => 'Portrait', - ), - 62 => array( - 'Id' => 5, - 'Label' => 'Landscape+Portrait', - ), - 63 => array( - 'Id' => 6, - 'Label' => 'Landscape', - ), - 64 => array( - 'Id' => 7, - 'Label' => 'Night Scene', - ), - 65 => array( - 'Id' => 8, - 'Label' => 'Night+Portrait', - ), - 66 => array( - 'Id' => 9, - 'Label' => 'Sport', - ), - 67 => array( - 'Id' => 10, - 'Label' => 'Self Portrait', - ), - 68 => array( - 'Id' => 11, - 'Label' => 'Indoor', - ), - 69 => array( - 'Id' => 12, - 'Label' => 'Beach & Snow', - ), - 70 => array( - 'Id' => 13, - 'Label' => 'Beach', - ), - 71 => array( - 'Id' => 14, - 'Label' => 'Snow', - ), - 72 => array( - 'Id' => 15, - 'Label' => 'Self Portrait+Self Timer', - ), - 73 => array( - 'Id' => 16, - 'Label' => 'Sunset', - ), - 74 => array( - 'Id' => 17, - 'Label' => 'Cuisine', - ), - 75 => array( - 'Id' => 18, - 'Label' => 'Documents', - ), - 76 => array( - 'Id' => 19, - 'Label' => 'Candle', - ), - 77 => array( - 'Id' => 20, - 'Label' => 'Fireworks', - ), - 78 => array( - 'Id' => 21, - 'Label' => 'Available Light', - ), - 79 => array( - 'Id' => 22, - 'Label' => 'Vivid', - ), - 80 => array( - 'Id' => 23, - 'Label' => 'Underwater Wide1', - ), - 81 => array( - 'Id' => 24, - 'Label' => 'Underwater Macro', - ), - 82 => array( - 'Id' => 25, - 'Label' => 'Museum', - ), - 83 => array( - 'Id' => 26, - 'Label' => 'Behind Glass', - ), - 84 => array( - 'Id' => 27, - 'Label' => 'Auction', - ), - 85 => array( - 'Id' => 28, - 'Label' => 'Shoot & Select1', - ), - 86 => array( - 'Id' => 29, - 'Label' => 'Shoot & Select2', - ), - 87 => array( - 'Id' => 30, - 'Label' => 'Underwater Wide2', - ), - 88 => array( - 'Id' => 31, - 'Label' => 'Digital Image Stabilization', - ), - 89 => array( - 'Id' => 32, - 'Label' => 'Face Portrait', - ), - 90 => array( - 'Id' => 33, - 'Label' => 'Pet', - ), - 91 => array( - 'Id' => 34, - 'Label' => 'Smile Shot', - ), - 92 => array( - 'Id' => 35, - 'Label' => 'Quick Shutter', - ), - 93 => array( - 'Id' => 43, - 'Label' => 'Hand-held Starlight', - ), - 94 => array( - 'Id' => 100, - 'Label' => 'Panorama', - ), - 95 => array( - 'Id' => 101, - 'Label' => 'Magic Filter', - ), - 96 => array( - 'Id' => 103, - 'Label' => 'HDR', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SensorCalibration.php b/lib/PHPExiftool/Driver/Tag/Olympus/SensorCalibration.php deleted file mode 100644 index c8969a23b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SensorCalibration.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration extends AbstractTag -{ - - protected $Id = 2053; - - protected $Name = 'SensorCalibration'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Sensor Calibration'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SensorTemperature.php b/lib/PHPExiftool/Driver/Tag/Olympus/SensorTemperature.php deleted file mode 100644 index 10aa90289..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SensorTemperature.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensorTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Sensor Temperature'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Olympus/SerialNumber.php deleted file mode 100644 index a477d14f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ShadingCompensation.php b/lib/PHPExiftool/Driver/Tag/Olympus/ShadingCompensation.php deleted file mode 100644 index 6c8ae802e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ShadingCompensation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadingCompensation extends AbstractTag -{ - - protected $Id = 1292; - - protected $Name = 'ShadingCompensation'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shading Compensation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ShadingCompensation2.php b/lib/PHPExiftool/Driver/Tag/Olympus/ShadingCompensation2.php deleted file mode 100644 index 0939e1235..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ShadingCompensation2.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadingCompensation2 extends AbstractTag -{ - - protected $Id = 4114; - - protected $Name = 'ShadingCompensation2'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shading Compensation 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Olympus/Sharpness.php deleted file mode 100644 index 738aa9fb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/Sharpness.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 4111; - - protected $Name = 'Sharpness'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Hard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SharpnessFactor.php b/lib/PHPExiftool/Driver/Tag/Olympus/SharpnessFactor.php deleted file mode 100644 index 7cddefcb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SharpnessFactor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessFactor extends AbstractTag -{ - - protected $Id = 4138; - - protected $Name = 'SharpnessFactor'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sharpness Factor'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SharpnessSetting.php b/lib/PHPExiftool/Driver/Tag/Olympus/SharpnessSetting.php deleted file mode 100644 index 8d43b3ed9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SharpnessSetting.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Sharpness Setting'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ShutterSpeedValue.php b/lib/PHPExiftool/Driver/Tag/Olympus/ShutterSpeedValue.php deleted file mode 100644 index 57b178907..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ShutterSpeedValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedValue extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'ShutterSpeedValue'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Shutter Speed Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/SpecialMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/SpecialMode.php deleted file mode 100644 index b41805be8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/SpecialMode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialMode extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'SpecialMode'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Special Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailHeight.php b/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailHeight.php deleted file mode 100644 index 63832b538..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailImage.php deleted file mode 100644 index 6cb913376..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailLength.php b/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailLength.php deleted file mode 100644 index 5fbd5acd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailOffset.php b/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailOffset.php deleted file mode 100644 index 0d6ace819..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailOffset extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ThumbnailOffset'; - - protected $FullName = 'Olympus::Thumbnail'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailWidth.php b/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailWidth.php deleted file mode 100644 index b8c7c0558..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ThumbnailWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ToneLevel.php b/lib/PHPExiftool/Driver/Tag/Olympus/ToneLevel.php deleted file mode 100644 index 3a321d8bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ToneLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneLevel extends AbstractTag -{ - - protected $Id = 1326; - - protected $Name = 'ToneLevel'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Tone Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock1.php b/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock1.php deleted file mode 100644 index e042e9561..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownBlock1 extends AbstractTag -{ - - protected $Id = 1589; - - protected $Name = 'UnknownBlock1'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Unknown Block 1'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock2.php b/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock2.php deleted file mode 100644 index 9b7ef6ce6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownBlock2 extends AbstractTag -{ - - protected $Id = 1590; - - protected $Name = 'UnknownBlock2'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Unknown Block 2'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock3.php b/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock3.php deleted file mode 100644 index e28788589..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownBlock3 extends AbstractTag -{ - - protected $Id = 4355; - - protected $Name = 'UnknownBlock3'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Unknown Block 3'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock4.php b/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock4.php deleted file mode 100644 index cce901842..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/UnknownBlock4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownBlock4 extends AbstractTag -{ - - protected $Id = 4356; - - protected $Name = 'UnknownBlock4'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Unknown Block 4'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ValidBits.php b/lib/PHPExiftool/Driver/Tag/Olympus/ValidBits.php deleted file mode 100644 index e67dd040b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ValidBits.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ValidBits extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ValidBits'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Valid Bits'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ValidPixelDepth.php b/lib/PHPExiftool/Driver/Tag/Olympus/ValidPixelDepth.php deleted file mode 100644 index 813b21c71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ValidPixelDepth.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ValidPixelDepth extends AbstractTag -{ - - protected $Id = 1553; - - protected $Name = 'ValidPixelDepth'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Valid Pixel Depth'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel.php deleted file mode 100644 index 10c4cc897..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel extends AbstractTag -{ - - protected $Id = 287; - - protected $Name = 'WB_GLevel'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3000K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3000K.php deleted file mode 100644 index 501363ad3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3000K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel3000K extends AbstractTag -{ - - protected $Id = 275; - - protected $Name = 'WB_GLevel3000K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 3000K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3300K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3300K.php deleted file mode 100644 index 600c3df3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3300K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel3300K extends AbstractTag -{ - - protected $Id = 276; - - protected $Name = 'WB_GLevel3300K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 3300K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3600K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3600K.php deleted file mode 100644 index 31bb58b56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3600K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel3600K extends AbstractTag -{ - - protected $Id = 277; - - protected $Name = 'WB_GLevel3600K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 3600K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3900K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3900K.php deleted file mode 100644 index 8ef1c36ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel3900K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel3900K extends AbstractTag -{ - - protected $Id = 278; - - protected $Name = 'WB_GLevel3900K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 3900K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4000K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4000K.php deleted file mode 100644 index e623c4845..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4000K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel4000K extends AbstractTag -{ - - protected $Id = 279; - - protected $Name = 'WB_GLevel4000K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 4000K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4300K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4300K.php deleted file mode 100644 index af0bcf0e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4300K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel4300K extends AbstractTag -{ - - protected $Id = 280; - - protected $Name = 'WB_GLevel4300K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 4300K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4500K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4500K.php deleted file mode 100644 index 1867252fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel4500K extends AbstractTag -{ - - protected $Id = 281; - - protected $Name = 'WB_GLevel4500K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 4500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4800K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4800K.php deleted file mode 100644 index 0c227a139..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel4800K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel4800K extends AbstractTag -{ - - protected $Id = 282; - - protected $Name = 'WB_GLevel4800K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 4800K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel5300K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel5300K.php deleted file mode 100644 index 2c727efda..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel5300K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel5300K extends AbstractTag -{ - - protected $Id = 283; - - protected $Name = 'WB_GLevel5300K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 5300K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel6000K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel6000K.php deleted file mode 100644 index 50417d8c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel6000K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel6000K extends AbstractTag -{ - - protected $Id = 284; - - protected $Name = 'WB_GLevel6000K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 6000K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel6600K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel6600K.php deleted file mode 100644 index 0c191598c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel6600K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel6600K extends AbstractTag -{ - - protected $Id = 285; - - protected $Name = 'WB_GLevel6600K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 6600K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel7500K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel7500K.php deleted file mode 100644 index b67b0a9d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel7500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGLevel7500K extends AbstractTag -{ - - protected $Id = 286; - - protected $Name = 'WB_GLevel7500K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB G Level 7500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBMode.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBMode.php deleted file mode 100644 index e11f24777..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBMode.php +++ /dev/null @@ -1,98 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBMode extends AbstractTag -{ - - protected $Id = 4117; - - protected $Name = 'WBMode'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 'Auto', - ), - '1 2' => array( - 'Id' => '1 2', - 'Label' => 'Auto (2)', - ), - '1 4' => array( - 'Id' => '1 4', - 'Label' => 'Auto (4)', - ), - '2 2' => array( - 'Id' => '2 2', - 'Label' => '3000 Kelvin', - ), - '2 3' => array( - 'Id' => '2 3', - 'Label' => '3700 Kelvin', - ), - '2 4' => array( - 'Id' => '2 4', - 'Label' => '4000 Kelvin', - ), - '2 5' => array( - 'Id' => '2 5', - 'Label' => '4500 Kelvin', - ), - '2 6' => array( - 'Id' => '2 6', - 'Label' => '5500 Kelvin', - ), - '2 7' => array( - 'Id' => '2 7', - 'Label' => '6500 Kelvin', - ), - '2 8' => array( - 'Id' => '2 8', - 'Label' => '7500 Kelvin', - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 'One-touch', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels.php deleted file mode 100644 index d7f2784ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'WB_RBLevels'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3000K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3000K.php deleted file mode 100644 index f8866572d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3000K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels3000K extends AbstractTag -{ - - protected $Id = 258; - - protected $Name = 'WB_RBLevels3000K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 3000K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3300K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3300K.php deleted file mode 100644 index 462b484d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3300K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels3300K extends AbstractTag -{ - - protected $Id = 259; - - protected $Name = 'WB_RBLevels3300K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 3300K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3600K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3600K.php deleted file mode 100644 index 278e960a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3600K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels3600K extends AbstractTag -{ - - protected $Id = 260; - - protected $Name = 'WB_RBLevels3600K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 3600K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3900K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3900K.php deleted file mode 100644 index 76710d365..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels3900K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels3900K extends AbstractTag -{ - - protected $Id = 261; - - protected $Name = 'WB_RBLevels3900K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 3900K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4000K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4000K.php deleted file mode 100644 index c40cd59e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4000K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels4000K extends AbstractTag -{ - - protected $Id = 262; - - protected $Name = 'WB_RBLevels4000K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 4000K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4300K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4300K.php deleted file mode 100644 index 2fb2baae8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4300K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels4300K extends AbstractTag -{ - - protected $Id = 263; - - protected $Name = 'WB_RBLevels4300K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 4300K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4500K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4500K.php deleted file mode 100644 index 6232925b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4500K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels4500K extends AbstractTag -{ - - protected $Id = 264; - - protected $Name = 'WB_RBLevels4500K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 4500K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4800K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4800K.php deleted file mode 100644 index 53a5e517b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels4800K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels4800K extends AbstractTag -{ - - protected $Id = 265; - - protected $Name = 'WB_RBLevels4800K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 4800K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels5300K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels5300K.php deleted file mode 100644 index e8dbe96e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels5300K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels5300K extends AbstractTag -{ - - protected $Id = 266; - - protected $Name = 'WB_RBLevels5300K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 5300K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels6000K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels6000K.php deleted file mode 100644 index 23b52890c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels6000K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels6000K extends AbstractTag -{ - - protected $Id = 267; - - protected $Name = 'WB_RBLevels6000K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 6000K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels6600K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels6600K.php deleted file mode 100644 index e84ec6ee3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels6600K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels6600K extends AbstractTag -{ - - protected $Id = 268; - - protected $Name = 'WB_RBLevels6600K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 6600K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels7500K.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels7500K.php deleted file mode 100644 index cf41a9853..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevels7500K.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevels7500K extends AbstractTag -{ - - protected $Id = 269; - - protected $Name = 'WB_RBLevels7500K'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels 7500K'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsAuto.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsAuto.php deleted file mode 100644 index 158b7c425..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsAuto.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsAuto extends AbstractTag -{ - - protected $Id = 272; - - protected $Name = 'WB_RBLevelsAuto'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Auto'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB1.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB1.php deleted file mode 100644 index 2e54a96f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCWB1 extends AbstractTag -{ - - protected $Id = 270; - - protected $Name = 'WB_RBLevelsCWB1'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels CWB1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB2.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB2.php deleted file mode 100644 index dc52db706..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCWB2 extends AbstractTag -{ - - protected $Id = 271; - - protected $Name = 'WB_RBLevelsCWB2'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels CWB2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB3.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB3.php deleted file mode 100644 index 6d36f84d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCWB3 extends AbstractTag -{ - - protected $Id = 272; - - protected $Name = 'WB_RBLevelsCWB3'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels CWB3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB4.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB4.php deleted file mode 100644 index ba69d116e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCWB4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCWB4 extends AbstractTag -{ - - protected $Id = 273; - - protected $Name = 'WB_RBLevelsCWB4'; - - protected $FullName = 'Olympus::ImageProcessing'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels CWB4'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCloudy.php deleted file mode 100644 index 4580fc943..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCloudy extends AbstractTag -{ - - protected $Id = 289; - - protected $Name = 'WB_RBLevelsCloudy'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCoolWhiteFluor.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCoolWhiteFluor.php deleted file mode 100644 index a3113ce25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsCoolWhiteFluor.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsCoolWhiteFluor extends AbstractTag -{ - - protected $Id = 306; - - protected $Name = 'WB_RBLevelsCoolWhiteFluor'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Cool White Fluor'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsDayWhiteFluor.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsDayWhiteFluor.php deleted file mode 100644 index eb9c77c02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsDayWhiteFluor.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsDayWhiteFluor extends AbstractTag -{ - - protected $Id = 305; - - protected $Name = 'WB_RBLevelsDayWhiteFluor'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Day White Fluor'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsDaylightFluor.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsDaylightFluor.php deleted file mode 100644 index 886c9fd81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsDaylightFluor.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsDaylightFluor extends AbstractTag -{ - - protected $Id = 304; - - protected $Name = 'WB_RBLevelsDaylightFluor'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Daylight Fluor'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsEveningSunlight.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsEveningSunlight.php deleted file mode 100644 index 13a46dd6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsEveningSunlight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsEveningSunlight extends AbstractTag -{ - - protected $Id = 292; - - protected $Name = 'WB_RBLevelsEveningSunlight'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Evening Sunlight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsFineWeather.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsFineWeather.php deleted file mode 100644 index c0649221b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsFineWeather.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsFineWeather extends AbstractTag -{ - - protected $Id = 290; - - protected $Name = 'WB_RBLevelsFineWeather'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Fine Weather'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsShade.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsShade.php deleted file mode 100644 index 1596db0fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsShade extends AbstractTag -{ - - protected $Id = 288; - - protected $Name = 'WB_RBLevelsShade'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsTungsten.php deleted file mode 100644 index 643326082..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsTungsten extends AbstractTag -{ - - protected $Id = 291; - - protected $Name = 'WB_RBLevelsTungsten'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsUsed.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsUsed.php deleted file mode 100644 index 8ad61546d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsUsed.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsUsed extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'WB_RBLevelsUsed'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels Used'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsWhiteFluorescent.php b/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsWhiteFluorescent.php deleted file mode 100644 index b2d1437f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WBRBLevelsWhiteFluorescent.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRBLevelsWhiteFluorescent extends AbstractTag -{ - - protected $Id = 307; - - protected $Name = 'WB_RBLevelsWhiteFluorescent'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RB Levels White Fluorescent'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalance2.php b/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalance2.php deleted file mode 100644 index b8ae1a368..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalance2.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance2 extends AbstractTag -{ - - protected $Id = 1280; - - protected $Name = 'WhiteBalance2'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 16 => array( - 'Id' => 16, - 'Label' => '7500K (Fine Weather with Shade)', - ), - 17 => array( - 'Id' => 17, - 'Label' => '6000K (Cloudy)', - ), - 18 => array( - 'Id' => 18, - 'Label' => '5300K (Fine Weather)', - ), - 20 => array( - 'Id' => 20, - 'Label' => '3000K (Tungsten light)', - ), - 21 => array( - 'Id' => 21, - 'Label' => '3600K (Tungsten light-like)', - ), - 33 => array( - 'Id' => 33, - 'Label' => '6600K (Daylight fluorescent)', - ), - 34 => array( - 'Id' => 34, - 'Label' => '4500K (Neutral white fluorescent)', - ), - 35 => array( - 'Id' => 35, - 'Label' => '4000K (Cool white fluorescent)', - ), - 48 => array( - 'Id' => 48, - 'Label' => '3600K (Tungsten light-like)', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Custom WB 1', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Custom WB 2', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Custom WB 3', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'Custom WB 4', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Custom WB 5400K', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'Custom WB 2900K', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'Custom WB 8000K', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceBias.php b/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceBias.php deleted file mode 100644 index 5df08c102..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceBias.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceBias extends AbstractTag -{ - - protected $Id = 772; - - protected $Name = 'WhiteBalanceBias'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance Bias'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceBracket.php b/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceBracket.php deleted file mode 100644 index 9c98bf3bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceBracket.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceBracket extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalanceBracket'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance Bracket'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceComp.php b/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceComp.php deleted file mode 100644 index eaab3cbaf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceComp.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceComp extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'WhiteBalanceComp'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'White Balance Comp'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceTemperature.php b/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceTemperature.php deleted file mode 100644 index 575eb6aa7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBalanceTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceTemperature extends AbstractTag -{ - - protected $Id = 1281; - - protected $Name = 'WhiteBalanceTemperature'; - - protected $FullName = 'Olympus::CameraSettings'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBoard.php b/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBoard.php deleted file mode 100644 index a9d07de7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/WhiteBoard.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBoard extends AbstractTag -{ - - protected $Id = 769; - - protected $Name = 'WhiteBoard'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Board'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/YCbCrCoefficients.php b/lib/PHPExiftool/Driver/Tag/Olympus/YCbCrCoefficients.php deleted file mode 100644 index fbab72b22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/YCbCrCoefficients.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YCbCrCoefficients extends AbstractTag -{ - - protected $Id = 1537; - - protected $Name = 'YCbCrCoefficients'; - - protected $FullName = 'Olympus::RawInfo'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational32u'; - - protected $Writable = false; - - protected $Description = 'Y Cb Cr Coefficients'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomStepCount.php b/lib/PHPExiftool/Driver/Tag/Olympus/ZoomStepCount.php deleted file mode 100644 index 067c5df44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomStepCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomStepCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ZoomStepCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Zoom Step Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewLength.php b/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewLength.php deleted file mode 100644 index b39ac0ffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomedPreviewLength extends AbstractTag -{ - - protected $Id = 3845; - - protected $Name = 'ZoomedPreviewLength'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Zoomed Preview Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewSize.php b/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewSize.php deleted file mode 100644 index e2d8f6621..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomedPreviewSize extends AbstractTag -{ - - protected $Id = 3846; - - protected $Name = 'ZoomedPreviewSize'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Zoomed Preview Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewStart.php b/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewStart.php deleted file mode 100644 index 13ce4ca27..000000000 --- a/lib/PHPExiftool/Driver/Tag/Olympus/ZoomedPreviewStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Olympus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoomedPreviewStart extends AbstractTag -{ - - protected $Id = 3844; - - protected $Name = 'ZoomedPreviewStart'; - - protected $FullName = 'Olympus::Main'; - - protected $GroupName = 'Olympus'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Olympus'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Zoomed Preview Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/AdoptedNeutral.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/AdoptedNeutral.php deleted file mode 100644 index b832d9877..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/AdoptedNeutral.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdoptedNeutral extends AbstractTag -{ - - protected $Id = 'adoptedNeutral'; - - protected $Name = 'AdoptedNeutral'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Adopted Neutral'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Aperture.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Aperture.php deleted file mode 100644 index 9d31d1d96..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Aperture.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Aperture extends AbstractTag -{ - - protected $Id = 'aperture'; - - protected $Name = 'Aperture'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aperture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Channels.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Channels.php deleted file mode 100644 index 95d479a29..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 'channels'; - - protected $Name = 'Channels'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Chromaticities.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Chromaticities.php deleted file mode 100644 index 8125738f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Chromaticities.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Chromaticities extends AbstractTag -{ - - protected $Id = 'chromaticities'; - - protected $Name = 'Chromaticities'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chromaticities'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Comments.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Comments.php deleted file mode 100644 index 3acdf0c5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Comments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comments extends AbstractTag -{ - - protected $Id = 'comments'; - - protected $Name = 'Comments'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Compression.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Compression.php deleted file mode 100644 index 6c69d366f..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Compression.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 'compression'; - - protected $Name = 'Compression'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'RLE', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'ZIPS', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ZIP', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'PIZ', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'PXR24', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'B44', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'B44A', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/DataWindow.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/DataWindow.php deleted file mode 100644 index 91fd999d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/DataWindow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataWindow extends AbstractTag -{ - - protected $Id = 'dataWindow'; - - protected $Name = 'DataWindow'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Window'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/DateTimeOriginal.php deleted file mode 100644 index 7d98a8222..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'capDate'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/DisplayWindow.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/DisplayWindow.php deleted file mode 100644 index 7a82b1d81..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/DisplayWindow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayWindow extends AbstractTag -{ - - protected $Id = 'displayWindow'; - - protected $Name = 'DisplayWindow'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Window'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/EXRVersion.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/EXRVersion.php deleted file mode 100644 index 0c8e0deca..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/EXRVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EXRVersion extends AbstractTag -{ - - protected $Id = '_ver'; - - protected $Name = 'EXRVersion'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'EXR Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/EnvironmentMap.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/EnvironmentMap.php deleted file mode 100644 index 761e67a48..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/EnvironmentMap.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EnvironmentMap extends AbstractTag -{ - - protected $Id = 'envmap'; - - protected $Name = 'EnvironmentMap'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Environment Map'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Latitude/Longitude', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Cube', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/ExposureTime.php deleted file mode 100644 index 8c954f395..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/ExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'expTime'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/FocusDistance.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/FocusDistance.php deleted file mode 100644 index b5d78e2c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/FocusDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusDistance extends AbstractTag -{ - - protected $Id = 'focus'; - - protected $Name = 'FocusDistance'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focus Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/FramesPerSecond.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/FramesPerSecond.php deleted file mode 100644 index 1663f0054..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/FramesPerSecond.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FramesPerSecond extends AbstractTag -{ - - protected $Id = 'framesPerSecond'; - - protected $Name = 'FramesPerSecond'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frames Per Second'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSAltitude.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSAltitude.php deleted file mode 100644 index 5b1589c6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSAltitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitude extends AbstractTag -{ - - protected $Id = 'altitude'; - - protected $Name = 'GPSAltitude'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Altitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSLatitude.php deleted file mode 100644 index 11f74a519..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 'latitude'; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSLongitude.php deleted file mode 100644 index 95983ad8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/GPSLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 'longitude'; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/ISO.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/ISO.php deleted file mode 100644 index 4c006b7ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/ISO.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'isoSpeed'; - - protected $Name = 'ISO'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/KeyCode.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/KeyCode.php deleted file mode 100644 index d6c0af627..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/KeyCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyCode extends AbstractTag -{ - - protected $Id = 'keyCode'; - - protected $Name = 'KeyCode'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Key Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Layout.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Layout.php deleted file mode 100644 index 69277ed72..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Layout.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Layout extends AbstractTag -{ - - protected $Id = '_lay'; - - protected $Name = 'Layout'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Layout'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Scan Lines', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Tiles', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/LineOrder.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/LineOrder.php deleted file mode 100644 index 35ac7e5b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/LineOrder.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LineOrder extends AbstractTag -{ - - protected $Id = 'lineOrder'; - - protected $Name = 'LineOrder'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Line Order'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Increasing Y', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Decreasing Y', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Random Y', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/LookModTransform.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/LookModTransform.php deleted file mode 100644 index f20b7fd68..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/LookModTransform.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LookModTransform extends AbstractTag -{ - - protected $Id = 'lookModTransform'; - - protected $Name = 'LookModTransform'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Look Mod Transform'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/MultiView.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/MultiView.php deleted file mode 100644 index 52c80eaff..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/MultiView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiView extends AbstractTag -{ - - protected $Id = 'multiView'; - - protected $Name = 'MultiView'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Multi View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Owner.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Owner.php deleted file mode 100644 index 5f1499e51..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Owner.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Owner extends AbstractTag -{ - - protected $Id = 'owner'; - - protected $Name = 'Owner'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Owner'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/PixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/PixelAspectRatio.php deleted file mode 100644 index 336768309..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/PixelAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatio extends AbstractTag -{ - - protected $Id = 'pixelAspectRatio'; - - protected $Name = 'PixelAspectRatio'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Preview.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Preview.php deleted file mode 100644 index adb05ccb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Preview.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Preview extends AbstractTag -{ - - protected $Id = 'preview'; - - protected $Name = 'Preview'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/RenderingTransform.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/RenderingTransform.php deleted file mode 100644 index 5f512fa54..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/RenderingTransform.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenderingTransform extends AbstractTag -{ - - protected $Id = 'renderingTransform'; - - protected $Name = 'RenderingTransform'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rendering Transform'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/ScreenWindowCenter.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/ScreenWindowCenter.php deleted file mode 100644 index ce89f26c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/ScreenWindowCenter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenWindowCenter extends AbstractTag -{ - - protected $Id = 'screenWindowCenter'; - - protected $Name = 'ScreenWindowCenter'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screen Window Center'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/ScreenWindowWidth.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/ScreenWindowWidth.php deleted file mode 100644 index fe3010632..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/ScreenWindowWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScreenWindowWidth extends AbstractTag -{ - - protected $Id = 'screenWindowWidth'; - - protected $Name = 'ScreenWindowWidth'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screen Window Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/Tiles.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/Tiles.php deleted file mode 100644 index 376f68efe..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/Tiles.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tiles extends AbstractTag -{ - - protected $Id = 'tiles'; - - protected $Name = 'Tiles'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tiles'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/TimeCode.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/TimeCode.php deleted file mode 100644 index 99de23ae3..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/TimeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeCode extends AbstractTag -{ - - protected $Id = 'timeCode'; - - protected $Name = 'TimeCode'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/TimeZone.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/TimeZone.php deleted file mode 100644 index c01f69d2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/TimeZone.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeZone extends AbstractTag -{ - - protected $Id = 'utcOffset'; - - protected $Name = 'TimeZone'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Zone'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/WhiteLuminance.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/WhiteLuminance.php deleted file mode 100644 index 9f7d09df5..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/WhiteLuminance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteLuminance extends AbstractTag -{ - - protected $Id = 'whiteLuminance'; - - protected $Name = 'WhiteLuminance'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'White Luminance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/WorldToCamera.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/WorldToCamera.php deleted file mode 100644 index 478c333b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/WorldToCamera.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorldToCamera extends AbstractTag -{ - - protected $Id = 'worldToCamera'; - - protected $Name = 'WorldToCamera'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'World To Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/WorldToNDC.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/WorldToNDC.php deleted file mode 100644 index 975803568..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/WorldToNDC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorldToNDC extends AbstractTag -{ - - protected $Id = 'worldToNDC'; - - protected $Name = 'WorldToNDC'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'World To NDC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/WrapModes.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/WrapModes.php deleted file mode 100644 index 5f60b634f..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/WrapModes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WrapModes extends AbstractTag -{ - - protected $Id = 'wrapmodes'; - - protected $Name = 'WrapModes'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wrap Modes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/OpenEXR/XResolution.php b/lib/PHPExiftool/Driver/Tag/OpenEXR/XResolution.php deleted file mode 100644 index d020fbae5..000000000 --- a/lib/PHPExiftool/Driver/Tag/OpenEXR/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\OpenEXR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 'xDensity'; - - protected $Name = 'XResolution'; - - protected $FullName = 'OpenEXR::Main'; - - protected $GroupName = 'OpenEXR'; - - protected $g0 = 'OpenEXR'; - - protected $g1 = 'OpenEXR'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/AnnotationUsageRights.php b/lib/PHPExiftool/Driver/Tag/PDF/AnnotationUsageRights.php deleted file mode 100644 index 15fcdc771..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/AnnotationUsageRights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnotationUsageRights extends AbstractTag -{ - - protected $Id = 'Annots'; - - protected $Name = 'AnnotationUsageRights'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Annotation Usage Rights'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/AppleKeywords.php b/lib/PHPExiftool/Driver/Tag/PDF/AppleKeywords.php deleted file mode 100644 index 673185d7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/AppleKeywords.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AppleKeywords extends AbstractTag -{ - - protected $Id = 'AAPL:Keywords'; - - protected $Name = 'AppleKeywords'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Apple Keywords'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/AuthenticationTime.php b/lib/PHPExiftool/Driver/Tag/PDF/AuthenticationTime.php deleted file mode 100644 index 5d9629a8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/AuthenticationTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthenticationTime extends AbstractTag -{ - - protected $Id = 'Prop_AuthTime'; - - protected $Name = 'AuthenticationTime'; - - protected $FullName = 'PDF::Signature'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Authentication Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/AuthenticationType.php b/lib/PHPExiftool/Driver/Tag/PDF/AuthenticationType.php deleted file mode 100644 index b46c8406f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/AuthenticationType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthenticationType extends AbstractTag -{ - - protected $Id = 'Prop_AuthType'; - - protected $Name = 'AuthenticationType'; - - protected $FullName = 'PDF::Signature'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Authentication Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Author.php b/lib/PHPExiftool/Driver/Tag/PDF/Author.php deleted file mode 100644 index d1cbc639c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'Author'; - - protected $Name = 'Author'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/ContainerVersion.php b/lib/PHPExiftool/Driver/Tag/PDF/ContainerVersion.php deleted file mode 100644 index e5451f18c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/ContainerVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContainerVersion extends AbstractTag -{ - - protected $Id = 'ContainerVersion'; - - protected $Name = 'ContainerVersion'; - - protected $FullName = 'PDF::AIPrivate'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Container Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/CreateDate.php b/lib/PHPExiftool/Driver/Tag/PDF/CreateDate.php deleted file mode 100644 index 8b2c398b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'CreationDate'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Creator.php b/lib/PHPExiftool/Driver/Tag/PDF/Creator.php deleted file mode 100644 index 107391383..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Creator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 'Creator'; - - protected $Name = 'Creator'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/CreatorVersion.php b/lib/PHPExiftool/Driver/Tag/PDF/CreatorVersion.php deleted file mode 100644 index 5415ed0d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/CreatorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorVersion extends AbstractTag -{ - - protected $Id = 'CreatorVersion'; - - protected $Name = 'CreatorVersion'; - - protected $FullName = 'PDF::AIPrivate'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creator Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/DocumentUsageRights.php b/lib/PHPExiftool/Driver/Tag/PDF/DocumentUsageRights.php deleted file mode 100644 index 9ec8dd419..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/DocumentUsageRights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentUsageRights extends AbstractTag -{ - - protected $Id = 'Document'; - - protected $Name = 'DocumentUsageRights'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Document Usage Rights'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedFileUsageRights.php b/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedFileUsageRights.php deleted file mode 100644 index c21a22c2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedFileUsageRights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedFileUsageRights extends AbstractTag -{ - - protected $Id = 'EF'; - - protected $Name = 'EmbeddedFileUsageRights'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded File Usage Rights'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImage.php b/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImage.php deleted file mode 100644 index 5589ee0b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImage extends AbstractTag -{ - - protected $Id = 'Image_stream'; - - protected $Name = 'EmbeddedImage'; - - protected $FullName = 'PDF::Im'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageColorSpace.php b/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageColorSpace.php deleted file mode 100644 index 7b1dc75af..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageColorSpace.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageColorSpace extends AbstractTag -{ - - protected $Id = 'ColorSpace'; - - protected $Name = 'EmbeddedImageColorSpace'; - - protected $FullName = 'PDF::Im'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Color Space'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageFilter.php b/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageFilter.php deleted file mode 100644 index 2c562d2fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageFilter extends AbstractTag -{ - - protected $Id = 'Filter'; - - protected $Name = 'EmbeddedImageFilter'; - - protected $FullName = 'PDF::Im'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Filter'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageHeight.php b/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageHeight.php deleted file mode 100644 index 1a675f320..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageHeight extends AbstractTag -{ - - protected $Id = 'Height'; - - protected $Name = 'EmbeddedImageHeight'; - - protected $FullName = 'PDF::Im'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageWidth.php b/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageWidth.php deleted file mode 100644 index b380f8e43..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/EmbeddedImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedImageWidth extends AbstractTag -{ - - protected $Id = 'Width'; - - protected $Name = 'EmbeddedImageWidth'; - - protected $FullName = 'PDF::Im'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Encryption.php b/lib/PHPExiftool/Driver/Tag/PDF/Encryption.php deleted file mode 100644 index d7c0f4bea..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Encryption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Encryption extends AbstractTag -{ - - protected $Id = 'Filter'; - - protected $Name = 'Encryption'; - - protected $FullName = 'PDF::Encrypt'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encryption'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/FieldPermissions.php b/lib/PHPExiftool/Driver/Tag/PDF/FieldPermissions.php deleted file mode 100644 index 8c1918140..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/FieldPermissions.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FieldPermissions extends AbstractTag -{ - - protected $Id = 'Action'; - - protected $Name = 'FieldPermissions'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Field Permissions'; - - protected $Values = array( - 'All' => array( - 'Id' => 'All', - 'Label' => 'Disallow changes to all form fields', - ), - 'Exclude' => array( - 'Id' => 'Exclude', - 'Label' => 'Allow changes to specified form fields', - ), - 'Include' => array( - 'Id' => 'Include', - 'Label' => 'Disallow changes to specified form fields', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/FormExtraUsageRights.php b/lib/PHPExiftool/Driver/Tag/PDF/FormExtraUsageRights.php deleted file mode 100644 index 04f9007c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/FormExtraUsageRights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FormExtraUsageRights extends AbstractTag -{ - - protected $Id = 'FormEX'; - - protected $Name = 'FormExtraUsageRights'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Form Extra Usage Rights'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/FormFields.php b/lib/PHPExiftool/Driver/Tag/PDF/FormFields.php deleted file mode 100644 index a82630bed..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/FormFields.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FormFields extends AbstractTag -{ - - protected $Id = 'Fields'; - - protected $Name = 'FormFields'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Form Fields'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/FormUsageRights.php b/lib/PHPExiftool/Driver/Tag/PDF/FormUsageRights.php deleted file mode 100644 index b81e5358f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/FormUsageRights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FormUsageRights extends AbstractTag -{ - - protected $Id = 'Form'; - - protected $Name = 'FormUsageRights'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Form Usage Rights'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/HasXFA.php b/lib/PHPExiftool/Driver/Tag/PDF/HasXFA.php deleted file mode 100644 index 49aa34c5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/HasXFA.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasXFA extends AbstractTag -{ - - protected $Id = '_has_xfa'; - - protected $Name = 'HasXFA'; - - protected $FullName = 'PDF::AcroForm'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Has XFA'; - - protected $Values = array( - false => array( - 'Id' => false, - 'Label' => 'No', - ), - true => array( - 'Id' => true, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Keywords.php b/lib/PHPExiftool/Driver/Tag/PDF/Keywords.php deleted file mode 100644 index 572a1e6f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Keywords.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keywords'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Language.php b/lib/PHPExiftool/Driver/Tag/PDF/Language.php deleted file mode 100644 index 3d73f80db..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'Lang'; - - protected $Name = 'Language'; - - protected $FullName = 'PDF::Root'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Linearized.php b/lib/PHPExiftool/Driver/Tag/PDF/Linearized.php deleted file mode 100644 index 1f3cf2f01..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Linearized.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Linearized extends AbstractTag -{ - - protected $Id = '_linearized'; - - protected $Name = 'Linearized'; - - protected $FullName = 'PDF::Main'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Linearized'; - - protected $Values = array( - false => array( - 'Id' => false, - 'Label' => 'No', - ), - true => array( - 'Id' => true, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/ModificationPermissions.php b/lib/PHPExiftool/Driver/Tag/PDF/ModificationPermissions.php deleted file mode 100644 index 489055b37..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/ModificationPermissions.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModificationPermissions extends AbstractTag -{ - - protected $Id = 'P'; - - protected $Name = 'ModificationPermissions'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modification Permissions'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'No changes permitted', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fill forms, Create page templates, Sign', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fill forms, Create page templates, Sign, Create/Delete/Edit annotations', - ), - false => array( - 'Id' => false, - 'Label' => 'Do not restrict applications to reader permissions', - ), - true => array( - 'Id' => true, - 'Label' => 'Restrict all applications to reader permissions', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/PDF/ModifyDate.php deleted file mode 100644 index 6bec5fd68..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'ModDate'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/PDFVersion.php b/lib/PHPExiftool/Driver/Tag/PDF/PDFVersion.php deleted file mode 100644 index 8efaae850..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/PDFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PDFVersion extends AbstractTag -{ - - protected $Id = 'Version'; - - protected $Name = 'PDFVersion'; - - protected $FullName = 'PDF::Root'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PDF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/PageCount.php b/lib/PHPExiftool/Driver/Tag/PDF/PageCount.php deleted file mode 100644 index 979043f79..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/PageCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageCount extends AbstractTag -{ - - protected $Id = 'Count'; - - protected $Name = 'PageCount'; - - protected $FullName = 'PDF::Pages'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/PageLayout.php b/lib/PHPExiftool/Driver/Tag/PDF/PageLayout.php deleted file mode 100644 index 8a5b116e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/PageLayout.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageLayout extends AbstractTag -{ - - protected $Id = 'PageLayout'; - - protected $Name = 'PageLayout'; - - protected $FullName = 'PDF::Root'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Layout'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/PageMode.php b/lib/PHPExiftool/Driver/Tag/PDF/PageMode.php deleted file mode 100644 index b0dade213..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/PageMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageMode extends AbstractTag -{ - - protected $Id = 'PageMode'; - - protected $Name = 'PageMode'; - - protected $FullName = 'PDF::Root'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Page Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Producer.php b/lib/PHPExiftool/Driver/Tag/PDF/Producer.php deleted file mode 100644 index 718bf009b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Producer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = 'Producer'; - - protected $Name = 'Producer'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Producer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/RoundTripVersion.php b/lib/PHPExiftool/Driver/Tag/PDF/RoundTripVersion.php deleted file mode 100644 index 93d5a71c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/RoundTripVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoundTripVersion extends AbstractTag -{ - - protected $Id = 'RoundTripVersion'; - - protected $Name = 'RoundTripVersion'; - - protected $FullName = 'PDF::AIPrivate'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Round Trip Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/SignatureUsageRights.php b/lib/PHPExiftool/Driver/Tag/PDF/SignatureUsageRights.php deleted file mode 100644 index f7b870e71..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/SignatureUsageRights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignatureUsageRights extends AbstractTag -{ - - protected $Id = 'Signature'; - - protected $Name = 'SignatureUsageRights'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signature Usage Rights'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/SignerContactInfo.php b/lib/PHPExiftool/Driver/Tag/PDF/SignerContactInfo.php deleted file mode 100644 index 5a8315204..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/SignerContactInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignerContactInfo extends AbstractTag -{ - - protected $Id = 'ContactInfo'; - - protected $Name = 'SignerContactInfo'; - - protected $FullName = 'PDF::Signature'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signer Contact Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/SigningAuthority.php b/lib/PHPExiftool/Driver/Tag/PDF/SigningAuthority.php deleted file mode 100644 index 96abb30d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/SigningAuthority.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SigningAuthority extends AbstractTag -{ - - protected $Id = 'Name'; - - protected $Name = 'SigningAuthority'; - - protected $FullName = 'PDF::Signature'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signing Authority'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/SigningDate.php b/lib/PHPExiftool/Driver/Tag/PDF/SigningDate.php deleted file mode 100644 index 60be893eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/SigningDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SigningDate extends AbstractTag -{ - - protected $Id = 'M'; - - protected $Name = 'SigningDate'; - - protected $FullName = 'PDF::Signature'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Signing Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/SigningLocation.php b/lib/PHPExiftool/Driver/Tag/PDF/SigningLocation.php deleted file mode 100644 index 7a7f7f2b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/SigningLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SigningLocation extends AbstractTag -{ - - protected $Id = 'Location'; - - protected $Name = 'SigningLocation'; - - protected $FullName = 'PDF::Signature'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signing Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/SigningReason.php b/lib/PHPExiftool/Driver/Tag/PDF/SigningReason.php deleted file mode 100644 index 75f13c198..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/SigningReason.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SigningReason extends AbstractTag -{ - - protected $Id = 'Reason'; - - protected $Name = 'SigningReason'; - - protected $FullName = 'PDF::Signature'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Signing Reason'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Subject.php b/lib/PHPExiftool/Driver/Tag/PDF/Subject.php deleted file mode 100644 index df1ab542d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'Subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/TaggedPDF.php b/lib/PHPExiftool/Driver/Tag/PDF/TaggedPDF.php deleted file mode 100644 index 85e56c7e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/TaggedPDF.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaggedPDF extends AbstractTag -{ - - protected $Id = 'Marked'; - - protected $Name = 'TaggedPDF'; - - protected $FullName = 'PDF::MarkInfo'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tagged PDF'; - - protected $Values = array( - false => array( - 'Id' => false, - 'Label' => 'No', - ), - true => array( - 'Id' => true, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Title.php b/lib/PHPExiftool/Driver/Tag/PDF/Title.php deleted file mode 100644 index 7157d2013..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'Title'; - - protected $Name = 'Title'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/Trapped.php b/lib/PHPExiftool/Driver/Tag/PDF/Trapped.php deleted file mode 100644 index 278563d21..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/Trapped.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Trapped extends AbstractTag -{ - - protected $Id = 'Trapped'; - - protected $Name = 'Trapped'; - - protected $FullName = 'PDF::Info'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Trapped'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/UsageRightsMessage.php b/lib/PHPExiftool/Driver/Tag/PDF/UsageRightsMessage.php deleted file mode 100644 index ef16e4e40..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/UsageRightsMessage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsageRightsMessage extends AbstractTag -{ - - protected $Id = 'Msg'; - - protected $Name = 'UsageRightsMessage'; - - protected $FullName = 'PDF::TransformParams'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Usage Rights Message'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PDF/UserAccess.php b/lib/PHPExiftool/Driver/Tag/PDF/UserAccess.php deleted file mode 100644 index 5365ac508..000000000 --- a/lib/PHPExiftool/Driver/Tag/PDF/UserAccess.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PDF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserAccess extends AbstractTag -{ - - protected $Id = 'P'; - - protected $Name = 'UserAccess'; - - protected $FullName = 'PDF::Encrypt'; - - protected $GroupName = 'PDF'; - - protected $g0 = 'PDF'; - - protected $g1 = 'PDF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Access'; - - protected $Values = array( - 4 => array( - 'Id' => 4, - 'Label' => 'Print', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Modify', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Copy', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Annotate', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Fill forms', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Extract', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Assemble', - ), - 2048 => array( - 'Id' => 2048, - 'Label' => 'Print high-res', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/BitsRect.php b/lib/PHPExiftool/Driver/Tag/PICT/BitsRect.php deleted file mode 100644 index 29dc38813..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/BitsRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsRect extends AbstractTag -{ - - protected $Id = 144; - - protected $Name = 'BitsRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'BitsRect#'; - - protected $Writable = false; - - protected $Description = 'CopyBits with Clipped Rectangle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/BitsRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/BitsRgn.php deleted file mode 100644 index eef93189e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/BitsRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsRgn extends AbstractTag -{ - - protected $Id = 145; - - protected $Name = 'BitsRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'BitsRgn#'; - - protected $Writable = false; - - protected $Description = 'CopyBits with Clipped Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/BkColor.php b/lib/PHPExiftool/Driver/Tag/PICT/BkColor.php deleted file mode 100644 index 6aac7a172..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/BkColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BkColor extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'BkColor'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/BkPat.php b/lib/PHPExiftool/Driver/Tag/PICT/BkPat.php deleted file mode 100644 index 7d9a80542..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/BkPat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BkPat extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'BkPat'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Background Pattern'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/BkPixPat.php b/lib/PHPExiftool/Driver/Tag/PICT/BkPixPat.php deleted file mode 100644 index dfbd38f76..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/BkPixPat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BkPixPat extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'BkPixPat'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'PixPat'; - - protected $Writable = false; - - protected $Description = 'Background Pixel Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/ChExtra.php b/lib/PHPExiftool/Driver/Tag/PICT/ChExtra.php deleted file mode 100644 index 39d8b0412..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/ChExtra.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChExtra extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'ChExtra'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Added Width for NonSpace Characters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/ClipRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/ClipRgn.php deleted file mode 100644 index 5a322889a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/ClipRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipRgn extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ClipRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rgn'; - - protected $Writable = false; - - protected $Description = 'Clipping Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/CompressedQuickTime.php b/lib/PHPExiftool/Driver/Tag/PICT/CompressedQuickTime.php deleted file mode 100644 index f41c65960..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/CompressedQuickTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedQuickTime extends AbstractTag -{ - - protected $Id = 33280; - - protected $Name = 'CompressedQuickTime'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'CompressedQuickTime'; - - protected $Writable = false; - - protected $Description = 'Compressed Quick Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/DHDVText.php b/lib/PHPExiftool/Driver/Tag/PICT/DHDVText.php deleted file mode 100644 index ba0c00dc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/DHDVText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DHDVText extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'DHDVText'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Int8u2Text'; - - protected $Writable = false; - - protected $Description = 'DHDV Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/DHText.php b/lib/PHPExiftool/Driver/Tag/PICT/DHText.php deleted file mode 100644 index 4b3005bb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/DHText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DHText extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'DHText'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Int8uText'; - - protected $Writable = false; - - protected $Description = 'DH Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/DVText.php b/lib/PHPExiftool/Driver/Tag/PICT/DVText.php deleted file mode 100644 index b37debd5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/DVText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DVText extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'DVText'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Int8uText'; - - protected $Writable = false; - - protected $Description = 'DV Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/DefHilite.php b/lib/PHPExiftool/Driver/Tag/PICT/DefHilite.php deleted file mode 100644 index ef6ae7acb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/DefHilite.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefHilite extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'DefHilite'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Use Default Highlight Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/DirectBitsRect.php b/lib/PHPExiftool/Driver/Tag/PICT/DirectBitsRect.php deleted file mode 100644 index 91d26e63b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/DirectBitsRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectBitsRect extends AbstractTag -{ - - protected $Id = 154; - - protected $Name = 'DirectBitsRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'DirectBitsRect'; - - protected $Writable = false; - - protected $Description = 'Direct Bits Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/DirectBitsRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/DirectBitsRgn.php deleted file mode 100644 index 854c36274..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/DirectBitsRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectBitsRgn extends AbstractTag -{ - - protected $Id = 155; - - protected $Name = 'DirectBitsRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'DirectBitsRgn'; - - protected $Writable = false; - - protected $Description = 'Direct Bits Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseArc.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseArc.php deleted file mode 100644 index d867d70cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseArc extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'EraseArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Arc'; - - protected $Writable = false; - - protected $Description = 'Erase Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseOval.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseOval.php deleted file mode 100644 index a60699b6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseOval extends AbstractTag -{ - - protected $Id = 82; - - protected $Name = 'EraseOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Erase Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/ErasePoly.php b/lib/PHPExiftool/Driver/Tag/PICT/ErasePoly.php deleted file mode 100644 index 7d38b1ab6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/ErasePoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ErasePoly extends AbstractTag -{ - - protected $Id = 114; - - protected $Name = 'ErasePoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Polygon'; - - protected $Writable = false; - - protected $Description = 'Erase Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseRRect.php deleted file mode 100644 index f258bdaf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseRRect extends AbstractTag -{ - - protected $Id = 66; - - protected $Name = 'EraseRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Erase R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseRect.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseRect.php deleted file mode 100644 index a3c4fbef2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseRect extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'EraseRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Erase Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseRgn.php deleted file mode 100644 index 96daa2c97..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseRgn extends AbstractTag -{ - - protected $Id = 130; - - protected $Name = 'EraseRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rgn'; - - protected $Writable = false; - - protected $Description = 'Erase Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameArc.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseSameArc.php deleted file mode 100644 index 0e85f5954..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseSameArc extends AbstractTag -{ - - protected $Id = 106; - - protected $Name = 'EraseSameArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Erase Same Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameOval.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseSameOval.php deleted file mode 100644 index 62b4b4cfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseSameOval extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'EraseSameOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Erase Same Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseSamePoly.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseSamePoly.php deleted file mode 100644 index 83e4d719f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseSamePoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseSamePoly extends AbstractTag -{ - - protected $Id = 122; - - protected $Name = 'EraseSamePoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Erase Same Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRRect.php deleted file mode 100644 index a1da5f13d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseSameRRect extends AbstractTag -{ - - protected $Id = 74; - - protected $Name = 'EraseSameRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Erase Same R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRect.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRect.php deleted file mode 100644 index 729413119..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseSameRect extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'EraseSameRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Erase Same Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRgn.php deleted file mode 100644 index 616b7716c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/EraseSameRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EraseSameRgn extends AbstractTag -{ - - protected $Id = 138; - - protected $Name = 'EraseSameRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Erase Same Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FgColor.php b/lib/PHPExiftool/Driver/Tag/PICT/FgColor.php deleted file mode 100644 index ced6c30f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FgColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FgColor extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'FgColor'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Foreground Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillArc.php b/lib/PHPExiftool/Driver/Tag/PICT/FillArc.php deleted file mode 100644 index 4d17c7b36..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillArc extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'FillArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Arc'; - - protected $Writable = false; - - protected $Description = 'Fill Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillOval.php b/lib/PHPExiftool/Driver/Tag/PICT/FillOval.php deleted file mode 100644 index 0394a5086..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillOval extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'FillOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Fill Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillPat.php b/lib/PHPExiftool/Driver/Tag/PICT/FillPat.php deleted file mode 100644 index 3c279628b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillPat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillPat extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'FillPat'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Fill Pattern'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillPixPat.php b/lib/PHPExiftool/Driver/Tag/PICT/FillPixPat.php deleted file mode 100644 index 8d17a9ba0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillPixPat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillPixPat extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'FillPixPat'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'PixPat'; - - protected $Writable = false; - - protected $Description = 'Fill Pixel Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillPoly.php b/lib/PHPExiftool/Driver/Tag/PICT/FillPoly.php deleted file mode 100644 index fdacf68ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillPoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillPoly extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'FillPoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Polygon'; - - protected $Writable = false; - - protected $Description = 'Fill Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FillRRect.php deleted file mode 100644 index 664870ffe..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillRRect extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'FillRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Fill R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FillRect.php deleted file mode 100644 index 9fd30438c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillRect extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'FillRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Fill Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/FillRgn.php deleted file mode 100644 index e3e4e92b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillRgn extends AbstractTag -{ - - protected $Id = 132; - - protected $Name = 'FillRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rgn'; - - protected $Writable = false; - - protected $Description = 'Fill Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillSameArc.php b/lib/PHPExiftool/Driver/Tag/PICT/FillSameArc.php deleted file mode 100644 index 380cd77a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillSameArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillSameArc extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'FillSameArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Fill Same Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillSameOval.php b/lib/PHPExiftool/Driver/Tag/PICT/FillSameOval.php deleted file mode 100644 index 379f7cf62..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillSameOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillSameOval extends AbstractTag -{ - - protected $Id = 92; - - protected $Name = 'FillSameOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Fill Same Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillSamePoly.php b/lib/PHPExiftool/Driver/Tag/PICT/FillSamePoly.php deleted file mode 100644 index 1dbe921bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillSamePoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillSamePoly extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'FillSamePoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Fill Same Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillSameRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FillSameRRect.php deleted file mode 100644 index bc5f39f8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillSameRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillSameRRect extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'FillSameRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Fill Same R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillSameRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FillSameRect.php deleted file mode 100644 index 30a4e8f68..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillSameRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillSameRect extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'FillSameRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Fill Same Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FillSameRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/FillSameRgn.php deleted file mode 100644 index cba81050a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FillSameRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillSameRgn extends AbstractTag -{ - - protected $Id = 140; - - protected $Name = 'FillSameRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Fill Same Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FontName.php b/lib/PHPExiftool/Driver/Tag/PICT/FontName.php deleted file mode 100644 index 074ba49a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FontName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontName extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'FontName'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'FontName'; - - protected $Writable = false; - - protected $Description = 'Font Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameArc.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameArc.php deleted file mode 100644 index 524404bf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameArc extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'FrameArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Arc'; - - protected $Writable = false; - - protected $Description = 'Frame Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameOval.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameOval.php deleted file mode 100644 index 3a2f90f4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameOval extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'FrameOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Frame Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FramePoly.php b/lib/PHPExiftool/Driver/Tag/PICT/FramePoly.php deleted file mode 100644 index 8782e74ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FramePoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FramePoly extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'FramePoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Polygon'; - - protected $Writable = false; - - protected $Description = 'Frame Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameRRect.php deleted file mode 100644 index 8bdde06d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRRect extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'FrameRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Frame R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameRect.php deleted file mode 100644 index 35c3012b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRect extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'FrameRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Frame Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameRgn.php deleted file mode 100644 index 5d5222093..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRgn extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'FrameRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rgn'; - - protected $Writable = false; - - protected $Description = 'Frame Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameArc.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameSameArc.php deleted file mode 100644 index 745696097..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSameArc extends AbstractTag -{ - - protected $Id = 104; - - protected $Name = 'FrameSameArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Frame Same Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameOval.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameSameOval.php deleted file mode 100644 index 6d00f1ca5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSameOval extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'FrameSameOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Frame Same Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameSamePoly.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameSamePoly.php deleted file mode 100644 index 33c30a0ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameSamePoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSamePoly extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'FrameSamePoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Frame Same Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRRect.php deleted file mode 100644 index 06036f8ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSameRRect extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'FrameSameRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Frame Same R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRect.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRect.php deleted file mode 100644 index 5b8ab654f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSameRect extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'FrameSameRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Frame Same Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRgn.php deleted file mode 100644 index a3b2ce08e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/FrameSameRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSameRgn extends AbstractTag -{ - - protected $Id = 136; - - protected $Name = 'FrameSameRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Frame Same Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/GlyphState.php b/lib/PHPExiftool/Driver/Tag/PICT/GlyphState.php deleted file mode 100644 index 45137641f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/GlyphState.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GlyphState extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'GlyphState'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Glyph State'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/HeaderOp.php b/lib/PHPExiftool/Driver/Tag/PICT/HeaderOp.php deleted file mode 100644 index 4c9665044..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/HeaderOp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeaderOp extends AbstractTag -{ - - protected $Id = 3072; - - protected $Name = 'HeaderOp'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Header Op'; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/HiliteColor.php b/lib/PHPExiftool/Driver/Tag/PICT/HiliteColor.php deleted file mode 100644 index d5e9721b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/HiliteColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HiliteColor extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'HiliteColor'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'RGBColor'; - - protected $Writable = false; - - protected $Description = 'Highlight Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/HiliteMode.php b/lib/PHPExiftool/Driver/Tag/PICT/HiliteMode.php deleted file mode 100644 index 94f3346f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/HiliteMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HiliteMode extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'HiliteMode'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Highlight Mode Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertArc.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertArc.php deleted file mode 100644 index 24e76bf47..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertArc extends AbstractTag -{ - - protected $Id = 99; - - protected $Name = 'InvertArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Arc'; - - protected $Writable = false; - - protected $Description = 'Invert Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertOval.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertOval.php deleted file mode 100644 index 0b8dc4895..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertOval extends AbstractTag -{ - - protected $Id = 83; - - protected $Name = 'InvertOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Invert Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertPoly.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertPoly.php deleted file mode 100644 index 8eb8b5d5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertPoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertPoly extends AbstractTag -{ - - protected $Id = 115; - - protected $Name = 'InvertPoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Polygon'; - - protected $Writable = false; - - protected $Description = 'Invert Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertRRect.php deleted file mode 100644 index 18deed3cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertRRect extends AbstractTag -{ - - protected $Id = 67; - - protected $Name = 'InvertRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Invert R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertRect.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertRect.php deleted file mode 100644 index efc53ac68..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertRect extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'InvertRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Invert Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertRgn.php deleted file mode 100644 index 9a5e01f9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertRgn extends AbstractTag -{ - - protected $Id = 131; - - protected $Name = 'InvertRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rgn'; - - protected $Writable = false; - - protected $Description = 'Invert Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameArc.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertSameArc.php deleted file mode 100644 index 501b80b31..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertSameArc extends AbstractTag -{ - - protected $Id = 107; - - protected $Name = 'InvertSameArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Invert Same Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameOval.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertSameOval.php deleted file mode 100644 index 7258866b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertSameOval extends AbstractTag -{ - - protected $Id = 91; - - protected $Name = 'InvertSameOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Invert Same Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertSamePoly.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertSamePoly.php deleted file mode 100644 index 4ed7c9441..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertSamePoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertSamePoly extends AbstractTag -{ - - protected $Id = 123; - - protected $Name = 'InvertSamePoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Invert Same Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRRect.php deleted file mode 100644 index b1e6f8fe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertSameRRect extends AbstractTag -{ - - protected $Id = 75; - - protected $Name = 'InvertSameRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Invert Same R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRect.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRect.php deleted file mode 100644 index dd4ad6e3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertSameRect extends AbstractTag -{ - - protected $Id = 59; - - protected $Name = 'InvertSameRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Invert Same Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRgn.php deleted file mode 100644 index 477b1badb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/InvertSameRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InvertSameRgn extends AbstractTag -{ - - protected $Id = 139; - - protected $Name = 'InvertSameRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Invert Same Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/Line.php b/lib/PHPExiftool/Driver/Tag/PICT/Line.php deleted file mode 100644 index 4b71ea3d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/Line.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Line extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'Line'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Line'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/LineFrom.php b/lib/PHPExiftool/Driver/Tag/PICT/LineFrom.php deleted file mode 100644 index 0cbd2ce8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/LineFrom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LineFrom extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'LineFrom'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Line From'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/LineJustify.php b/lib/PHPExiftool/Driver/Tag/PICT/LineJustify.php deleted file mode 100644 index 38986f829..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/LineJustify.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LineJustify extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'LineJustify'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Line Justify'; - - protected $MaxLength = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/LongText.php b/lib/PHPExiftool/Driver/Tag/PICT/LongText.php deleted file mode 100644 index 06ee4c2e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/LongText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LongText extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'LongText'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'PointText'; - - protected $Writable = false; - - protected $Description = 'Long Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/Nop.php b/lib/PHPExiftool/Driver/Tag/PICT/Nop.php deleted file mode 100644 index 6cfc7116d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/Nop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Nop extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Nop'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'No Operation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/OpColor.php b/lib/PHPExiftool/Driver/Tag/PICT/OpColor.php deleted file mode 100644 index 2a670ca14..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/OpColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpColor extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'OpColor'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'RGBColor'; - - protected $Writable = false; - - protected $Description = 'Op Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/OpEndPic.php b/lib/PHPExiftool/Driver/Tag/PICT/OpEndPic.php deleted file mode 100644 index 006e2e9e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/OpEndPic.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpEndPic extends AbstractTag -{ - - protected $Id = 255; - - protected $Name = 'OpEndPic'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'End of picture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/Origin.php b/lib/PHPExiftool/Driver/Tag/PICT/Origin.php deleted file mode 100644 index c9ea5d598..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/Origin.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Origin extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Origin'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Origin'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/OvSize.php b/lib/PHPExiftool/Driver/Tag/PICT/OvSize.php deleted file mode 100644 index aedd01ac5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/OvSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OvSize extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'OvSize'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Oval Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PackBitsRect.php b/lib/PHPExiftool/Driver/Tag/PICT/PackBitsRect.php deleted file mode 100644 index 56c95c6eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PackBitsRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackBitsRect extends AbstractTag -{ - - protected $Id = 152; - - protected $Name = 'PackBitsRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'BitsRect#'; - - protected $Writable = false; - - protected $Description = 'Packed CopyBits with Clipped Rectangle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PackBitsRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/PackBitsRgn.php deleted file mode 100644 index a3ee8da4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PackBitsRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackBitsRgn extends AbstractTag -{ - - protected $Id = 153; - - protected $Name = 'PackBitsRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'BitsRgn#'; - - protected $Writable = false; - - protected $Description = 'Packed CopyBits with Clipped Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintArc.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintArc.php deleted file mode 100644 index 9f8cf3367..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintArc extends AbstractTag -{ - - protected $Id = 97; - - protected $Name = 'PaintArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Arc'; - - protected $Writable = false; - - protected $Description = 'Paint Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintOval.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintOval.php deleted file mode 100644 index ba41a5dcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintOval extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'PaintOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Paint Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintPoly.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintPoly.php deleted file mode 100644 index bc9cb6b90..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintPoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintPoly extends AbstractTag -{ - - protected $Id = 113; - - protected $Name = 'PaintPoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Polygon'; - - protected $Writable = false; - - protected $Description = 'Paint Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintRRect.php deleted file mode 100644 index fce7f5251..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintRRect extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'PaintRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Paint R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintRect.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintRect.php deleted file mode 100644 index b9e8502b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintRect extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'PaintRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Paint Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintRgn.php deleted file mode 100644 index 2f9e5d225..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintRgn extends AbstractTag -{ - - protected $Id = 129; - - protected $Name = 'PaintRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rgn'; - - protected $Writable = false; - - protected $Description = 'Paint Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameArc.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintSameArc.php deleted file mode 100644 index 913cb8668..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameArc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintSameArc extends AbstractTag -{ - - protected $Id = 105; - - protected $Name = 'PaintSameArc'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Paint Same Arc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameOval.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintSameOval.php deleted file mode 100644 index b0efd65f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameOval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintSameOval extends AbstractTag -{ - - protected $Id = 89; - - protected $Name = 'PaintSameOval'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Paint Same Oval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintSamePoly.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintSamePoly.php deleted file mode 100644 index 0b7375806..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintSamePoly.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintSamePoly extends AbstractTag -{ - - protected $Id = 121; - - protected $Name = 'PaintSamePoly'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Paint Same Poly'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRRect.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRRect.php deleted file mode 100644 index 830f4cb61..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintSameRRect extends AbstractTag -{ - - protected $Id = 73; - - protected $Name = 'PaintSameRRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Paint Same R Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRect.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRect.php deleted file mode 100644 index 395a9a610..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintSameRect extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'PaintSameRect'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Paint Same Rect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRgn.php b/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRgn.php deleted file mode 100644 index fe53b18af..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PaintSameRgn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintSameRgn extends AbstractTag -{ - - protected $Id = 137; - - protected $Name = 'PaintSameRgn'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'null'; - - protected $Writable = false; - - protected $Description = 'Paint Same Rgn'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PnLocHFrac.php b/lib/PHPExiftool/Driver/Tag/PICT/PnLocHFrac.php deleted file mode 100644 index 9b2908379..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PnLocHFrac.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PnLocHFrac extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'PnLocHFrac'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Fractional Pen Position'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PnMode.php b/lib/PHPExiftool/Driver/Tag/PICT/PnMode.php deleted file mode 100644 index 8b7993383..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PnMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PnMode extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'PnMode'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Pen Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PnPat.php b/lib/PHPExiftool/Driver/Tag/PICT/PnPat.php deleted file mode 100644 index ab154f924..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PnPat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PnPat extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'PnPat'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Pen Pattern'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PnPixPat.php b/lib/PHPExiftool/Driver/Tag/PICT/PnPixPat.php deleted file mode 100644 index f54b70855..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PnPixPat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PnPixPat extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'PnPixPat'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'PixPat'; - - protected $Writable = false; - - protected $Description = 'Pen Pixel Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/PnSize.php b/lib/PHPExiftool/Driver/Tag/PICT/PnSize.php deleted file mode 100644 index 50a525b38..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/PnSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PnSize extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'PnSize'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Point'; - - protected $Writable = false; - - protected $Description = 'Pen Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/RGBBkCol.php b/lib/PHPExiftool/Driver/Tag/PICT/RGBBkCol.php deleted file mode 100644 index e4a20829f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/RGBBkCol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RGBBkCol extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'RGBBkCol'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'RGBColor'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/RGBFgCol.php b/lib/PHPExiftool/Driver/Tag/PICT/RGBFgCol.php deleted file mode 100644 index 45b3ee2c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/RGBFgCol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RGBFgCol extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'RGBFgCol'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'RGBColor'; - - protected $Writable = false; - - protected $Description = 'Foreground Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/ShortComment.php b/lib/PHPExiftool/Driver/Tag/PICT/ShortComment.php deleted file mode 100644 index 910d8636e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/ShortComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShortComment extends AbstractTag -{ - - protected $Id = 160; - - protected $Name = 'ShortComment'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Short Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/ShortLine.php b/lib/PHPExiftool/Driver/Tag/PICT/ShortLine.php deleted file mode 100644 index acdbca866..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/ShortLine.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShortLine extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'ShortLine'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'ShortLine'; - - protected $Writable = false; - - protected $Description = 'Short Line'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/ShortLineFrom.php b/lib/PHPExiftool/Driver/Tag/PICT/ShortLineFrom.php deleted file mode 100644 index efface9d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/ShortLineFrom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShortLineFrom extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'ShortLineFrom'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Short Line From'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/SpExtra.php b/lib/PHPExiftool/Driver/Tag/PICT/SpExtra.php deleted file mode 100644 index 01c3ab072..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/SpExtra.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpExtra extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'SpExtra'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'fixed32s'; - - protected $Writable = false; - - protected $Description = 'Extra Space'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/TxFace.php b/lib/PHPExiftool/Driver/Tag/PICT/TxFace.php deleted file mode 100644 index 824f2a3f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/TxFace.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TxFace extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'TxFace'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Text Font Style'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/TxFont.php b/lib/PHPExiftool/Driver/Tag/PICT/TxFont.php deleted file mode 100644 index 71c60366c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/TxFont.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TxFont extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'TxFont'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Font Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/TxMode.php b/lib/PHPExiftool/Driver/Tag/PICT/TxMode.php deleted file mode 100644 index 8ffa58591..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/TxMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TxMode extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'TxMode'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Text Source Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/TxRatio.php b/lib/PHPExiftool/Driver/Tag/PICT/TxRatio.php deleted file mode 100644 index 5e84abce0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/TxRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TxRatio extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'TxRatio'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Rect'; - - protected $Writable = false; - - protected $Description = 'Text Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/TxSize.php b/lib/PHPExiftool/Driver/Tag/PICT/TxSize.php deleted file mode 100644 index e66aab22f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/TxSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TxSize extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'TxSize'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Text Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/UncompressedQuickTime.php b/lib/PHPExiftool/Driver/Tag/PICT/UncompressedQuickTime.php deleted file mode 100644 index b1a524051..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/UncompressedQuickTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UncompressedQuickTime extends AbstractTag -{ - - protected $Id = 33281; - - protected $Name = 'UncompressedQuickTime'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'Int32uData'; - - protected $Writable = false; - - protected $Description = 'Uncompressed Quick Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/Version.php b/lib/PHPExiftool/Driver/Tag/PICT/Version.php deleted file mode 100644 index ca889b996..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/Version.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 767; - - protected $Name = 'Version'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Version number of picture'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PICT/VersionOp.php b/lib/PHPExiftool/Driver/Tag/PICT/VersionOp.php deleted file mode 100644 index 5c9c667c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PICT/VersionOp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PICT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionOp extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'VersionOp'; - - protected $FullName = 'PICT::Main'; - - protected $GroupName = 'PICT'; - - protected $g0 = 'PICT'; - - protected $g1 = 'PICT'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Artist.php b/lib/PHPExiftool/Driver/Tag/PNG/Artist.php deleted file mode 100644 index 7efef62b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'Artist'; - - protected $Name = 'Artist'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Author.php b/lib/PHPExiftool/Driver/Tag/PNG/Author.php deleted file mode 100644 index b4e69f200..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'Author'; - - protected $Name = 'Author'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/PNG/BackgroundColor.php deleted file mode 100644 index 05f3e7f53..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/BackgroundColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 'bKGD'; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/BitDepth.php b/lib/PHPExiftool/Driver/Tag/PNG/BitDepth.php deleted file mode 100644 index 667bfd8af..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'BitDepth'; - - protected $FullName = 'PNG::ImageHeader'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/BlueX.php b/lib/PHPExiftool/Driver/Tag/PNG/BlueX.php deleted file mode 100644 index 4971c8270..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/BlueX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueX extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'BlueX'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Blue X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/BlueY.php b/lib/PHPExiftool/Driver/Tag/PNG/BlueY.php deleted file mode 100644 index b500a9d8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/BlueY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueY extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'BlueY'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Blue Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/ColorType.php b/lib/PHPExiftool/Driver/Tag/PNG/ColorType.php deleted file mode 100644 index be8578fca..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/ColorType.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorType extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'ColorType'; - - protected $FullName = 'PNG::ImageHeader'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Grayscale', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'RGB', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Palette', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Grayscale with Alpha', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'RGB with Alpha', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Comment.php b/lib/PHPExiftool/Driver/Tag/PNG/Comment.php deleted file mode 100644 index b3f4c8628..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'Comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Compression.php b/lib/PHPExiftool/Driver/Tag/PNG/Compression.php deleted file mode 100644 index 15d22595a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Compression.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Compression'; - - protected $FullName = 'PNG::ImageHeader'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Deflate/Inflate', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Copyright.php b/lib/PHPExiftool/Driver/Tag/PNG/Copyright.php deleted file mode 100644 index 4685412de..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'Copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/CreateDate.php b/lib/PHPExiftool/Driver/Tag/PNG/CreateDate.php deleted file mode 100644 index e27786894..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'create-date'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/CreationTime.php b/lib/PHPExiftool/Driver/Tag/PNG/CreationTime.php deleted file mode 100644 index 43072c72f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/CreationTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationTime extends AbstractTag -{ - - protected $Id = 'Creation Time'; - - protected $Name = 'CreationTime'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creation Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Description.php b/lib/PHPExiftool/Driver/Tag/PNG/Description.php deleted file mode 100644 index 52314c17e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'Description'; - - protected $Name = 'Description'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/DigitalSignature.php b/lib/PHPExiftool/Driver/Tag/PNG/DigitalSignature.php deleted file mode 100644 index 809cd404e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/DigitalSignature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSignature extends AbstractTag -{ - - protected $Id = 'dSIG'; - - protected $Name = 'DigitalSignature'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Digital Signature'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Disclaimer.php b/lib/PHPExiftool/Driver/Tag/PNG/Disclaimer.php deleted file mode 100644 index e39dc5365..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Disclaimer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Disclaimer extends AbstractTag -{ - - protected $Id = 'Disclaimer'; - - protected $Name = 'Disclaimer'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Disclaimer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Document.php b/lib/PHPExiftool/Driver/Tag/PNG/Document.php deleted file mode 100644 index d81738f64..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Document.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Document extends AbstractTag -{ - - protected $Id = 'Document'; - - protected $Name = 'Document'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Document'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Filter.php b/lib/PHPExiftool/Driver/Tag/PNG/Filter.php deleted file mode 100644 index 236198685..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Filter.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Filter extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Filter'; - - protected $FullName = 'PNG::ImageHeader'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Filter'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Adaptive', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/FractalParameters.php b/lib/PHPExiftool/Driver/Tag/PNG/FractalParameters.php deleted file mode 100644 index 524dad93f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/FractalParameters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FractalParameters extends AbstractTag -{ - - protected $Id = 'fRAc'; - - protected $Name = 'FractalParameters'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fractal Parameters'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/GIFApplicationExtension.php b/lib/PHPExiftool/Driver/Tag/PNG/GIFApplicationExtension.php deleted file mode 100644 index aa245e3c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/GIFApplicationExtension.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIFApplicationExtension extends AbstractTag -{ - - protected $Id = 'gIFx'; - - protected $Name = 'GIFApplicationExtension'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GIF Application Extension'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/GIFGraphicControlExtension.php b/lib/PHPExiftool/Driver/Tag/PNG/GIFGraphicControlExtension.php deleted file mode 100644 index aa7eaef6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/GIFGraphicControlExtension.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIFGraphicControlExtension extends AbstractTag -{ - - protected $Id = 'gIFg'; - - protected $Name = 'GIFGraphicControlExtension'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GIF Graphic Control Extension'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/GIFPlainTextExtension.php b/lib/PHPExiftool/Driver/Tag/PNG/GIFPlainTextExtension.php deleted file mode 100644 index 9981e0ae7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/GIFPlainTextExtension.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GIFPlainTextExtension extends AbstractTag -{ - - protected $Id = 'gIFt'; - - protected $Name = 'GIFPlainTextExtension'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GIF Plain Text Extension'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Gamma.php b/lib/PHPExiftool/Driver/Tag/PNG/Gamma.php deleted file mode 100644 index 5a00d4290..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 'gAMA'; - - protected $Name = 'Gamma'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/GreenX.php b/lib/PHPExiftool/Driver/Tag/PNG/GreenX.php deleted file mode 100644 index b7d3ad7e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/GreenX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenX extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GreenX'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Green X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/GreenY.php b/lib/PHPExiftool/Driver/Tag/PNG/GreenY.php deleted file mode 100644 index 35c076edb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/GreenY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenY extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'GreenY'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Green Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/PNG/ImageHeight.php deleted file mode 100644 index adc497ad2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'PNG::ImageHeader'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/ImageOffset.php b/lib/PHPExiftool/Driver/Tag/PNG/ImageOffset.php deleted file mode 100644 index 020add33e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/ImageOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageOffset extends AbstractTag -{ - - protected $Id = 'oFFs'; - - protected $Name = 'ImageOffset'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/PNG/ImageWidth.php deleted file mode 100644 index 50aced012..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'PNG::ImageHeader'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Interlace.php b/lib/PHPExiftool/Driver/Tag/PNG/Interlace.php deleted file mode 100644 index 4baa51554..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Interlace.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Interlace extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Interlace'; - - protected $FullName = 'PNG::ImageHeader'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Interlace'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Noninterlaced', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adam7 Interlace', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Label.php b/lib/PHPExiftool/Driver/Tag/PNG/Label.php deleted file mode 100644 index 9e77616cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Label.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label extends AbstractTag -{ - - protected $Id = 'Label'; - - protected $Name = 'Label'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Make.php b/lib/PHPExiftool/Driver/Tag/PNG/Make.php deleted file mode 100644 index 9af385247..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Make.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'Make'; - - protected $Name = 'Make'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Make'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/ModDate.php b/lib/PHPExiftool/Driver/Tag/PNG/ModDate.php deleted file mode 100644 index 999b8836e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/ModDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModDate extends AbstractTag -{ - - protected $Id = 'modify-date'; - - protected $Name = 'ModDate'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Mod Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Model.php b/lib/PHPExiftool/Driver/Tag/PNG/Model.php deleted file mode 100644 index 291cb7ce6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Model.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'Model'; - - protected $Name = 'Model'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Model'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/PNG/ModifyDate.php deleted file mode 100644 index 221cb9c92..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'tIME'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/PNGWarning.php b/lib/PHPExiftool/Driver/Tag/PNG/PNGWarning.php deleted file mode 100644 index 3c8007c3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/PNGWarning.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PNGWarning extends AbstractTag -{ - - protected $Id = 'Warning'; - - protected $Name = 'PNGWarning'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'PNG Warning'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Palette.php b/lib/PHPExiftool/Driver/Tag/PNG/Palette.php deleted file mode 100644 index a2d91097b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Palette.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Palette extends AbstractTag -{ - - protected $Id = 'PLTE'; - - protected $Name = 'Palette'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Palette'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/PaletteHistogram.php b/lib/PHPExiftool/Driver/Tag/PNG/PaletteHistogram.php deleted file mode 100644 index a536718d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/PaletteHistogram.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaletteHistogram extends AbstractTag -{ - - protected $Id = 'hIST'; - - protected $Name = 'PaletteHistogram'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Palette Histogram'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/PixelCalibration.php b/lib/PHPExiftool/Driver/Tag/PNG/PixelCalibration.php deleted file mode 100644 index bd34c8d75..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/PixelCalibration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelCalibration extends AbstractTag -{ - - protected $Id = 'pCAL'; - - protected $Name = 'PixelCalibration'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Calibration'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/ProfileName.php b/lib/PHPExiftool/Driver/Tag/PNG/ProfileName.php deleted file mode 100644 index cee6aba94..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/ProfileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileName extends AbstractTag -{ - - protected $Id = 'iCCP-name'; - - protected $Name = 'ProfileName'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/RedX.php b/lib/PHPExiftool/Driver/Tag/PNG/RedX.php deleted file mode 100644 index 03c6abd45..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/RedX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedX extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'RedX'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Red X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/RedY.php b/lib/PHPExiftool/Driver/Tag/PNG/RedY.php deleted file mode 100644 index 344e8626b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/RedY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedY extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'RedY'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Red Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/SRGBRendering.php b/lib/PHPExiftool/Driver/Tag/PNG/SRGBRendering.php deleted file mode 100644 index 727bba49f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/SRGBRendering.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRGBRendering extends AbstractTag -{ - - protected $Id = 'sRGB'; - - protected $Name = 'SRGBRendering'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SRGB Rendering'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Perceptual', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Relative Colorimetric', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Saturation', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Absolute Colorimetric', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/SignificantBits.php b/lib/PHPExiftool/Driver/Tag/PNG/SignificantBits.php deleted file mode 100644 index af84482bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/SignificantBits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignificantBits extends AbstractTag -{ - - protected $Id = 'sBIT'; - - protected $Name = 'SignificantBits'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Significant Bits'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Software.php b/lib/PHPExiftool/Driver/Tag/PNG/Software.php deleted file mode 100644 index f6e08be2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'Software'; - - protected $Name = 'Software'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Source.php b/lib/PHPExiftool/Driver/Tag/PNG/Source.php deleted file mode 100644 index 9c7ca8425..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Source.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 'Source'; - - protected $Name = 'Source'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/StereoMode.php b/lib/PHPExiftool/Driver/Tag/PNG/StereoMode.php deleted file mode 100644 index a12f4112d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/StereoMode.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StereoMode extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'StereoMode'; - - protected $FullName = 'PNG::StereoImage'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Stereo Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Cross-fuse Layout', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Diverging-fuse Layout', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/SubjectPixelHeight.php b/lib/PHPExiftool/Driver/Tag/PNG/SubjectPixelHeight.php deleted file mode 100644 index 87c044e33..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/SubjectPixelHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectPixelHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SubjectPixelHeight'; - - protected $FullName = 'PNG::SubjectScale'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'var_string'; - - protected $Writable = false; - - protected $Description = 'Subject Pixel Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/SubjectPixelWidth.php b/lib/PHPExiftool/Driver/Tag/PNG/SubjectPixelWidth.php deleted file mode 100644 index f66dbe0b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/SubjectPixelWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectPixelWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'SubjectPixelWidth'; - - protected $FullName = 'PNG::SubjectScale'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'var_string'; - - protected $Writable = false; - - protected $Description = 'Subject Pixel Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/SubjectUnits.php b/lib/PHPExiftool/Driver/Tag/PNG/SubjectUnits.php deleted file mode 100644 index f9645d325..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/SubjectUnits.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectUnits extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SubjectUnits'; - - protected $FullName = 'PNG::SubjectScale'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Subject Units'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'meters', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'radians', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/SuggestedPalette.php b/lib/PHPExiftool/Driver/Tag/PNG/SuggestedPalette.php deleted file mode 100644 index ec6db2f9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/SuggestedPalette.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SuggestedPalette extends AbstractTag -{ - - protected $Id = 'sPLT'; - - protected $Name = 'SuggestedPalette'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Suggested Palette'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/TimeStamp.php b/lib/PHPExiftool/Driver/Tag/PNG/TimeStamp.php deleted file mode 100644 index 4ad9b86cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/TimeStamp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeStamp extends AbstractTag -{ - - protected $Id = 'TimeStamp'; - - protected $Name = 'TimeStamp'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time Stamp'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Title.php b/lib/PHPExiftool/Driver/Tag/PNG/Title.php deleted file mode 100644 index 3969a4eeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'Title'; - - protected $Name = 'Title'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/Transparency.php b/lib/PHPExiftool/Driver/Tag/PNG/Transparency.php deleted file mode 100644 index 75769788f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/Transparency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Transparency extends AbstractTag -{ - - protected $Id = 'tRNS'; - - protected $Name = 'Transparency'; - - protected $FullName = 'PNG::Main'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transparency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/URL.php b/lib/PHPExiftool/Driver/Tag/PNG/URL.php deleted file mode 100644 index 7f3faf64d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'URL'; - - protected $Name = 'URL'; - - protected $FullName = 'PNG::TextualData'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/VirtualImageHeight.php b/lib/PHPExiftool/Driver/Tag/PNG/VirtualImageHeight.php deleted file mode 100644 index bd131ad58..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/VirtualImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VirtualImageHeight extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'VirtualImageHeight'; - - protected $FullName = 'PNG::VirtualPage'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Virtual Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/VirtualImageWidth.php b/lib/PHPExiftool/Driver/Tag/PNG/VirtualImageWidth.php deleted file mode 100644 index a81d78655..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/VirtualImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VirtualImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'VirtualImageWidth'; - - protected $FullName = 'PNG::VirtualPage'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Virtual Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/VirtualPageUnits.php b/lib/PHPExiftool/Driver/Tag/PNG/VirtualPageUnits.php deleted file mode 100644 index 6ef3bc5ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/VirtualPageUnits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VirtualPageUnits extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'VirtualPageUnits'; - - protected $FullName = 'PNG::VirtualPage'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Virtual Page Units'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/WhitePointX.php b/lib/PHPExiftool/Driver/Tag/PNG/WhitePointX.php deleted file mode 100644 index 26171faf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/WhitePointX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhitePointX extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WhitePointX'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'White Point X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNG/WhitePointY.php b/lib/PHPExiftool/Driver/Tag/PNG/WhitePointY.php deleted file mode 100644 index 1f2793c86..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNG/WhitePointY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhitePointY extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'WhitePointY'; - - protected $FullName = 'PNG::PrimaryChromaticities'; - - protected $GroupName = 'PNG'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'White Point Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelUnits.php b/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelUnits.php deleted file mode 100644 index 1142bda4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelUnits.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNGPHYs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelUnits extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'PixelUnits'; - - protected $FullName = 'PNG::PhysicalPixel'; - - protected $GroupName = 'PNG-pHYs'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG-pHYs'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Pixel Units'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'meters', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelsPerUnitX.php b/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelsPerUnitX.php deleted file mode 100644 index ac40685e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelsPerUnitX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNGPHYs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelsPerUnitX extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PixelsPerUnitX'; - - protected $FullName = 'PNG::PhysicalPixel'; - - protected $GroupName = 'PNG-pHYs'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG-pHYs'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Pixels Per Unit X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelsPerUnitY.php b/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelsPerUnitY.php deleted file mode 100644 index 4d02fecf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/PNGPHYs/PixelsPerUnitY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PNGPHYs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelsPerUnitY extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PixelsPerUnitY'; - - protected $FullName = 'PNG::PhysicalPixel'; - - protected $GroupName = 'PNG-pHYs'; - - protected $g0 = 'PNG'; - - protected $g1 = 'PNG-pHYs'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Pixels Per Unit Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/Artist.php b/lib/PHPExiftool/Driver/Tag/PSP/Artist.php deleted file mode 100644 index 3747b7c54..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Artist'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/PSP/BitsPerSample.php deleted file mode 100644 index a5688d903..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/Compression.php b/lib/PHPExiftool/Driver/Tag/PSP/Compression.php deleted file mode 100644 index 578833fde..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/Compression.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'Compression'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'RLE', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'LZ77', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'JPEG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/Copyright.php b/lib/PHPExiftool/Driver/Tag/PSP/Copyright.php deleted file mode 100644 index 6e7661d2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Copyright'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/CreateDate.php b/lib/PHPExiftool/Driver/Tag/PSP/CreateDate.php deleted file mode 100644 index 0a9e2b4cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CreateDate'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/CreatorAppID.php b/lib/PHPExiftool/Driver/Tag/PSP/CreatorAppID.php deleted file mode 100644 index 2e264df5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/CreatorAppID.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorAppID extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CreatorAppID'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Creator App ID'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Paint Shop Pro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/CreatorAppVersion.php b/lib/PHPExiftool/Driver/Tag/PSP/CreatorAppVersion.php deleted file mode 100644 index 21c0ed65c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/CreatorAppVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorAppVersion extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'CreatorAppVersion'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Creator App Version'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/Description.php b/lib/PHPExiftool/Driver/Tag/PSP/Description.php deleted file mode 100644 index a1509eb35..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Description'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/FileVersion.php b/lib/PHPExiftool/Driver/Tag/PSP/FileVersion.php deleted file mode 100644 index 61e16ed5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/FileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileVersion extends AbstractTag -{ - - protected $Id = 'FileVersion'; - - protected $Name = 'FileVersion'; - - protected $FullName = 'PSP::Main'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/PSP/ImageHeight.php deleted file mode 100644 index c68c3c4ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/ImageResolution.php b/lib/PHPExiftool/Driver/Tag/PSP/ImageResolution.php deleted file mode 100644 index 8ff752806..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/ImageResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageResolution extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ImageResolution'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = false; - - protected $Description = 'Image Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/PSP/ImageWidth.php deleted file mode 100644 index d11afe001..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/PSP/ModifyDate.php deleted file mode 100644 index 9a9a2bbb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/NumColors.php b/lib/PHPExiftool/Driver/Tag/PSP/NumColors.php deleted file mode 100644 index 9be42a5c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/NumColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumColors extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'NumColors'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Num Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/Planes.php b/lib/PHPExiftool/Driver/Tag/PSP/Planes.php deleted file mode 100644 index 111ab1237..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/Planes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Planes extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'Planes'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Planes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/ResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/PSP/ResolutionUnit.php deleted file mode 100644 index a2c23c918..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/ResolutionUnit.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResolutionUnit extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'ResolutionUnit'; - - protected $FullName = 'PSP::Image'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Resolution Unit'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'inches', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PSP/Title.php b/lib/PHPExiftool/Driver/Tag/PSP/Title.php deleted file mode 100644 index 096b97e07..000000000 --- a/lib/PHPExiftool/Driver/Tag/PSP/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PSP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Title'; - - protected $FullName = 'PSP::Creator'; - - protected $GroupName = 'PSP'; - - protected $g0 = 'PSP'; - - protected $g1 = 'PSP'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Palm/CreateDate.php b/lib/PHPExiftool/Driver/Tag/Palm/CreateDate.php deleted file mode 100644 index 844b0f891..000000000 --- a/lib/PHPExiftool/Driver/Tag/Palm/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Palm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'CreateDate'; - - protected $FullName = 'Palm::Main'; - - protected $GroupName = 'Palm'; - - protected $g0 = 'Palm'; - - protected $g1 = 'Palm'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Palm/DatabaseName.php b/lib/PHPExiftool/Driver/Tag/Palm/DatabaseName.php deleted file mode 100644 index 67f409805..000000000 --- a/lib/PHPExiftool/Driver/Tag/Palm/DatabaseName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Palm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DatabaseName extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DatabaseName'; - - protected $FullName = 'Palm::Main'; - - protected $GroupName = 'Palm'; - - protected $g0 = 'Palm'; - - protected $g1 = 'Palm'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Database Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Palm/LastBackupDate.php b/lib/PHPExiftool/Driver/Tag/Palm/LastBackupDate.php deleted file mode 100644 index 5334bbad9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Palm/LastBackupDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Palm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastBackupDate extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'LastBackupDate'; - - protected $FullName = 'Palm::Main'; - - protected $GroupName = 'Palm'; - - protected $g0 = 'Palm'; - - protected $g1 = 'Palm'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Last Backup Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Palm/ModificationNumber.php b/lib/PHPExiftool/Driver/Tag/Palm/ModificationNumber.php deleted file mode 100644 index 283ffaf63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Palm/ModificationNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Palm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModificationNumber extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ModificationNumber'; - - protected $FullName = 'Palm::Main'; - - protected $GroupName = 'Palm'; - - protected $g0 = 'Palm'; - - protected $g1 = 'Palm'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Modification Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Palm/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/Palm/ModifyDate.php deleted file mode 100644 index 931459342..000000000 --- a/lib/PHPExiftool/Driver/Tag/Palm/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Palm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'Palm::Main'; - - protected $GroupName = 'Palm'; - - protected $g0 = 'Palm'; - - protected $g1 = 'Palm'; - - protected $g2 = 'Document'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Palm/PalmFileType.php b/lib/PHPExiftool/Driver/Tag/Palm/PalmFileType.php deleted file mode 100644 index ea885d102..000000000 --- a/lib/PHPExiftool/Driver/Tag/Palm/PalmFileType.php +++ /dev/null @@ -1,160 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Palm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PalmFileType extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'PalmFileType'; - - protected $FullName = 'Palm::Main'; - - protected $GroupName = 'Palm'; - - protected $g0 = 'Palm'; - - protected $g1 = 'Palm'; - - protected $g2 = 'Document'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Palm File Type'; - - protected $MaxLength = 8; - - protected $Values = array( - '.pdfADBE' => array( - 'Id' => '.pdfADBE', - 'Label' => 'Adobe Reader', - ), - 'BDOCWrdS' => array( - 'Id' => 'BDOCWrdS', - 'Label' => 'WordSmith', - ), - 'BOOKMOBI' => array( - 'Id' => 'BOOKMOBI', - 'Label' => 'Mobipocket', - ), - 'BVokBDIC' => array( - 'Id' => 'BVokBDIC', - 'Label' => 'BDicty', - ), - 'DATALSdb' => array( - 'Id' => 'DATALSdb', - 'Label' => 'LIST', - ), - 'DB99DBOS' => array( - 'Id' => 'DB99DBOS', - 'Label' => 'DB (Database program)', - ), - 'DataPPrs' => array( - 'Id' => 'DataPPrs', - 'Label' => 'eReader', - ), - 'DataPlkr' => array( - 'Id' => 'DataPlkr', - 'Label' => 'Plucker', - ), - 'DataSprd' => array( - 'Id' => 'DataSprd', - 'Label' => 'QuickSheet', - ), - 'DataTlMl' => array( - 'Id' => 'DataTlMl', - 'Label' => 'TealMeal', - ), - 'DataTlPt' => array( - 'Id' => 'DataTlPt', - 'Label' => 'TealPaint', - ), - 'InfoINDB' => array( - 'Id' => 'InfoINDB', - 'Label' => 'InfoView', - ), - 'InfoTlIf' => array( - 'Id' => 'InfoTlIf', - 'Label' => 'TealInfo', - ), - 'JbDbJBas' => array( - 'Id' => 'JbDbJBas', - 'Label' => 'JFile', - ), - 'JfDbJFil' => array( - 'Id' => 'JfDbJFil', - 'Label' => 'JFile Pro', - ), - 'Mdb1Mdb1' => array( - 'Id' => 'Mdb1Mdb1', - 'Label' => 'MobileDB', - ), - 'PNRdPPrs' => array( - 'Id' => 'PNRdPPrs', - 'Label' => 'eReader', - ), - 'PmDBPmDB' => array( - 'Id' => 'PmDBPmDB', - 'Label' => 'HanDBase', - ), - 'SDocSilX' => array( - 'Id' => 'SDocSilX', - 'Label' => 'iSilo 3', - ), - 'SM01SMem' => array( - 'Id' => 'SM01SMem', - 'Label' => 'SuperMemo', - ), - 'TEXtREAd' => array( - 'Id' => 'TEXtREAd', - 'Label' => 'PalmDOC', - ), - 'TEXtTlDc' => array( - 'Id' => 'TEXtTlDc', - 'Label' => 'TealDoc', - ), - 'TdatTide' => array( - 'Id' => 'TdatTide', - 'Label' => 'Tides', - ), - 'ToGoToGo' => array( - 'Id' => 'ToGoToGo', - 'Label' => 'iSilo', - ), - 'ToRaTRPW' => array( - 'Id' => 'ToRaTRPW', - 'Label' => 'TomeRaider', - ), - 'dataTDBP' => array( - 'Id' => 'dataTDBP', - 'Label' => 'ThinkDB', - ), - 'vIMGView' => array( - 'Id' => 'vIMGView', - 'Label' => 'FireViewer (ImageViewer)', - ), - 'zTXTGPlm' => array( - 'Id' => 'zTXTGPlm', - 'Label' => 'Weasel', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AFAreaMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AFAreaMode.php deleted file mode 100644 index fa06ead3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AFAreaMode.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaMode extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'AFAreaMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Area Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '0 1' => array( - 'Id' => '0 1', - 'Label' => '9-area', - ), - '0 16' => array( - 'Id' => '0 16', - 'Label' => '3-area (high speed)', - ), - 0 => array( - 'Id' => 16, - 'Label' => 'Normal?', - ), - '0 23' => array( - 'Id' => '0 23', - 'Label' => '23-area', - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 'Spot Focusing', - ), - '1 1' => array( - 'Id' => '1 1', - 'Label' => '5-area', - ), - '16 0' => array( - 'Id' => '16 0', - 'Label' => '1-area', - ), - '16 16' => array( - 'Id' => '16 16', - 'Label' => '1-area (high speed)', - ), - '32 0' => array( - 'Id' => '32 0', - 'Label' => 'Tracking', - ), - '32 1' => array( - 'Id' => '32 1', - 'Label' => '3-area (left)?', - ), - '32 2' => array( - 'Id' => '32 2', - 'Label' => '3-area (center)?', - ), - '32 3' => array( - 'Id' => '32 3', - 'Label' => '3-area (right)?', - ), - '64 0' => array( - 'Id' => '64 0', - 'Label' => 'Face Detect', - ), - '128 0' => array( - 'Id' => '128 0', - 'Label' => 'Spot Focusing 2', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AFAssistLamp.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AFAssistLamp.php deleted file mode 100644 index 35ddd8397..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AFAssistLamp.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAssistLamp extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'AFAssistLamp'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Assist Lamp'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Enabled but Not Used', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Disabled but Required', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Disabled and Not Required', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AFPointPosition.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AFPointPosition.php deleted file mode 100644 index 1c7055699..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AFPointPosition.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointPosition extends AbstractTag -{ - - protected $Id = 77; - - protected $Name = 'AFPointPosition'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'AF Point Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerX.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerX.php deleted file mode 100644 index 85b3c056c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerometerX extends AbstractTag -{ - - protected $Id = 141; - - protected $Name = 'AccelerometerX'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Accelerometer X'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerY.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerY.php deleted file mode 100644 index 0b63f90e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerometerY extends AbstractTag -{ - - protected $Id = 142; - - protected $Name = 'AccelerometerY'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Accelerometer Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerZ.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerZ.php deleted file mode 100644 index 86a994d43..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AccelerometerZ.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccelerometerZ extends AbstractTag -{ - - protected $Id = 140; - - protected $Name = 'AccelerometerZ'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Accelerometer Z'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AccessorySerialNumber.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AccessorySerialNumber.php deleted file mode 100644 index c44040871..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AccessorySerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccessorySerialNumber extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'AccessorySerialNumber'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Accessory Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AccessoryType.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AccessoryType.php deleted file mode 100644 index f902e8a18..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AccessoryType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AccessoryType extends AbstractTag -{ - - protected $Id = 83; - - protected $Name = 'AccessoryType'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Accessory Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/AdvancedSceneType.php b/lib/PHPExiftool/Driver/Tag/Panasonic/AdvancedSceneType.php deleted file mode 100644 index 17bf46097..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/AdvancedSceneType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdvancedSceneType extends AbstractTag -{ - - protected $Id = 61; - - protected $Name = 'AdvancedSceneType'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Advanced Scene Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Audio.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Audio.php deleted file mode 100644 index 3324d32f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Audio.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Audio extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'Audio'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Audio'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'No', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Stereo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/BabyAge.php b/lib/PHPExiftool/Driver/Tag/Panasonic/BabyAge.php deleted file mode 100644 index c79658b5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/BabyAge.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BabyAge extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BabyAge'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Baby Age'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/BabyName.php b/lib/PHPExiftool/Driver/Tag/Panasonic/BabyName.php deleted file mode 100644 index 109b43933..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/BabyName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BabyName extends AbstractTag -{ - - protected $Id = 102; - - protected $Name = 'BabyName'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Baby Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/BracketSettings.php b/lib/PHPExiftool/Driver/Tag/Panasonic/BracketSettings.php deleted file mode 100644 index 3828973d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/BracketSettings.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketSettings extends AbstractTag -{ - - protected $Id = 69; - - protected $Name = 'BracketSettings'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Bracket Settings'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Bracket', - ), - 1 => array( - 'Id' => 1, - 'Label' => '3 Images, Sequence 0/-/+', - ), - 2 => array( - 'Id' => 2, - 'Label' => '3 Images, Sequence -/0/+', - ), - 3 => array( - 'Id' => 3, - 'Label' => '5 Images, Sequence 0/-/+', - ), - 4 => array( - 'Id' => 4, - 'Label' => '5 Images, Sequence -/0/+', - ), - 5 => array( - 'Id' => 5, - 'Label' => '7 Images, Sequence 0/-/+', - ), - 6 => array( - 'Id' => 6, - 'Label' => '7 Images, Sequence -/0/+', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/BurstMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/BurstMode.php deleted file mode 100644 index 569205426..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/BurstMode.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BurstMode extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'BurstMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Burst Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto Exposure Bracketing (AEB)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Unlimited', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'White Balance Bracketing', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'On (with flash)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/BurstSpeed.php b/lib/PHPExiftool/Driver/Tag/Panasonic/BurstSpeed.php deleted file mode 100644 index 6af51b097..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/BurstSpeed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BurstSpeed extends AbstractTag -{ - - protected $Id = 119; - - protected $Name = 'BurstSpeed'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Burst Speed'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/CameraOrientation.php b/lib/PHPExiftool/Driver/Tag/Panasonic/CameraOrientation.php deleted file mode 100644 index 2b8bcfd6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/CameraOrientation.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraOrientation extends AbstractTag -{ - - protected $Id = 143; - - protected $Name = 'CameraOrientation'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Camera Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 180', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate CCW', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tilt Upwards', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Tilt Downwards', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/City.php b/lib/PHPExiftool/Driver/Tag/Panasonic/City.php deleted file mode 100644 index bbbd7a81a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/City.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class City extends AbstractTag -{ - - protected $Id = 109; - - protected $Name = 'City'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'City'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/City2.php b/lib/PHPExiftool/Driver/Tag/Panasonic/City2.php deleted file mode 100644 index 5cc593790..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/City2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class City2 extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'City2'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'City 2'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ClearRetouch.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ClearRetouch.php deleted file mode 100644 index 95b527c24..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ClearRetouch.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClearRetouch extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'ClearRetouch'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Clear Retouch'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ClearRetouchValue.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ClearRetouchValue.php deleted file mode 100644 index 2068eba00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ClearRetouchValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClearRetouchValue extends AbstractTag -{ - - protected $Id = 163; - - protected $Name = 'ClearRetouchValue'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Clear Retouch Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ColorEffect.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ColorEffect.php deleted file mode 100644 index 58ae79647..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ColorEffect.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorEffect extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'ColorEffect'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Warm', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Cool', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Black & White', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Sepia', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Happy', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Vivid', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ColorMode.php deleted file mode 100644 index 7a5acaabf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ColorMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Natural', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Vivid', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ColorTempKelvin.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ColorTempKelvin.php deleted file mode 100644 index 439b80778..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ColorTempKelvin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempKelvin extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'ColorTempKelvin'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temp Kelvin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Contrast.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Contrast.php deleted file mode 100644 index 733e4e8b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Contrast.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'Contrast'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ContrastMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ContrastMode.php deleted file mode 100644 index e22e05899..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ContrastMode.php +++ /dev/null @@ -1,278 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastMode extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'ContrastMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Contrast Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 6, - 'Label' => 'Medium Low', - ), - 4 => array( - 'Id' => 7, - 'Label' => 'Medium High', - ), - 5 => array( - 'Id' => 13, - 'Label' => 'High Dynamic', - ), - 6 => array( - 'Id' => 256, - 'Label' => 'Low', - ), - 7 => array( - 'Id' => 272, - 'Label' => 'Normal', - ), - 8 => array( - 'Id' => 288, - 'Label' => 'High', - ), - 9 => array( - 'Id' => 0, - 'Label' => '-2', - ), - 10 => array( - 'Id' => 1, - 'Label' => '-1', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 12 => array( - 'Id' => 3, - 'Label' => '+1', - ), - 13 => array( - 'Id' => 4, - 'Label' => '+2', - ), - 14 => array( - 'Id' => 5, - 'Label' => 'Normal 2', - ), - 15 => array( - 'Id' => 7, - 'Label' => 'Nature (Color Film)', - ), - 16 => array( - 'Id' => 9, - 'Label' => 'Expressive', - ), - 17 => array( - 'Id' => 12, - 'Label' => 'Smooth (Color Film) or Pure (My Color)', - ), - 18 => array( - 'Id' => 17, - 'Label' => 'Dynamic (B&W Film)', - ), - 19 => array( - 'Id' => 22, - 'Label' => 'Smooth (B&W Film)', - ), - 20 => array( - 'Id' => 25, - 'Label' => 'High Dynamic', - ), - 21 => array( - 'Id' => 26, - 'Label' => 'Retro', - ), - 22 => array( - 'Id' => 27, - 'Label' => 'Dynamic (Color Film)', - ), - 23 => array( - 'Id' => 28, - 'Label' => 'Low Key', - ), - 24 => array( - 'Id' => 29, - 'Label' => 'Toy Effect', - ), - 25 => array( - 'Id' => 32, - 'Label' => 'Vibrant (Color Film) or Expressive (My Color)', - ), - 26 => array( - 'Id' => 33, - 'Label' => 'Elegant (My Color)', - ), - 27 => array( - 'Id' => 37, - 'Label' => 'Nostalgic (Color Film)', - ), - 28 => array( - 'Id' => 41, - 'Label' => 'Dynamic Art (My Color)', - ), - 29 => array( - 'Id' => 42, - 'Label' => 'Retro (My Color)', - ), - 30 => array( - 'Id' => 45, - 'Label' => 'Cinema', - ), - 31 => array( - 'Id' => 47, - 'Label' => 'Dynamic Mono', - ), - 32 => array( - 'Id' => 50, - 'Label' => 'Impressive Art', - ), - 33 => array( - 'Id' => 51, - 'Label' => 'Cross Process', - ), - 34 => array( - 'Id' => 100, - 'Label' => 'High Dynamic 2', - ), - 35 => array( - 'Id' => 101, - 'Label' => 'Retro 2', - ), - 36 => array( - 'Id' => 102, - 'Label' => 'High Key 2', - ), - 37 => array( - 'Id' => 103, - 'Label' => 'Low Key 2', - ), - 38 => array( - 'Id' => 104, - 'Label' => 'Toy Effect 2', - ), - 39 => array( - 'Id' => 107, - 'Label' => 'Expressive 2', - ), - 40 => array( - 'Id' => 112, - 'Label' => 'Sepia', - ), - 41 => array( - 'Id' => 117, - 'Label' => 'Miniature', - ), - 42 => array( - 'Id' => 122, - 'Label' => 'Dynamic Monochrome', - ), - 43 => array( - 'Id' => 127, - 'Label' => 'Old Days', - ), - 44 => array( - 'Id' => 132, - 'Label' => 'Dynamic Monochrome 2', - ), - 45 => array( - 'Id' => 135, - 'Label' => 'Impressive Art 2', - ), - 46 => array( - 'Id' => 136, - 'Label' => 'Cross Process 2', - ), - 47 => array( - 'Id' => 137, - 'Label' => 'Toy Pop', - ), - 48 => array( - 'Id' => 138, - 'Label' => 'Fantasy', - ), - 49 => array( - 'Id' => 256, - 'Label' => 'Normal 3', - ), - 50 => array( - 'Id' => 272, - 'Label' => 'Standard', - ), - 51 => array( - 'Id' => 288, - 'Label' => 'High', - ), - 52 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 53 => array( - 'Id' => 1, - 'Label' => '-2', - ), - 54 => array( - 'Id' => 2, - 'Label' => '+2', - ), - 55 => array( - 'Id' => 5, - 'Label' => '-1', - ), - 56 => array( - 'Id' => 6, - 'Label' => '+1', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ConversionLens.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ConversionLens.php deleted file mode 100644 index 0f2f8f353..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ConversionLens.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConversionLens extends AbstractTag -{ - - protected $Id = 53; - - protected $Name = 'ConversionLens'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Conversion Lens'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Wide', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Telephoto', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Country.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Country.php deleted file mode 100644 index d37b9bd69..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Country.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Country extends AbstractTag -{ - - protected $Id = 105; - - protected $Name = 'Country'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Country'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/DataDump.php b/lib/PHPExiftool/Driver/Tag/Panasonic/DataDump.php deleted file mode 100644 index f5d1b9f0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/DataDump.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDump extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'DataDump'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Data Dump'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Face1Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Face1Position.php deleted file mode 100644 index d9a84b40f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Face1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Position extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Face1Position'; - - protected $FullName = 'Panasonic::FaceDetInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Face2Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Face2Position.php deleted file mode 100644 index f0934e4f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Face2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Position extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Face2Position'; - - protected $FullName = 'Panasonic::FaceDetInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Face3Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Face3Position.php deleted file mode 100644 index 93165338f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Face3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Position extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'Face3Position'; - - protected $FullName = 'Panasonic::FaceDetInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Face4Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Face4Position.php deleted file mode 100644 index 148c2dc33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Face4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Position extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'Face4Position'; - - protected $FullName = 'Panasonic::FaceDetInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Face5Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Face5Position.php deleted file mode 100644 index ef61993ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Face5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Position extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'Face5Position'; - - protected $FullName = 'Panasonic::FaceDetInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FacesDetected.php deleted file mode 100644 index 508c4974b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 63; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FacesRecognized.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FacesRecognized.php deleted file mode 100644 index 46b79e8a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FacesRecognized.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesRecognized extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FacesRecognized'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Faces Recognized'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FilmMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FilmMode.php deleted file mode 100644 index 84fcb6abb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FilmMode.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FilmMode extends AbstractTag -{ - - protected $Id = 66; - - protected $Name = 'FilmMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Film Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard (color)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Dynamic (color)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Nature (color)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Smooth (color)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Standard (B&W)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Dynamic (B&W)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Smooth (B&W)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Nostalgic', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Vibrant', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FirmwareVersion.php deleted file mode 100644 index bcb1fe7f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashBias.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FlashBias.php deleted file mode 100644 index 86af39fff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashBias.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashBias extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'FlashBias'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Bias'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashCurtain.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FlashCurtain.php deleted file mode 100644 index b154596e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashCurtain.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashCurtain extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'FlashCurtain'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Curtain'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1st', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2nd', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashFired.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FlashFired.php deleted file mode 100644 index 8c0cfff11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashFired.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFired extends AbstractTag -{ - - protected $Id = 32775; - - protected $Name = 'FlashFired'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Fired'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'No', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashWarning.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FlashWarning.php deleted file mode 100644 index 423f4c9b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FlashWarning.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashWarning extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'FlashWarning'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Warning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes (flash required but disabled)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/FocusMode.php deleted file mode 100644 index 92f527e66..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/FocusMode.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'FocusMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Manual', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto, Focus button', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Auto, Continuous', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'AF-S', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'AF-C', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'AF-F', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Gain.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Gain.php deleted file mode 100644 index 218296c04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Gain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gain extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Gain'; - - protected $FullName = 'Panasonic::Type2'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/HDR.php b/lib/PHPExiftool/Driver/Tag/Panasonic/HDR.php deleted file mode 100644 index 6f4c2a9d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/HDR.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDR extends AbstractTag -{ - - protected $Id = 158; - - protected $Name = 'HDR'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'HDR'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 100 => array( - 'Id' => 100, - 'Label' => '1 EV', - ), - 200 => array( - 'Id' => 200, - 'Label' => '2 EV', - ), - 300 => array( - 'Id' => 300, - 'Label' => '3 EV', - ), - 32868 => array( - 'Id' => 32868, - 'Label' => '1 EV (Auto)', - ), - 32968 => array( - 'Id' => 32968, - 'Label' => '2 EV (Auto)', - ), - 33068 => array( - 'Id' => 33068, - 'Label' => '3 EV (Auto)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ImageQuality.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ImageQuality.php deleted file mode 100644 index bcec9021b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ImageQuality.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageQuality extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ImageQuality'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'TIFF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Normal', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Very High', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Raw', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Motion Picture', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ImageStabilization.php deleted file mode 100644 index d4999b473..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ImageStabilization.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'On, Mode 1', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'On, Mode 2', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Panning', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'On, Mode 3', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentDRange.php b/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentDRange.php deleted file mode 100644 index b96a7cb63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentDRange.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntelligentDRange extends AbstractTag -{ - - protected $Id = 121; - - protected $Name = 'IntelligentD-Range'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Intelligent D-Range'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Standard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentExposure.php b/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentExposure.php deleted file mode 100644 index da82274b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentExposure.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntelligentExposure extends AbstractTag -{ - - protected $Id = 93; - - protected $Name = 'IntelligentExposure'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Intelligent Exposure'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Standard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentResolution.php b/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentResolution.php deleted file mode 100644 index 5247584cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/IntelligentResolution.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntelligentResolution extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'IntelligentResolution'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Intelligent Resolution'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Standard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Extended', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/InternalNDFilter.php b/lib/PHPExiftool/Driver/Tag/Panasonic/InternalNDFilter.php deleted file mode 100644 index 0c40db03d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/InternalNDFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalNDFilter extends AbstractTag -{ - - protected $Id = 157; - - protected $Name = 'InternalNDFilter'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Internal ND Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Panasonic/InternalSerialNumber.php deleted file mode 100644 index 961589d62..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/InternalSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Landmark.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Landmark.php deleted file mode 100644 index 4c72c8342..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Landmark.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Landmark extends AbstractTag -{ - - protected $Id = 111; - - protected $Name = 'Landmark'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Landmark'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/LensFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Panasonic/LensFirmwareVersion.php deleted file mode 100644 index ab8a66ffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/LensFirmwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFirmwareVersion extends AbstractTag -{ - - protected $Id = 96; - - protected $Name = 'LensFirmwareVersion'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Lens Firmware Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Panasonic/LensSerialNumber.php deleted file mode 100644 index 6593f27b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/LensSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 82; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/LensType.php b/lib/PHPExiftool/Driver/Tag/Panasonic/LensType.php deleted file mode 100644 index 877dc1e8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/LensType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'LensType'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Location.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Location.php deleted file mode 100644 index 1c9eb08b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Location.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 103; - - protected $Name = 'Location'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Location'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/LongExposureNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Panasonic/LongExposureNoiseReduction.php deleted file mode 100644 index e98308e04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/LongExposureNoiseReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LongExposureNoiseReduction extends AbstractTag -{ - - protected $Id = 73; - - protected $Name = 'LongExposureNoiseReduction'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Long Exposure Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/MacroMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/MacroMode.php deleted file mode 100644 index 0a1b13b8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/MacroMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroMode extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'MacroMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Tele-Macro', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'Macro Zoom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Make.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Make.php deleted file mode 100644 index 0d4a96a3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Make.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - - protected $MaxLength = 22; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/MakerNoteType.php b/lib/PHPExiftool/Driver/Tag/Panasonic/MakerNoteType.php deleted file mode 100644 index b21ddecd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/MakerNoteType.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MakerNoteType'; - - protected $FullName = 'Panasonic::Type2'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Maker Note Type'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Panasonic/MakerNoteVersion.php deleted file mode 100644 index 32535f477..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/MakerNoteVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 32768; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ManometerPressure.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ManometerPressure.php deleted file mode 100644 index aafbb69e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ManometerPressure.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManometerPressure extends AbstractTag -{ - - protected $Id = 134; - - protected $Name = 'ManometerPressure'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Manometer Pressure'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Model.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Model.php deleted file mode 100644 index 3d76bbb9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Model.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Model'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Panasonic/NoiseReduction.php deleted file mode 100644 index 62546ca35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/NoiseReduction.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low (-1)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High (+1)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Lowest (-2)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Highest (+2)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/NumFacePositions.php b/lib/PHPExiftool/Driver/Tag/Panasonic/NumFacePositions.php deleted file mode 100644 index 117c67db2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/NumFacePositions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumFacePositions extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'NumFacePositions'; - - protected $FullName = 'Panasonic::FaceDetInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Num Face Positions'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/OpticalZoomMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/OpticalZoomMode.php deleted file mode 100644 index 27c13b171..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/OpticalZoomMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalZoomMode extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'OpticalZoomMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Optical Zoom Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Extended', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicExifVersion.php b/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicExifVersion.php deleted file mode 100644 index 25877df42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicExifVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanasonicExifVersion extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'PanasonicExifVersion'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Panasonic Exif Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicImageHeight.php b/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicImageHeight.php deleted file mode 100644 index c850da441..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanasonicImageHeight extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'PanasonicImageHeight'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panasonic Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicImageWidth.php b/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicImageWidth.php deleted file mode 100644 index 061b0dfa6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/PanasonicImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanasonicImageWidth extends AbstractTag -{ - - protected $Id = 75; - - protected $Name = 'PanasonicImageWidth'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panasonic Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/PhotoStyle.php b/lib/PHPExiftool/Driver/Tag/Panasonic/PhotoStyle.php deleted file mode 100644 index 7b029610e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/PhotoStyle.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoStyle extends AbstractTag -{ - - protected $Id = 137; - - protected $Name = 'PhotoStyle'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Photo Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard or Custom', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Vivid', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Natural', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Monochrome', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Scenery', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Portrait', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/PitchAngle.php b/lib/PHPExiftool/Driver/Tag/Panasonic/PitchAngle.php deleted file mode 100644 index 3ff2b3d10..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/PitchAngle.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PitchAngle extends AbstractTag -{ - - protected $Id = 145; - - protected $Name = 'PitchAngle'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Pitch Angle'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ProgramISO.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ProgramISO.php deleted file mode 100644 index c4295e795..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ProgramISO.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramISO extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'ProgramISO'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Program ISO'; - - protected $flag_Permanent = true; - - protected $Values = array( - 65534 => array( - 'Id' => 65534, - 'Label' => 'Intelligent ISO', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Age.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Age.php deleted file mode 100644 index be8823597..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Age.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace1Age extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'RecognizedFace1Age'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 1 Age'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Name.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Name.php deleted file mode 100644 index 03a89ffbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Name.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace1Name extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'RecognizedFace1Name'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 1 Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Position.php deleted file mode 100644 index e1d8c95d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace1Position extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'RecognizedFace1Position'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Age.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Age.php deleted file mode 100644 index 03d292bc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Age.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace2Age extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'RecognizedFace2Age'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 2 Age'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Name.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Name.php deleted file mode 100644 index c55b146ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Name.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace2Name extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'RecognizedFace2Name'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 2 Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Position.php deleted file mode 100644 index 833678a41..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace2Position extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'RecognizedFace2Position'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Age.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Age.php deleted file mode 100644 index adc998bf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Age.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace3Age extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'RecognizedFace3Age'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 3 Age'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Name.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Name.php deleted file mode 100644 index d275f94c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Name.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace3Name extends AbstractTag -{ - - protected $Id = 100; - - protected $Name = 'RecognizedFace3Name'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 3 Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Position.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Position.php deleted file mode 100644 index b18d5b4e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFace3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFace3Position extends AbstractTag -{ - - protected $Id = 120; - - protected $Name = 'RecognizedFace3Position'; - - protected $FullName = 'Panasonic::FaceRecInfo'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Recognized Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFaceFlags.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFaceFlags.php deleted file mode 100644 index e011a8440..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RecognizedFaceFlags.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecognizedFaceFlags extends AbstractTag -{ - - protected $Id = 99; - - protected $Name = 'RecognizedFaceFlags'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Recognized Face Flags'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/RollAngle.php b/lib/PHPExiftool/Driver/Tag/Panasonic/RollAngle.php deleted file mode 100644 index 84116c8f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/RollAngle.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RollAngle extends AbstractTag -{ - - protected $Id = 144; - - protected $Name = 'RollAngle'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Roll Angle'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Rotation.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Rotation.php deleted file mode 100644 index fa8e9ab8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Rotation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'Rotation'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Rotate 90 CW', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Saturation.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Saturation.php deleted file mode 100644 index 3076133c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Saturation.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'Saturation'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/SceneMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/SceneMode.php deleted file mode 100644 index 22fbddf38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/SceneMode.php +++ /dev/null @@ -1,360 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneMode extends AbstractTag -{ - - protected $Id = 32769; - - protected $Name = 'SceneMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Scene Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Scenery', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sports', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Night Portrait', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Program', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Aperture Priority', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Shutter Priority', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Macro', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Spot', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Manual', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Movie Preview', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Panning', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Simple', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Color Effects', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Self Portrait', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Economy', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Fireworks', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Party', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Snow', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Night Scenery', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Food', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Baby', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Soft Skin', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Candlelight', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Starry Night', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'High Sensitivity', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Panorama Assist', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Underwater', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Beach', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Aerial Photo', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Sunset', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Pet', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Intelligent ISO', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Clipboard', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'High Speed Continuous Shooting', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Intelligent Auto', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Multi-aspect', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Transform', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Flash Burst', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Pin Hole', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Film Grain', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'My Color', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Photo Frame', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Movie', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'HDR', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Handheld Night Shot', - ), - 57 => array( - 'Id' => 57, - 'Label' => '3D', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Creative Control', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Panorama', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Glass Through', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'HDR', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Digital Filter', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Clear Portrait', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Silky Skin', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Backlit Softness', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Clear in Backlight', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Relaxing Tone', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Sweet Child\'s Face', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'Distinct Scenery', - ), - 74 => array( - 'Id' => 74, - 'Label' => 'Bright Blue Sky', - ), - 75 => array( - 'Id' => 75, - 'Label' => 'Romantic Sunset Glow', - ), - 76 => array( - 'Id' => 76, - 'Label' => 'Vivid Sunset Glow', - ), - 77 => array( - 'Id' => 77, - 'Label' => 'Glistening Water', - ), - 78 => array( - 'Id' => 78, - 'Label' => 'Clear Nightscape', - ), - 79 => array( - 'Id' => 79, - 'Label' => 'Cool Night Sky', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Warm Glowing Nightscape', - ), - 81 => array( - 'Id' => 81, - 'Label' => 'Artistic Nightscape', - ), - 82 => array( - 'Id' => 82, - 'Label' => 'Glittering Illuminations', - ), - 83 => array( - 'Id' => 83, - 'Label' => 'Clear Night Portrait', - ), - 84 => array( - 'Id' => 84, - 'Label' => 'Soft Image of a Flower', - ), - 85 => array( - 'Id' => 85, - 'Label' => 'Appetizing Food', - ), - 86 => array( - 'Id' => 86, - 'Label' => 'Cute Desert', - ), - 87 => array( - 'Id' => 87, - 'Label' => 'Freeze Animal Motion', - ), - 88 => array( - 'Id' => 88, - 'Label' => 'Clear Sports Shot', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Monochrome', - ), - 90 => array( - 'Id' => 90, - 'Label' => 'Creative Control', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/SelfTimer.php b/lib/PHPExiftool/Driver/Tag/Panasonic/SelfTimer.php deleted file mode 100644 index 9cc3f5f2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/SelfTimer.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimer extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'SelfTimer'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Self Timer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => '10 s', - ), - 3 => array( - 'Id' => 3, - 'Label' => '2 s', - ), - 4 => array( - 'Id' => 4, - 'Label' => '10 s / 3 pictures', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/SequenceNumber.php b/lib/PHPExiftool/Driver/Tag/Panasonic/SequenceNumber.php deleted file mode 100644 index f1a06f881..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/SequenceNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumber extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'SequenceNumber'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sequence Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ShadingCompensation.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ShadingCompensation.php deleted file mode 100644 index e9eb0a0d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ShadingCompensation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadingCompensation extends AbstractTag -{ - - protected $Id = 138; - - protected $Name = 'ShadingCompensation'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shading Compensation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Sharpness.php deleted file mode 100644 index 905d4d182..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Sharpness.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'Sharpness'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ShootingMode.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ShootingMode.php deleted file mode 100644 index e6b428433..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ShootingMode.php +++ /dev/null @@ -1,356 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingMode extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'ShootingMode'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shooting Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Scenery', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sports', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Night Portrait', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Program', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Aperture Priority', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Shutter Priority', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Macro', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Spot', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Manual', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Movie Preview', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Panning', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Simple', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Color Effects', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Self Portrait', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Economy', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Fireworks', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Party', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Snow', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Night Scenery', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Food', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Baby', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Soft Skin', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Candlelight', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Starry Night', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'High Sensitivity', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Panorama Assist', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Underwater', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Beach', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Aerial Photo', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Sunset', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Pet', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Intelligent ISO', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Clipboard', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'High Speed Continuous Shooting', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Intelligent Auto', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Multi-aspect', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Transform', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Flash Burst', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Pin Hole', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Film Grain', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'My Color', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Photo Frame', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Movie', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'HDR', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Handheld Night Shot', - ), - 57 => array( - 'Id' => 57, - 'Label' => '3D', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Creative Control', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Panorama', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Glass Through', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'HDR', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Digital Filter', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Clear Portrait', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Silky Skin', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Backlit Softness', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Clear in Backlight', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Relaxing Tone', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Sweet Child\'s Face', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'Distinct Scenery', - ), - 74 => array( - 'Id' => 74, - 'Label' => 'Bright Blue Sky', - ), - 75 => array( - 'Id' => 75, - 'Label' => 'Romantic Sunset Glow', - ), - 76 => array( - 'Id' => 76, - 'Label' => 'Vivid Sunset Glow', - ), - 77 => array( - 'Id' => 77, - 'Label' => 'Glistening Water', - ), - 78 => array( - 'Id' => 78, - 'Label' => 'Clear Nightscape', - ), - 79 => array( - 'Id' => 79, - 'Label' => 'Cool Night Sky', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Warm Glowing Nightscape', - ), - 81 => array( - 'Id' => 81, - 'Label' => 'Artistic Nightscape', - ), - 82 => array( - 'Id' => 82, - 'Label' => 'Glittering Illuminations', - ), - 83 => array( - 'Id' => 83, - 'Label' => 'Clear Night Portrait', - ), - 84 => array( - 'Id' => 84, - 'Label' => 'Soft Image of a Flower', - ), - 85 => array( - 'Id' => 85, - 'Label' => 'Appetizing Food', - ), - 86 => array( - 'Id' => 86, - 'Label' => 'Cute Desert', - ), - 87 => array( - 'Id' => 87, - 'Label' => 'Freeze Animal Motion', - ), - 88 => array( - 'Id' => 88, - 'Label' => 'Clear Sports Shot', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Monochrome', - ), - 90 => array( - 'Id' => 90, - 'Label' => 'Creative Control', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ShutterType.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ShutterType.php deleted file mode 100644 index 7ff79f35c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ShutterType.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterType extends AbstractTag -{ - - protected $Id = 159; - - protected $Name = 'ShutterType'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Shutter Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Mechanical', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Electronic', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Hybrid', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/State.php b/lib/PHPExiftool/Driver/Tag/Panasonic/State.php deleted file mode 100644 index 57125f084..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/State.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class State extends AbstractTag -{ - - protected $Id = 107; - - protected $Name = 'State'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'State'; - - protected $local_g2 = 'Location'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/SweepPanoramaDirection.php b/lib/PHPExiftool/Driver/Tag/Panasonic/SweepPanoramaDirection.php deleted file mode 100644 index 4c7e2b4d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/SweepPanoramaDirection.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SweepPanoramaDirection extends AbstractTag -{ - - protected $Id = 147; - - protected $Name = 'SweepPanoramaDirection'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sweep Panorama Direction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Left to Right', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Right to Left', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Top to Bottom', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Bottom to Top', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/SweepPanoramaFieldOfView.php b/lib/PHPExiftool/Driver/Tag/Panasonic/SweepPanoramaFieldOfView.php deleted file mode 100644 index 2edca5511..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/SweepPanoramaFieldOfView.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SweepPanoramaFieldOfView extends AbstractTag -{ - - protected $Id = 148; - - protected $Name = 'SweepPanoramaFieldOfView'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sweep Panorama Field Of View'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/TextStamp.php b/lib/PHPExiftool/Driver/Tag/Panasonic/TextStamp.php deleted file mode 100644 index ac6d99fae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/TextStamp.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextStamp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TextStamp'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Text Stamp'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailHeight.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailHeight.php deleted file mode 100644 index 15db9e32e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailHeight'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailImage.php deleted file mode 100644 index 7ef9d2f23..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailImage.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16384; - - protected $flag_Binary = false; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailLength.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailLength.php deleted file mode 100644 index f5dd24a2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailLength'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32uRev'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailTest.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailTest.php deleted file mode 100644 index 4966f8b86..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailTest.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailTest extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'ThumbnailTest'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Test'; - - protected $flag_Permanent = true; - - protected $MaxLength = 600; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailWidth.php b/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailWidth.php deleted file mode 100644 index 4b2743adc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/ThumbnailWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailWidth'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/TimeSincePowerOn.php b/lib/PHPExiftool/Driver/Tag/Panasonic/TimeSincePowerOn.php deleted file mode 100644 index 65cfef22d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/TimeSincePowerOn.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSincePowerOn extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'TimeSincePowerOn'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Time Since Power On'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/TimerRecording.php b/lib/PHPExiftool/Driver/Tag/Panasonic/TimerRecording.php deleted file mode 100644 index 0beedbb27..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/TimerRecording.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimerRecording extends AbstractTag -{ - - protected $Id = 150; - - protected $Name = 'TimerRecording'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Timer Recording'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Time Lapse', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Stop-motion Animation', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Title.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Title.php deleted file mode 100644 index c6de632af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Title.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 101; - - protected $Name = 'Title'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Title'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/TouchAE.php b/lib/PHPExiftool/Driver/Tag/Panasonic/TouchAE.php deleted file mode 100644 index b75332564..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/TouchAE.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TouchAE extends AbstractTag -{ - - protected $Id = 171; - - protected $Name = 'TouchAE'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Touch AE'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Transform.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Transform.php deleted file mode 100644 index e626adf9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Transform.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Transform extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Transform'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Transform'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '-1 1' => array( - 'Id' => '-1 1', - 'Label' => 'Slim Low', - ), - '-3 2' => array( - 'Id' => '-3 2', - 'Label' => 'Slim High', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'Off', - ), - '1 1' => array( - 'Id' => '1 1', - 'Label' => 'Stretch Low', - ), - '3 2' => array( - 'Id' => '3 2', - 'Label' => 'Stretch High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/TravelDay.php b/lib/PHPExiftool/Driver/Tag/Panasonic/TravelDay.php deleted file mode 100644 index 1c4192053..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/TravelDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TravelDay extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'TravelDay'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Travel Day'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Version1.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Version1.php deleted file mode 100644 index 76567d8a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Version1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version1 extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'Version1'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Version 1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 14; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/Version2.php b/lib/PHPExiftool/Driver/Tag/Panasonic/Version2.php deleted file mode 100644 index 343090ba7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/Version2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version2 extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'Version2'; - - protected $FullName = 'Panasonic::PANA'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Version 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 14; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WBBlueLevel.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WBBlueLevel.php deleted file mode 100644 index e276de0f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WBBlueLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBlueLevel extends AbstractTag -{ - - protected $Id = 32774; - - protected $Name = 'WBBlueLevel'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Blue Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WBGreenLevel.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WBGreenLevel.php deleted file mode 100644 index 24f8730b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WBGreenLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGreenLevel extends AbstractTag -{ - - protected $Id = 32773; - - protected $Name = 'WBGreenLevel'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Green Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WBRedLevel.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WBRedLevel.php deleted file mode 100644 index a56013340..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WBRedLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRedLevel extends AbstractTag -{ - - protected $Id = 32772; - - protected $Name = 'WBRedLevel'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Red Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WBShiftAB.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WBShiftAB.php deleted file mode 100644 index 87a6c21e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WBShiftAB.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBShiftAB extends AbstractTag -{ - - protected $Id = 70; - - protected $Name = 'WBShiftAB'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Shift AB'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WBShiftGM.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WBShiftGM.php deleted file mode 100644 index c2538a872..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WBShiftGM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBShiftGM extends AbstractTag -{ - - protected $Id = 71; - - protected $Name = 'WBShiftGM'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Shift GM'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WhiteBalance.php deleted file mode 100644 index 1402786ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WhiteBalance.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Daylight', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Cloudy', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Incandescent', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Flash', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Black & White', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Manual', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Shade', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Kelvin', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WhiteBalanceBias.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WhiteBalanceBias.php deleted file mode 100644 index 0ff17cd4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WhiteBalanceBias.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceBias extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'WhiteBalanceBias'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'White Balance Bias'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Panasonic/WorldTimeLocation.php b/lib/PHPExiftool/Driver/Tag/Panasonic/WorldTimeLocation.php deleted file mode 100644 index 0ba6f69c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Panasonic/WorldTimeLocation.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Panasonic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorldTimeLocation extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'WorldTimeLocation'; - - protected $FullName = 'Panasonic::Main'; - - protected $GroupName = 'Panasonic'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Panasonic'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'World Time Location'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Home', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Destination', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionCorrection.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionCorrection.php deleted file mode 100644 index 355faa99e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionCorrection.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrection extends AbstractTag -{ - - protected $Id = '7.1'; - - protected $Name = 'DistortionCorrection'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionN.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionN.php deleted file mode 100644 index 8d290a410..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionN extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'DistortionN'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion N'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam02.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam02.php deleted file mode 100644 index feb803fb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam02.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionParam02 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'DistortionParam02'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Param 02'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam04.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam04.php deleted file mode 100644 index 57462a1e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam04.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionParam04 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'DistortionParam04'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Param 04'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam08.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam08.php deleted file mode 100644 index 2e1044b15..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam08.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionParam08 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'DistortionParam08'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Param 08'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam09.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam09.php deleted file mode 100644 index 354141df6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam09.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionParam09 extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'DistortionParam09'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Param 09'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam11.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam11.php deleted file mode 100644 index 87507c987..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionParam11.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionParam11 extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'DistortionParam11'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Param 11'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionScale.php b/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionScale.php deleted file mode 100644 index 0966957b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PanasonicRaw/DistortionScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PanasonicRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionScale extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'DistortionScale'; - - protected $FullName = 'PanasonicRaw::DistortionInfo'; - - protected $GroupName = 'PanasonicRaw'; - - protected $g0 = 'PanasonicRaw'; - - protected $g1 = 'PanasonicRaw'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Distortion Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEAperture.php deleted file mode 100644 index a1c285338..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEAperture extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEAperture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEApertureSteps.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEApertureSteps.php deleted file mode 100644 index 03c329274..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEApertureSteps.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEApertureSteps extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEApertureSteps'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Aperture Steps'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEBXv.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEBXv.php deleted file mode 100644 index b1841a896..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEBXv.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEBXv extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEBXv'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'AEB Xv'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEError.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEError.php deleted file mode 100644 index 2f53fa306..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEError.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEError extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'AEError'; - - protected $FullName = 'Pentax::AEInfo2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'AE Error'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEExposureTime.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEExposureTime.php deleted file mode 100644 index a4e21373d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEFlags.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEFlags.php deleted file mode 100644 index edc51f169..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEFlags.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEFlags extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'AEFlags'; - - protected $FullName = 'Pentax::AEInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Flags'; - - protected $flag_Permanent = true; - - protected $Values = array( - 8 => array( - 'Id' => 8, - 'Label' => 'AE lock', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Flash recommended?', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Aperture wide open', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEISO.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEISO.php deleted file mode 100644 index 0af1abf76..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AE_ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AELock.php b/lib/PHPExiftool/Driver/Tag/Pentax/AELock.php deleted file mode 100644 index 776f7fa21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AELock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELock extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'AELock'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AE Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEMaxAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEMaxAperture.php deleted file mode 100644 index af16fbd87..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEMaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMaxAperture extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEMaxAperture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEMaxAperture2.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEMaxAperture2.php deleted file mode 100644 index 848aa3b85..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEMaxAperture2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMaxAperture2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEMaxAperture2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Max Aperture 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringMode.php deleted file mode 100644 index d6d6e5c4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMeteringMode extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'AEMeteringMode'; - - protected $FullName = 'Pentax::AEInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Center-weighted average', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringMode2.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringMode2.php deleted file mode 100644 index 003c06542..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringMode2.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMeteringMode2 extends AbstractTag -{ - - protected $Id = '13.1'; - - protected $Name = 'AEMeteringMode2'; - - protected $FullName = 'Pentax::AEInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Metering Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center-weighted average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringSegments.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringSegments.php deleted file mode 100644 index a22c0cc8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEMeteringSegments.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMeteringSegments extends AbstractTag -{ - - protected $Id = 521; - - protected $Name = 'AEMeteringSegments'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Metering Segments'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEMinAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEMinAperture.php deleted file mode 100644 index b3d9e6554..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEMinAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMinAperture extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEMinAperture'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Min Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEMinExposureTime.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEMinExposureTime.php deleted file mode 100644 index 9c67a4219..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEMinExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEMinExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEMinExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Min Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEProgramMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEProgramMode.php deleted file mode 100644 index e4baebdb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEProgramMode.php +++ /dev/null @@ -1,168 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEProgramMode extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AEProgramMode'; - - protected $FullName = 'Pentax::AEInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Program Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'M, P or TAv', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Av, B or X', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Tv', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Sv or Green Mode', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Hi-speed Program', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Hi-speed Program (P-Shift)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'DOF Program', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'DOF Program (P-Shift)', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'MTF Program', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'MTF Program (P-Shift)', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Standard', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Portrait', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Landscape', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Macro', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Sport', - ), - 75 => array( - 'Id' => 75, - 'Label' => 'Night Scene Portrait', - ), - 83 => array( - 'Id' => 83, - 'Label' => 'No Flash', - ), - 91 => array( - 'Id' => 91, - 'Label' => 'Night Scene', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'Surf & Snow', - ), - 104 => array( - 'Id' => 104, - 'Label' => 'Night Snap', - ), - 107 => array( - 'Id' => 107, - 'Label' => 'Text', - ), - 115 => array( - 'Id' => 115, - 'Label' => 'Sunset', - ), - 123 => array( - 'Id' => 123, - 'Label' => 'Kids', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Pet', - ), - 139 => array( - 'Id' => 139, - 'Label' => 'Candlelight', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'SCN', - ), - 147 => array( - 'Id' => 147, - 'Label' => 'Museum', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Program', - ), - 184 => array( - 'Id' => 184, - 'Label' => 'Shallow DOF Program', - ), - 216 => array( - 'Id' => 216, - 'Label' => 'HDR', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEWhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEWhiteBalance.php deleted file mode 100644 index bac814f32..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEWhiteBalance.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEWhiteBalance extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'AEWhiteBalance'; - - protected $FullName = 'Pentax::AEInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Daylight', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Shade', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Cloudy', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Daylight Fluorescent', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Day White Fluorescent', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'White Fluorescent', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Tungsten', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AEXv.php b/lib/PHPExiftool/Driver/Tag/Pentax/AEXv.php deleted file mode 100644 index 1738a40a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AEXv.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AEXv extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AEXv'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Xv'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFAdjustment.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFAdjustment.php deleted file mode 100644 index 7a9401be7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFAdjustment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAdjustment extends AbstractTag -{ - - protected $Id = 114; - - protected $Name = 'AFAdjustment'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Adjustment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFDefocus.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFDefocus.php deleted file mode 100644 index 2be977041..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFDefocus.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFDefocus extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AFDefocus'; - - protected $FullName = 'Pentax::AFInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Defocus'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFIntegrationTime.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFIntegrationTime.php deleted file mode 100644 index 20b2b3c0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFIntegrationTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFIntegrationTime extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'AFIntegrationTime'; - - protected $FullName = 'Pentax::AFInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Integration Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFPointMode.php deleted file mode 100644 index 07ca16a98..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointMode extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'AFPointMode'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Select', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Fixed Center', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointSelected.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFPointSelected.php deleted file mode 100644 index 1378eb405..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointSelected.php +++ /dev/null @@ -1,358 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelected extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'AFPointSelected'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Point Selected'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Upper-left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Left', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Mid-left', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Center', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Mid-right', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Right', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Lower-left', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Bottom', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Lower-right', - ), - 12 => array( - 'Id' => 65531, - 'Label' => 'AF Select', - ), - 13 => array( - 'Id' => 65532, - 'Label' => 'Face Detect AF', - ), - 14 => array( - 'Id' => 65533, - 'Label' => 'Automatic Tracking AF', - ), - 15 => array( - 'Id' => 65534, - 'Label' => 'Fixed Center', - ), - 16 => array( - 'Id' => 65535, - 'Label' => 'Auto', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 18 => array( - 'Id' => 1, - 'Label' => 'Top-left', - ), - 19 => array( - 'Id' => 2, - 'Label' => 'Top Near-left', - ), - 20 => array( - 'Id' => 3, - 'Label' => 'Top', - ), - 21 => array( - 'Id' => 4, - 'Label' => 'Top Near-right', - ), - 22 => array( - 'Id' => 5, - 'Label' => 'Top-right', - ), - 23 => array( - 'Id' => 6, - 'Label' => 'Upper-left', - ), - 24 => array( - 'Id' => 7, - 'Label' => 'Upper Near-left', - ), - 25 => array( - 'Id' => 8, - 'Label' => 'Upper-middle', - ), - 26 => array( - 'Id' => 9, - 'Label' => 'Upper Near-right', - ), - 27 => array( - 'Id' => 10, - 'Label' => 'Upper-right', - ), - 28 => array( - 'Id' => 11, - 'Label' => 'Far Left', - ), - 29 => array( - 'Id' => 12, - 'Label' => 'Left', - ), - 30 => array( - 'Id' => 13, - 'Label' => 'Near-left', - ), - 31 => array( - 'Id' => 14, - 'Label' => 'Center', - ), - 32 => array( - 'Id' => 15, - 'Label' => 'Near-right', - ), - 33 => array( - 'Id' => 16, - 'Label' => 'Right', - ), - 34 => array( - 'Id' => 17, - 'Label' => 'Far Right', - ), - 35 => array( - 'Id' => 18, - 'Label' => 'Lower-left', - ), - 36 => array( - 'Id' => 19, - 'Label' => 'Lower Near-left', - ), - 37 => array( - 'Id' => 20, - 'Label' => 'Lower-middle', - ), - 38 => array( - 'Id' => 21, - 'Label' => 'Lower Near-right', - ), - 39 => array( - 'Id' => 22, - 'Label' => 'Lower-right', - ), - 40 => array( - 'Id' => 23, - 'Label' => 'Bottom-left', - ), - 41 => array( - 'Id' => 24, - 'Label' => 'Bottom Near-left', - ), - 42 => array( - 'Id' => 25, - 'Label' => 'Bottom', - ), - 43 => array( - 'Id' => 26, - 'Label' => 'Bottom Near-right', - ), - 44 => array( - 'Id' => 27, - 'Label' => 'Bottom-right', - ), - 45 => array( - 'Id' => 257, - 'Label' => 'Zone Select Top-left', - ), - 46 => array( - 'Id' => 258, - 'Label' => 'Zone Select Top Near-left', - ), - 47 => array( - 'Id' => 259, - 'Label' => 'Zone Select Top', - ), - 48 => array( - 'Id' => 260, - 'Label' => 'Zone Select Top Near-right', - ), - 49 => array( - 'Id' => 261, - 'Label' => 'Zone Select Top-right', - ), - 50 => array( - 'Id' => 262, - 'Label' => 'Zone Select Upper-left', - ), - 51 => array( - 'Id' => 263, - 'Label' => 'Zone Select Upper Near-left', - ), - 52 => array( - 'Id' => 264, - 'Label' => 'Zone Select Upper-middle', - ), - 53 => array( - 'Id' => 265, - 'Label' => 'Zone Select Upper Near-right', - ), - 54 => array( - 'Id' => 266, - 'Label' => 'Zone Select Upper-right', - ), - 55 => array( - 'Id' => 267, - 'Label' => 'Zone Select Far Left', - ), - 56 => array( - 'Id' => 268, - 'Label' => 'Zone Select Left', - ), - 57 => array( - 'Id' => 269, - 'Label' => 'Zone Select Near-left', - ), - 58 => array( - 'Id' => 270, - 'Label' => 'Zone Select Center', - ), - 59 => array( - 'Id' => 271, - 'Label' => 'Zone Select Near-right', - ), - 60 => array( - 'Id' => 272, - 'Label' => 'Zone Select Right', - ), - 61 => array( - 'Id' => 273, - 'Label' => 'Zone Select Far Right', - ), - 62 => array( - 'Id' => 274, - 'Label' => 'Zone Select Lower-left', - ), - 63 => array( - 'Id' => 275, - 'Label' => 'Zone Select Lower Near-left', - ), - 64 => array( - 'Id' => 276, - 'Label' => 'Zone Select Lower-middle', - ), - 65 => array( - 'Id' => 277, - 'Label' => 'Zone Select Lower Near-right', - ), - 66 => array( - 'Id' => 278, - 'Label' => 'Zone Select Lower-right', - ), - 67 => array( - 'Id' => 279, - 'Label' => 'Zone Select Bottom-left', - ), - 68 => array( - 'Id' => 280, - 'Label' => 'Zone Select Bottom Near-left', - ), - 69 => array( - 'Id' => 281, - 'Label' => 'Zone Select Bottom', - ), - 70 => array( - 'Id' => 282, - 'Label' => 'Zone Select Bottom Near-right', - ), - 71 => array( - 'Id' => 283, - 'Label' => 'Zone Select Bottom-right', - ), - 72 => array( - 'Id' => 65531, - 'Label' => 'AF Select', - ), - 73 => array( - 'Id' => 65532, - 'Label' => 'Face Detect AF', - ), - 74 => array( - 'Id' => 65533, - 'Label' => 'Automatic Tracking AF', - ), - 75 => array( - 'Id' => 65534, - 'Label' => 'Fixed Center', - ), - 76 => array( - 'Id' => 65535, - 'Label' => 'Auto', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointSelected2.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFPointSelected2.php deleted file mode 100644 index 1a62e733b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointSelected2.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelected2 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AFPointSelected2'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Point Selected 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Upper-left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Upper-right', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Mid-left', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Center', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Mid-right', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Right', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Lower-left', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Bottom', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Lower-right', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsInFocus.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsInFocus.php deleted file mode 100644 index fd8b1ff06..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsInFocus.php +++ /dev/null @@ -1,338 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsInFocus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFPointsInFocus'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'AF Points In Focus'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Lower-left, Bottom', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Bottom', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Lower-right, Bottom', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Mid-left, Center', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Center (horizontal)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Mid-right, Center', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Upper-left, Top', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Top', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Upper-right, Top', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Right', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Lower-left, Mid-left', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Upper-left, Mid-left', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Bottom, Center', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Top, Center', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Lower-right, Mid-right', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Upper-right, Mid-right', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Left', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Mid-left', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Center (vertical)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Mid-right', - ), - 21 => array( - 'Id' => 0, - 'Label' => 'Fixed Center or Multiple', - ), - 22 => array( - 'Id' => 1, - 'Label' => 'Top-left', - ), - 23 => array( - 'Id' => 2, - 'Label' => 'Top-center', - ), - 24 => array( - 'Id' => 3, - 'Label' => 'Top-right', - ), - 25 => array( - 'Id' => 4, - 'Label' => 'Left', - ), - 26 => array( - 'Id' => 5, - 'Label' => 'Center', - ), - 27 => array( - 'Id' => 6, - 'Label' => 'Right', - ), - 28 => array( - 'Id' => 7, - 'Label' => 'Bottom-left', - ), - 29 => array( - 'Id' => 8, - 'Label' => 'Bottom-center', - ), - 30 => array( - 'Id' => 9, - 'Label' => 'Bottom-right', - ), - 31 => array( - 'Id' => 65535, - 'Label' => 'None', - ), - 32 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 33 => array( - 'Id' => 1, - 'Label' => 'Top-left', - ), - 34 => array( - 'Id' => 2, - 'Label' => 'Top Near-left', - ), - 35 => array( - 'Id' => 4, - 'Label' => 'Top', - ), - 36 => array( - 'Id' => 8, - 'Label' => 'Top Near-right', - ), - 37 => array( - 'Id' => 16, - 'Label' => 'Top-right', - ), - 38 => array( - 'Id' => 32, - 'Label' => 'Upper-left', - ), - 39 => array( - 'Id' => 64, - 'Label' => 'Upper Near-left', - ), - 40 => array( - 'Id' => 128, - 'Label' => 'Upper-middle', - ), - 41 => array( - 'Id' => 256, - 'Label' => 'Upper Near-right', - ), - 42 => array( - 'Id' => 512, - 'Label' => 'Upper-right', - ), - 43 => array( - 'Id' => 1024, - 'Label' => 'Far Left', - ), - 44 => array( - 'Id' => 2048, - 'Label' => 'Left', - ), - 45 => array( - 'Id' => 4096, - 'Label' => 'Near-left', - ), - 46 => array( - 'Id' => 8192, - 'Label' => 'Center', - ), - 47 => array( - 'Id' => 16384, - 'Label' => 'Near-right', - ), - 48 => array( - 'Id' => 32768, - 'Label' => 'Right', - ), - 49 => array( - 'Id' => 65536, - 'Label' => 'Far Right', - ), - 50 => array( - 'Id' => 131072, - 'Label' => 'Lower-left', - ), - 51 => array( - 'Id' => 262144, - 'Label' => 'Lower Near-left', - ), - 52 => array( - 'Id' => 524288, - 'Label' => 'Lower-middle', - ), - 53 => array( - 'Id' => 1048576, - 'Label' => 'Lower Near-right', - ), - 54 => array( - 'Id' => 2097152, - 'Label' => 'Lower-right', - ), - 55 => array( - 'Id' => 4194304, - 'Label' => 'Bottom-left', - ), - 56 => array( - 'Id' => 8388608, - 'Label' => 'Bottom Near-left', - ), - 57 => array( - 'Id' => 16777216, - 'Label' => 'Bottom', - ), - 58 => array( - 'Id' => 33554432, - 'Label' => 'Bottom Near-right', - ), - 59 => array( - 'Id' => 67108864, - 'Label' => 'Bottom-right', - ), - 60 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 61 => array( - 'Id' => 1, - 'Label' => 'Upper-left', - ), - 62 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 63 => array( - 'Id' => 4, - 'Label' => 'Upper-right', - ), - 64 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 65 => array( - 'Id' => 16, - 'Label' => 'Mid-left', - ), - 66 => array( - 'Id' => 32, - 'Label' => 'Center', - ), - 67 => array( - 'Id' => 64, - 'Label' => 'Mid-right', - ), - 68 => array( - 'Id' => 128, - 'Label' => 'Right', - ), - 69 => array( - 'Id' => 256, - 'Label' => 'Lower-left', - ), - 70 => array( - 'Id' => 512, - 'Label' => 'Bottom', - ), - 71 => array( - 'Id' => 1024, - 'Label' => 'Lower-right', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsUnknown1.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsUnknown1.php deleted file mode 100644 index f6008e1e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsUnknown1.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsUnknown1 extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AFPointsUnknown1'; - - protected $FullName = 'Pentax::AFInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Points Unknown 1'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Upper-left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Upper-right', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Mid-left', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Center', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Mid-right', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Right', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Lower-left', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Bottom', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Lower-right', - ), - 1911 => array( - 'Id' => 1911, - 'Label' => 'Central 9 points', - ), - 2047 => array( - 'Id' => 2047, - 'Label' => 'All', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsUnknown2.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsUnknown2.php deleted file mode 100644 index 508b98ec1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFPointsUnknown2.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsUnknown2 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AFPointsUnknown2'; - - protected $FullName = 'Pentax::AFInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Points Unknown 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Upper-left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Upper-right', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Mid-left', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Center', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Mid-right', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Right', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Lower-left', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Bottom', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Lower-right', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AFPredictor.php b/lib/PHPExiftool/Driver/Tag/Pentax/AFPredictor.php deleted file mode 100644 index 6104296eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AFPredictor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPredictor extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AFPredictor'; - - protected $FullName = 'Pentax::AFInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Predictor'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ApertureRingUse.php b/lib/PHPExiftool/Driver/Tag/Pentax/ApertureRingUse.php deleted file mode 100644 index 5275c4cef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ApertureRingUse.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureRingUse extends AbstractTag -{ - - protected $Id = '1.4'; - - protected $Name = 'ApertureRingUse'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Aperture Ring Use'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Prohibited', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Permitted', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Artist.php b/lib/PHPExiftool/Driver/Tag/Pentax/Artist.php deleted file mode 100644 index 78528656f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Artist.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 558; - - protected $Name = 'Artist'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AspectRatio.php b/lib/PHPExiftool/Driver/Tag/Pentax/AspectRatio.php deleted file mode 100644 index e0405f089..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AspectRatio.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatio extends AbstractTag -{ - - protected $Id = 128; - - protected $Name = 'AspectRatio'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Aspect Ratio'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4:3', - ), - 1 => array( - 'Id' => 1, - 'Label' => '3:2', - ), - 2 => array( - 'Id' => 2, - 'Label' => '16:9', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1:1', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AudioCodecID.php b/lib/PHPExiftool/Driver/Tag/Pentax/AudioCodecID.php deleted file mode 100644 index bf8473a8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AudioCodecID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecID extends AbstractTag -{ - - protected $Id = 371; - - protected $Name = 'AudioCodecID'; - - protected $FullName = 'Pentax::PENT'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Codec ID'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AutoAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/AutoAperture.php deleted file mode 100644 index defbb1cc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AutoAperture.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoAperture extends AbstractTag -{ - - protected $Id = '0.1'; - - protected $Name = 'AutoAperture'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Auto Aperture'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AutoBracketing.php b/lib/PHPExiftool/Driver/Tag/Pentax/AutoBracketing.php deleted file mode 100644 index f86fea467..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AutoBracketing.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketing extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'AutoBracketing'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracketing'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/AvApertureSetting.php b/lib/PHPExiftool/Driver/Tag/Pentax/AvApertureSetting.php deleted file mode 100644 index a22abd488..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/AvApertureSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvApertureSetting extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'AvApertureSetting'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Av Aperture Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BaseExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Pentax/BaseExposureCompensation.php deleted file mode 100644 index 9b2ab4c64..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BaseExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseExposureCompensation extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'BaseExposureCompensation'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Base Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BlackPoint.php b/lib/PHPExiftool/Driver/Tag/Pentax/BlackPoint.php deleted file mode 100644 index 68f858a77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BlackPoint.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackPoint extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'BlackPoint'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Black Point'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BleachBypassToning.php b/lib/PHPExiftool/Driver/Tag/Pentax/BleachBypassToning.php deleted file mode 100644 index 81bf2ee80..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BleachBypassToning.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BleachBypassToning extends AbstractTag -{ - - protected $Id = 127; - - protected $Name = 'BleachBypassToning'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Bleach Bypass Toning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Green', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Yellow', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Orange', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Red', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Magenta', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Purple', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Blue', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Cyan', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BlueBalance.php b/lib/PHPExiftool/Driver/Tag/Pentax/BlueBalance.php deleted file mode 100644 index 619da005c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BlueBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueBalance extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'BlueBalance'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Blue Balance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BlurControl.php b/lib/PHPExiftool/Driver/Tag/Pentax/BlurControl.php deleted file mode 100644 index f7a4966a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BlurControl.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlurControl extends AbstractTag -{ - - protected $Id = 130; - - protected $Name = 'BlurControl'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Blur Control'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Medium', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryADLoad.php b/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryADLoad.php deleted file mode 100644 index d0387d332..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryADLoad.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyBatteryADLoad extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'BodyBatteryADLoad'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Body Battery A/D Load'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryADNoLoad.php b/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryADNoLoad.php deleted file mode 100644 index 5ca2ec761..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryADNoLoad.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyBatteryADNoLoad extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'BodyBatteryADNoLoad'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Body Battery A/D No Load'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryState.php b/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryState.php deleted file mode 100644 index 2e2407fa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryState.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyBatteryState extends AbstractTag -{ - - protected $Id = '1.1'; - - protected $Name = 'BodyBatteryState'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Body Battery State'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 16, - 'Label' => 'Empty or Missing', - ), - 1 => array( - 'Id' => 32, - 'Label' => 'Almost Empty', - ), - 2 => array( - 'Id' => 48, - 'Label' => 'Running Low', - ), - 3 => array( - 'Id' => 64, - 'Label' => 'Full', - ), - 4 => array( - 'Id' => 16, - 'Label' => 'Empty or Missing', - ), - 5 => array( - 'Id' => 32, - 'Label' => 'Almost Empty', - ), - 6 => array( - 'Id' => 48, - 'Label' => 'Running Low', - ), - 7 => array( - 'Id' => 64, - 'Label' => 'Close to Full', - ), - 8 => array( - 'Id' => 80, - 'Label' => 'Full', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage1.php b/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage1.php deleted file mode 100644 index c6f3a20d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyBatteryVoltage1 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'BodyBatteryVoltage1'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Body Battery Voltage 1'; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage2.php b/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage2.php deleted file mode 100644 index 6026be1d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyBatteryVoltage2 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'BodyBatteryVoltage2'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Body Battery Voltage 2'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage3.php b/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage3.php deleted file mode 100644 index a1ae4fcf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyBatteryVoltage3 extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'BodyBatteryVoltage3'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Body Battery Voltage 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage4.php b/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage4.php deleted file mode 100644 index d9a8c89dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BodyBatteryVoltage4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyBatteryVoltage4 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'BodyBatteryVoltage4'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Body Battery Voltage 4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/BracketShotNumber.php b/lib/PHPExiftool/Driver/Tag/Pentax/BracketShotNumber.php deleted file mode 100644 index 8a916c86b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/BracketShotNumber.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketShotNumber extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'BracketShotNumber'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Bracket Shot Number'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1 of 2', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1 of 3', - ), - 5 => array( - 'Id' => 5, - 'Label' => '1 of 5', - ), - 18 => array( - 'Id' => 18, - 'Label' => '2 of 2', - ), - 19 => array( - 'Id' => 19, - 'Label' => '2 of 3', - ), - 21 => array( - 'Id' => 21, - 'Label' => '2 of 5', - ), - 35 => array( - 'Id' => 35, - 'Label' => '3 of 3', - ), - 37 => array( - 'Id' => 37, - 'Label' => '3 of 5', - ), - 53 => array( - 'Id' => 53, - 'Label' => '4 of 5', - ), - 69 => array( - 'Id' => 69, - 'Label' => '5 of 5', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CPUFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Pentax/CPUFirmwareVersion.php deleted file mode 100644 index ec20a15bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CPUFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CPUFirmwareVersion extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'CPUFirmwareVersion'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'CPU Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CameraOrientation.php b/lib/PHPExiftool/Driver/Tag/Pentax/CameraOrientation.php deleted file mode 100644 index e00f4c988..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CameraOrientation.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraOrientation extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CameraOrientation'; - - protected $FullName = 'Pentax::ShotInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Camera Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16 => array( - 'Id' => 16, - 'Label' => 'Horizontal (normal)', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Rotate 180', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Rotate 90 CW', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Rotate 270 CW', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Upwards', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Downwards', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature.php b/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature.php deleted file mode 100644 index c35a9ce94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature extends AbstractTag -{ - - protected $Id = 71; - - protected $Name = 'CameraTemperature'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature2.php b/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature2.php deleted file mode 100644 index f13d64496..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature2 extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'CameraTemperature2'; - - protected $FullName = 'Pentax::TempInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature3.php b/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature3.php deleted file mode 100644 index 9b5e50018..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature3 extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'CameraTemperature3'; - - protected $FullName = 'Pentax::TempInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature4.php b/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature4.php deleted file mode 100644 index 7fbaa4272..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature4 extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'CameraTemperature4'; - - protected $FullName = 'Pentax::TempInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature 4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature5.php b/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature5.php deleted file mode 100644 index 8c607cc6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CameraTemperature5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature5 extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'CameraTemperature5'; - - protected $FullName = 'Pentax::TempInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature 5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ChromaticAberrationCorrection.php b/lib/PHPExiftool/Driver/Tag/Pentax/ChromaticAberrationCorrection.php deleted file mode 100644 index 39ba5c12c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ChromaticAberrationCorrection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationCorrection extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ChromaticAberrationCorrection'; - - protected $FullName = 'Pentax::LensCorr'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorFilter.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorFilter.php deleted file mode 100644 index 622766301..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorFilter.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorFilter extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'ColorFilter'; - - protected $FullName = 'Pentax::Type2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Full', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Black & White', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Sepia', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorMatrixA.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorMatrixA.php deleted file mode 100644 index 2ef06cd07..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorMatrixA.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrixA extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'ColorMatrixA'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Matrix A'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorMatrixB.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorMatrixB.php deleted file mode 100644 index 531b54f1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorMatrixB.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrixB extends AbstractTag -{ - - protected $Id = 516; - - protected $Name = 'ColorMatrixB'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Color Matrix B'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorSpace.php deleted file mode 100644 index d66a3c86b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorSpace.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 55; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'sRGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adobe RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempCloudy.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempCloudy.php deleted file mode 100644 index 024b70a26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempCloudy extends AbstractTag -{ - - protected $Id = 85; - - protected $Name = 'ColorTempCloudy'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempDaylight.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempDaylight.php deleted file mode 100644 index e183fe2dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempDaylight extends AbstractTag -{ - - protected $Id = 83; - - protected $Name = 'ColorTempDaylight'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFlash.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFlash.php deleted file mode 100644 index af2e6ed25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempFlash extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'ColorTempFlash'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentD.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentD.php deleted file mode 100644 index 36947770d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentD.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempFluorescentD extends AbstractTag -{ - - protected $Id = 87; - - protected $Name = 'ColorTempFluorescentD'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Fluorescent D'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentN.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentN.php deleted file mode 100644 index 80be914c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentN.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempFluorescentN extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'ColorTempFluorescentN'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Fluorescent N'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentW.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentW.php deleted file mode 100644 index 912754226..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempFluorescentW.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempFluorescentW extends AbstractTag -{ - - protected $Id = 89; - - protected $Name = 'ColorTempFluorescentW'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Fluorescent W'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempShade.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempShade.php deleted file mode 100644 index 0fe34d334..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempShade extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'ColorTempShade'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempTungsten.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempTungsten.php deleted file mode 100644 index 28ae6b76d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTempTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempTungsten extends AbstractTag -{ - - protected $Id = 86; - - protected $Name = 'ColorTempTungsten'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Color Temp Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/Pentax/ColorTemperature.php deleted file mode 100644 index 349ebe957..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 80; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjust.php b/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjust.php deleted file mode 100644 index 41e6f69a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjust.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionAdjust extends AbstractTag -{ - - protected $Id = '0.1'; - - protected $Name = 'CompositionAdjust'; - - protected $FullName = 'Pentax::LevelInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Composition Adjust'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Composition Adjust', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Composition Adjust + Horizon Correction', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'Horizon Correction', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustRotation.php b/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustRotation.php deleted file mode 100644 index a15aaf40a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustRotation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionAdjustRotation extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'CompositionAdjustRotation'; - - protected $FullName = 'Pentax::LevelInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Composition Adjust Rotation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustX.php b/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustX.php deleted file mode 100644 index 355ee5ed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionAdjustX extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'CompositionAdjustX'; - - protected $FullName = 'Pentax::LevelInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Composition Adjust X'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustY.php b/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustY.php deleted file mode 100644 index 485ae7f22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CompositionAdjustY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionAdjustY extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CompositionAdjustY'; - - protected $FullName = 'Pentax::LevelInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Composition Adjust Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Contrast.php b/lib/PHPExiftool/Driver/Tag/Pentax/Contrast.php deleted file mode 100644 index f600a674a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Contrast.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Contrast'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Med Low', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Med High', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Very Low', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Very High', - ), - 7 => array( - 'Id' => 7, - 'Label' => '-4', - ), - 8 => array( - 'Id' => 8, - 'Label' => '+4', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastDetectAFArea.php b/lib/PHPExiftool/Driver/Tag/Pentax/ContrastDetectAFArea.php deleted file mode 100644 index 882284cf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastDetectAFArea.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastDetectAFArea extends AbstractTag -{ - - protected $Id = 561; - - protected $Name = 'ContrastDetectAFArea'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Contrast Detect AF Area'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastHighlight.php b/lib/PHPExiftool/Driver/Tag/Pentax/ContrastHighlight.php deleted file mode 100644 index d180df919..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastHighlight.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastHighlight extends AbstractTag -{ - - protected $Id = 109; - - protected $Name = 'ContrastHighlight'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Contrast Highlight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '-1 0' => array( - 'Id' => '-1 0', - 'Label' => '-1', - ), - '-2 0' => array( - 'Id' => '-2 0', - 'Label' => '-2', - ), - '-3 0' => array( - 'Id' => '-3 0', - 'Label' => '-3', - ), - '-4 0' => array( - 'Id' => '-4 0', - 'Label' => '-4', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 0, - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 1, - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 2, - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 3, - ), - '4 0' => array( - 'Id' => '4 0', - 'Label' => 4, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastHighlightShadowAdj.php b/lib/PHPExiftool/Driver/Tag/Pentax/ContrastHighlightShadowAdj.php deleted file mode 100644 index e585cc9a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastHighlightShadowAdj.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastHighlightShadowAdj extends AbstractTag -{ - - protected $Id = 111; - - protected $Name = 'ContrastHighlightShadowAdj'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Contrast Highlight/Shadow Adj'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastShadow.php b/lib/PHPExiftool/Driver/Tag/Pentax/ContrastShadow.php deleted file mode 100644 index 8be29cbb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ContrastShadow.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastShadow extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'ContrastShadow'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Contrast Shadow'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '-1 0' => array( - 'Id' => '-1 0', - 'Label' => '-1', - ), - '-2 0' => array( - 'Id' => '-2 0', - 'Label' => '-2', - ), - '-3 0' => array( - 'Id' => '-3 0', - 'Label' => '-3', - ), - '-4 0' => array( - 'Id' => '-4 0', - 'Label' => '-4', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 0, - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 1, - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 2, - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 3, - ), - '4 0' => array( - 'Id' => '4 0', - 'Label' => 4, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Copyright.php b/lib/PHPExiftool/Driver/Tag/Pentax/Copyright.php deleted file mode 100644 index a09ecab02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 559; - - protected $Name = 'Copyright'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CrossProcess.php b/lib/PHPExiftool/Driver/Tag/Pentax/CrossProcess.php deleted file mode 100644 index 072b0b177..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CrossProcess.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CrossProcess extends AbstractTag -{ - - protected $Id = 123; - - protected $Name = 'CrossProcess'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Cross Process'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Random', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Preset 1', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Preset 2', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Preset 3', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Favorite 1', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Favorite 2', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Favorite 3', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/CrossProcessParams.php b/lib/PHPExiftool/Driver/Tag/Pentax/CrossProcessParams.php deleted file mode 100644 index df5c9687b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/CrossProcessParams.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CrossProcessParams extends AbstractTag -{ - - protected $Id = 565; - - protected $Name = 'CrossProcessParams'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Cross Process Params'; - - protected $flag_Permanent = true; - - protected $MaxLength = 10; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DSPFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Pentax/DSPFirmwareVersion.php deleted file mode 100644 index dbbbdb229..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DSPFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DSPFirmwareVersion extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'DSPFirmwareVersion'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'DSP Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DataDump.php b/lib/PHPExiftool/Driver/Tag/Pentax/DataDump.php deleted file mode 100644 index cec54b02a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DataDump.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDump extends AbstractTag -{ - - protected $Id = 1022; - - protected $Name = 'DataDump'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Dump'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Date.php b/lib/PHPExiftool/Driver/Tag/Pentax/Date.php deleted file mode 100644 index 38cee964e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Date.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Date'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DateTime1.php b/lib/PHPExiftool/Driver/Tag/Pentax/DateTime1.php deleted file mode 100644 index 6bdbab6b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DateTime1.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTime1 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTime1'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Date Time 1'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DateTime2.php b/lib/PHPExiftool/Driver/Tag/Pentax/DateTime2.php deleted file mode 100644 index b0e963af4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DateTime2.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTime2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTime2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Date Time 2'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DestinationCity.php b/lib/PHPExiftool/Driver/Tag/Pentax/DestinationCity.php deleted file mode 100644 index 62c241bb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DestinationCity.php +++ /dev/null @@ -1,350 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DestinationCity extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DestinationCity'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Destination City'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Pago Pago', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Honolulu', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Anchorage', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Vancouver', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'San Francisco', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Los Angeles', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Calgary', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Denver', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Mexico City', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Chicago', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Miami', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Toronto', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'New York', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Santiago', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Caracus', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Halifax', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Buenos Aires', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Sao Paulo', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Rio de Janeiro', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Madrid', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'London', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Paris', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Milan', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Rome', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Berlin', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Johannesburg', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Istanbul', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Cairo', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Jerusalem', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Moscow', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Jeddah', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Tehran', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Dubai', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Karachi', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Kabul', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Male', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Delhi', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Colombo', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Kathmandu', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Dacca', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Yangon', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Bangkok', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Kuala Lumpur', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Vientiane', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Singapore', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Phnom Penh', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Ho Chi Minh', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Jakarta', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Hong Kong', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Perth', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Beijing', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Shanghai', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Manila', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Taipei', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Seoul', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Adelaide', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Tokyo', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Guam', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Sydney', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Noumea', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Wellington', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Auckland', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Lima', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Dakar', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Algiers', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Helsinki', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Athens', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Nairobi', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Amsterdam', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Stockholm', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Lisbon', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Copenhagen', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Warsaw', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'Prague', - ), - 74 => array( - 'Id' => 74, - 'Label' => 'Budapest', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DestinationCityCode.php b/lib/PHPExiftool/Driver/Tag/Pentax/DestinationCityCode.php deleted file mode 100644 index 4253a6058..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DestinationCityCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DestinationCityCode extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'DestinationCityCode'; - - protected $FullName = 'Pentax::Type2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Destination City Code'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DestinationDST.php b/lib/PHPExiftool/Driver/Tag/Pentax/DestinationDST.php deleted file mode 100644 index d3f4a44a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DestinationDST.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DestinationDST extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DestinationDST'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Destination DST'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter01.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter01.php deleted file mode 100644 index 85d4c3d8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter01.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter01 extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'DigitalFilter01'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 01'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter02.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter02.php deleted file mode 100644 index d179abf37..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter02.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter02 extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'DigitalFilter02'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 02'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter03.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter03.php deleted file mode 100644 index a661b2805..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter03.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter03 extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'DigitalFilter03'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 03'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter04.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter04.php deleted file mode 100644 index 88a58f797..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter04.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter04 extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'DigitalFilter04'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 04'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter05.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter05.php deleted file mode 100644 index 79f4e76cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter05.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter05 extends AbstractTag -{ - - protected $Id = 73; - - protected $Name = 'DigitalFilter05'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 05'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter06.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter06.php deleted file mode 100644 index 4f090c414..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter06.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter06 extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'DigitalFilter06'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 06'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter07.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter07.php deleted file mode 100644 index 0b5912904..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter07.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter07 extends AbstractTag -{ - - protected $Id = 107; - - protected $Name = 'DigitalFilter07'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 07'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter08.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter08.php deleted file mode 100644 index 157212410..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter08.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter08 extends AbstractTag -{ - - protected $Id = 124; - - protected $Name = 'DigitalFilter08'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 08'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter09.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter09.php deleted file mode 100644 index 2475c36d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter09.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter09 extends AbstractTag -{ - - protected $Id = 141; - - protected $Name = 'DigitalFilter09'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 09'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter10.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter10.php deleted file mode 100644 index 5de6fc64e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter10.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter10 extends AbstractTag -{ - - protected $Id = 158; - - protected $Name = 'DigitalFilter10'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 10'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter11.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter11.php deleted file mode 100644 index 6f6bb8d4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter11.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter11 extends AbstractTag -{ - - protected $Id = 175; - - protected $Name = 'DigitalFilter11'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 11'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter12.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter12.php deleted file mode 100644 index 18770f4b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter12.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter12 extends AbstractTag -{ - - protected $Id = 192; - - protected $Name = 'DigitalFilter12'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 12'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter13.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter13.php deleted file mode 100644 index dfc997977..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter13.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter13 extends AbstractTag -{ - - protected $Id = 209; - - protected $Name = 'DigitalFilter13'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 13'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter14.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter14.php deleted file mode 100644 index af502d424..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter14.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter14 extends AbstractTag -{ - - protected $Id = 226; - - protected $Name = 'DigitalFilter14'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 14'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter15.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter15.php deleted file mode 100644 index e96144834..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter15.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter15 extends AbstractTag -{ - - protected $Id = 243; - - protected $Name = 'DigitalFilter15'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 15'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter16.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter16.php deleted file mode 100644 index ad9a8a540..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter16.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter16 extends AbstractTag -{ - - protected $Id = 260; - - protected $Name = 'DigitalFilter16'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 16'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter17.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter17.php deleted file mode 100644 index 7f282e2d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter17.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter17 extends AbstractTag -{ - - protected $Id = 277; - - protected $Name = 'DigitalFilter17'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 17'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter18.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter18.php deleted file mode 100644 index 96cecb043..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter18.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter18 extends AbstractTag -{ - - protected $Id = 294; - - protected $Name = 'DigitalFilter18'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 18'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter19.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter19.php deleted file mode 100644 index 4505122b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter19.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter19 extends AbstractTag -{ - - protected $Id = 311; - - protected $Name = 'DigitalFilter19'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 19'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter20.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter20.php deleted file mode 100644 index 56f56989c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalFilter20.php +++ /dev/null @@ -1,138 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter20 extends AbstractTag -{ - - protected $Id = 328; - - protected $Name = 'DigitalFilter20'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Digital Filter 20'; - - protected $flag_Permanent = true; - - protected $MaxLength = 17; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Base Parameter Adjust', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft Focus', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High Contrast', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Color Filter', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Extract Color', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Slim', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fisheye', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Toy Camera', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Retro', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Pastel', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Water Color', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'HDR', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Starburst', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Posterization', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sketch Filter', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Shading', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Invert Color', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Tone Expansion', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Custom Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Pentax/DigitalZoom.php deleted file mode 100644 index c51b5e44c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DigitalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DistortionCorrection.php b/lib/PHPExiftool/Driver/Tag/Pentax/DistortionCorrection.php deleted file mode 100644 index 9d7a3857a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DistortionCorrection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrection extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DistortionCorrection'; - - protected $FullName = 'Pentax::LensCorr'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/DriveMode.php deleted file mode 100644 index 021f04d9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DriveMode.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'DriveMode'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Drive Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single-frame', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous (Lo)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Burst', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Continuous (Medium)', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Video', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DriveMode2.php b/lib/PHPExiftool/Driver/Tag/Pentax/DriveMode2.php deleted file mode 100644 index 5fe38aad0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DriveMode2.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode2 extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'DriveMode2'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Drive Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single-frame', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous (Lo)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Self-timer (12 s)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Self-timer (2 s)', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Remote Control (3 s delay)', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Remote Control', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Exposure Bracket', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Multiple Exposure', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/DynamicRangeExpansion.php b/lib/PHPExiftool/Driver/Tag/Pentax/DynamicRangeExpansion.php deleted file mode 100644 index 4aea50226..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/DynamicRangeExpansion.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeExpansion extends AbstractTag -{ - - protected $Id = 105; - - protected $Name = 'DynamicRangeExpansion'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Expansion'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/EDialInProgram.php b/lib/PHPExiftool/Driver/Tag/Pentax/EDialInProgram.php deleted file mode 100644 index 5badd6d8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/EDialInProgram.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EDialInProgram extends AbstractTag -{ - - protected $Id = '1.3'; - - protected $Name = 'E-DialInProgram'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'E-Dial In Program'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Tv or Av', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'P Shift', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/EVSteps.php b/lib/PHPExiftool/Driver/Tag/Pentax/EVSteps.php deleted file mode 100644 index bc9e0d76e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/EVSteps.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EVSteps extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EVSteps'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'EV Steps'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1/2 EV Steps', - ), - 1 => array( - 'Id' => 32, - 'Label' => '1/3 EV Steps', - ), - 2 => array( - 'Id' => 0, - 'Label' => '1/2 EV Steps', - ), - 3 => array( - 'Id' => 1, - 'Label' => '1/3 EV Steps', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/EffectiveLV.php b/lib/PHPExiftool/Driver/Tag/Pentax/EffectiveLV.php deleted file mode 100644 index ec922797d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/EffectiveLV.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectiveLV extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'EffectiveLV'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Effective LV'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ExposureBracketStepSize.php b/lib/PHPExiftool/Driver/Tag/Pentax/ExposureBracketStepSize.php deleted file mode 100644 index 9ef14f8a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ExposureBracketStepSize.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureBracketStepSize extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ExposureBracketStepSize'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Bracket Step Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 3 => array( - 'Id' => 3, - 'Label' => '0.3', - ), - 4 => array( - 'Id' => 4, - 'Label' => '0.5', - ), - 5 => array( - 'Id' => 5, - 'Label' => '0.7', - ), - 8 => array( - 'Id' => 8, - 'Label' => '1.0', - ), - 11 => array( - 'Id' => 11, - 'Label' => '1.3', - ), - 12 => array( - 'Id' => 12, - 'Label' => '1.5', - ), - 13 => array( - 'Id' => 13, - 'Label' => '1.7', - ), - 16 => array( - 'Id' => 16, - 'Label' => '2.0', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Pentax/ExposureCompensation.php deleted file mode 100644 index 668422a97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Pentax/ExposureTime.php deleted file mode 100644 index c93bb83a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashBounce.php b/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashBounce.php deleted file mode 100644 index 99a6204a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashBounce.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashBounce extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'ExternalFlashBounce'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'External Flash Bounce'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Direct', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Bounce', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashExposureComp.php deleted file mode 100644 index 19c220ad8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashExposureComp.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashExposureComp extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'ExternalFlashExposureComp'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'External Flash Exposure Comp'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'n/a (Manual Mode)', - ), - 164 => array( - 'Id' => 164, - 'Label' => '-3.0', - ), - 167 => array( - 'Id' => 167, - 'Label' => '-2.5', - ), - 168 => array( - 'Id' => 168, - 'Label' => '-2.0', - ), - 171 => array( - 'Id' => 171, - 'Label' => '-1.5', - ), - 172 => array( - 'Id' => 172, - 'Label' => '-1.0', - ), - 175 => array( - 'Id' => 175, - 'Label' => '-0.5', - ), - 176 => array( - 'Id' => 176, - 'Label' => '0.0', - ), - 179 => array( - 'Id' => 179, - 'Label' => '0.5', - ), - 180 => array( - 'Id' => 180, - 'Label' => '1.0', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashGuideNumber.php b/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashGuideNumber.php deleted file mode 100644 index cc57b9756..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashGuideNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashGuideNumber extends AbstractTag -{ - - protected $Id = '24.1'; - - protected $Name = 'ExternalFlashGuideNumber'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'External Flash Guide Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashMode.php deleted file mode 100644 index b4f3f3b0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ExternalFlashMode.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExternalFlashMode extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ExternalFlashMode'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'External Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a - Off-Auto-Aperture', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Off', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'On, Auto', - ), - 191 => array( - 'Id' => 191, - 'Label' => 'On, Flash Problem', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'On, Manual', - ), - 196 => array( - 'Id' => 196, - 'Label' => 'On, P-TTL Auto', - ), - 197 => array( - 'Id' => 197, - 'Label' => 'On, Contrast-control Sync', - ), - 198 => array( - 'Id' => 198, - 'Label' => 'On, High-speed Sync', - ), - 204 => array( - 'Id' => 204, - 'Label' => 'On, Wireless', - ), - 205 => array( - 'Id' => 205, - 'Label' => 'On, Wireless, High-speed Sync', - ), - 240 => array( - 'Id' => 240, - 'Label' => 'Not Connected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FNumber.php b/lib/PHPExiftool/Driver/Tag/Pentax/FNumber.php deleted file mode 100644 index 3828a92fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face10Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face10Position.php deleted file mode 100644 index 3d6a5cf77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face10Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face10Position extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'Face10Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 10 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face10Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face10Size.php deleted file mode 100644 index 9190845e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face10Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face10Size extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'Face10Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 10 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face11Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face11Position.php deleted file mode 100644 index 65f5cd062..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face11Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face11Position extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'Face11Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 11 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face11Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face11Size.php deleted file mode 100644 index 5938422c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face11Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face11Size extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'Face11Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 11 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face12Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face12Position.php deleted file mode 100644 index 52c8760f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face12Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face12Position extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'Face12Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 12 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face12Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face12Size.php deleted file mode 100644 index c42f2a6be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face12Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face12Size extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'Face12Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 12 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face13Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face13Position.php deleted file mode 100644 index 7187256e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face13Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face13Position extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Face13Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 13 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face13Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face13Size.php deleted file mode 100644 index 10ca08477..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face13Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face13Size extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Face13Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 13 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face14Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face14Position.php deleted file mode 100644 index 2cb069d3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face14Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face14Position extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'Face14Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 14 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face14Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face14Size.php deleted file mode 100644 index 40e7f48ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face14Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face14Size extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'Face14Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 14 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face15Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face15Position.php deleted file mode 100644 index 821dabd02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face15Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face15Position extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'Face15Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 15 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face15Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face15Size.php deleted file mode 100644 index 2bb585918..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face15Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face15Size extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'Face15Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 15 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face16Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face16Position.php deleted file mode 100644 index 3d2422349..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face16Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face16Position extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'Face16Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 16 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face16Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face16Size.php deleted file mode 100644 index 486de1fa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face16Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face16Size extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'Face16Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 16 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face17Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face17Position.php deleted file mode 100644 index 7035f4b9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face17Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face17Position extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'Face17Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 17 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face17Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face17Size.php deleted file mode 100644 index 58d5d0bf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face17Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face17Size extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'Face17Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 17 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face18Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face18Position.php deleted file mode 100644 index 508bfcad5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face18Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face18Position extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'Face18Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 18 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face18Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face18Size.php deleted file mode 100644 index e9a49b8fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face18Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face18Size extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'Face18Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 18 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face19Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face19Position.php deleted file mode 100644 index ad9f5a540..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face19Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face19Position extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'Face19Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 19 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face19Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face19Size.php deleted file mode 100644 index 3c50e9dfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face19Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face19Size extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'Face19Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 19 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face1Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face1Position.php deleted file mode 100644 index 9880ab51f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Position extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Face1Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face1Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face1Size.php deleted file mode 100644 index f09082a65..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face1Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Size extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Face1Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 1 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face20Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face20Position.php deleted file mode 100644 index 7805896de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face20Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face20Position extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'Face20Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 20 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face20Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face20Size.php deleted file mode 100644 index f4d97e9bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face20Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face20Size extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'Face20Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 20 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face21Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face21Position.php deleted file mode 100644 index f588c6a12..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face21Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face21Position extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'Face21Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 21 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face21Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face21Size.php deleted file mode 100644 index 91ba1ff4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face21Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face21Size extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'Face21Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 21 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face22Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face22Position.php deleted file mode 100644 index 4a22486d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face22Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face22Position extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'Face22Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 22 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face22Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face22Size.php deleted file mode 100644 index 471ae8446..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face22Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face22Size extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'Face22Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 22 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face23Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face23Position.php deleted file mode 100644 index ec4607bdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face23Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face23Position extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'Face23Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 23 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face23Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face23Size.php deleted file mode 100644 index a7e642a68..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face23Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face23Size extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'Face23Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 23 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face24Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face24Position.php deleted file mode 100644 index 0744f313e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face24Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face24Position extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'Face24Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 24 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face24Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face24Size.php deleted file mode 100644 index a9a870bfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face24Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face24Size extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'Face24Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 24 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face25Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face25Position.php deleted file mode 100644 index 4d12945bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face25Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face25Position extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'Face25Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 25 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face25Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face25Size.php deleted file mode 100644 index c86625671..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face25Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face25Size extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'Face25Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 25 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face26Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face26Position.php deleted file mode 100644 index 630274597..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face26Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face26Position extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'Face26Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 26 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face26Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face26Size.php deleted file mode 100644 index e76ad8d49..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face26Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face26Size extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'Face26Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 26 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face27Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face27Position.php deleted file mode 100644 index 305241010..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face27Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face27Position extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'Face27Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 27 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face27Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face27Size.php deleted file mode 100644 index 11513178f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face27Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face27Size extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'Face27Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 27 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face28Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face28Position.php deleted file mode 100644 index 195169556..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face28Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face28Position extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'Face28Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 28 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face28Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face28Size.php deleted file mode 100644 index d00a48f18..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face28Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face28Size extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'Face28Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 28 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face29Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face29Position.php deleted file mode 100644 index 1f39bfcf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face29Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face29Position extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'Face29Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 29 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face29Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face29Size.php deleted file mode 100644 index 8c348a7a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face29Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face29Size extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'Face29Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 29 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face2Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face2Position.php deleted file mode 100644 index 09fb79745..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Position extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Face2Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face2Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face2Size.php deleted file mode 100644 index 111c7e086..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face2Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Size extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Face2Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 2 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face30Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face30Position.php deleted file mode 100644 index 3146c6ce1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face30Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face30Position extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'Face30Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 30 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face30Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face30Size.php deleted file mode 100644 index 4824b77af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face30Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face30Size extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'Face30Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 30 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face31Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face31Position.php deleted file mode 100644 index 3816a61e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face31Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face31Position extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'Face31Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 31 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face31Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face31Size.php deleted file mode 100644 index 0c71f3f51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face31Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face31Size extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'Face31Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 31 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face32Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face32Position.php deleted file mode 100644 index 8a717d23a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face32Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face32Position extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'Face32Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 32 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face32Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face32Size.php deleted file mode 100644 index a524eb90f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face32Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face32Size extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'Face32Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 32 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face3Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face3Position.php deleted file mode 100644 index b30160af3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Position extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Face3Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face3Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face3Size.php deleted file mode 100644 index 3585fe915..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face3Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Size extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Face3Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 3 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face4Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face4Position.php deleted file mode 100644 index 6327245d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Position extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Face4Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face4Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face4Size.php deleted file mode 100644 index 62b649d9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face4Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Size extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Face4Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 4 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face5Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face5Position.php deleted file mode 100644 index aa58474f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Position extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Face5Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face5Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face5Size.php deleted file mode 100644 index 97e8b6d0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face5Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Size extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Face5Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 5 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face6Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face6Position.php deleted file mode 100644 index f14e5212a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face6Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Position extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Face6Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 6 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face6Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face6Size.php deleted file mode 100644 index 6b4eb1c74..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face6Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Size extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Face6Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 6 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face7Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face7Position.php deleted file mode 100644 index 90f51e6f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face7Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Position extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Face7Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 7 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face7Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face7Size.php deleted file mode 100644 index 5da5271bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face7Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Size extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Face7Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 7 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face8Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face8Position.php deleted file mode 100644 index 736352b7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face8Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Position extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Face8Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 8 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face8Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face8Size.php deleted file mode 100644 index 1f1927474..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face8Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Size extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Face8Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 8 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face9Position.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face9Position.php deleted file mode 100644 index 8140832e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face9Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face9Position extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Face9Position'; - - protected $FullName = 'Pentax::FacePos'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 9 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Face9Size.php b/lib/PHPExiftool/Driver/Tag/Pentax/Face9Size.php deleted file mode 100644 index 6d12ea880..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Face9Size.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face9Size extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Face9Size'; - - protected $FullName = 'Pentax::FaceSize'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 9 Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FaceDetect.php b/lib/PHPExiftool/Driver/Tag/Pentax/FaceDetect.php deleted file mode 100644 index c6ae940db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FaceDetect.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetect extends AbstractTag -{ - - protected $Id = 118; - - protected $Name = 'FaceDetect'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Face Detect'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FaceDetectFrameSize.php b/lib/PHPExiftool/Driver/Tag/Pentax/FaceDetectFrameSize.php deleted file mode 100644 index cca8ede3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FaceDetectFrameSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectFrameSize extends AbstractTag -{ - - protected $Id = 119; - - protected $Name = 'FaceDetectFrameSize'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Detect Frame Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FacePosition.php b/lib/PHPExiftool/Driver/Tag/Pentax/FacePosition.php deleted file mode 100644 index 440724f12..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FacePosition.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacePosition extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FacePosition'; - - protected $FullName = 'Pentax::FaceInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Face Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Pentax/FacesDetected.php deleted file mode 100644 index 10836c876..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'Pentax::FaceInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FineSharpness.php b/lib/PHPExiftool/Driver/Tag/Pentax/FineSharpness.php deleted file mode 100644 index f5121acdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FineSharpness.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FineSharpness extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'FineSharpness'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Fine Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Pentax/FirmwareVersion.php deleted file mode 100644 index b9d34379d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Pentax/FlashExposureComp.php deleted file mode 100644 index c45b8b641..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FlashExposureComp.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 77; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FlashExposureCompSet.php b/lib/PHPExiftool/Driver/Tag/Pentax/FlashExposureCompSet.php deleted file mode 100644 index c1531cd54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FlashExposureCompSet.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureCompSet extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'FlashExposureCompSet'; - - protected $FullName = 'Pentax::AEInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp. Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FlashMeteringSegments.php b/lib/PHPExiftool/Driver/Tag/Pentax/FlashMeteringSegments.php deleted file mode 100644 index bdb03a302..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FlashMeteringSegments.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMeteringSegments extends AbstractTag -{ - - protected $Id = 522; - - protected $Name = 'FlashMeteringSegments'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Metering Segments'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/FlashMode.php deleted file mode 100644 index 8fddc1db8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FlashMode.php +++ /dev/null @@ -1,124 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto, Did not fire', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off, Did not fire', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On, Did not fire', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto, Did not fire, Red-eye reduction', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'On, Did not fire, Wireless (Master)', - ), - 5 => array( - 'Id' => 256, - 'Label' => 'Auto, Fired', - ), - 6 => array( - 'Id' => 258, - 'Label' => 'On, Fired', - ), - 7 => array( - 'Id' => 259, - 'Label' => 'Auto, Fired, Red-eye reduction', - ), - 8 => array( - 'Id' => 260, - 'Label' => 'On, Red-eye reduction', - ), - 9 => array( - 'Id' => 261, - 'Label' => 'On, Wireless (Master)', - ), - 10 => array( - 'Id' => 262, - 'Label' => 'On, Wireless (Control)', - ), - 11 => array( - 'Id' => 264, - 'Label' => 'On, Soft', - ), - 12 => array( - 'Id' => 265, - 'Label' => 'On, Slow-sync', - ), - 13 => array( - 'Id' => 266, - 'Label' => 'On, Slow-sync, Red-eye reduction', - ), - 14 => array( - 'Id' => 267, - 'Label' => 'On, Trailing-curtain Sync', - ), - 15 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 16 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 17 => array( - 'Id' => 4, - 'Label' => 'Off', - ), - 18 => array( - 'Id' => 6, - 'Label' => 'Red-eye reduction', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FlashOptions.php b/lib/PHPExiftool/Driver/Tag/Pentax/FlashOptions.php deleted file mode 100644 index e473f2449..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FlashOptions.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashOptions extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FlashOptions'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Options'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Red-eye reduction', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto, Red-eye reduction', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Wireless (Master)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Wireless (Control)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Slow-sync', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Slow-sync, Red-eye reduction', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Trailing-curtain Sync', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FlashOptions2.php b/lib/PHPExiftool/Driver/Tag/Pentax/FlashOptions2.php deleted file mode 100644 index 3ee0c9c72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FlashOptions2.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashOptions2 extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'FlashOptions2'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Options 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Red-eye reduction', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Auto', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Auto, Red-eye reduction', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Wireless (Master)', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Wireless (Control)', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Slow-sync', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'Slow-sync, Red-eye reduction', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Trailing-curtain Sync', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FlashStatus.php b/lib/PHPExiftool/Driver/Tag/Pentax/FlashStatus.php deleted file mode 100644 index f433136f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FlashStatus.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashStatus extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FlashStatus'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Status'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off (1)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'External, Did not fire', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'External, Fired', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Internal, Did not fire (0x08)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Internal, Did not fire', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Internal, Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Pentax/FocalLength.php deleted file mode 100644 index 07ecc0baa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FocalLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/FocusMode.php deleted file mode 100644 index dcf7fb824..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FocusMode.php +++ /dev/null @@ -1,134 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Macro', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Infinity', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Super Macro', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Pan Focus', - ), - 6 => array( - 'Id' => 16, - 'Label' => 'AF-S (Focus-priority)', - ), - 7 => array( - 'Id' => 17, - 'Label' => 'AF-C (Focus-priority)', - ), - 8 => array( - 'Id' => 18, - 'Label' => 'AF-A (Focus-priority)', - ), - 9 => array( - 'Id' => 32, - 'Label' => 'Contrast-detect (Focus-priority)', - ), - 10 => array( - 'Id' => 33, - 'Label' => 'Tracking Contrast-detect (Focus-priority)', - ), - 11 => array( - 'Id' => 272, - 'Label' => 'AF-S (Release-priority)', - ), - 12 => array( - 'Id' => 273, - 'Label' => 'AF-C (Release-priority)', - ), - 13 => array( - 'Id' => 274, - 'Label' => 'AF-A (Release-priority)', - ), - 14 => array( - 'Id' => 288, - 'Label' => 'Contrast-detect (Release-priority)', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 16 => array( - 'Id' => 1, - 'Label' => 'Macro (1)', - ), - 17 => array( - 'Id' => 2, - 'Label' => 'Macro (2)', - ), - 18 => array( - 'Id' => 3, - 'Label' => 'Infinity', - ), - 19 => array( - 'Id' => 2, - 'Label' => 'Custom', - ), - 20 => array( - 'Id' => 3, - 'Label' => 'Auto', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FocusMode2.php b/lib/PHPExiftool/Driver/Tag/Pentax/FocusMode2.php deleted file mode 100644 index 168cff8de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FocusMode2.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode2 extends AbstractTag -{ - - protected $Id = '3.1'; - - protected $Name = 'FocusMode2'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FocusPosition.php b/lib/PHPExiftool/Driver/Tag/Pentax/FocusPosition.php deleted file mode 100644 index 8c94e6bcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FocusPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusPosition extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'FocusPosition'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/FrameNumber.php b/lib/PHPExiftool/Driver/Tag/Pentax/FrameNumber.php deleted file mode 100644 index d15a3dabc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/FrameNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameNumber extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'FrameNumber'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Frame Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryADLoad.php b/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryADLoad.php deleted file mode 100644 index 58f2f7d87..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryADLoad.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GripBatteryADLoad extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'GripBatteryADLoad'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Grip Battery A/D Load'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryADNoLoad.php b/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryADNoLoad.php deleted file mode 100644 index 6d3dd0e75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryADNoLoad.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GripBatteryADNoLoad extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GripBatteryADNoLoad'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Grip Battery A/D No Load'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryState.php b/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryState.php deleted file mode 100644 index 370f7ce7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/GripBatteryState.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GripBatteryState extends AbstractTag -{ - - protected $Id = '1.2'; - - protected $Name = 'GripBatteryState'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Grip Battery State'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Empty or Missing', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Almost Empty', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Running Low', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Full', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/HDR.php b/lib/PHPExiftool/Driver/Tag/Pentax/HDR.php deleted file mode 100644 index bc82c4f4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/HDR.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDR extends AbstractTag -{ - - protected $Id = 133; - - protected $Name = 'HDR'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'HDR'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'HDR 1', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'HDR 2', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'HDR 3', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/HighISONoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Pentax/HighISONoiseReduction.php deleted file mode 100644 index d85369cf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/HighISONoiseReduction.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighISONoiseReduction extends AbstractTag -{ - - protected $Id = 113; - - protected $Name = 'HighISONoiseReduction'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'High ISO Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Weakest', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Weak', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Strong', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Medium', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/HighLowKeyAdj.php b/lib/PHPExiftool/Driver/Tag/Pentax/HighLowKeyAdj.php deleted file mode 100644 index 78be20876..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/HighLowKeyAdj.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighLowKeyAdj extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'HighLowKeyAdj'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'High/Low Key Adj'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '-1 0' => array( - 'Id' => '-1 0', - 'Label' => '-1', - ), - '-2 0' => array( - 'Id' => '-2 0', - 'Label' => '-2', - ), - '-3 0' => array( - 'Id' => '-3 0', - 'Label' => '-3', - ), - '-4 0' => array( - 'Id' => '-4 0', - 'Label' => '-4', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 0, - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 1, - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 2, - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 3, - ), - '4 0' => array( - 'Id' => '4 0', - 'Label' => 4, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/HometownCity.php b/lib/PHPExiftool/Driver/Tag/Pentax/HometownCity.php deleted file mode 100644 index fee608281..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/HometownCity.php +++ /dev/null @@ -1,350 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HometownCity extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HometownCity'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Hometown City'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Pago Pago', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Honolulu', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Anchorage', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Vancouver', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'San Francisco', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Los Angeles', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Calgary', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Denver', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Mexico City', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Chicago', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Miami', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Toronto', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'New York', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Santiago', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Caracus', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Halifax', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Buenos Aires', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Sao Paulo', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Rio de Janeiro', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Madrid', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'London', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Paris', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Milan', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Rome', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Berlin', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Johannesburg', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Istanbul', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Cairo', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Jerusalem', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Moscow', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Jeddah', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Tehran', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Dubai', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Karachi', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Kabul', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Male', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Delhi', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Colombo', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Kathmandu', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Dacca', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Yangon', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Bangkok', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Kuala Lumpur', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Vientiane', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Singapore', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Phnom Penh', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Ho Chi Minh', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Jakarta', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Hong Kong', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Perth', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Beijing', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Shanghai', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Manila', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Taipei', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Seoul', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Adelaide', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Tokyo', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Guam', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Sydney', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Noumea', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Wellington', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Auckland', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Lima', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Dakar', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Algiers', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Helsinki', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Athens', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Nairobi', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Amsterdam', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Stockholm', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Lisbon', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Copenhagen', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Warsaw', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'Prague', - ), - 74 => array( - 'Id' => 74, - 'Label' => 'Budapest', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/HometownCityCode.php b/lib/PHPExiftool/Driver/Tag/Pentax/HometownCityCode.php deleted file mode 100644 index 36b62ec23..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/HometownCityCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HometownCityCode extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'HometownCityCode'; - - protected $FullName = 'Pentax::Type2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Hometown City Code'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/HometownDST.php b/lib/PHPExiftool/Driver/Tag/Pentax/HometownDST.php deleted file mode 100644 index 57afac7bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/HometownDST.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HometownDST extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HometownDST'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Hometown DST'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 3 => array( - 'Id' => 2, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Hue.php b/lib/PHPExiftool/Driver/Tag/Pentax/Hue.php deleted file mode 100644 index a86da021d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Hue.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Hue extends AbstractTag -{ - - protected $Id = 103; - - protected $Name = 'Hue'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Hue'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '-2', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => '-1', - ), - 4 => array( - 'Id' => 4, - 'Label' => 1, - ), - 5 => array( - 'Id' => 5, - 'Label' => '-3', - ), - 6 => array( - 'Id' => 6, - 'Label' => 3, - ), - 7 => array( - 'Id' => 7, - 'Label' => '-4', - ), - 8 => array( - 'Id' => 8, - 'Label' => 4, - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/HuffmanTable.php b/lib/PHPExiftool/Driver/Tag/Pentax/HuffmanTable.php deleted file mode 100644 index f680a0fec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/HuffmanTable.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HuffmanTable extends AbstractTag -{ - - protected $Id = 544; - - protected $Name = 'HuffmanTable'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Huffman Table'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ISO.php b/lib/PHPExiftool/Driver/Tag/Pentax/ISO.php deleted file mode 100644 index 7d42e7bd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ISO.php +++ /dev/null @@ -1,320 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 3, - 'Label' => 50, - ), - 1 => array( - 'Id' => 4, - 'Label' => 64, - ), - 2 => array( - 'Id' => 5, - 'Label' => 80, - ), - 3 => array( - 'Id' => 6, - 'Label' => 100, - ), - 4 => array( - 'Id' => 7, - 'Label' => 125, - ), - 5 => array( - 'Id' => 8, - 'Label' => 160, - ), - 6 => array( - 'Id' => 9, - 'Label' => 200, - ), - 7 => array( - 'Id' => 10, - 'Label' => 250, - ), - 8 => array( - 'Id' => 11, - 'Label' => 320, - ), - 9 => array( - 'Id' => 12, - 'Label' => 400, - ), - 10 => array( - 'Id' => 13, - 'Label' => 500, - ), - 11 => array( - 'Id' => 14, - 'Label' => 640, - ), - 12 => array( - 'Id' => 15, - 'Label' => 800, - ), - 13 => array( - 'Id' => 16, - 'Label' => 1000, - ), - 14 => array( - 'Id' => 17, - 'Label' => 1250, - ), - 15 => array( - 'Id' => 18, - 'Label' => 1600, - ), - 16 => array( - 'Id' => 19, - 'Label' => 2000, - ), - 17 => array( - 'Id' => 20, - 'Label' => 2500, - ), - 18 => array( - 'Id' => 21, - 'Label' => 3200, - ), - 19 => array( - 'Id' => 22, - 'Label' => 4000, - ), - 20 => array( - 'Id' => 23, - 'Label' => 5000, - ), - 21 => array( - 'Id' => 24, - 'Label' => 6400, - ), - 22 => array( - 'Id' => 25, - 'Label' => 8000, - ), - 23 => array( - 'Id' => 26, - 'Label' => 10000, - ), - 24 => array( - 'Id' => 27, - 'Label' => 12800, - ), - 25 => array( - 'Id' => 28, - 'Label' => 16000, - ), - 26 => array( - 'Id' => 29, - 'Label' => 20000, - ), - 27 => array( - 'Id' => 30, - 'Label' => 25600, - ), - 28 => array( - 'Id' => 31, - 'Label' => 32000, - ), - 29 => array( - 'Id' => 32, - 'Label' => 40000, - ), - 30 => array( - 'Id' => 33, - 'Label' => 51200, - ), - 31 => array( - 'Id' => 50, - 'Label' => 50, - ), - 32 => array( - 'Id' => 100, - 'Label' => 100, - ), - 33 => array( - 'Id' => 200, - 'Label' => 200, - ), - 34 => array( - 'Id' => 258, - 'Label' => 50, - ), - 35 => array( - 'Id' => 259, - 'Label' => 70, - ), - 36 => array( - 'Id' => 260, - 'Label' => 100, - ), - 37 => array( - 'Id' => 261, - 'Label' => 140, - ), - 38 => array( - 'Id' => 262, - 'Label' => 200, - ), - 39 => array( - 'Id' => 263, - 'Label' => 280, - ), - 40 => array( - 'Id' => 264, - 'Label' => 400, - ), - 41 => array( - 'Id' => 265, - 'Label' => 560, - ), - 42 => array( - 'Id' => 266, - 'Label' => 800, - ), - 43 => array( - 'Id' => 267, - 'Label' => 1100, - ), - 44 => array( - 'Id' => 268, - 'Label' => 1600, - ), - 45 => array( - 'Id' => 269, - 'Label' => 2200, - ), - 46 => array( - 'Id' => 270, - 'Label' => 3200, - ), - 47 => array( - 'Id' => 271, - 'Label' => 4500, - ), - 48 => array( - 'Id' => 272, - 'Label' => 6400, - ), - 49 => array( - 'Id' => 273, - 'Label' => 9000, - ), - 50 => array( - 'Id' => 274, - 'Label' => 12800, - ), - 51 => array( - 'Id' => 275, - 'Label' => 18000, - ), - 52 => array( - 'Id' => 276, - 'Label' => 25600, - ), - 53 => array( - 'Id' => 277, - 'Label' => 36000, - ), - 54 => array( - 'Id' => 278, - 'Label' => 51200, - ), - 55 => array( - 'Id' => 400, - 'Label' => 400, - ), - 56 => array( - 'Id' => 800, - 'Label' => 800, - ), - 57 => array( - 'Id' => 1600, - 'Label' => 1600, - ), - 58 => array( - 'Id' => 3200, - 'Label' => 3200, - ), - 59 => array( - 'Id' => 10, - 'Label' => 100, - ), - 60 => array( - 'Id' => 16, - 'Label' => 200, - ), - 61 => array( - 'Id' => 50, - 'Label' => 50, - ), - 62 => array( - 'Id' => 100, - 'Label' => 100, - ), - 63 => array( - 'Id' => 200, - 'Label' => 200, - ), - 64 => array( - 'Id' => 400, - 'Label' => 400, - ), - 65 => array( - 'Id' => 800, - 'Label' => 800, - ), - 66 => array( - 'Id' => 1600, - 'Label' => 1600, - ), - 67 => array( - 'Id' => 3200, - 'Label' => 3200, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ISOAuto.php b/lib/PHPExiftool/Driver/Tag/Pentax/ISOAuto.php deleted file mode 100644 index ae781550c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ISOAuto.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOAuto extends AbstractTag -{ - - protected $Id = '14.4'; - - protected $Name = 'ISOAuto'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ISOAutoParameters.php b/lib/PHPExiftool/Driver/Tag/Pentax/ISOAutoParameters.php deleted file mode 100644 index a856587a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ISOAutoParameters.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOAutoParameters extends AbstractTag -{ - - protected $Id = 122; - - protected $Name = 'ISOAutoParameters'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Auto Parameters'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - '1 0' => array( - 'Id' => '1 0', - 'Label' => 'Slow', - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 'Standard', - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 'Fast', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ISOFloor.php b/lib/PHPExiftool/Driver/Tag/Pentax/ISOFloor.php deleted file mode 100644 index c8aaf9dbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ISOFloor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOFloor extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ISOFloor'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Floor'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/Pentax/ISOSetting.php deleted file mode 100644 index 19c4f1b35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ISOSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = '17.3'; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ImageAreaOffset.php b/lib/PHPExiftool/Driver/Tag/Pentax/ImageAreaOffset.php deleted file mode 100644 index 2da12f52a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ImageAreaOffset.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageAreaOffset extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'ImageAreaOffset'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Area Offset'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ImageEditCount.php b/lib/PHPExiftool/Driver/Tag/Pentax/ImageEditCount.php deleted file mode 100644 index b222ba4c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ImageEditCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageEditCount extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'ImageEditCount'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Edit Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ImageEditing.php b/lib/PHPExiftool/Driver/Tag/Pentax/ImageEditing.php deleted file mode 100644 index 52e05bde8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ImageEditing.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageEditing extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'ImageEditing'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Image Editing'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'None', - ), - '0 0 0 0' => array( - 'Id' => '0 0 0 0', - 'Label' => 'None', - ), - '0 0 0 4' => array( - 'Id' => '0 0 0 4', - 'Label' => 'Digital Filter', - ), - '1 0 0 0' => array( - 'Id' => '1 0 0 0', - 'Label' => 'Resized', - ), - '2 0 0 0' => array( - 'Id' => '2 0 0 0', - 'Label' => 'Cropped', - ), - '4 0 0 0' => array( - 'Id' => '4 0 0 0', - 'Label' => 'Digital Filter 4', - ), - '6 0 0 0' => array( - 'Id' => '6 0 0 0', - 'Label' => 'Digital Filter 6', - ), - '8 0 0 0' => array( - 'Id' => '8 0 0 0', - 'Label' => 'Red-eye Correction', - ), - '16 0 0 0' => array( - 'Id' => '16 0 0 0', - 'Label' => 'Frame Synthesis?', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ImageTone.php b/lib/PHPExiftool/Driver/Tag/Pentax/ImageTone.php deleted file mode 100644 index 06ee4c0a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ImageTone.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageTone extends AbstractTag -{ - - protected $Id = 79; - - protected $Name = 'ImageTone'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Tone'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Natural', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Bright', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Landscape', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Vibrant', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Monochrome', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Muted', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Reversal Film', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Bleach Bypass', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Radiant', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/InternalFlashMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/InternalFlashMode.php deleted file mode 100644 index 81cf9c121..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/InternalFlashMode.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlashMode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'InternalFlashMode'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a - Off-Auto-Aperture', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'Fired, Wireless (Control)', - ), - 149 => array( - 'Id' => 149, - 'Label' => 'Fired, Wireless (Master)', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'Fired', - ), - 193 => array( - 'Id' => 193, - 'Label' => 'Fired, Red-eye reduction', - ), - 194 => array( - 'Id' => 194, - 'Label' => 'Fired, Auto', - ), - 195 => array( - 'Id' => 195, - 'Label' => 'Fired, Auto, Red-eye reduction', - ), - 198 => array( - 'Id' => 198, - 'Label' => 'Fired, Wireless (Control), Fired normally not as control', - ), - 200 => array( - 'Id' => 200, - 'Label' => 'Fired, Slow-sync', - ), - 201 => array( - 'Id' => 201, - 'Label' => 'Fired, Slow-sync, Red-eye reduction', - ), - 202 => array( - 'Id' => 202, - 'Label' => 'Fired, Trailing-curtain Sync', - ), - 240 => array( - 'Id' => 240, - 'Label' => 'Did not fire, Normal', - ), - 241 => array( - 'Id' => 241, - 'Label' => 'Did not fire, Red-eye reduction', - ), - 242 => array( - 'Id' => 242, - 'Label' => 'Did not fire, Auto', - ), - 243 => array( - 'Id' => 243, - 'Label' => 'Did not fire, Auto, Red-eye reduction', - ), - 244 => array( - 'Id' => 244, - 'Label' => 'Did not fire, (Unknown 0xf4)', - ), - 245 => array( - 'Id' => 245, - 'Label' => 'Did not fire, Wireless (Master)', - ), - 246 => array( - 'Id' => 246, - 'Label' => 'Did not fire, Wireless (Control)', - ), - 248 => array( - 'Id' => 248, - 'Label' => 'Did not fire, Slow-sync', - ), - 249 => array( - 'Id' => 249, - 'Label' => 'Did not fire, Slow-sync, Red-eye reduction', - ), - 250 => array( - 'Id' => 250, - 'Label' => 'Did not fire, Trailing-curtain Sync', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/InternalFlashStrength.php b/lib/PHPExiftool/Driver/Tag/Pentax/InternalFlashStrength.php deleted file mode 100644 index 02f32bf24..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/InternalFlashStrength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalFlashStrength extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'InternalFlashStrength'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Internal Flash Strength'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Pentax/InternalSerialNumber.php deleted file mode 100644 index b7d1fd4f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/InternalSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'Pentax::CameraInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/JpgRecordedPixels.php b/lib/PHPExiftool/Driver/Tag/Pentax/JpgRecordedPixels.php deleted file mode 100644 index 4741ea91b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/JpgRecordedPixels.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgRecordedPixels extends AbstractTag -{ - - protected $Id = '14.1'; - - protected $Name = 'JpgRecordedPixels'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Jpg Recorded Pixels'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '10 MP', - ), - 1 => array( - 'Id' => 1, - 'Label' => '6 MP', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 MP', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB01.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB01.php deleted file mode 100644 index 1963fd4f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB01.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB01 extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'KelvinWB_01'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 01'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB02.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB02.php deleted file mode 100644 index d811fa52c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB02.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB02 extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'KelvinWB_02'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 02'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB03.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB03.php deleted file mode 100644 index 87bde0c88..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB03.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB03 extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'KelvinWB_03'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 03'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB04.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB04.php deleted file mode 100644 index edc8e90d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB04.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB04 extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'KelvinWB_04'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 04'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB05.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB05.php deleted file mode 100644 index 36b23bb63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB05.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB05 extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'KelvinWB_05'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 05'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB06.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB06.php deleted file mode 100644 index 008489970..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB06.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB06 extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'KelvinWB_06'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 06'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB07.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB07.php deleted file mode 100644 index e347c9d8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB07.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB07 extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'KelvinWB_07'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 07'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB08.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB08.php deleted file mode 100644 index 5ada8fccd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB08.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB08 extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'KelvinWB_08'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 08'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB09.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB09.php deleted file mode 100644 index 5b88933a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB09.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB09 extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'KelvinWB_09'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 09'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB10.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB10.php deleted file mode 100644 index b04afe108..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB10.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB10 extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'KelvinWB_10'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 10'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB11.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB11.php deleted file mode 100644 index 544f72d8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB11.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB11 extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'KelvinWB_11'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 11'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB12.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB12.php deleted file mode 100644 index 2bd64d54c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB12.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB12 extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'KelvinWB_12'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 12'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB13.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB13.php deleted file mode 100644 index 415c16ac4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB13.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB13 extends AbstractTag -{ - - protected $Id = 53; - - protected $Name = 'KelvinWB_13'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 13'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB14.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB14.php deleted file mode 100644 index d3e907dcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB14.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB14 extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'KelvinWB_14'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 14'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB15.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB15.php deleted file mode 100644 index 70b788ae6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB15.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB15 extends AbstractTag -{ - - protected $Id = 61; - - protected $Name = 'KelvinWB_15'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 15'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB16.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB16.php deleted file mode 100644 index eff2a9767..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWB16.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWB16 extends AbstractTag -{ - - protected $Id = 65; - - protected $Name = 'KelvinWB_16'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB 16'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWBDaylight.php b/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWBDaylight.php deleted file mode 100644 index 80d5da865..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/KelvinWBDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KelvinWBDaylight extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'KelvinWB_Daylight'; - - protected $FullName = 'Pentax::KelvinWB'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Kelvin WB Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC1.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC1.php deleted file mode 100644 index 02e3b131b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC1 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'LC1'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC10.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC10.php deleted file mode 100644 index 21d211dbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC10 extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'LC10'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC11.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC11.php deleted file mode 100644 index 9c6a82b3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC11 extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'LC11'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC12.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC12.php deleted file mode 100644 index 0d69d095d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC12 extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'LC12'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC14.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC14.php deleted file mode 100644 index e608beb70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC14 extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'LC14'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC15.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC15.php deleted file mode 100644 index 573327115..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC15 extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'LC15'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC2.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC2.php deleted file mode 100644 index 942ab9b1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC2 extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'LC2'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC3.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC3.php deleted file mode 100644 index 4f0840269..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC3 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'LC3'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC4.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC4.php deleted file mode 100644 index efbcbcdd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC4 extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'LC4'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC5.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC5.php deleted file mode 100644 index ccd28bd78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC5 extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'LC5'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC6.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC6.php deleted file mode 100644 index 321079615..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC6 extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'LC6'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LC7.php b/lib/PHPExiftool/Driver/Tag/Pentax/LC7.php deleted file mode 100644 index 9b2a2e3e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LC7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LC7 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'LC7'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'LC7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LensFStops.php b/lib/PHPExiftool/Driver/Tag/Pentax/LensFStops.php deleted file mode 100644 index 6f08d362b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LensFStops.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFStops extends AbstractTag -{ - - protected $Id = '0.3'; - - protected $Name = 'LensFStops'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Lens F Stops'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LensInfo.php b/lib/PHPExiftool/Driver/Tag/Pentax/LensInfo.php deleted file mode 100644 index 11f75c508..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LensInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensInfo extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'LensInfo'; - - protected $FullName = 'Pentax::LensInfoQ'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Info'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LensKind.php b/lib/PHPExiftool/Driver/Tag/Pentax/LensKind.php deleted file mode 100644 index 45f1dbfcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LensKind.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensKind extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'LensKind'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Lens Kind'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LensModel.php b/lib/PHPExiftool/Driver/Tag/Pentax/LensModel.php deleted file mode 100644 index 47cbc87c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LensModel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'LensModel'; - - protected $FullName = 'Pentax::LensInfoQ'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - - protected $flag_Permanent = true; - - protected $MaxLength = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LensType.php b/lib/PHPExiftool/Driver/Tag/Pentax/LensType.php deleted file mode 100644 index 0011ff0a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LensType.php +++ /dev/null @@ -1,1134 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - - protected $Values = array( - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'M-42 or No Lens', - ), - '1 0' => array( - 'Id' => '1 0', - 'Label' => 'K or M Lens', - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 'A Series Lens', - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 'Sigma', - ), - '3 17' => array( - 'Id' => '3 17', - 'Label' => 'smc PENTAX-FA SOFT 85mm F2.8', - ), - '3 18' => array( - 'Id' => '3 18', - 'Label' => 'smc PENTAX-F 1.7X AF ADAPTER', - ), - '3 19' => array( - 'Id' => '3 19', - 'Label' => 'smc PENTAX-F 24-50mm F4', - ), - '3 20' => array( - 'Id' => '3 20', - 'Label' => 'smc PENTAX-F 35-80mm F4-5.6', - ), - '3 21' => array( - 'Id' => '3 21', - 'Label' => 'smc PENTAX-F 80-200mm F4.7-5.6', - ), - '3 22' => array( - 'Id' => '3 22', - 'Label' => 'smc PENTAX-F FISH-EYE 17-28mm F3.5-4.5', - ), - '3 23' => array( - 'Id' => '3 23', - 'Label' => 'smc PENTAX-F 100-300mm F4.5-5.6 or Sigma Lens', - ), - '3 23.1' => array( - 'Id' => '3 23.1', - 'Label' => 'Sigma AF 28-300mm F3.5-5.6 DL IF', - ), - '3 23.2' => array( - 'Id' => '3 23.2', - 'Label' => 'Sigma AF 28-300mm F3.5-6.3 DG IF Macro', - ), - '3 23.3' => array( - 'Id' => '3 23.3', - 'Label' => 'Tokina 80-200mm F2.8 ATX-Pro', - ), - '3 24' => array( - 'Id' => '3 24', - 'Label' => 'smc PENTAX-F 35-135mm F3.5-4.5', - ), - '3 25' => array( - 'Id' => '3 25', - 'Label' => 'smc PENTAX-F 35-105mm F4-5.6 or Sigma or Tokina Lens', - ), - '3 25.1' => array( - 'Id' => '3 25.1', - 'Label' => 'Sigma AF 28-300mm F3.5-5.6 DL IF', - ), - '3 25.2' => array( - 'Id' => '3 25.2', - 'Label' => 'Sigma 55-200mm F4-5.6 DC', - ), - '3 25.3' => array( - 'Id' => '3 25.3', - 'Label' => 'Sigma AF 28-300mm F3.5-6.3 DL IF', - ), - '3 25.4' => array( - 'Id' => '3 25.4', - 'Label' => 'Sigma AF 28-300mm F3.5-6.3 DG IF Macro', - ), - '3 25.5' => array( - 'Id' => '3 25.5', - 'Label' => 'Tokina 80-200mm F2.8 ATX-Pro', - ), - '3 26' => array( - 'Id' => '3 26', - 'Label' => 'smc PENTAX-F* 250-600mm F5.6 ED[IF]', - ), - '3 27' => array( - 'Id' => '3 27', - 'Label' => 'smc PENTAX-F 28-80mm F3.5-4.5 or Tokina Lens', - ), - '3 27.1' => array( - 'Id' => '3 27.1', - 'Label' => 'Tokina AT-X Pro AF 28-70mm F2.6-2.8', - ), - '3 28' => array( - 'Id' => '3 28', - 'Label' => 'smc PENTAX-F 35-70mm F3.5-4.5 or Tokina Lens', - ), - '3 28.1' => array( - 'Id' => '3 28.1', - 'Label' => 'Tokina 19-35mm F3.5-4.5 AF', - ), - '3 28.2' => array( - 'Id' => '3 28.2', - 'Label' => 'Tokina AT-X AF 400mm F5.6', - ), - '3 29' => array( - 'Id' => '3 29', - 'Label' => 'PENTAX-F 28-80mm F3.5-4.5 or Sigma or Tokina Lens', - ), - '3 29.1' => array( - 'Id' => '3 29.1', - 'Label' => 'Sigma AF 18-125mm F3.5-5.6 DC', - ), - '3 29.2' => array( - 'Id' => '3 29.2', - 'Label' => 'Tokina AT-X PRO 28-70mm F2.6-2.8', - ), - '3 30' => array( - 'Id' => '3 30', - 'Label' => 'PENTAX-F 70-200mm F4-5.6', - ), - '3 31' => array( - 'Id' => '3 31', - 'Label' => 'smc PENTAX-F 70-210mm F4-5.6 or Tokina or Takumar Lens', - ), - '3 31.1' => array( - 'Id' => '3 31.1', - 'Label' => 'Tokina AF 730 75-300mm F4.5-5.6', - ), - '3 31.2' => array( - 'Id' => '3 31.2', - 'Label' => 'Takumar-F 70-210mm F4-5.6', - ), - '3 32' => array( - 'Id' => '3 32', - 'Label' => 'smc PENTAX-F 50mm F1.4', - ), - '3 33' => array( - 'Id' => '3 33', - 'Label' => 'smc PENTAX-F 50mm F1.7', - ), - '3 34' => array( - 'Id' => '3 34', - 'Label' => 'smc PENTAX-F 135mm F2.8 [IF]', - ), - '3 35' => array( - 'Id' => '3 35', - 'Label' => 'smc PENTAX-F 28mm F2.8', - ), - '3 36' => array( - 'Id' => '3 36', - 'Label' => 'Sigma 20mm F1.8 EX DG Aspherical RF', - ), - '3 38' => array( - 'Id' => '3 38', - 'Label' => 'smc PENTAX-F* 300mm F4.5 ED[IF]', - ), - '3 39' => array( - 'Id' => '3 39', - 'Label' => 'smc PENTAX-F* 600mm F4 ED[IF]', - ), - '3 40' => array( - 'Id' => '3 40', - 'Label' => 'smc PENTAX-F Macro 100mm F2.8', - ), - '3 41' => array( - 'Id' => '3 41', - 'Label' => 'smc PENTAX-F Macro 50mm F2.8 or Sigma Lens', - ), - '3 41.1' => array( - 'Id' => '3 41.1', - 'Label' => 'Sigma 50mm F2.8 Macro', - ), - '3 44' => array( - 'Id' => '3 44', - 'Label' => 'Sigma or Tamron Lens (3 44)', - ), - '3 44.1' => array( - 'Id' => '3 44.1', - 'Label' => 'Sigma AF 10-20mm F4-5.6 EX DC', - ), - '3 44.2' => array( - 'Id' => '3 44.2', - 'Label' => 'Sigma 12-24mm F4.5-5.6 EX DG', - ), - '3 44.3' => array( - 'Id' => '3 44.3', - 'Label' => 'Sigma 17-70mm F2.8-4.5 DC Macro', - ), - '3 44.4' => array( - 'Id' => '3 44.4', - 'Label' => 'Sigma 18-50mm F3.5-5.6 DC', - ), - '3 44.5' => array( - 'Id' => '3 44.5', - 'Label' => 'Tamron 35-90mm F4 AF', - ), - '3 46' => array( - 'Id' => '3 46', - 'Label' => 'Sigma or Samsung Lens (3 46)', - ), - '3 46.1' => array( - 'Id' => '3 46.1', - 'Label' => 'Sigma APO 70-200mm F2.8 EX', - ), - '3 46.2' => array( - 'Id' => '3 46.2', - 'Label' => 'Sigma EX APO 100-300mm F4 IF', - ), - '3 46.3' => array( - 'Id' => '3 46.3', - 'Label' => 'Samsung/Schneider D-XENON 50-200mm F4-5.6 ED', - ), - '3 50' => array( - 'Id' => '3 50', - 'Label' => 'smc PENTAX-FA 28-70mm F4 AL', - ), - '3 51' => array( - 'Id' => '3 51', - 'Label' => 'Sigma 28mm F1.8 EX DG Aspherical Macro', - ), - '3 52' => array( - 'Id' => '3 52', - 'Label' => 'smc PENTAX-FA 28-200mm F3.8-5.6 AL[IF] or Tamron Lens', - ), - '3 52.1' => array( - 'Id' => '3 52.1', - 'Label' => 'Tamron AF LD 28-200mm F3.8-5.6 [IF] Aspherical (171D)', - ), - '3 53' => array( - 'Id' => '3 53', - 'Label' => 'smc PENTAX-FA 28-80mm F3.5-5.6 AL', - ), - '3 247' => array( - 'Id' => '3 247', - 'Label' => 'smc PENTAX-DA FISH-EYE 10-17mm F3.5-4.5 ED[IF]', - ), - '3 248' => array( - 'Id' => '3 248', - 'Label' => 'smc PENTAX-DA 12-24mm F4 ED AL[IF]', - ), - '3 250' => array( - 'Id' => '3 250', - 'Label' => 'smc PENTAX-DA 50-200mm F4-5.6 ED', - ), - '3 251' => array( - 'Id' => '3 251', - 'Label' => 'smc PENTAX-DA 40mm F2.8 Limited', - ), - '3 252' => array( - 'Id' => '3 252', - 'Label' => 'smc PENTAX-DA 18-55mm F3.5-5.6 AL', - ), - '3 253' => array( - 'Id' => '3 253', - 'Label' => 'smc PENTAX-DA 14mm F2.8 ED[IF]', - ), - '3 254' => array( - 'Id' => '3 254', - 'Label' => 'smc PENTAX-DA 16-45mm F4 ED AL', - ), - '3 255' => array( - 'Id' => '3 255', - 'Label' => 'Sigma Lens (3 255)', - ), - '3 255.1' => array( - 'Id' => '3 255.1', - 'Label' => 'Sigma 18-200mm F3.5-6.3 DC', - ), - '3 255.2' => array( - 'Id' => '3 255.2', - 'Label' => 'Sigma DL-II 35-80mm F4-5.6', - ), - '3 255.3' => array( - 'Id' => '3 255.3', - 'Label' => 'Sigma DL Zoom 75-300mm F4-5.6', - ), - '3 255.4' => array( - 'Id' => '3 255.4', - 'Label' => 'Sigma DF EX Aspherical 28-70mm F2.8', - ), - '3 255.5' => array( - 'Id' => '3 255.5', - 'Label' => 'Sigma AF Tele 400mm F5.6 Multi-coated', - ), - '3 255.6' => array( - 'Id' => '3 255.6', - 'Label' => 'Sigma 24-60mm F2.8 EX DG', - ), - '3 255.7' => array( - 'Id' => '3 255.7', - 'Label' => 'Sigma 70-300mm F4-5.6 Macro', - ), - '3 255.8' => array( - 'Id' => '3 255.8', - 'Label' => 'Sigma 55-200mm F4-5.6 DC', - ), - '3 255.9' => array( - 'Id' => '3 255.9', - 'Label' => 'Sigma 18-50mm F2.8 EX DC', - ), - '4 1' => array( - 'Id' => '4 1', - 'Label' => 'smc PENTAX-FA SOFT 28mm F2.8', - ), - '4 2' => array( - 'Id' => '4 2', - 'Label' => 'smc PENTAX-FA 80-320mm F4.5-5.6', - ), - '4 3' => array( - 'Id' => '4 3', - 'Label' => 'smc PENTAX-FA 43mm F1.9 Limited', - ), - '4 6' => array( - 'Id' => '4 6', - 'Label' => 'smc PENTAX-FA 35-80mm F4-5.6', - ), - '4 12' => array( - 'Id' => '4 12', - 'Label' => 'smc PENTAX-FA 50mm F1.4', - ), - '4 15' => array( - 'Id' => '4 15', - 'Label' => 'smc PENTAX-FA 28-105mm F4-5.6 [IF]', - ), - '4 16' => array( - 'Id' => '4 16', - 'Label' => 'Tamron AF 80-210mm F4-5.6 (178D)', - ), - '4 19' => array( - 'Id' => '4 19', - 'Label' => 'Tamron SP AF 90mm F2.8 (172E)', - ), - '4 20' => array( - 'Id' => '4 20', - 'Label' => 'smc PENTAX-FA 28-80mm F3.5-5.6', - ), - '4 21' => array( - 'Id' => '4 21', - 'Label' => 'Cosina AF 100-300mm F5.6-6.7', - ), - '4 22' => array( - 'Id' => '4 22', - 'Label' => 'Tokina 28-80mm F3.5-5.6', - ), - '4 23' => array( - 'Id' => '4 23', - 'Label' => 'smc PENTAX-FA 20-35mm F4 AL', - ), - '4 24' => array( - 'Id' => '4 24', - 'Label' => 'smc PENTAX-FA 77mm F1.8 Limited', - ), - '4 25' => array( - 'Id' => '4 25', - 'Label' => 'Tamron SP AF 14mm F2.8', - ), - '4 26' => array( - 'Id' => '4 26', - 'Label' => 'smc PENTAX-FA Macro 100mm F3.5 or Cosina Lens', - ), - '4 26.1' => array( - 'Id' => '4 26.1', - 'Label' => 'Cosina 100mm F3.5 Macro', - ), - '4 27' => array( - 'Id' => '4 27', - 'Label' => 'Tamron AF 28-300mm F3.5-6.3 LD Aspherical[IF] Macro (185D/285D)', - ), - '4 28' => array( - 'Id' => '4 28', - 'Label' => 'smc PENTAX-FA 35mm F2 AL', - ), - '4 29' => array( - 'Id' => '4 29', - 'Label' => 'Tamron AF 28-200mm F3.8-5.6 LD Super II Macro (371D)', - ), - '4 34' => array( - 'Id' => '4 34', - 'Label' => 'smc PENTAX-FA 24-90mm F3.5-4.5 AL[IF]', - ), - '4 35' => array( - 'Id' => '4 35', - 'Label' => 'smc PENTAX-FA 100-300mm F4.7-5.8', - ), - '4 36' => array( - 'Id' => '4 36', - 'Label' => 'Tamron AF 70-300mm F4-5.6 LD Macro 1:2', - ), - '4 37' => array( - 'Id' => '4 37', - 'Label' => 'Tamron SP AF 24-135mm F3.5-5.6 AD AL (190D)', - ), - '4 38' => array( - 'Id' => '4 38', - 'Label' => 'smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]', - ), - '4 39' => array( - 'Id' => '4 39', - 'Label' => 'smc PENTAX-FA 31mm F1.8 AL Limited', - ), - '4 41' => array( - 'Id' => '4 41', - 'Label' => 'Tamron AF 28-200mm Super Zoom F3.8-5.6 Aspherical XR [IF] Macro (A03)', - ), - '4 43' => array( - 'Id' => '4 43', - 'Label' => 'smc PENTAX-FA 28-90mm F3.5-5.6', - ), - '4 44' => array( - 'Id' => '4 44', - 'Label' => 'smc PENTAX-FA J 75-300mm F4.5-5.8 AL', - ), - '4 45' => array( - 'Id' => '4 45', - 'Label' => 'Tamron Lens (4 45)', - ), - '4 45.1' => array( - 'Id' => '4 45.1', - 'Label' => 'Tamron 28-300mm F3.5-6.3 Ultra zoom XR', - ), - '4 45.2' => array( - 'Id' => '4 45.2', - 'Label' => 'Tamron AF 28-300mm F3.5-6.3 XR Di LD Aspherical [IF] Macro', - ), - '4 46' => array( - 'Id' => '4 46', - 'Label' => 'smc PENTAX-FA J 28-80mm F3.5-5.6 AL', - ), - '4 47' => array( - 'Id' => '4 47', - 'Label' => 'smc PENTAX-FA J 18-35mm F4-5.6 AL', - ), - '4 49' => array( - 'Id' => '4 49', - 'Label' => 'Tamron SP AF 28-75mm F2.8 XR Di LD Aspherical [IF] Macro', - ), - '4 51' => array( - 'Id' => '4 51', - 'Label' => 'smc PENTAX-D FA 50mm F2.8 Macro', - ), - '4 52' => array( - 'Id' => '4 52', - 'Label' => 'smc PENTAX-D FA 100mm F2.8 Macro', - ), - '4 55' => array( - 'Id' => '4 55', - 'Label' => 'Samsung/Schneider D-XENOGON 35mm F2', - ), - '4 56' => array( - 'Id' => '4 56', - 'Label' => 'Samsung/Schneider D-XENON 100mm F2.8 Macro', - ), - '4 75' => array( - 'Id' => '4 75', - 'Label' => 'Tamron SP AF 70-200mm F2.8 Di LD [IF] Macro (A001)', - ), - '4 214' => array( - 'Id' => '4 214', - 'Label' => 'smc PENTAX-DA 35mm F2.4 AL', - ), - '4 229' => array( - 'Id' => '4 229', - 'Label' => 'smc PENTAX-DA 18-55mm F3.5-5.6 AL II', - ), - '4 230' => array( - 'Id' => '4 230', - 'Label' => 'Tamron SP AF 17-50mm F2.8 XR Di II', - ), - '4 231' => array( - 'Id' => '4 231', - 'Label' => 'smc PENTAX-DA 18-250mm F3.5-6.3 ED AL [IF]', - ), - '4 237' => array( - 'Id' => '4 237', - 'Label' => 'Samsung/Schneider D-XENOGON 10-17mm F3.5-4.5', - ), - '4 239' => array( - 'Id' => '4 239', - 'Label' => 'Samsung/Schneider D-XENON 12-24mm F4 ED AL [IF]', - ), - '4 242' => array( - 'Id' => '4 242', - 'Label' => 'smc PENTAX-DA* 16-50mm F2.8 ED AL [IF] SDM (SDM unused)', - ), - '4 243' => array( - 'Id' => '4 243', - 'Label' => 'smc PENTAX-DA 70mm F2.4 Limited', - ), - '4 244' => array( - 'Id' => '4 244', - 'Label' => 'smc PENTAX-DA 21mm F3.2 AL Limited', - ), - '4 245' => array( - 'Id' => '4 245', - 'Label' => 'Samsung/Schneider D-XENON 50-200mm F4-5.6', - ), - '4 246' => array( - 'Id' => '4 246', - 'Label' => 'Samsung/Schneider D-XENON 18-55mm F3.5-5.6', - ), - '4 247' => array( - 'Id' => '4 247', - 'Label' => 'smc PENTAX-DA FISH-EYE 10-17mm F3.5-4.5 ED[IF]', - ), - '4 248' => array( - 'Id' => '4 248', - 'Label' => 'smc PENTAX-DA 12-24mm F4 ED AL [IF]', - ), - '4 249' => array( - 'Id' => '4 249', - 'Label' => 'Tamron XR DiII 18-200mm F3.5-6.3 (A14)', - ), - '4 250' => array( - 'Id' => '4 250', - 'Label' => 'smc PENTAX-DA 50-200mm F4-5.6 ED', - ), - '4 251' => array( - 'Id' => '4 251', - 'Label' => 'smc PENTAX-DA 40mm F2.8 Limited', - ), - '4 252' => array( - 'Id' => '4 252', - 'Label' => 'smc PENTAX-DA 18-55mm F3.5-5.6 AL', - ), - '4 253' => array( - 'Id' => '4 253', - 'Label' => 'smc PENTAX-DA 14mm F2.8 ED[IF]', - ), - '4 254' => array( - 'Id' => '4 254', - 'Label' => 'smc PENTAX-DA 16-45mm F4 ED AL', - ), - '5 1' => array( - 'Id' => '5 1', - 'Label' => 'smc PENTAX-FA* 24mm F2 AL[IF]', - ), - '5 2' => array( - 'Id' => '5 2', - 'Label' => 'smc PENTAX-FA 28mm F2.8 AL', - ), - '5 3' => array( - 'Id' => '5 3', - 'Label' => 'smc PENTAX-FA 50mm F1.7', - ), - '5 4' => array( - 'Id' => '5 4', - 'Label' => 'smc PENTAX-FA 50mm F1.4', - ), - '5 5' => array( - 'Id' => '5 5', - 'Label' => 'smc PENTAX-FA* 600mm F4 ED[IF]', - ), - '5 6' => array( - 'Id' => '5 6', - 'Label' => 'smc PENTAX-FA* 300mm F4.5 ED[IF]', - ), - '5 7' => array( - 'Id' => '5 7', - 'Label' => 'smc PENTAX-FA 135mm F2.8 [IF]', - ), - '5 8' => array( - 'Id' => '5 8', - 'Label' => 'smc PENTAX-FA Macro 50mm F2.8', - ), - '5 9' => array( - 'Id' => '5 9', - 'Label' => 'smc PENTAX-FA Macro 100mm F2.8', - ), - '5 10' => array( - 'Id' => '5 10', - 'Label' => 'smc PENTAX-FA* 85mm F1.4 [IF]', - ), - '5 11' => array( - 'Id' => '5 11', - 'Label' => 'smc PENTAX-FA* 200mm F2.8 ED[IF]', - ), - '5 12' => array( - 'Id' => '5 12', - 'Label' => 'smc PENTAX-FA 28-80mm F3.5-4.7', - ), - '5 13' => array( - 'Id' => '5 13', - 'Label' => 'smc PENTAX-FA 70-200mm F4-5.6', - ), - '5 14' => array( - 'Id' => '5 14', - 'Label' => 'smc PENTAX-FA* 250-600mm F5.6 ED[IF]', - ), - '5 15' => array( - 'Id' => '5 15', - 'Label' => 'smc PENTAX-FA 28-105mm F4-5.6', - ), - '5 16' => array( - 'Id' => '5 16', - 'Label' => 'smc PENTAX-FA 100-300mm F4.5-5.6', - ), - '5 98' => array( - 'Id' => '5 98', - 'Label' => 'smc PENTAX-FA 100-300mm F4.5-5.6', - ), - '6 1' => array( - 'Id' => '6 1', - 'Label' => 'smc PENTAX-FA* 85mm F1.4 [IF]', - ), - '6 2' => array( - 'Id' => '6 2', - 'Label' => 'smc PENTAX-FA* 200mm F2.8 ED[IF]', - ), - '6 3' => array( - 'Id' => '6 3', - 'Label' => 'smc PENTAX-FA* 300mm F2.8 ED[IF]', - ), - '6 4' => array( - 'Id' => '6 4', - 'Label' => 'smc PENTAX-FA* 28-70mm F2.8 AL', - ), - '6 5' => array( - 'Id' => '6 5', - 'Label' => 'smc PENTAX-FA* 80-200mm F2.8 ED[IF]', - ), - '6 6' => array( - 'Id' => '6 6', - 'Label' => 'smc PENTAX-FA* 28-70mm F2.8 AL', - ), - '6 7' => array( - 'Id' => '6 7', - 'Label' => 'smc PENTAX-FA* 80-200mm F2.8 ED[IF]', - ), - '6 8' => array( - 'Id' => '6 8', - 'Label' => 'smc PENTAX-FA 28-70mm F4AL', - ), - '6 9' => array( - 'Id' => '6 9', - 'Label' => 'smc PENTAX-FA 20mm F2.8', - ), - '6 10' => array( - 'Id' => '6 10', - 'Label' => 'smc PENTAX-FA* 400mm F5.6 ED[IF]', - ), - '6 13' => array( - 'Id' => '6 13', - 'Label' => 'smc PENTAX-FA* 400mm F5.6 ED[IF]', - ), - '6 14' => array( - 'Id' => '6 14', - 'Label' => 'smc PENTAX-FA* Macro 200mm F4 ED[IF]', - ), - '7 0' => array( - 'Id' => '7 0', - 'Label' => 'smc PENTAX-DA 21mm F3.2 AL Limited', - ), - '7 58' => array( - 'Id' => '7 58', - 'Label' => 'smc PENTAX-D FA Macro 100mm F2.8 WR', - ), - '7 75' => array( - 'Id' => '7 75', - 'Label' => 'Tamron SP AF 70-200mm F2.8 Di LD [IF] Macro (A001)', - ), - '7 201' => array( - 'Id' => '7 201', - 'Label' => 'smc Pentax-DA L 50-200mm F4-5.6 ED WR', - ), - '7 202' => array( - 'Id' => '7 202', - 'Label' => 'smc PENTAX-DA L 18-55mm F3.5-5.6 AL WR', - ), - '7 203' => array( - 'Id' => '7 203', - 'Label' => 'HD PENTAX-DA 55-300mm F4-5.8 ED WR', - ), - '7 204' => array( - 'Id' => '7 204', - 'Label' => 'HD PENTAX-DA 15mm F4 ED AL Limited', - ), - '7 205' => array( - 'Id' => '7 205', - 'Label' => 'HD PENTAX-DA 35mm F2.8 Macro Limited', - ), - '7 206' => array( - 'Id' => '7 206', - 'Label' => 'HD PENTAX-DA 70mm F2.4 Limited', - ), - '7 207' => array( - 'Id' => '7 207', - 'Label' => 'HD PENTAX-DA 21mm F3.2 ED AL Limited', - ), - '7 208' => array( - 'Id' => '7 208', - 'Label' => 'HD PENTAX-DA 40mm F2.8 Limited', - ), - '7 212' => array( - 'Id' => '7 212', - 'Label' => 'smc PENTAX-DA 50mm F1.8', - ), - '7 213' => array( - 'Id' => '7 213', - 'Label' => 'smc PENTAX-DA 40mm F2.8 XS', - ), - '7 214' => array( - 'Id' => '7 214', - 'Label' => 'smc PENTAX-DA 35mm F2.4 AL', - ), - '7 216' => array( - 'Id' => '7 216', - 'Label' => 'smc PENTAX-DA L 55-300mm F4-5.8 ED', - ), - '7 217' => array( - 'Id' => '7 217', - 'Label' => 'smc PENTAX-DA 50-200mm F4-5.6 ED WR', - ), - '7 218' => array( - 'Id' => '7 218', - 'Label' => 'smc PENTAX-DA 18-55mm F3.5-5.6 AL WR', - ), - '7 220' => array( - 'Id' => '7 220', - 'Label' => 'Tamron SP AF 10-24mm F3.5-4.5 Di II LD Aspherical [IF]', - ), - '7 221' => array( - 'Id' => '7 221', - 'Label' => 'smc PENTAX-DA L 50-200mm F4-5.6 ED', - ), - '7 222' => array( - 'Id' => '7 222', - 'Label' => 'smc PENTAX-DA L 18-55mm F3.5-5.6', - ), - '7 223' => array( - 'Id' => '7 223', - 'Label' => 'Samsung/Schneider D-XENON 18-55mm F3.5-5.6 II', - ), - '7 224' => array( - 'Id' => '7 224', - 'Label' => 'smc PENTAX-DA 15mm F4 ED AL Limited', - ), - '7 225' => array( - 'Id' => '7 225', - 'Label' => 'Samsung/Schneider D-XENON 18-250mm F3.5-6.3', - ), - '7 226' => array( - 'Id' => '7 226', - 'Label' => 'smc PENTAX-DA* 55mm F1.4 SDM (SDM unused)', - ), - '7 227' => array( - 'Id' => '7 227', - 'Label' => 'smc PENTAX-DA* 60-250mm F4 [IF] SDM (SDM unused)', - ), - '7 228' => array( - 'Id' => '7 228', - 'Label' => 'Samsung 16-45mm F4 ED', - ), - '7 229' => array( - 'Id' => '7 229', - 'Label' => 'smc PENTAX-DA 18-55mm F3.5-5.6 AL II', - ), - '7 230' => array( - 'Id' => '7 230', - 'Label' => 'Tamron AF 17-50mm F2.8 XR Di-II LD (Model A16)', - ), - '7 231' => array( - 'Id' => '7 231', - 'Label' => 'smc PENTAX-DA 18-250mm F3.5-6.3 ED AL [IF]', - ), - '7 233' => array( - 'Id' => '7 233', - 'Label' => 'smc PENTAX-DA 35mm F2.8 Macro Limited', - ), - '7 234' => array( - 'Id' => '7 234', - 'Label' => 'smc PENTAX-DA* 300mm F4 ED [IF] SDM (SDM unused)', - ), - '7 235' => array( - 'Id' => '7 235', - 'Label' => 'smc PENTAX-DA* 200mm F2.8 ED [IF] SDM (SDM unused)', - ), - '7 236' => array( - 'Id' => '7 236', - 'Label' => 'smc PENTAX-DA 55-300mm F4-5.8 ED', - ), - '7 238' => array( - 'Id' => '7 238', - 'Label' => 'Tamron AF 18-250mm F3.5-6.3 Di II LD Aspherical [IF] Macro', - ), - '7 241' => array( - 'Id' => '7 241', - 'Label' => 'smc PENTAX-DA* 50-135mm F2.8 ED [IF] SDM (SDM unused)', - ), - '7 242' => array( - 'Id' => '7 242', - 'Label' => 'smc PENTAX-DA* 16-50mm F2.8 ED AL [IF] SDM (SDM unused)', - ), - '7 243' => array( - 'Id' => '7 243', - 'Label' => 'smc PENTAX-DA 70mm F2.4 Limited', - ), - '7 244' => array( - 'Id' => '7 244', - 'Label' => 'smc PENTAX-DA 21mm F3.2 AL Limited', - ), - '8 0' => array( - 'Id' => '8 0', - 'Label' => 'Sigma 50-150mm F2.8 II APO EX DC HSM', - ), - '8 3' => array( - 'Id' => '8 3', - 'Label' => 'Sigma AF 18-125mm F3.5-5.6 DC', - ), - '8 4' => array( - 'Id' => '8 4', - 'Label' => 'Sigma 50mm F1.4 EX DG HSM', - ), - '8 7' => array( - 'Id' => '8 7', - 'Label' => 'Sigma 24-70mm F2.8 IF EX DG HSM', - ), - '8 8' => array( - 'Id' => '8 8', - 'Label' => 'Sigma 18-250mm F3.5-6.3 DC OS HSM', - ), - '8 11' => array( - 'Id' => '8 11', - 'Label' => 'Sigma 10-20mm F3.5 EX DC HSM', - ), - '8 12' => array( - 'Id' => '8 12', - 'Label' => 'Sigma 70-300mm F4-5.6 DG OS', - ), - '8 13' => array( - 'Id' => '8 13', - 'Label' => 'Sigma 120-400mm F4.5-5.6 APO DG OS HSM', - ), - '8 14' => array( - 'Id' => '8 14', - 'Label' => 'Sigma 17-70mm F2.8-4.0 DC Macro OS HSM', - ), - '8 15' => array( - 'Id' => '8 15', - 'Label' => 'Sigma 150-500mm F5-6.3 APO DG OS HSM', - ), - '8 16' => array( - 'Id' => '8 16', - 'Label' => 'Sigma 70-200mm F2.8 EX DG Macro HSM II', - ), - '8 17' => array( - 'Id' => '8 17', - 'Label' => 'Sigma 50-500mm F4.5-6.3 DG OS HSM', - ), - '8 18' => array( - 'Id' => '8 18', - 'Label' => 'Sigma 8-16mm F4.5-5.6 DC HSM', - ), - '8 21' => array( - 'Id' => '8 21', - 'Label' => 'Sigma 17-50mm F2.8 EX DC OS HSM', - ), - '8 22' => array( - 'Id' => '8 22', - 'Label' => 'Sigma 85mm F1.4 EX DG HSM', - ), - '8 23' => array( - 'Id' => '8 23', - 'Label' => 'Sigma 70-200mm F2.8 APO EX DG OS HSM', - ), - '8 25' => array( - 'Id' => '8 25', - 'Label' => 'Sigma 17-50mm F2.8 EX DC HSM', - ), - '8 27' => array( - 'Id' => '8 27', - 'Label' => 'Sigma 18-200mm F3.5-6.3 II DC HSM', - ), - '8 28' => array( - 'Id' => '8 28', - 'Label' => 'Sigma 18-250mm F3.5-6.3 DC Macro HSM', - ), - '8 29' => array( - 'Id' => '8 29', - 'Label' => 'Sigma 35mm F1.4 DG HSM', - ), - '8 30' => array( - 'Id' => '8 30', - 'Label' => 'Sigma 17-70mm F2.8-4 DC Macro HSM Contemporary', - ), - '8 31' => array( - 'Id' => '8 31', - 'Label' => 'Sigma 18-35mm F1.8 DC HSM', - ), - '8 32' => array( - 'Id' => '8 32', - 'Label' => 'Sigma 30mm F1.4 DC HSM | A', - ), - '8 209' => array( - 'Id' => '8 209', - 'Label' => 'HD PENTAX-DA 20-40mm F2.8-4 ED Limited DC WR', - ), - '8 210' => array( - 'Id' => '8 210', - 'Label' => 'smc PENTAX-DA 18-270mm F3.5-6.3 ED SDM', - ), - '8 211' => array( - 'Id' => '8 211', - 'Label' => 'HD PENTAX-DA 560mm F5.6 ED AW', - ), - '8 215' => array( - 'Id' => '8 215', - 'Label' => 'smc PENTAX-DA 18-135mm F3.5-5.6 ED AL [IF] DC WR', - ), - '8 226' => array( - 'Id' => '8 226', - 'Label' => 'smc PENTAX-DA* 55mm F1.4 SDM', - ), - '8 227' => array( - 'Id' => '8 227', - 'Label' => 'smc PENTAX-DA* 60-250mm F4 [IF] SDM', - ), - '8 232' => array( - 'Id' => '8 232', - 'Label' => 'smc PENTAX-DA 17-70mm F4 AL [IF] SDM', - ), - '8 234' => array( - 'Id' => '8 234', - 'Label' => 'smc PENTAX-DA* 300mm F4 ED [IF] SDM', - ), - '8 235' => array( - 'Id' => '8 235', - 'Label' => 'smc PENTAX-DA* 200mm F2.8 ED [IF] SDM', - ), - '8 241' => array( - 'Id' => '8 241', - 'Label' => 'smc PENTAX-DA* 50-135mm F2.8 ED [IF] SDM', - ), - '8 242' => array( - 'Id' => '8 242', - 'Label' => 'smc PENTAX-DA* 16-50mm F2.8 ED AL [IF] SDM', - ), - '8 255' => array( - 'Id' => '8 255', - 'Label' => 'Sigma Lens (8 255)', - ), - '8 255.1' => array( - 'Id' => '8 255.1', - 'Label' => 'Sigma 70-200mm F2.8 EX DG Macro HSM II', - ), - '8 255.2' => array( - 'Id' => '8 255.2', - 'Label' => 'Sigma 150-500mm F5-6.3 DG APO [OS] HSM', - ), - '8 255.3' => array( - 'Id' => '8 255.3', - 'Label' => 'Sigma 50-150mm F2.8 II APO EX DC HSM', - ), - '8 255.4' => array( - 'Id' => '8 255.4', - 'Label' => 'Sigma 4.5mm F2.8 EX DC HSM Circular Fisheye', - ), - '8 255.5' => array( - 'Id' => '8 255.5', - 'Label' => 'Sigma 50-200mm F4-5.6 DC OS', - ), - '8 255.6' => array( - 'Id' => '8 255.6', - 'Label' => 'Sigma 24-70mm F2.8 EX DG HSM', - ), - '9 0' => array( - 'Id' => '9 0', - 'Label' => '645 Manual Lens', - ), - '10 0' => array( - 'Id' => '10 0', - 'Label' => '645 A Series Lens', - ), - '11 1' => array( - 'Id' => '11 1', - 'Label' => 'smc PENTAX-FA 645 75mm F2.8', - ), - '11 2' => array( - 'Id' => '11 2', - 'Label' => 'smc PENTAX-FA 645 45mm F2.8', - ), - '11 3' => array( - 'Id' => '11 3', - 'Label' => 'smc PENTAX-FA* 645 300mm F4 ED [IF]', - ), - '11 4' => array( - 'Id' => '11 4', - 'Label' => 'smc PENTAX-FA 645 45-85mm F4.5', - ), - '11 5' => array( - 'Id' => '11 5', - 'Label' => 'smc PENTAX-FA 645 400mm F5.6 ED [IF]', - ), - '11 7' => array( - 'Id' => '11 7', - 'Label' => 'smc PENTAX-FA 645 Macro 120mm F4', - ), - '11 8' => array( - 'Id' => '11 8', - 'Label' => 'smc PENTAX-FA 645 80-160mm F4.5', - ), - '11 9' => array( - 'Id' => '11 9', - 'Label' => 'smc PENTAX-FA 645 200mm F4 [IF]', - ), - '11 10' => array( - 'Id' => '11 10', - 'Label' => 'smc PENTAX-FA 645 150mm F2.8 [IF]', - ), - '11 11' => array( - 'Id' => '11 11', - 'Label' => 'smc PENTAX-FA 645 35mm F3.5 AL [IF]', - ), - '11 12' => array( - 'Id' => '11 12', - 'Label' => 'smc PENTAX-FA 645 300mm F5.6 ED [IF]', - ), - '11 14' => array( - 'Id' => '11 14', - 'Label' => 'smc PENTAX-FA 645 55-110mm F5.6', - ), - '11 16' => array( - 'Id' => '11 16', - 'Label' => 'smc PENTAX-FA 645 33-55mm F4.5 AL', - ), - '11 17' => array( - 'Id' => '11 17', - 'Label' => 'smc PENTAX-FA 645 150-300mm F5.6 ED [IF]', - ), - '13 18' => array( - 'Id' => '13 18', - 'Label' => 'smc PENTAX-D FA 645 55mm F2.8 AL [IF] SDM AW', - ), - '13 19' => array( - 'Id' => '13 19', - 'Label' => 'smc PENTAX-D FA 645 25mm F4 AL [IF] SDM AW', - ), - '13 20' => array( - 'Id' => '13 20', - 'Label' => 'HD PENTAX-D FA 645 90mm F2.8 ED AW SR', - ), - '13 253' => array( - 'Id' => '13 253', - 'Label' => 'HD PENTAX-DA 645 28-45mm F4.5 ED AW SR', - ), - '21 0' => array( - 'Id' => '21 0', - 'Label' => 'Pentax Q Manual Lens', - ), - '21 1' => array( - 'Id' => '21 1', - 'Label' => '01 Standard Prime 8.5mm F1.9', - ), - '21 2' => array( - 'Id' => '21 2', - 'Label' => '02 Standard Zoom 5-15mm F2.8-4.5', - ), - '21 6' => array( - 'Id' => '21 6', - 'Label' => '06 Telephoto Zoom 15-45mm F2.8', - ), - '21 7' => array( - 'Id' => '21 7', - 'Label' => '07 Mount Shield 11.5mm F9', - ), - '21 8' => array( - 'Id' => '21 8', - 'Label' => '08 Wide Zoom 3.8-5.9mm F3.7-4', - ), - '22 3' => array( - 'Id' => '22 3', - 'Label' => '03 Fish-eye 3.2mm F5.6', - ), - '22 4' => array( - 'Id' => '22 4', - 'Label' => '04 Toy Lens Wide 6.3mm F7.1', - ), - '22 5' => array( - 'Id' => '22 5', - 'Label' => '05 Toy Lens Telephoto 18mm F8', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LevelIndicator.php b/lib/PHPExiftool/Driver/Tag/Pentax/LevelIndicator.php deleted file mode 100644 index c3263125b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LevelIndicator.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LevelIndicator extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'LevelIndicator'; - - protected $FullName = 'Pentax::AEInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Level Indicator'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LevelOrientation.php b/lib/PHPExiftool/Driver/Tag/Pentax/LevelOrientation.php deleted file mode 100644 index b79e6f176..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LevelOrientation.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LevelOrientation extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'LevelOrientation'; - - protected $FullName = 'Pentax::LevelInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Level Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 180', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 90 CW', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Rotate 270 CW', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Horizontal; Off Level', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Rotate 180; Off Level', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Rotate 90 CW; Off Level', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Rotate 270 CW; Off Level', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Upwards', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Downwards', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LightReading.php b/lib/PHPExiftool/Driver/Tag/Pentax/LightReading.php deleted file mode 100644 index 13d28a995..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LightReading.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightReading extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'LightReading'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Light Reading'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/LinkAEToAFPoint.php b/lib/PHPExiftool/Driver/Tag/Pentax/LinkAEToAFPoint.php deleted file mode 100644 index ff5561b22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/LinkAEToAFPoint.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinkAEToAFPoint extends AbstractTag -{ - - protected $Id = '14.2'; - - protected $Name = 'LinkAEToAFPoint'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Link AE To AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Make.php b/lib/PHPExiftool/Driver/Tag/Pentax/Make.php deleted file mode 100644 index bc1e62bdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Make'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 24; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Pentax/MakerNoteVersion.php deleted file mode 100644 index 386c70d16..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MakerNoteVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'Pentax::S1'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ManufactureDate.php b/lib/PHPExiftool/Driver/Tag/Pentax/ManufactureDate.php deleted file mode 100644 index e4bea5c39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ManufactureDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufactureDate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ManufactureDate'; - - protected $FullName = 'Pentax::CameraInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Manufacture Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/MaxAperture.php deleted file mode 100644 index 4c4b7eb1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = '14.1'; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode.php deleted file mode 100644 index ff663b0ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center-weighted average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode2.php b/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode2.php deleted file mode 100644 index 7f48051c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode2.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode2 extends AbstractTag -{ - - protected $Id = '2.1'; - - protected $Name = 'MeteringMode2'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Metering Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center-weighted average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode3.php b/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode3.php deleted file mode 100644 index 5c79a5615..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MeteringMode3.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode3 extends AbstractTag -{ - - protected $Id = '16.1'; - - protected $Name = 'MeteringMode3'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Metering Mode 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center-weighted average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MinAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/MinAperture.php deleted file mode 100644 index 6e7d1d271..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MinAperture.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinAperture extends AbstractTag -{ - - protected $Id = '0.2'; - - protected $Name = 'MinAperture'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Min Aperture'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 22, - ), - 2 => array( - 'Id' => 2, - 'Label' => 32, - ), - 4 => array( - 'Id' => 4, - 'Label' => 45, - ), - 6 => array( - 'Id' => 6, - 'Label' => 16, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Model.php b/lib/PHPExiftool/Driver/Tag/Pentax/Model.php deleted file mode 100644 index d2af9fd33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Model.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Model'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'mixed'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MonochromeFilterEffect.php b/lib/PHPExiftool/Driver/Tag/Pentax/MonochromeFilterEffect.php deleted file mode 100644 index 3744e029d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MonochromeFilterEffect.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeFilterEffect extends AbstractTag -{ - - protected $Id = 115; - - protected $Name = 'MonochromeFilterEffect'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Monochrome Filter Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Green', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Yellow', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Orange', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Red', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Magenta', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Blue', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Cyan', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Infrared', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MonochromeToning.php b/lib/PHPExiftool/Driver/Tag/Pentax/MonochromeToning.php deleted file mode 100644 index ba32758a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MonochromeToning.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MonochromeToning extends AbstractTag -{ - - protected $Id = 116; - - protected $Name = 'MonochromeToning'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Monochrome Toning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '-4', - ), - 1 => array( - 'Id' => 1, - 'Label' => '-3', - ), - 2 => array( - 'Id' => 2, - 'Label' => '-2', - ), - 3 => array( - 'Id' => 3, - 'Label' => '-1', - ), - 4 => array( - 'Id' => 4, - 'Label' => 0, - ), - 5 => array( - 'Id' => 5, - 'Label' => 1, - ), - 6 => array( - 'Id' => 6, - 'Label' => 2, - ), - 7 => array( - 'Id' => 7, - 'Label' => 3, - ), - 8 => array( - 'Id' => 8, - 'Label' => 4, - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/MultipleExposureSet.php b/lib/PHPExiftool/Driver/Tag/Pentax/MultipleExposureSet.php deleted file mode 100644 index ffda76a9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/MultipleExposureSet.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultipleExposureSet extends AbstractTag -{ - - protected $Id = '10.1'; - - protected $Name = 'MultipleExposureSet'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Multiple Exposure Set'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/NeutralDensityFilter.php b/lib/PHPExiftool/Driver/Tag/Pentax/NeutralDensityFilter.php deleted file mode 100644 index ba414c5a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/NeutralDensityFilter.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NeutralDensityFilter extends AbstractTag -{ - - protected $Id = 136; - - protected $Name = 'NeutralDensityFilter'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Neutral Density Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/NewLensDataHook.php b/lib/PHPExiftool/Driver/Tag/Pentax/NewLensDataHook.php deleted file mode 100644 index 7687af82a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/NewLensDataHook.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NewLensDataHook extends AbstractTag -{ - - protected $Id = '12.1'; - - protected $Name = 'NewLensDataHook'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'New Lens Data Hook'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Pentax/NoiseReduction.php deleted file mode 100644 index 45205be84..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/NoiseReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 73; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/NominalMaxAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/NominalMaxAperture.php deleted file mode 100644 index 84a876d29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/NominalMaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalMaxAperture extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'NominalMaxAperture'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Nominal Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/NominalMinAperture.php b/lib/PHPExiftool/Driver/Tag/Pentax/NominalMinAperture.php deleted file mode 100644 index ddd1e8a7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/NominalMinAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalMinAperture extends AbstractTag -{ - - protected $Id = '10.1'; - - protected $Name = 'NominalMinAperture'; - - protected $FullName = 'Pentax::LensData'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Nominal Min Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxImageSize.php b/lib/PHPExiftool/Driver/Tag/Pentax/PentaxImageSize.php deleted file mode 100644 index 9154a214b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxImageSize.php +++ /dev/null @@ -1,178 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PentaxImageSize extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'PentaxImageSize'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Pentax Image Size'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '640x480', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Full', - ), - 2 => array( - 'Id' => 2, - 'Label' => '1024x768', - ), - 3 => array( - 'Id' => 3, - 'Label' => '1280x960', - ), - 4 => array( - 'Id' => 4, - 'Label' => '1600x1200', - ), - 5 => array( - 'Id' => 5, - 'Label' => '2048x1536', - ), - 8 => array( - 'Id' => 8, - 'Label' => '2560x1920 or 2304x1728', - ), - 9 => array( - 'Id' => 9, - 'Label' => '3072x2304', - ), - 10 => array( - 'Id' => 10, - 'Label' => '3264x2448', - ), - 19 => array( - 'Id' => 19, - 'Label' => '320x240', - ), - 20 => array( - 'Id' => 20, - 'Label' => '2288x1712', - ), - 21 => array( - 'Id' => 21, - 'Label' => '2592x1944', - ), - 22 => array( - 'Id' => 22, - 'Label' => '2304x1728 or 2592x1944', - ), - 23 => array( - 'Id' => 23, - 'Label' => '3056x2296', - ), - 25 => array( - 'Id' => 25, - 'Label' => '2816x2212 or 2816x2112', - ), - 27 => array( - 'Id' => 27, - 'Label' => '3648x2736', - ), - 29 => array( - 'Id' => 29, - 'Label' => '4000x3000', - ), - 30 => array( - 'Id' => 30, - 'Label' => '4288x3216', - ), - 31 => array( - 'Id' => 31, - 'Label' => '4608x3456', - ), - 129 => array( - 'Id' => 129, - 'Label' => '1920x1080', - ), - 135 => array( - 'Id' => 135, - 'Label' => '4608x2592', - ), - 257 => array( - 'Id' => 257, - 'Label' => '3216x3216', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => '2304x1728', - ), - '4 0' => array( - 'Id' => '4 0', - 'Label' => '1600x1200', - ), - '5 0' => array( - 'Id' => '5 0', - 'Label' => '2048x1536', - ), - '8 0' => array( - 'Id' => '8 0', - 'Label' => '2560x1920', - ), - '32 2' => array( - 'Id' => '32 2', - 'Label' => '960x640', - ), - '33 2' => array( - 'Id' => '33 2', - 'Label' => '1152x768', - ), - '34 2' => array( - 'Id' => '34 2', - 'Label' => '1536x1024', - ), - '35 1' => array( - 'Id' => '35 1', - 'Label' => '2400x1600', - ), - '36 0' => array( - 'Id' => '36 0', - 'Label' => '3008x2008 or 3040x2024', - ), - '37 0' => array( - 'Id' => '37 0', - 'Label' => '3008x2000', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxModelID.php b/lib/PHPExiftool/Driver/Tag/Pentax/PentaxModelID.php deleted file mode 100644 index 8ef80a72b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxModelID.php +++ /dev/null @@ -1,556 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PentaxModelID extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PentaxModelID'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Pentax Model ID'; - - protected $flag_Permanent = true; - - protected $Values = array( - 13 => array( - 'Id' => 13, - 'Label' => 'Optio 330/430', - ), - 76070 => array( - 'Id' => 76070, - 'Label' => 'Optio 230', - ), - 76120 => array( - 'Id' => 76120, - 'Label' => 'Optio 330GS', - ), - 76130 => array( - 'Id' => 76130, - 'Label' => 'Optio 450/550', - ), - 76140 => array( - 'Id' => 76140, - 'Label' => 'Optio S', - ), - 76145 => array( - 'Id' => 76145, - 'Label' => 'Optio S V1.01', - ), - 76180 => array( - 'Id' => 76180, - 'Label' => '*ist D', - ), - 76210 => array( - 'Id' => 76210, - 'Label' => 'Optio 33L', - ), - 76220 => array( - 'Id' => 76220, - 'Label' => 'Optio 33LF', - ), - 76230 => array( - 'Id' => 76230, - 'Label' => 'Optio 33WR/43WR/555', - ), - 76245 => array( - 'Id' => 76245, - 'Label' => 'Optio S4', - ), - 76290 => array( - 'Id' => 76290, - 'Label' => 'Optio MX', - ), - 76300 => array( - 'Id' => 76300, - 'Label' => 'Optio S40', - ), - 76310 => array( - 'Id' => 76310, - 'Label' => 'Optio S4i', - ), - 76340 => array( - 'Id' => 76340, - 'Label' => 'Optio 30', - ), - 76370 => array( - 'Id' => 76370, - 'Label' => 'Optio S30', - ), - 76390 => array( - 'Id' => 76390, - 'Label' => 'Optio 750Z', - ), - 76400 => array( - 'Id' => 76400, - 'Label' => 'Optio SV', - ), - 76405 => array( - 'Id' => 76405, - 'Label' => 'Optio SVi', - ), - 76410 => array( - 'Id' => 76410, - 'Label' => 'Optio X', - ), - 76430 => array( - 'Id' => 76430, - 'Label' => 'Optio S5i', - ), - 76440 => array( - 'Id' => 76440, - 'Label' => 'Optio S50', - ), - 76450 => array( - 'Id' => 76450, - 'Label' => '*ist DS', - ), - 76470 => array( - 'Id' => 76470, - 'Label' => 'Optio MX4', - ), - 76480 => array( - 'Id' => 76480, - 'Label' => 'Optio S5n', - ), - 76490 => array( - 'Id' => 76490, - 'Label' => 'Optio WP', - ), - 76540 => array( - 'Id' => 76540, - 'Label' => 'Optio S55', - ), - 76560 => array( - 'Id' => 76560, - 'Label' => 'Optio S5z', - ), - 76570 => array( - 'Id' => 76570, - 'Label' => '*ist DL', - ), - 76580 => array( - 'Id' => 76580, - 'Label' => 'Optio S60', - ), - 76590 => array( - 'Id' => 76590, - 'Label' => 'Optio S45', - ), - 76600 => array( - 'Id' => 76600, - 'Label' => 'Optio S6', - ), - 76620 => array( - 'Id' => 76620, - 'Label' => 'Optio WPi', - ), - 76630 => array( - 'Id' => 76630, - 'Label' => 'BenQ DC X600', - ), - 76640 => array( - 'Id' => 76640, - 'Label' => '*ist DS2', - ), - 76642 => array( - 'Id' => 76642, - 'Label' => 'Samsung GX-1S', - ), - 76650 => array( - 'Id' => 76650, - 'Label' => 'Optio A10', - ), - 76670 => array( - 'Id' => 76670, - 'Label' => '*ist DL2', - ), - 76672 => array( - 'Id' => 76672, - 'Label' => 'Samsung GX-1L', - ), - 76700 => array( - 'Id' => 76700, - 'Label' => 'K100D', - ), - 76701 => array( - 'Id' => 76701, - 'Label' => 'K110D', - ), - 76706 => array( - 'Id' => 76706, - 'Label' => 'K100D Super', - ), - 76720 => array( - 'Id' => 76720, - 'Label' => 'Optio T10/T20', - ), - 76770 => array( - 'Id' => 76770, - 'Label' => 'Optio W10', - ), - 76790 => array( - 'Id' => 76790, - 'Label' => 'Optio M10', - ), - 76830 => array( - 'Id' => 76830, - 'Label' => 'K10D', - ), - 76832 => array( - 'Id' => 76832, - 'Label' => 'Samsung GX10', - ), - 76840 => array( - 'Id' => 76840, - 'Label' => 'Optio S7', - ), - 76845 => array( - 'Id' => 76845, - 'Label' => 'Optio L20', - ), - 76850 => array( - 'Id' => 76850, - 'Label' => 'Optio M20', - ), - 76860 => array( - 'Id' => 76860, - 'Label' => 'Optio W20', - ), - 76870 => array( - 'Id' => 76870, - 'Label' => 'Optio A20', - ), - 76920 => array( - 'Id' => 76920, - 'Label' => 'Optio E30', - ), - 76925 => array( - 'Id' => 76925, - 'Label' => 'Optio E35', - ), - 76930 => array( - 'Id' => 76930, - 'Label' => 'Optio T30', - ), - 76940 => array( - 'Id' => 76940, - 'Label' => 'Optio M30', - ), - 76945 => array( - 'Id' => 76945, - 'Label' => 'Optio L30', - ), - 76950 => array( - 'Id' => 76950, - 'Label' => 'Optio W30', - ), - 76960 => array( - 'Id' => 76960, - 'Label' => 'Optio A30', - ), - 76980 => array( - 'Id' => 76980, - 'Label' => 'Optio E40', - ), - 76990 => array( - 'Id' => 76990, - 'Label' => 'Optio M40', - ), - 76995 => array( - 'Id' => 76995, - 'Label' => 'Optio L40', - ), - 76997 => array( - 'Id' => 76997, - 'Label' => 'Optio L36', - ), - 77000 => array( - 'Id' => 77000, - 'Label' => 'Optio Z10', - ), - 77010 => array( - 'Id' => 77010, - 'Label' => 'K20D', - ), - 77012 => array( - 'Id' => 77012, - 'Label' => 'Samsung GX20', - ), - 77020 => array( - 'Id' => 77020, - 'Label' => 'Optio S10', - ), - 77030 => array( - 'Id' => 77030, - 'Label' => 'Optio A40', - ), - 77040 => array( - 'Id' => 77040, - 'Label' => 'Optio V10', - ), - 77050 => array( - 'Id' => 77050, - 'Label' => 'K200D', - ), - 77060 => array( - 'Id' => 77060, - 'Label' => 'Optio S12', - ), - 77070 => array( - 'Id' => 77070, - 'Label' => 'Optio E50', - ), - 77080 => array( - 'Id' => 77080, - 'Label' => 'Optio M50', - ), - 77090 => array( - 'Id' => 77090, - 'Label' => 'Optio L50', - ), - 77100 => array( - 'Id' => 77100, - 'Label' => 'Optio V20', - ), - 77120 => array( - 'Id' => 77120, - 'Label' => 'Optio W60', - ), - 77130 => array( - 'Id' => 77130, - 'Label' => 'Optio M60', - ), - 77160 => array( - 'Id' => 77160, - 'Label' => 'Optio E60/M90', - ), - 77170 => array( - 'Id' => 77170, - 'Label' => 'K2000', - ), - 77171 => array( - 'Id' => 77171, - 'Label' => 'K-m', - ), - 77190 => array( - 'Id' => 77190, - 'Label' => 'Optio P70', - ), - 77200 => array( - 'Id' => 77200, - 'Label' => 'Optio L70', - ), - 77210 => array( - 'Id' => 77210, - 'Label' => 'Optio E70', - ), - 77230 => array( - 'Id' => 77230, - 'Label' => 'X70', - ), - 77240 => array( - 'Id' => 77240, - 'Label' => 'K-7', - ), - 77260 => array( - 'Id' => 77260, - 'Label' => 'Optio W80', - ), - 77290 => array( - 'Id' => 77290, - 'Label' => 'Optio P80', - ), - 77300 => array( - 'Id' => 77300, - 'Label' => 'Optio WS80', - ), - 77310 => array( - 'Id' => 77310, - 'Label' => 'K-x', - ), - 77320 => array( - 'Id' => 77320, - 'Label' => '645D', - ), - 77330 => array( - 'Id' => 77330, - 'Label' => 'Optio E80', - ), - 77360 => array( - 'Id' => 77360, - 'Label' => 'Optio W90', - ), - 77370 => array( - 'Id' => 77370, - 'Label' => 'Optio I-10', - ), - 77380 => array( - 'Id' => 77380, - 'Label' => 'Optio H90', - ), - 77390 => array( - 'Id' => 77390, - 'Label' => 'Optio E90', - ), - 77400 => array( - 'Id' => 77400, - 'Label' => 'X90', - ), - 77420 => array( - 'Id' => 77420, - 'Label' => 'K-r', - ), - 77430 => array( - 'Id' => 77430, - 'Label' => 'K-5', - ), - 77450 => array( - 'Id' => 77450, - 'Label' => 'Optio RS1000/RS1500', - ), - 77460 => array( - 'Id' => 77460, - 'Label' => 'Optio RZ10', - ), - 77470 => array( - 'Id' => 77470, - 'Label' => 'Optio LS1000', - ), - 77500 => array( - 'Id' => 77500, - 'Label' => 'Optio WG-1 GPS', - ), - 77520 => array( - 'Id' => 77520, - 'Label' => 'Optio S1', - ), - 77540 => array( - 'Id' => 77540, - 'Label' => 'Q', - ), - 77560 => array( - 'Id' => 77560, - 'Label' => 'K-01', - ), - 77580 => array( - 'Id' => 77580, - 'Label' => 'Optio RZ18', - ), - 77590 => array( - 'Id' => 77590, - 'Label' => 'Optio VS20', - ), - 77610 => array( - 'Id' => 77610, - 'Label' => 'Optio WG-2 GPS', - ), - 77640 => array( - 'Id' => 77640, - 'Label' => 'Optio LS465', - ), - 77650 => array( - 'Id' => 77650, - 'Label' => 'K-30', - ), - 77660 => array( - 'Id' => 77660, - 'Label' => 'X-5', - ), - 77670 => array( - 'Id' => 77670, - 'Label' => 'Q10', - ), - 77680 => array( - 'Id' => 77680, - 'Label' => 'K-5 II', - ), - 77681 => array( - 'Id' => 77681, - 'Label' => 'K-5 II s', - ), - 77690 => array( - 'Id' => 77690, - 'Label' => 'Q7', - ), - 77700 => array( - 'Id' => 77700, - 'Label' => 'MX-1', - ), - 77710 => array( - 'Id' => 77710, - 'Label' => 'WG-3 GPS', - ), - 77720 => array( - 'Id' => 77720, - 'Label' => 'WG-3', - ), - 77730 => array( - 'Id' => 77730, - 'Label' => 'WG-10', - ), - 77750 => array( - 'Id' => 77750, - 'Label' => 'K-50', - ), - 77760 => array( - 'Id' => 77760, - 'Label' => 'K-3', - ), - 77770 => array( - 'Id' => 77770, - 'Label' => 'K-500', - ), - 77790 => array( - 'Id' => 77790, - 'Label' => 'WG-4 GPS', - ), - 77800 => array( - 'Id' => 77800, - 'Label' => 'WG-4', - ), - 77830 => array( - 'Id' => 77830, - 'Label' => 'WG-20', - ), - 77840 => array( - 'Id' => 77840, - 'Label' => '645Z', - ), - 77850 => array( - 'Id' => 77850, - 'Label' => 'K-S1', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxModelType.php b/lib/PHPExiftool/Driver/Tag/Pentax/PentaxModelType.php deleted file mode 100644 index a34049099..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxModelType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PentaxModelType extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PentaxModelType'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Pentax Model Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxVersion.php b/lib/PHPExiftool/Driver/Tag/Pentax/PentaxVersion.php deleted file mode 100644 index 686b99431..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PentaxVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PentaxVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PentaxVersion'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Pentax Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PictureMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/PictureMode.php deleted file mode 100644 index 75b31cf50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PictureMode.php +++ /dev/null @@ -1,526 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PictureMode'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Picture Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Program', - ), - '0.1' => array( - 'Id' => '0.1', - 'Label' => 'Av', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Shutter Speed Priority', - ), - '1.1' => array( - 'Id' => '1.1', - 'Label' => 'M', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - '2.1' => array( - 'Id' => '2.1', - 'Label' => 'Tv', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - '3.1' => array( - 'Id' => '3.1', - 'Label' => 'USER', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Portrait', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'Landscape', - ), - 6 => array( - 'Id' => 8, - 'Label' => 'Sport', - ), - 7 => array( - 'Id' => 9, - 'Label' => 'Night Scene', - ), - 8 => array( - 'Id' => 11, - 'Label' => 'Soft', - ), - 9 => array( - 'Id' => 12, - 'Label' => 'Surf & Snow', - ), - 10 => array( - 'Id' => 13, - 'Label' => 'Candlelight', - ), - 11 => array( - 'Id' => 14, - 'Label' => 'Autumn', - ), - 12 => array( - 'Id' => 15, - 'Label' => 'Macro', - ), - 13 => array( - 'Id' => 17, - 'Label' => 'Fireworks', - ), - 14 => array( - 'Id' => 18, - 'Label' => 'Text', - ), - 15 => array( - 'Id' => 19, - 'Label' => 'Panorama', - ), - 16 => array( - 'Id' => 20, - 'Label' => '3-D', - ), - 17 => array( - 'Id' => 21, - 'Label' => 'Black & White', - ), - 18 => array( - 'Id' => 22, - 'Label' => 'Sepia', - ), - 19 => array( - 'Id' => 23, - 'Label' => 'Red', - ), - 20 => array( - 'Id' => 24, - 'Label' => 'Pink', - ), - 21 => array( - 'Id' => 25, - 'Label' => 'Purple', - ), - 22 => array( - 'Id' => 26, - 'Label' => 'Blue', - ), - 23 => array( - 'Id' => 27, - 'Label' => 'Green', - ), - 24 => array( - 'Id' => 28, - 'Label' => 'Yellow', - ), - 25 => array( - 'Id' => 30, - 'Label' => 'Self Portrait', - ), - 26 => array( - 'Id' => 31, - 'Label' => 'Illustrations', - ), - 27 => array( - 'Id' => 33, - 'Label' => 'Digital Filter', - ), - 28 => array( - 'Id' => 35, - 'Label' => 'Night Scene Portrait', - ), - 29 => array( - 'Id' => 37, - 'Label' => 'Museum', - ), - 30 => array( - 'Id' => 38, - 'Label' => 'Food', - ), - 31 => array( - 'Id' => 39, - 'Label' => 'Underwater', - ), - 32 => array( - 'Id' => 40, - 'Label' => 'Green Mode', - ), - 33 => array( - 'Id' => 49, - 'Label' => 'Light Pet', - ), - 34 => array( - 'Id' => 50, - 'Label' => 'Dark Pet', - ), - 35 => array( - 'Id' => 51, - 'Label' => 'Medium Pet', - ), - 36 => array( - 'Id' => 53, - 'Label' => 'Underwater', - ), - 37 => array( - 'Id' => 54, - 'Label' => 'Candlelight', - ), - 38 => array( - 'Id' => 55, - 'Label' => 'Natural Skin Tone', - ), - 39 => array( - 'Id' => 56, - 'Label' => 'Synchro Sound Record', - ), - 40 => array( - 'Id' => 58, - 'Label' => 'Frame Composite', - ), - 41 => array( - 'Id' => 59, - 'Label' => 'Report', - ), - 42 => array( - 'Id' => 60, - 'Label' => 'Kids', - ), - 43 => array( - 'Id' => 61, - 'Label' => 'Blur Reduction', - ), - 44 => array( - 'Id' => 63, - 'Label' => 'Panorama 2', - ), - 45 => array( - 'Id' => 65, - 'Label' => 'Half-length Portrait', - ), - 46 => array( - 'Id' => 66, - 'Label' => 'Portrait 2', - ), - 47 => array( - 'Id' => 74, - 'Label' => 'Digital Microscope', - ), - 48 => array( - 'Id' => 75, - 'Label' => 'Blue Sky', - ), - 49 => array( - 'Id' => 80, - 'Label' => 'Miniature', - ), - 50 => array( - 'Id' => 81, - 'Label' => 'HDR', - ), - 51 => array( - 'Id' => 83, - 'Label' => 'Fisheye', - ), - 52 => array( - 'Id' => 221, - 'Label' => 'P', - ), - 53 => array( - 'Id' => 255, - 'Label' => 'PICT', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'Program', - ), - '0 1' => array( - 'Id' => '0 1', - 'Label' => 'Hi-speed Program', - ), - '0 2' => array( - 'Id' => '0 2', - 'Label' => 'DOF Program', - ), - '0 3' => array( - 'Id' => '0 3', - 'Label' => 'MTF Program', - ), - '0 4' => array( - 'Id' => '0 4', - 'Label' => 'Standard', - ), - '0 5' => array( - 'Id' => '0 5', - 'Label' => 'Portrait', - ), - '0 6' => array( - 'Id' => '0 6', - 'Label' => 'Landscape', - ), - '0 7' => array( - 'Id' => '0 7', - 'Label' => 'Macro', - ), - '0 8' => array( - 'Id' => '0 8', - 'Label' => 'Sport', - ), - '0 9' => array( - 'Id' => '0 9', - 'Label' => 'Night Scene Portrait', - ), - '0 10' => array( - 'Id' => '0 10', - 'Label' => 'No Flash', - ), - '0 11' => array( - 'Id' => '0 11', - 'Label' => 'Night Scene', - ), - '0 12' => array( - 'Id' => '0 12', - 'Label' => 'Surf & Snow', - ), - '0 13' => array( - 'Id' => '0 13', - 'Label' => 'Text', - ), - '0 14' => array( - 'Id' => '0 14', - 'Label' => 'Sunset', - ), - '0 15' => array( - 'Id' => '0 15', - 'Label' => 'Kids', - ), - '0 16' => array( - 'Id' => '0 16', - 'Label' => 'Pet', - ), - '0 17' => array( - 'Id' => '0 17', - 'Label' => 'Candlelight', - ), - '0 18' => array( - 'Id' => '0 18', - 'Label' => 'Museum', - ), - '0 19' => array( - 'Id' => '0 19', - 'Label' => 'Food', - ), - '0 20' => array( - 'Id' => '0 20', - 'Label' => 'Stage Lighting', - ), - '0 21' => array( - 'Id' => '0 21', - 'Label' => 'Night Snap', - ), - '0 23' => array( - 'Id' => '0 23', - 'Label' => 'Blue Sky', - ), - '0 24' => array( - 'Id' => '0 24', - 'Label' => 'Sunset', - ), - '0 26' => array( - 'Id' => '0 26', - 'Label' => 'Night Scene HDR', - ), - '0 27' => array( - 'Id' => '0 27', - 'Label' => 'HDR', - ), - '0 28' => array( - 'Id' => '0 28', - 'Label' => 'Quick Macro', - ), - '0 29' => array( - 'Id' => '0 29', - 'Label' => 'Forest', - ), - '0 30' => array( - 'Id' => '0 30', - 'Label' => 'Backlight Silhouette', - ), - '1 4' => array( - 'Id' => '1 4', - 'Label' => 'Auto PICT (Standard)', - ), - '1 5' => array( - 'Id' => '1 5', - 'Label' => 'Auto PICT (Portrait)', - ), - '1 6' => array( - 'Id' => '1 6', - 'Label' => 'Auto PICT (Landscape)', - ), - '1 7' => array( - 'Id' => '1 7', - 'Label' => 'Auto PICT (Macro)', - ), - '1 8' => array( - 'Id' => '1 8', - 'Label' => 'Auto PICT (Sport)', - ), - '2 0' => array( - 'Id' => '2 0', - 'Label' => 'Program (HyP)', - ), - '2 1' => array( - 'Id' => '2 1', - 'Label' => 'Hi-speed Program (HyP)', - ), - '2 2' => array( - 'Id' => '2 2', - 'Label' => 'DOF Program (HyP)', - ), - '2 3' => array( - 'Id' => '2 3', - 'Label' => 'MTF Program (HyP)', - ), - '2 22' => array( - 'Id' => '2 22', - 'Label' => 'Shallow DOF (HyP)', - ), - '3 0' => array( - 'Id' => '3 0', - 'Label' => 'Green Mode', - ), - '4 0' => array( - 'Id' => '4 0', - 'Label' => 'Shutter Speed Priority', - ), - '5 0' => array( - 'Id' => '5 0', - 'Label' => 'Aperture Priority', - ), - '6 0' => array( - 'Id' => '6 0', - 'Label' => 'Program Tv Shift', - ), - '7 0' => array( - 'Id' => '7 0', - 'Label' => 'Program Av Shift', - ), - '8 0' => array( - 'Id' => '8 0', - 'Label' => 'Manual', - ), - '9 0' => array( - 'Id' => '9 0', - 'Label' => 'Bulb', - ), - '10 0' => array( - 'Id' => '10 0', - 'Label' => 'Aperture Priority, Off-Auto-Aperture', - ), - '11 0' => array( - 'Id' => '11 0', - 'Label' => 'Manual, Off-Auto-Aperture', - ), - '12 0' => array( - 'Id' => '12 0', - 'Label' => 'Bulb, Off-Auto-Aperture', - ), - '13 0' => array( - 'Id' => '13 0', - 'Label' => 'Shutter & Aperture Priority AE', - ), - '15 0' => array( - 'Id' => '15 0', - 'Label' => 'Sensitivity Priority AE', - ), - '16 0' => array( - 'Id' => '16 0', - 'Label' => 'Flash X-Sync Speed AE', - ), - '18 0' => array( - 'Id' => '18 0', - 'Label' => 'Auto Program (Normal)', - ), - '18 1' => array( - 'Id' => '18 1', - 'Label' => 'Auto Program (Hi-speed)', - ), - '18 2' => array( - 'Id' => '18 2', - 'Label' => 'Auto Program (DOF)', - ), - '18 3' => array( - 'Id' => '18 3', - 'Label' => 'Auto Program (MTF)', - ), - '18 22' => array( - 'Id' => '18 22', - 'Label' => 'Auto Program (Shallow DOF)', - ), - '20 22' => array( - 'Id' => '20 22', - 'Label' => 'Blur Control', - ), - '254 0' => array( - 'Id' => '254 0', - 'Label' => 'Video', - ), - '255 0' => array( - 'Id' => '255 0', - 'Label' => 'Video (Auto Aperture)', - ), - '255 4' => array( - 'Id' => '255 4', - 'Label' => 'Video (4)', - ), - ); - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PictureMode2.php b/lib/PHPExiftool/Driver/Tag/Pentax/PictureMode2.php deleted file mode 100644 index 09ff14ba0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PictureMode2.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMode2 extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PictureMode2'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Picture Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Scene Mode', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto PICT', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Green Mode', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shutter Speed Priority', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Aperture Priority', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Program Tv Shift', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Program Av Shift', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Manual', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Bulb', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Aperture Priority, Off-Auto-Aperture', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Manual, Off-Auto-Aperture', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Bulb, Off-Auto-Aperture', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Shutter & Aperture Priority AE', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Sensitivity Priority AE', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Flash X-Sync Speed AE', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PitchAngle.php b/lib/PHPExiftool/Driver/Tag/Pentax/PitchAngle.php deleted file mode 100644 index 1a5572281..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PitchAngle.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PitchAngle extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PitchAngle'; - - protected $FullName = 'Pentax::LevelInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Pitch Angle'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PowerSource.php b/lib/PHPExiftool/Driver/Tag/Pentax/PowerSource.php deleted file mode 100644 index 23217a294..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PowerSource.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PowerSource extends AbstractTag -{ - - protected $Id = '0.1'; - - protected $Name = 'PowerSource'; - - protected $FullName = 'Pentax::BatteryInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Power Source'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Body Battery', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Grip Battery', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'External Power Supply', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImage.php deleted file mode 100644 index 725094eda..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageBorders.php b/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageBorders.php deleted file mode 100644 index 25ae9b133..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageBorders.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageBorders extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'PreviewImageBorders'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Borders'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageLength.php deleted file mode 100644 index 784632579..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageLength.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Length'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageSize.php b/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageSize.php deleted file mode 100644 index b8e0d27e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageSize.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageSize extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewImageSize'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preview Image Size'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageStart.php deleted file mode 100644 index 41fae623c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/PreviewImageStart.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $local_g2 = 'Image'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ProductionCode.php b/lib/PHPExiftool/Driver/Tag/Pentax/ProductionCode.php deleted file mode 100644 index 2f5cfff9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ProductionCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionCode extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ProductionCode'; - - protected $FullName = 'Pentax::CameraInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Production Code'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ProgramLine.php b/lib/PHPExiftool/Driver/Tag/Pentax/ProgramLine.php deleted file mode 100644 index a84858192..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ProgramLine.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgramLine extends AbstractTag -{ - - protected $Id = '1.1'; - - protected $Name = 'ProgramLine'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Program Line'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Hi Speed', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Depth', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'MTF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Quality.php b/lib/PHPExiftool/Driver/Tag/Pentax/Quality.php deleted file mode 100644 index 0d6f8c3aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Quality.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Quality'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Good', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Better', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Best', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'TIFF', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RAW', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Premium', - ), - 6 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'Good', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Better', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'Best', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/RawAndJpgRecording.php b/lib/PHPExiftool/Driver/Tag/Pentax/RawAndJpgRecording.php deleted file mode 100644 index 0ac926303..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/RawAndJpgRecording.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawAndJpgRecording extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'RawAndJpgRecording'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Raw And Jpg Recording'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'JPEG (Best)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'RAW (PEF, Best)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'RAW+JPEG (PEF, Best)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'RAW (DNG, Best)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'RAW+JPEG (DNG, Best)', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'JPEG (Better)', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'RAW (PEF, Better)', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'RAW+JPEG (PEF, Better)', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'RAW (DNG, Better)', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'RAW+JPEG (DNG, Better)', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'JPEG (Good)', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'RAW (PEF, Good)', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'RAW+JPEG (PEF, Good)', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'RAW (DNG, Good)', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'RAW+JPEG (DNG, Good)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/RawDevelopmentProcess.php b/lib/PHPExiftool/Driver/Tag/Pentax/RawDevelopmentProcess.php deleted file mode 100644 index ffd44c02a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/RawDevelopmentProcess.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDevelopmentProcess extends AbstractTag -{ - - protected $Id = 98; - - protected $Name = 'RawDevelopmentProcess'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Raw Development Process'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => '1 (K10D,K200D,K2000,K-m)', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3 (K20D)', - ), - 4 => array( - 'Id' => 4, - 'Label' => '4 (K-7)', - ), - 5 => array( - 'Id' => 5, - 'Label' => '5 (K-x)', - ), - 6 => array( - 'Id' => 6, - 'Label' => '6 (645D)', - ), - 7 => array( - 'Id' => 7, - 'Label' => '7 (K-r)', - ), - 8 => array( - 'Id' => 8, - 'Label' => '8 (K-5,K-5II,K-5IIs)', - ), - 9 => array( - 'Id' => 9, - 'Label' => '9 (Q)', - ), - 10 => array( - 'Id' => 10, - 'Label' => '10 (K-01,K-30)', - ), - 11 => array( - 'Id' => 11, - 'Label' => '11 (Q10)', - ), - 12 => array( - 'Id' => 12, - 'Label' => '12 (MX-1)', - ), - 13 => array( - 'Id' => 13, - 'Label' => '13 (K-3)', - ), - 14 => array( - 'Id' => 14, - 'Label' => '14 (645Z)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/RawImageSize.php b/lib/PHPExiftool/Driver/Tag/Pentax/RawImageSize.php deleted file mode 100644 index 95efb7dec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/RawImageSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageSize extends AbstractTag -{ - - protected $Id = 57; - - protected $Name = 'RawImageSize'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Image Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/RecordingMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/RecordingMode.php deleted file mode 100644 index 3273e9de7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/RecordingMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingMode extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'RecordingMode'; - - protected $FullName = 'Pentax::Type2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Recording Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Night Scene', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/RedBalance.php b/lib/PHPExiftool/Driver/Tag/Pentax/RedBalance.php deleted file mode 100644 index a02d547a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/RedBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedBalance extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'RedBalance'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Red Balance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/RollAngle.php b/lib/PHPExiftool/Driver/Tag/Pentax/RollAngle.php deleted file mode 100644 index 2b28c562d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/RollAngle.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RollAngle extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'RollAngle'; - - protected $FullName = 'Pentax::LevelInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Roll Angle'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Rotation.php b/lib/PHPExiftool/Driver/Tag/Pentax/Rotation.php deleted file mode 100644 index 30a06cc56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Rotation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = '17.2'; - - protected $Name = 'Rotation'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Rotate 180', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Rotate 90 CW', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SRActive.php b/lib/PHPExiftool/Driver/Tag/Pentax/SRActive.php deleted file mode 100644 index 4792932a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SRActive.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRActive extends AbstractTag -{ - - protected $Id = '17.1'; - - protected $Name = 'SRActive'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'SR Active'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SRFocalLength.php b/lib/PHPExiftool/Driver/Tag/Pentax/SRFocalLength.php deleted file mode 100644 index 0e1238a14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SRFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRFocalLength extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'SRFocalLength'; - - protected $FullName = 'Pentax::SRInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'SR Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SRHalfPressTime.php b/lib/PHPExiftool/Driver/Tag/Pentax/SRHalfPressTime.php deleted file mode 100644 index 5d1264c81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SRHalfPressTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRHalfPressTime extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SRHalfPressTime'; - - protected $FullName = 'Pentax::SRInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'SR Half Press Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SRResult.php b/lib/PHPExiftool/Driver/Tag/Pentax/SRResult.php deleted file mode 100644 index c41c56004..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SRResult.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRResult extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SRResult'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'SR Result'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not stabilized', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Stabilized', - ), - 2 => array( - 'Id' => 64, - 'Label' => 'Not ready', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Saturation.php b/lib/PHPExiftool/Driver/Tag/Pentax/Saturation.php deleted file mode 100644 index d0db0d678..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Saturation.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Low', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Med Low', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Med High', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Very Low', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Very High', - ), - 7 => array( - 'Id' => 7, - 'Label' => '-4', - ), - 8 => array( - 'Id' => 8, - 'Label' => '+4', - ), - 9 => array( - 'Id' => 65535, - 'Label' => 'None', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SaturationInfo.php b/lib/PHPExiftool/Driver/Tag/Pentax/SaturationInfo.php deleted file mode 100644 index 011a0b76c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SaturationInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationInfo extends AbstractTag -{ - - protected $Id = 539; - - protected $Name = 'SaturationInfo'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Saturation Info'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SceneMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/SceneMode.php deleted file mode 100644 index 2e18f6c77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SceneMode.php +++ /dev/null @@ -1,140 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneMode extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'SceneMode'; - - protected $FullName = 'Pentax::AEInfo2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Scene Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'HDR', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto PICT', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Portrait', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Landscape', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Macro', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Sport', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Night Scene Portrait', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'No Flash', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Night Scene', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Surf & Snow', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Sunset', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Kids', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Pet', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Candlelight', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Museum', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Food', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Stage Lighting', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Night Snap', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Night Scene HDR', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Blue Sky', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Forest', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Backlight Silhouette', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SensitivityAdjust.php b/lib/PHPExiftool/Driver/Tag/Pentax/SensitivityAdjust.php deleted file mode 100644 index affc700a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SensitivityAdjust.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensitivityAdjust extends AbstractTag -{ - - protected $Id = 64; - - protected $Name = 'SensitivityAdjust'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensitivity Adjust'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SensitivitySteps.php b/lib/PHPExiftool/Driver/Tag/Pentax/SensitivitySteps.php deleted file mode 100644 index c329f7f3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SensitivitySteps.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensitivitySteps extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensitivitySteps'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sensitivity Steps'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '1 EV Steps', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'As EV Steps', - ), - 2 => array( - 'Id' => 0, - 'Label' => '1 EV Steps', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'As EV Steps', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SensorSize.php b/lib/PHPExiftool/Driver/Tag/Pentax/SensorSize.php deleted file mode 100644 index 519e531c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SensorSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorSize extends AbstractTag -{ - - protected $Id = 53; - - protected $Name = 'SensorSize'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sensor Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Pentax/SerialNumber.php deleted file mode 100644 index 42bd554ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 553; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ShadowCorrection.php b/lib/PHPExiftool/Driver/Tag/Pentax/ShadowCorrection.php deleted file mode 100644 index 8df786795..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ShadowCorrection.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadowCorrection extends AbstractTag -{ - - protected $Id = 121; - - protected $Name = 'ShadowCorrection'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shadow Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto 2', - ), - '0 0' => array( - 'Id' => '0 0', - 'Label' => 'Off', - ), - '1 1' => array( - 'Id' => '1 1', - 'Label' => 'Weak', - ), - '1 2' => array( - 'Id' => '1 2', - 'Label' => 'Normal', - ), - '1 3' => array( - 'Id' => '1 3', - 'Label' => 'Strong', - ), - '2 4' => array( - 'Id' => '2 4', - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ShakeReduction.php b/lib/PHPExiftool/Driver/Tag/Pentax/ShakeReduction.php deleted file mode 100644 index c80071044..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ShakeReduction.php +++ /dev/null @@ -1,128 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShakeReduction extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ShakeReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Shake Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 4, - 'Label' => 'Off (4)', - ), - 3 => array( - 'Id' => 5, - 'Label' => 'On but Disabled', - ), - 4 => array( - 'Id' => 6, - 'Label' => 'On (Video)', - ), - 5 => array( - 'Id' => 7, - 'Label' => 'On (7)', - ), - 6 => array( - 'Id' => 15, - 'Label' => 'On (15)', - ), - 7 => array( - 'Id' => 39, - 'Label' => 'On (mode 2)', - ), - 8 => array( - 'Id' => 135, - 'Label' => 'On (135)', - ), - 9 => array( - 'Id' => 167, - 'Label' => 'On (mode 1)', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 12 => array( - 'Id' => 4, - 'Label' => 'Off (AA simulation off)', - ), - 13 => array( - 'Id' => 5, - 'Label' => 'On but Disabled', - ), - 14 => array( - 'Id' => 6, - 'Label' => 'On (Video)', - ), - 15 => array( - 'Id' => 7, - 'Label' => 'On (AA simulation off)', - ), - 16 => array( - 'Id' => 12, - 'Label' => 'Off (AA simulation type 1)', - ), - 17 => array( - 'Id' => 15, - 'Label' => 'On (AA simulation type 1)', - ), - 18 => array( - 'Id' => 20, - 'Label' => 'Off (AA simulation type 2)', - ), - 19 => array( - 'Id' => 23, - 'Label' => 'On (AA simulation type 2)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Pentax/Sharpness.php deleted file mode 100644 index 5a25f5ce8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Sharpness.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Soft', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Hard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Med Soft', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Med Hard', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Very Soft', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Very Hard', - ), - 7 => array( - 'Id' => 7, - 'Label' => '-4', - ), - 8 => array( - 'Id' => 8, - 'Label' => '+4', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Soft', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'Hard', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ShutterCount.php b/lib/PHPExiftool/Driver/Tag/Pentax/ShutterCount.php deleted file mode 100644 index 65d7f9a93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ShutterCount.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterCount extends AbstractTag -{ - - protected $Id = 93; - - protected $Name = 'ShutterCount'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Shutter Count'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SlaveFlashMeteringSegments.php b/lib/PHPExiftool/Driver/Tag/Pentax/SlaveFlashMeteringSegments.php deleted file mode 100644 index 53db17bfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SlaveFlashMeteringSegments.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlaveFlashMeteringSegments extends AbstractTag -{ - - protected $Id = 523; - - protected $Name = 'SlaveFlashMeteringSegments'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Slave Flash Metering Segments'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SourceDirectoryIndex.php b/lib/PHPExiftool/Driver/Tag/Pentax/SourceDirectoryIndex.php deleted file mode 100644 index cd8653df9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SourceDirectoryIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceDirectoryIndex extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SourceDirectoryIndex'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Source Directory Index'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SourceFileIndex.php b/lib/PHPExiftool/Driver/Tag/Pentax/SourceFileIndex.php deleted file mode 100644 index 06915b76b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SourceFileIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceFileIndex extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SourceFileIndex'; - - protected $FullName = 'Pentax::FilterInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Source File Index'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/SvISOSetting.php b/lib/PHPExiftool/Driver/Tag/Pentax/SvISOSetting.php deleted file mode 100644 index 2a78143db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/SvISOSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SvISOSetting extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'SvISOSetting'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sv ISO Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDAADown.php b/lib/PHPExiftool/Driver/Tag/Pentax/TTLDAADown.php deleted file mode 100644 index 2dc872cc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDAADown.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TTLDAADown extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'TTL_DA_ADown'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'TTL DA A Down'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDAAUp.php b/lib/PHPExiftool/Driver/Tag/Pentax/TTLDAAUp.php deleted file mode 100644 index 9ea6be125..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDAAUp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TTLDAAUp extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'TTL_DA_AUp'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'TTL DA A Up'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDABDown.php b/lib/PHPExiftool/Driver/Tag/Pentax/TTLDABDown.php deleted file mode 100644 index 12ea8f04b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDABDown.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TTLDABDown extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'TTL_DA_BDown'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'TTL DA B Down'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDABUp.php b/lib/PHPExiftool/Driver/Tag/Pentax/TTLDABUp.php deleted file mode 100644 index dcc1436c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/TTLDABUp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TTLDABUp extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'TTL_DA_BUp'; - - protected $FullName = 'Pentax::FlashInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'TTL DA B Up'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailHeight.php b/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailHeight.php deleted file mode 100644 index 77ce31fde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailHeight extends AbstractTag -{ - - protected $Id = 301; - - protected $Name = 'ThumbnailHeight'; - - protected $FullName = 'Pentax::Junk2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailImage.php deleted file mode 100644 index 917f43446..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 307; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'Pentax::Junk2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailLength.php b/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailLength.php deleted file mode 100644 index ca60e4062..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailLength extends AbstractTag -{ - - protected $Id = 303; - - protected $Name = 'ThumbnailLength'; - - protected $FullName = 'Pentax::Junk2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailWidth.php b/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailWidth.php deleted file mode 100644 index 04a797bb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ThumbnailWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailWidth extends AbstractTag -{ - - protected $Id = 299; - - protected $Name = 'ThumbnailWidth'; - - protected $FullName = 'Pentax::Junk2'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/Time.php b/lib/PHPExiftool/Driver/Tag/Pentax/Time.php deleted file mode 100644 index 145792c95..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/Time.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Time extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Time'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ToneCurve.php b/lib/PHPExiftool/Driver/Tag/Pentax/ToneCurve.php deleted file mode 100644 index 552686dcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ToneCurve.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurve extends AbstractTag -{ - - protected $Id = 1026; - - protected $Name = 'ToneCurve'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Curve'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/ToneCurves.php b/lib/PHPExiftool/Driver/Tag/Pentax/ToneCurves.php deleted file mode 100644 index d61658200..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/ToneCurves.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurves extends AbstractTag -{ - - protected $Id = 1027; - - protected $Name = 'ToneCurves'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tone Curves'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/TungstenAWB.php b/lib/PHPExiftool/Driver/Tag/Pentax/TungstenAWB.php deleted file mode 100644 index 0bb60cd1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/TungstenAWB.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TungstenAWB extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'TungstenAWB'; - - protected $FullName = 'Pentax::AWBInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Tungsten AWB'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Subtle Correction', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Strong Correction', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/TvExposureTimeSetting.php b/lib/PHPExiftool/Driver/Tag/Pentax/TvExposureTimeSetting.php deleted file mode 100644 index 2a76f3762..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/TvExposureTimeSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TvExposureTimeSetting extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'TvExposureTimeSetting'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Tv Exposure Time Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/UnknownBlock.php b/lib/PHPExiftool/Driver/Tag/Pentax/UnknownBlock.php deleted file mode 100644 index 1fd67b289..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/UnknownBlock.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownBlock extends AbstractTag -{ - - protected $Id = 1029; - - protected $Name = 'UnknownBlock'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Unknown Block'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/VignettingCorrection.php b/lib/PHPExiftool/Driver/Tag/Pentax/VignettingCorrection.php deleted file mode 100644 index 5acd60cf4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/VignettingCorrection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignettingCorrection extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'VignettingCorrection'; - - protected $FullName = 'Pentax::LensCorr'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Vignetting Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsCloudy.php deleted file mode 100644 index d66bc9b04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsCloudy.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsCloudy extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsCloudy'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Cloudy'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsDaylight.php deleted file mode 100644 index 32b182f73..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsDaylight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsDaylight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsDaylight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Daylight'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFlash.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFlash.php deleted file mode 100644 index 5dfa2c25c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFlash.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsFlash extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsFlash'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Flash'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentD.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentD.php deleted file mode 100644 index adc6d9e53..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentD.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsFluorescentD extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsFluorescentD'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Fluorescent D'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentL.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentL.php deleted file mode 100644 index d5102c780..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentL.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsFluorescentL extends AbstractTag -{ - - protected $Id = 74; - - protected $Name = 'WB_RGGBLevelsFluorescentL'; - - protected $FullName = 'Pentax::WBLevels'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Fluorescent L'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentN.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentN.php deleted file mode 100644 index 40aeffda7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentN.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsFluorescentN extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsFluorescentN'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Fluorescent N'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentW.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentW.php deleted file mode 100644 index c158486a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsFluorescentW.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsFluorescentW extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsFluorescentW'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Fluorescent W'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsShade.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsShade.php deleted file mode 100644 index 1c82fa6b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsShade.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsShade extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsShade'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Shade'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsTungsten.php deleted file mode 100644 index 4704637c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsTungsten.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsTungsten extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGGBLevelsTungsten'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Tungsten'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsUnknown.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsUnknown.php deleted file mode 100644 index 94d4d1749..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUnknown extends AbstractTag -{ - - protected $Id = 83; - - protected $Name = 'WB_RGGBLevelsUnknown'; - - protected $FullName = 'Pentax::WBLevels'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Unknown'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsUserSelected.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsUserSelected.php deleted file mode 100644 index 7ed895885..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBRGGBLevelsUserSelected.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUserSelected extends AbstractTag -{ - - protected $Id = 92; - - protected $Name = 'WB_RGGBLevelsUserSelected'; - - protected $FullName = 'Pentax::WBLevels'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels User Selected'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBShiftAB.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBShiftAB.php deleted file mode 100644 index 9bb9d8ad0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBShiftAB.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBShiftAB extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'WBShiftAB'; - - protected $FullName = 'Pentax::ColorInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'WB Shift AB'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WBShiftGM.php b/lib/PHPExiftool/Driver/Tag/Pentax/WBShiftGM.php deleted file mode 100644 index bc06cd379..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WBShiftGM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBShiftGM extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'WBShiftGM'; - - protected $FullName = 'Pentax::ColorInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'WB Shift GM'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalance.php deleted file mode 100644 index ae6bf6fe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalance.php +++ /dev/null @@ -1,164 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Shade', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fluorescent', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'Shade', - ), - 9 => array( - 'Id' => 3, - 'Label' => 'Fluorescent', - ), - 10 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 11 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 12 => array( - 'Id' => 6, - 'Label' => 'Daylight Fluorescent', - ), - 13 => array( - 'Id' => 7, - 'Label' => 'Day White Fluorescent', - ), - 14 => array( - 'Id' => 8, - 'Label' => 'White Fluorescent', - ), - 15 => array( - 'Id' => 9, - 'Label' => 'Flash', - ), - 16 => array( - 'Id' => 10, - 'Label' => 'Cloudy', - ), - 17 => array( - 'Id' => 11, - 'Label' => 'Warm White Fluorescent', - ), - 18 => array( - 'Id' => 14, - 'Label' => 'Multi Auto', - ), - 19 => array( - 'Id' => 15, - 'Label' => 'Color Temperature Enhancement', - ), - 20 => array( - 'Id' => 17, - 'Label' => 'Kelvin', - ), - 21 => array( - 'Id' => 65534, - 'Label' => 'Unknown', - ), - 22 => array( - 'Id' => 65535, - 'Label' => 'User-Selected', - ), - 23 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 24 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 25 => array( - 'Id' => 2, - 'Label' => 'Shade', - ), - 26 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - 27 => array( - 'Id' => 4, - 'Label' => 'Fluorescent', - ), - 28 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceAutoAdjustment.php b/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceAutoAdjustment.php deleted file mode 100644 index 7ebae8af4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceAutoAdjustment.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceAutoAdjustment extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'WhiteBalanceAutoAdjustment'; - - protected $FullName = 'Pentax::AWBInfo'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'White Balance Auto Adjustment'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceMode.php b/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceMode.php deleted file mode 100644 index 2def99ee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceMode.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceMode extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'WhiteBalanceMode'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Auto (Daylight)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto (Shade)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto (Flash)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto (Tungsten)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Auto (Daylight Fluorescent)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Auto (Day White Fluorescent)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Auto (White Fluorescent)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Auto (Cloudy)', - ), - 65534 => array( - 'Id' => 65534, - 'Label' => 'Unknown', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'User-Selected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceSet.php b/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceSet.php deleted file mode 100644 index 6a213f70c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WhiteBalanceSet.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceSet extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'WhiteBalanceSet'; - - protected $FullName = 'Pentax::CameraSettings'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'White Balance Set'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Daylight', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Shade', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Cloudy', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Daylight Fluorescent', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Day White Fluorescent', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'White Fluorescent', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Tungsten', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Flash', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'Manual', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'Set Color Temperature 1', - ), - 208 => array( - 'Id' => 208, - 'Label' => 'Set Color Temperature 2', - ), - 224 => array( - 'Id' => 224, - 'Label' => 'Set Color Temperature 3', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WhitePoint.php b/lib/PHPExiftool/Driver/Tag/Pentax/WhitePoint.php deleted file mode 100644 index ad7cf681c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WhitePoint.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhitePoint extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'WhitePoint'; - - protected $FullName = 'Pentax::Main'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Point'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Pentax/WorldTimeLocation.php b/lib/PHPExiftool/Driver/Tag/Pentax/WorldTimeLocation.php deleted file mode 100644 index fe159883b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Pentax/WorldTimeLocation.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Pentax; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorldTimeLocation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WorldTimeLocation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Pentax'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Pentax'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'World Time Location'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Hometown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Destination', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField1.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField1.php deleted file mode 100644 index 5a96dd621..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AllColorFlatField1 extends AbstractTag -{ - - protected $Id = 1025; - - protected $Name = 'AllColorFlatField1'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'All Color Flat Field 1'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField2.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField2.php deleted file mode 100644 index 8321f742c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AllColorFlatField2 extends AbstractTag -{ - - protected $Id = 1040; - - protected $Name = 'AllColorFlatField2'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'All Color Flat Field 2'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField3.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField3.php deleted file mode 100644 index 6644acee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/AllColorFlatField3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AllColorFlatField3 extends AbstractTag -{ - - protected $Id = 1046; - - protected $Name = 'AllColorFlatField3'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'All Color Flat Field 3'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ApertureValue.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ApertureValue.php deleted file mode 100644 index cd58876f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureValue extends AbstractTag -{ - - protected $Id = 1025; - - protected $Name = 'ApertureValue'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/BlackLevel.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/BlackLevel.php deleted file mode 100644 index 9cc398075..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/BlackLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel extends AbstractTag -{ - - protected $Id = 541; - - protected $Name = 'BlackLevel'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Black Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/BlackLevelData.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/BlackLevelData.php deleted file mode 100644 index 91e8c1ae0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/BlackLevelData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevelData extends AbstractTag -{ - - protected $Id = 547; - - protected $Name = 'BlackLevelData'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Black Level Data'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/CameraModel.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/CameraModel.php deleted file mode 100644 index e9b66f28a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/CameraModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraModel extends AbstractTag -{ - - protected $Id = 1040; - - protected $Name = 'CameraModel'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/CameraOrientation.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/CameraOrientation.php deleted file mode 100644 index 6c2984cab..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/CameraOrientation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraOrientation extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'CameraOrientation'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate 90 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 270 CW', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ColorMatrix1.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ColorMatrix1.php deleted file mode 100644 index 4a5911636..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ColorMatrix1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrix1 extends AbstractTag -{ - - protected $Id = 262; - - protected $Name = 'ColorMatrix1'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Color Matrix 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ColorMatrix2.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ColorMatrix2.php deleted file mode 100644 index 95da8789e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ColorMatrix2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrix2 extends AbstractTag -{ - - protected $Id = 550; - - protected $Name = 'ColorMatrix2'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Matrix 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/DateTimeOriginal.php deleted file mode 100644 index 53db877ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/DateTimeOriginal.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 274; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ExposureCompensation.php deleted file mode 100644 index ad714c0d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 1026; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/FirmwareVersions.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/FirmwareVersions.php deleted file mode 100644 index 9b098511a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/FirmwareVersions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersions extends AbstractTag -{ - - protected $Id = 769; - - protected $Name = 'FirmwareVersions'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Firmware Versions'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/FocalLength.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/FocalLength.php deleted file mode 100644 index 1b3280745..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 1027; - - protected $Name = 'FocalLength'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ISO.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ISO.php deleted file mode 100644 index d7145bde0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 261; - - protected $Name = 'ISO'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageHeight.php deleted file mode 100644 index b052cc585..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 269; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageNumber.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageNumber.php deleted file mode 100644 index f664ab780..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber extends AbstractTag -{ - - protected $Id = 275; - - protected $Name = 'ImageNumber'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageWidth.php deleted file mode 100644 index 775abce0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 268; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/LensModel.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/LensModel.php deleted file mode 100644 index 115c96acc..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/LensModel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 1042; - - protected $Name = 'LensModel'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Model'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/LinearizationCoefficients1.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/LinearizationCoefficients1.php deleted file mode 100644 index df87a5201..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/LinearizationCoefficients1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinearizationCoefficients1 extends AbstractTag -{ - - protected $Id = 1049; - - protected $Name = 'LinearizationCoefficients1'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Linearization Coefficients 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/LinearizationCoefficients2.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/LinearizationCoefficients2.php deleted file mode 100644 index 88b497fa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/LinearizationCoefficients2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinearizationCoefficients2 extends AbstractTag -{ - - protected $Id = 1050; - - protected $Name = 'LinearizationCoefficients2'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Linearization Coefficients 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ManufactureDate.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ManufactureDate.php deleted file mode 100644 index 40f7c96ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ManufactureDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufactureDate extends AbstractTag -{ - - protected $Id = 1046; - - protected $Name = 'ManufactureDate'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Manufacture Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/MaxApertureValue.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/MaxApertureValue.php deleted file mode 100644 index 8b91a32f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/MaxApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureValue extends AbstractTag -{ - - protected $Id = 1044; - - protected $Name = 'MaxApertureValue'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/MinApertureValue.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/MinApertureValue.php deleted file mode 100644 index 78cc2b274..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/MinApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinApertureValue extends AbstractTag -{ - - protected $Id = 1045; - - protected $Name = 'MinApertureValue'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Min Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/PhaseOne0x0225.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/PhaseOne0x0225.php deleted file mode 100644 index aaeca70e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/PhaseOne0x0225.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhaseOne0x0225 extends AbstractTag -{ - - protected $Id = 549; - - protected $Name = 'PhaseOne_0x0225'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Phase One 0x0225'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/RawData.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/RawData.php deleted file mode 100644 index e357a1046..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/RawData.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawData extends AbstractTag -{ - - protected $Id = 271; - - protected $Name = 'RawData'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/RawFormat.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/RawFormat.php deleted file mode 100644 index 8c1bffbcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/RawFormat.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawFormat extends AbstractTag -{ - - protected $Id = 270; - - protected $Name = 'RawFormat'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Format'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'RAW 1', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'RAW 2', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'IIQ L', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'IIQ S', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'IIQ Sv2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/RedBlueFlatField.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/RedBlueFlatField.php deleted file mode 100644 index 2db06ce49..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/RedBlueFlatField.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedBlueFlatField extends AbstractTag -{ - - protected $Id = 1035; - - protected $Name = 'RedBlueFlatField'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Red Blue Flat Field'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0404.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0404.php deleted file mode 100644 index a43c73a71..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0404.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration0x0404 extends AbstractTag -{ - - protected $Id = 1028; - - protected $Name = 'SensorCalibration_0x0404'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sensor Calibration 0x0404'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0405.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0405.php deleted file mode 100644 index e7dbe117a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0405.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration0x0405 extends AbstractTag -{ - - protected $Id = 1029; - - protected $Name = 'SensorCalibration_0x0405'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sensor Calibration 0x0405'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0406.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0406.php deleted file mode 100644 index 00e3d098a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0406.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration0x0406 extends AbstractTag -{ - - protected $Id = 1030; - - protected $Name = 'SensorCalibration_0x0406'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Sensor Calibration 0x0406'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0408.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0408.php deleted file mode 100644 index 09f4a2f41..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0408.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration0x0408 extends AbstractTag -{ - - protected $Id = 1032; - - protected $Name = 'SensorCalibration_0x0408'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Sensor Calibration 0x0408'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0413.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0413.php deleted file mode 100644 index 7fa96d810..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x0413.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration0x0413 extends AbstractTag -{ - - protected $Id = 1043; - - protected $Name = 'SensorCalibration_0x0413'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'double'; - - protected $Writable = false; - - protected $Description = 'Sensor Calibration 0x0413'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x041c.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x041c.php deleted file mode 100644 index fee7f9980..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x041c.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration0x041c extends AbstractTag -{ - - protected $Id = 1052; - - protected $Name = 'SensorCalibration_0x041c'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Sensor Calibration 0x041c'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x041e.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x041e.php deleted file mode 100644 index 41f85d04c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorCalibration0x041e.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorCalibration0x041e extends AbstractTag -{ - - protected $Id = 1054; - - protected $Name = 'SensorCalibration_0x041e'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Sensor Calibration 0x041e'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorDefects.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorDefects.php deleted file mode 100644 index 7ea24e05a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorDefects.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorDefects extends AbstractTag -{ - - protected $Id = 1024; - - protected $Name = 'SensorDefects'; - - protected $FullName = 'PhaseOne::SensorCalibration'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Sensor Defects'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorHeight.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorHeight.php deleted file mode 100644 index 3b0ae8c29..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorHeight extends AbstractTag -{ - - protected $Id = 265; - - protected $Name = 'SensorHeight'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorLeftMargin.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorLeftMargin.php deleted file mode 100644 index a60390e37..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorLeftMargin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorLeftMargin extends AbstractTag -{ - - protected $Id = 266; - - protected $Name = 'SensorLeftMargin'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Left Margin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTemperature.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTemperature.php deleted file mode 100644 index 3094255d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTemperature extends AbstractTag -{ - - protected $Id = 528; - - protected $Name = 'SensorTemperature'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTemperature2.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTemperature2.php deleted file mode 100644 index a2d645847..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTemperature2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTemperature2 extends AbstractTag -{ - - protected $Id = 529; - - protected $Name = 'SensorTemperature2'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Temperature 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTopMargin.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTopMargin.php deleted file mode 100644 index d71e1709c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorTopMargin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTopMargin extends AbstractTag -{ - - protected $Id = 267; - - protected $Name = 'SensorTopMargin'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Top Margin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorWidth.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorWidth.php deleted file mode 100644 index 004017eee..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SensorWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorWidth extends AbstractTag -{ - - protected $Id = 264; - - protected $Name = 'SensorWidth'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SerialNumber.php deleted file mode 100644 index eeddf5e63..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/ShutterSpeedValue.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/ShutterSpeedValue.php deleted file mode 100644 index 5b8393a75..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/ShutterSpeedValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedValue extends AbstractTag -{ - - protected $Id = 1024; - - protected $Name = 'ShutterSpeedValue'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Speed Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/Software.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/Software.php deleted file mode 100644 index 20091ec76..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/Software.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 515; - - protected $Name = 'Software'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/SplitColumn.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/SplitColumn.php deleted file mode 100644 index 204fdbbd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/SplitColumn.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SplitColumn extends AbstractTag -{ - - protected $Id = 546; - - protected $Name = 'SplitColumn'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Split Column'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/StripOffsets.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/StripOffsets.php deleted file mode 100644 index 19be037ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/StripOffsets.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StripOffsets extends AbstractTag -{ - - protected $Id = 540; - - protected $Name = 'StripOffsets'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Strip Offsets'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/System.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/System.php deleted file mode 100644 index 15f6d5efc..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/System.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class System extends AbstractTag -{ - - protected $Id = 516; - - protected $Name = 'System'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'System'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/UnknownDate.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/UnknownDate.php deleted file mode 100644 index 4132a42e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/UnknownDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownDate extends AbstractTag -{ - - protected $Id = 530; - - protected $Name = 'UnknownDate'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Unknown Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhaseOne/WBRGBLevels.php b/lib/PHPExiftool/Driver/Tag/PhaseOne/WBRGBLevels.php deleted file mode 100644 index 2759484aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhaseOne/WBRGBLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhaseOne; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels extends AbstractTag -{ - - protected $Id = 263; - - protected $Name = 'WB_RGBLevels'; - - protected $FullName = 'PhaseOne::Main'; - - protected $GroupName = 'PhaseOne'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PhaseOne'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/AuthoringSoftwareRelease.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/AuthoringSoftwareRelease.php deleted file mode 100644 index 31f98a645..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/AuthoringSoftwareRelease.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthoringSoftwareRelease extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'AuthoringSoftwareRelease'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Authoring Software Release'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/CharacterEscapeSequence.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/CharacterEscapeSequence.php deleted file mode 100644 index 8e52e9827..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/CharacterEscapeSequence.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharacterEscapeSequence extends AbstractTag -{ - - protected $Id = 133; - - protected $Name = 'CharacterEscapeSequence'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Character Escape Sequence'; - - protected $flag_Binary = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/CharacterSet.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/CharacterSet.php deleted file mode 100644 index d0142829c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/CharacterSet.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharacterSet extends AbstractTag -{ - - protected $Id = 132; - - protected $Name = 'CharacterSet'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Character Set'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => '38 characters ISO 646', - ), - 2 => array( - 'Id' => 2, - 'Label' => '65 characters ISO 646', - ), - 3 => array( - 'Id' => 3, - 'Label' => '95 characters ISO 646', - ), - 4 => array( - 'Id' => 4, - 'Label' => '191 characters ISO 8850-1', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'ISO 2022', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Includes characters not ISO 2375 registered', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/CompressionClass.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/CompressionClass.php deleted file mode 100644 index a5654c4c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/CompressionClass.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionClass extends AbstractTag -{ - - protected $Id = '1538.3'; - - protected $Name = 'CompressionClass'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Compression Class'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Class 1 - 35mm film; Pictoral hard copy', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Class 2 - Large format film', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Class 3 - Text and graphics, high resolution', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Class 4 - Text and graphics, high dynamic range', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/CopyrightFileName.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/CopyrightFileName.php deleted file mode 100644 index 86236b2a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/CopyrightFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightFileName extends AbstractTag -{ - - protected $Id = 332; - - protected $Name = 'CopyrightFileName'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Copyright File Name'; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/CopyrightStatus.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/CopyrightStatus.php deleted file mode 100644 index 05395f93d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/CopyrightStatus.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightStatus extends AbstractTag -{ - - protected $Id = 331; - - protected $Name = 'CopyrightStatus'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Copyright Status'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Restrictions apply', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Not specified', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/CreateDate.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/CreateDate.php deleted file mode 100644 index f8cfc939e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'CreateDate'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/HasSBA.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/HasSBA.php deleted file mode 100644 index 4d6b635c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/HasSBA.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasSBA extends AbstractTag -{ - - protected $Id = 225; - - protected $Name = 'HasSBA'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Has SBA'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageHeight.php deleted file mode 100644 index 3a0263632..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = '1538.2'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageMagnificationDescriptor.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageMagnificationDescriptor.php deleted file mode 100644 index b32a9fe81..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageMagnificationDescriptor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageMagnificationDescriptor extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'ImageMagnificationDescriptor'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Magnification Descriptor'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageMedium.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageMedium.php deleted file mode 100644 index 7558c3868..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageMedium.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageMedium extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'ImageMedium'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Medium'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Color negative', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Color reversal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Color hard copy', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Thermal hard copy', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Black and white negative', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Black and white reversal', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Black and white hard copy', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Internegative', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Synthetic image', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageWidth.php deleted file mode 100644 index b2f74238a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = '1538.1'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageWorkstationMake.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageWorkstationMake.php deleted file mode 100644 index 3518cd73f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ImageWorkstationMake.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWorkstationMake extends AbstractTag -{ - - protected $Id = 112; - - protected $Name = 'ImageWorkstationMake'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Image Workstation Make'; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ModifyDate.php deleted file mode 100644 index 772d5c173..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/Orientation.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/Orientation.php deleted file mode 100644 index 1a0f1bc7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/Orientation.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 1538; - - protected $Name = 'Orientation'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate 270 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 180', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 90 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/PhotoFinisherName.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/PhotoFinisherName.php deleted file mode 100644 index 8b57c1fdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/PhotoFinisherName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoFinisherName extends AbstractTag -{ - - protected $Id = 165; - - protected $Name = 'PhotoFinisherName'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Photo Finisher Name'; - - protected $MaxLength = 60; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ProductType.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ProductType.php deleted file mode 100644 index 6a09d54e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ProductType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductType extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'ProductType'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Product Type'; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerFirmwareDate.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerFirmwareDate.php deleted file mode 100644 index 444acc50a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerFirmwareDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerFirmwareDate extends AbstractTag -{ - - protected $Id = 82; - - protected $Name = 'ScannerFirmwareDate'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scanner Firmware Date'; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerFirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerFirmwareVersion.php deleted file mode 100644 index 4c1d04d08..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerFirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerFirmwareVersion extends AbstractTag -{ - - protected $Id = 78; - - protected $Name = 'ScannerFirmwareVersion'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scanner Firmware Version'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerPixelSize.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerPixelSize.php deleted file mode 100644 index 1e731a7bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerPixelSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerPixelSize extends AbstractTag -{ - - protected $Id = 110; - - protected $Name = 'ScannerPixelSize'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Scanner Pixel Size'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerProductID.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerProductID.php deleted file mode 100644 index b04212990..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerProductID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerProductID extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'ScannerProductID'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scanner Product ID'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerSerialNumber.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerSerialNumber.php deleted file mode 100644 index 038cc3eea..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerSerialNumber extends AbstractTag -{ - - protected $Id = 90; - - protected $Name = 'ScannerSerialNumber'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scanner Serial Number'; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerVendorID.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerVendorID.php deleted file mode 100644 index 1c3cca621..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/ScannerVendorID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScannerVendorID extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'ScannerVendorID'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scanner Vendor ID'; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmCommand.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmCommand.php deleted file mode 100644 index 9fbe7493a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmCommand.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneBalanceAlgorithmCommand extends AbstractTag -{ - - protected $Id = 230; - - protected $Name = 'SceneBalanceAlgorithmCommand'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Scene Balance Algorithm Command'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Neutral SBA On, Color SBA On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Neutral SBA Off, Color SBA Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Neutral SBA On, Color SBA Off', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Neutral SBA Off, Color SBA On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmFilmID.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmFilmID.php deleted file mode 100644 index 920799029..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmFilmID.php +++ /dev/null @@ -1,922 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneBalanceAlgorithmFilmID extends AbstractTag -{ - - protected $Id = 325; - - protected $Name = 'SceneBalanceAlgorithmFilmID'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Scene Balance Algorithm Film ID'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => '3M ScotchColor AT 100', - ), - 2 => array( - 'Id' => 2, - 'Label' => '3M ScotchColor AT 200', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3M ScotchColor HR2 400', - ), - 7 => array( - 'Id' => 7, - 'Label' => '3M Scotch HR 200 Gen 2', - ), - 9 => array( - 'Id' => 9, - 'Label' => '3M Scotch HR 400 Gen 2', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Agfa Agfacolor XRS 400 Gen 1', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Agfa Agfacolor XRG/XRS 400', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Agfa Agfacolor XRG/XRS 200', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Agfa Agfacolor XRS 1000 Gen 2', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Agfa Agfacolor XRS 400 Gen 2', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Agfa Agfacolor XRS/XRC 100', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Fuji Reala 100 (JAPAN)', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Fuji Reala 100 Gen 1', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Fuji Reala 100 Gen 2', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Fuji SHR 400 Gen 2', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Fuji Super HG 100', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Fuji Super HG 1600 Gen 1', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Fuji Super HG 200', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Fuji Super HG 400', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Fuji Super HG 100 Gen 2', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Fuji Super HR 100 Gen 1', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Fuji Super HR 100 Gen 2', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Fuji Super HR 1600 Gen 2', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Fuji Super HR 200 Gen 1', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Fuji Super HR 200 Gen 2', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Fuji Super HR 400 Gen 1', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Fuji NSP 160S (Pro)', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Kodak Kodacolor VR 100 Gen 2', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Kodak Gold 400 Gen 3', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Kodak Ektar 100 Gen 1', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Kodak Ektar 1000 Gen 1', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Kodak Ektar 125 Gen 1', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Kodak Royal Gold 25 RZ', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Kodak Gold 1600 Gen 1', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Kodak Gold 200 Gen 2', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Kodak Gold 400 Gen 2', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Kodak Kodacolor VR 100 Gen 1', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Kodak Kodacolor VR 1000 Gen 2', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Kodak Kodacolor VR 1000 Gen 1', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Kodak Kodacolor VR 200 Gen 1', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Kodak Kodacolor VR 400 Gen 1', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Kodak Kodacolor VR 200 Gen 2', - ), - 71 => array( - 'Id' => 71, - 'Label' => 'Kodak Kodacolor VRG 100 Gen 1', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Kodak Gold 100 Gen 2', - ), - 73 => array( - 'Id' => 73, - 'Label' => 'Kodak Kodacolor VRG 200 Gen 1', - ), - 74 => array( - 'Id' => 74, - 'Label' => 'Kodak Gold 400 Gen 1', - ), - 87 => array( - 'Id' => 87, - 'Label' => 'Kodak Ektacolor Gold 160', - ), - 88 => array( - 'Id' => 88, - 'Label' => 'Kodak Ektapress 1600 Gen 1 PPC', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Kodak Ektapress Gold 100 Gen 1 PPA', - ), - 90 => array( - 'Id' => 90, - 'Label' => 'Kodak Ektapress Gold 400 PPB-3', - ), - 92 => array( - 'Id' => 92, - 'Label' => 'Kodak Ektar 25 Professional PHR', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'Kodak T-Max 100 Professional', - ), - 98 => array( - 'Id' => 98, - 'Label' => 'Kodak T-Max 3200 Professional', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'Kodak T-Max 400 Professional', - ), - 101 => array( - 'Id' => 101, - 'Label' => 'Kodak Vericolor 400 Prof VPH', - ), - 102 => array( - 'Id' => 102, - 'Label' => 'Kodak Vericolor III Pro', - ), - 121 => array( - 'Id' => 121, - 'Label' => 'Konika Konica Color SR-G 3200', - ), - 122 => array( - 'Id' => 122, - 'Label' => 'Konika Konica Color Super SR100', - ), - 123 => array( - 'Id' => 123, - 'Label' => 'Konika Konica Color Super SR 400', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'Kodak Gold Unknown', - ), - 139 => array( - 'Id' => 139, - 'Label' => 'Kodak Unknown Neg A- Normal SBA', - ), - 143 => array( - 'Id' => 143, - 'Label' => 'Kodak Ektar 100 Gen 2', - ), - 147 => array( - 'Id' => 147, - 'Label' => 'Kodak Kodacolor CII', - ), - 148 => array( - 'Id' => 148, - 'Label' => 'Kodak Kodacolor II', - ), - 149 => array( - 'Id' => 149, - 'Label' => 'Kodak Gold Plus 200 Gen 3', - ), - 150 => array( - 'Id' => 150, - 'Label' => 'Kodak Internegative +10% Contrast', - ), - 151 => array( - 'Id' => 151, - 'Label' => 'Agfa Agfacolor Ultra 50', - ), - 152 => array( - 'Id' => 152, - 'Label' => 'Fuji NHG 400', - ), - 153 => array( - 'Id' => 153, - 'Label' => 'Agfa Agfacolor XRG 100', - ), - 154 => array( - 'Id' => 154, - 'Label' => 'Kodak Gold Plus 100 Gen 3', - ), - 155 => array( - 'Id' => 155, - 'Label' => 'Konika Konica Color Super SR200 Gen 1', - ), - 156 => array( - 'Id' => 156, - 'Label' => 'Konika Konica Color SR-G 160', - ), - 157 => array( - 'Id' => 157, - 'Label' => 'Agfa Agfacolor Optima 125', - ), - 158 => array( - 'Id' => 158, - 'Label' => 'Agfa Agfacolor Portrait 160', - ), - 162 => array( - 'Id' => 162, - 'Label' => 'Kodak Kodacolor VRG 400 Gen 1', - ), - 163 => array( - 'Id' => 163, - 'Label' => 'Kodak Gold 200 Gen 1', - ), - 164 => array( - 'Id' => 164, - 'Label' => 'Kodak Kodacolor VRG 100 Gen 2', - ), - 174 => array( - 'Id' => 174, - 'Label' => 'Kodak Internegative +20% Contrast', - ), - 175 => array( - 'Id' => 175, - 'Label' => 'Kodak Internegative +30% Contrast', - ), - 176 => array( - 'Id' => 176, - 'Label' => 'Kodak Internegative +40% Contrast', - ), - 184 => array( - 'Id' => 184, - 'Label' => 'Kodak TMax-100 D-76 CI = .40', - ), - 185 => array( - 'Id' => 185, - 'Label' => 'Kodak TMax-100 D-76 CI = .50', - ), - 186 => array( - 'Id' => 186, - 'Label' => 'Kodak TMax-100 D-76 CI = .55', - ), - 187 => array( - 'Id' => 187, - 'Label' => 'Kodak TMax-100 D-76 CI = .70', - ), - 188 => array( - 'Id' => 188, - 'Label' => 'Kodak TMax-100 D-76 CI = .80', - ), - 189 => array( - 'Id' => 189, - 'Label' => 'Kodak TMax-100 TMax CI = .40', - ), - 190 => array( - 'Id' => 190, - 'Label' => 'Kodak TMax-100 TMax CI = .50', - ), - 191 => array( - 'Id' => 191, - 'Label' => 'Kodak TMax-100 TMax CI = .55', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'Kodak TMax-100 TMax CI = .70', - ), - 193 => array( - 'Id' => 193, - 'Label' => 'Kodak TMax-100 TMax CI = .80', - ), - 195 => array( - 'Id' => 195, - 'Label' => 'Kodak TMax-400 D-76 CI = .40', - ), - 196 => array( - 'Id' => 196, - 'Label' => 'Kodak TMax-400 D-76 CI = .50', - ), - 197 => array( - 'Id' => 197, - 'Label' => 'Kodak TMax-400 D-76 CI = .55', - ), - 198 => array( - 'Id' => 198, - 'Label' => 'Kodak TMax-400 D-76 CI = .70', - ), - 214 => array( - 'Id' => 214, - 'Label' => 'Kodak TMax-400 D-76 CI = .80', - ), - 215 => array( - 'Id' => 215, - 'Label' => 'Kodak TMax-400 TMax CI = .40', - ), - 216 => array( - 'Id' => 216, - 'Label' => 'Kodak TMax-400 TMax CI = .50', - ), - 217 => array( - 'Id' => 217, - 'Label' => 'Kodak TMax-400 TMax CI = .55', - ), - 218 => array( - 'Id' => 218, - 'Label' => 'Kodak TMax-400 TMax CI = .70', - ), - 219 => array( - 'Id' => 219, - 'Label' => 'Kodak TMax-400 TMax CI = .80', - ), - 224 => array( - 'Id' => 224, - 'Label' => '3M ScotchColor ATG 400/EXL 400', - ), - 266 => array( - 'Id' => 266, - 'Label' => 'Agfa Agfacolor Optima 200', - ), - 267 => array( - 'Id' => 267, - 'Label' => 'Konika Impressa 50', - ), - 268 => array( - 'Id' => 268, - 'Label' => 'Polaroid Polaroid CP 200', - ), - 269 => array( - 'Id' => 269, - 'Label' => 'Konika Konica Color Super SR200 Gen 2', - ), - 270 => array( - 'Id' => 270, - 'Label' => 'ILFORD XP2 400', - ), - 271 => array( - 'Id' => 271, - 'Label' => 'Polaroid Polaroid Color HD2 100', - ), - 272 => array( - 'Id' => 272, - 'Label' => 'Polaroid Polaroid Color HD2 400', - ), - 273 => array( - 'Id' => 273, - 'Label' => 'Polaroid Polaroid Color HD2 200', - ), - 282 => array( - 'Id' => 282, - 'Label' => '3M ScotchColor ATG-1 200', - ), - 284 => array( - 'Id' => 284, - 'Label' => 'Konika XG 400', - ), - 307 => array( - 'Id' => 307, - 'Label' => 'Kodak Universal Reversal B/W', - ), - 308 => array( - 'Id' => 308, - 'Label' => 'Kodak RPC Copy Film Gen 1', - ), - 312 => array( - 'Id' => 312, - 'Label' => 'Kodak Universal E6', - ), - 324 => array( - 'Id' => 324, - 'Label' => 'Kodak Gold Ultra 400 Gen 4', - ), - 328 => array( - 'Id' => 328, - 'Label' => 'Fuji Super G 100', - ), - 329 => array( - 'Id' => 329, - 'Label' => 'Fuji Super G 200', - ), - 330 => array( - 'Id' => 330, - 'Label' => 'Fuji Super G 400 Gen 2', - ), - 333 => array( - 'Id' => 333, - 'Label' => 'Kodak Universal K14', - ), - 334 => array( - 'Id' => 334, - 'Label' => 'Fuji Super G 400 Gen 1', - ), - 366 => array( - 'Id' => 366, - 'Label' => 'Kodak Vericolor HC 6329 VHC', - ), - 367 => array( - 'Id' => 367, - 'Label' => 'Kodak Vericolor HC 4329 VHC', - ), - 368 => array( - 'Id' => 368, - 'Label' => 'Kodak Vericolor L 6013 VPL', - ), - 369 => array( - 'Id' => 369, - 'Label' => 'Kodak Vericolor L 4013 VPL', - ), - 418 => array( - 'Id' => 418, - 'Label' => 'Kodak Ektacolor Gold II 400 Prof', - ), - 430 => array( - 'Id' => 430, - 'Label' => 'Kodak Royal Gold 1000', - ), - 431 => array( - 'Id' => 431, - 'Label' => 'Kodak Kodacolor VR 200 / 5093', - ), - 432 => array( - 'Id' => 432, - 'Label' => 'Kodak Gold Plus 100 Gen 4', - ), - 443 => array( - 'Id' => 443, - 'Label' => 'Kodak Royal Gold 100', - ), - 444 => array( - 'Id' => 444, - 'Label' => 'Kodak Royal Gold 400', - ), - 445 => array( - 'Id' => 445, - 'Label' => 'Kodak Universal E6 auto-balance', - ), - 446 => array( - 'Id' => 446, - 'Label' => 'Kodak Universal E6 illum. corr.', - ), - 447 => array( - 'Id' => 447, - 'Label' => 'Kodak Universal K14 auto-balance', - ), - 448 => array( - 'Id' => 448, - 'Label' => 'Kodak Universal K14 illum. corr.', - ), - 449 => array( - 'Id' => 449, - 'Label' => 'Kodak Ektar 100 Gen 3 SY', - ), - 456 => array( - 'Id' => 456, - 'Label' => 'Kodak Ektar 25', - ), - 457 => array( - 'Id' => 457, - 'Label' => 'Kodak Ektar 100 Gen 3 CX', - ), - 458 => array( - 'Id' => 458, - 'Label' => 'Kodak Ektapress Plus 100 Prof PJA-1', - ), - 459 => array( - 'Id' => 459, - 'Label' => 'Kodak Ektapress Gold II 100 Prof', - ), - 460 => array( - 'Id' => 460, - 'Label' => 'Kodak Pro 100 PRN', - ), - 461 => array( - 'Id' => 461, - 'Label' => 'Kodak Vericolor HC 100 Prof VHC-2', - ), - 462 => array( - 'Id' => 462, - 'Label' => 'Kodak Prof Color Neg 100', - ), - 463 => array( - 'Id' => 463, - 'Label' => 'Kodak Ektar 1000 Gen 2', - ), - 464 => array( - 'Id' => 464, - 'Label' => 'Kodak Ektapress Plus 1600 Pro PJC-1', - ), - 465 => array( - 'Id' => 465, - 'Label' => 'Kodak Ektapress Gold II 1600 Prof', - ), - 466 => array( - 'Id' => 466, - 'Label' => 'Kodak Super Gold 1600 GF Gen 2', - ), - 467 => array( - 'Id' => 467, - 'Label' => 'Kodak Kodacolor 100 Print Gen 4', - ), - 468 => array( - 'Id' => 468, - 'Label' => 'Kodak Super Gold 100 Gen 4', - ), - 469 => array( - 'Id' => 469, - 'Label' => 'Kodak Gold 100 Gen 4', - ), - 470 => array( - 'Id' => 470, - 'Label' => 'Kodak Gold III 100 Gen 4', - ), - 471 => array( - 'Id' => 471, - 'Label' => 'Kodak Funtime 100 FA', - ), - 472 => array( - 'Id' => 472, - 'Label' => 'Kodak Funtime 200 FB', - ), - 473 => array( - 'Id' => 473, - 'Label' => 'Kodak Kodacolor VR 200 Gen 4', - ), - 474 => array( - 'Id' => 474, - 'Label' => 'Kodak Gold Super 200 Gen 4', - ), - 475 => array( - 'Id' => 475, - 'Label' => 'Kodak Kodacolor 200 Print Gen 4', - ), - 476 => array( - 'Id' => 476, - 'Label' => 'Kodak Super Gold 200 Gen 4', - ), - 477 => array( - 'Id' => 477, - 'Label' => 'Kodak Gold 200 Gen 4', - ), - 478 => array( - 'Id' => 478, - 'Label' => 'Kodak Gold III 200 Gen 4', - ), - 479 => array( - 'Id' => 479, - 'Label' => 'Kodak Gold Ultra 400 Gen 5', - ), - 480 => array( - 'Id' => 480, - 'Label' => 'Kodak Super Gold 400 Gen 5', - ), - 481 => array( - 'Id' => 481, - 'Label' => 'Kodak Gold 400 Gen 5', - ), - 482 => array( - 'Id' => 482, - 'Label' => 'Kodak Gold III 400 Gen 5', - ), - 483 => array( - 'Id' => 483, - 'Label' => 'Kodak Kodacolor 400 Print Gen 5', - ), - 484 => array( - 'Id' => 484, - 'Label' => 'Kodak Ektapress Plus 400 Prof PJB-2', - ), - 485 => array( - 'Id' => 485, - 'Label' => 'Kodak Ektapress Gold II 400 Prof G5', - ), - 486 => array( - 'Id' => 486, - 'Label' => 'Kodak Pro 400 PPF-2', - ), - 487 => array( - 'Id' => 487, - 'Label' => 'Kodak Ektacolor Gold II 400 EGP-4', - ), - 488 => array( - 'Id' => 488, - 'Label' => 'Kodak Ektacolor Gold 400 Prof EGP-4', - ), - 489 => array( - 'Id' => 489, - 'Label' => 'Kodak Ektapress Gold II Multspd PJM', - ), - 490 => array( - 'Id' => 490, - 'Label' => 'Kodak Pro 400 MC PMC', - ), - 491 => array( - 'Id' => 491, - 'Label' => 'Kodak Vericolor 400 Prof VPH-2', - ), - 492 => array( - 'Id' => 492, - 'Label' => 'Kodak Vericolor 400 Plus Prof VPH-2', - ), - 493 => array( - 'Id' => 493, - 'Label' => 'Kodak Unknown Neg Product Code 83', - ), - 505 => array( - 'Id' => 505, - 'Label' => 'Kodak Ektacolor Pro Gold 160 GPX', - ), - 508 => array( - 'Id' => 508, - 'Label' => 'Kodak Royal Gold 200', - ), - 517 => array( - 'Id' => 517, - 'Label' => 'Kodak 4050000000', - ), - 519 => array( - 'Id' => 519, - 'Label' => 'Kodak Gold Plus 100 Gen 5', - ), - 520 => array( - 'Id' => 520, - 'Label' => 'Kodak Gold 800 Gen 1', - ), - 521 => array( - 'Id' => 521, - 'Label' => 'Kodak Gold Super 200 Gen 5', - ), - 522 => array( - 'Id' => 522, - 'Label' => 'Kodak Ektapress Plus 200 Prof', - ), - 523 => array( - 'Id' => 523, - 'Label' => 'Kodak 4050 E6 auto-balance', - ), - 524 => array( - 'Id' => 524, - 'Label' => 'Kodak 4050 E6 ilum. corr.', - ), - 525 => array( - 'Id' => 525, - 'Label' => 'Kodak 4050 K14', - ), - 526 => array( - 'Id' => 526, - 'Label' => 'Kodak 4050 K14 auto-balance', - ), - 527 => array( - 'Id' => 527, - 'Label' => 'Kodak 4050 K14 ilum. corr.', - ), - 528 => array( - 'Id' => 528, - 'Label' => 'Kodak 4050 Reversal B&W', - ), - 532 => array( - 'Id' => 532, - 'Label' => 'Kodak Advantix 200', - ), - 533 => array( - 'Id' => 533, - 'Label' => 'Kodak Advantix 400', - ), - 534 => array( - 'Id' => 534, - 'Label' => 'Kodak Advantix 100', - ), - 535 => array( - 'Id' => 535, - 'Label' => 'Kodak Ektapress Multspd Prof PJM-2', - ), - 536 => array( - 'Id' => 536, - 'Label' => 'Kodak Kodacolor VR 200 Gen 5', - ), - 537 => array( - 'Id' => 537, - 'Label' => 'Kodak Funtime 200 FB Gen 2', - ), - 538 => array( - 'Id' => 538, - 'Label' => 'Kodak Commercial 200', - ), - 539 => array( - 'Id' => 539, - 'Label' => 'Kodak Royal Gold 25 Copystand', - ), - 540 => array( - 'Id' => 540, - 'Label' => 'Kodak Kodacolor DA 100 Gen 5', - ), - 545 => array( - 'Id' => 545, - 'Label' => 'Kodak Kodacolor VR 400 Gen 2', - ), - 546 => array( - 'Id' => 546, - 'Label' => 'Kodak Gold 100 Gen 6', - ), - 547 => array( - 'Id' => 547, - 'Label' => 'Kodak Gold 200 Gen 6', - ), - 548 => array( - 'Id' => 548, - 'Label' => 'Kodak Gold 400 Gen 6', - ), - 549 => array( - 'Id' => 549, - 'Label' => 'Kodak Royal Gold 100 Gen 2', - ), - 550 => array( - 'Id' => 550, - 'Label' => 'Kodak Royal Gold 200 Gen 2', - ), - 551 => array( - 'Id' => 551, - 'Label' => 'Kodak Royal Gold 400 Gen 2', - ), - 552 => array( - 'Id' => 552, - 'Label' => 'Kodak Gold Max 800 Gen 2', - ), - 554 => array( - 'Id' => 554, - 'Label' => 'Kodak 4050 E6 high contrast', - ), - 555 => array( - 'Id' => 555, - 'Label' => 'Kodak 4050 E6 low saturation high contrast', - ), - 556 => array( - 'Id' => 556, - 'Label' => 'Kodak 4050 E6 low saturation', - ), - 557 => array( - 'Id' => 557, - 'Label' => 'Kodak Universal E-6 Low Saturation', - ), - 558 => array( - 'Id' => 558, - 'Label' => 'Kodak T-Max T400 CN', - ), - 563 => array( - 'Id' => 563, - 'Label' => 'Kodak Ektapress PJ100', - ), - 564 => array( - 'Id' => 564, - 'Label' => 'Kodak Ektapress PJ400', - ), - 565 => array( - 'Id' => 565, - 'Label' => 'Kodak Ektapress PJ800', - ), - 567 => array( - 'Id' => 567, - 'Label' => 'Kodak Portra 160NC', - ), - 568 => array( - 'Id' => 568, - 'Label' => 'Kodak Portra 160VC', - ), - 569 => array( - 'Id' => 569, - 'Label' => 'Kodak Portra 400NC', - ), - 570 => array( - 'Id' => 570, - 'Label' => 'Kodak Portra 400VC', - ), - 575 => array( - 'Id' => 575, - 'Label' => 'Kodak Advantix 100-2', - ), - 576 => array( - 'Id' => 576, - 'Label' => 'Kodak Advantix 200-2', - ), - 577 => array( - 'Id' => 577, - 'Label' => 'Kodak Advantix Black & White + 400', - ), - 578 => array( - 'Id' => 578, - 'Label' => 'Kodak Ektapress PJ800-2', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmRevision.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmRevision.php deleted file mode 100644 index e4dc3e74d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/SceneBalanceAlgorithmRevision.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneBalanceAlgorithmRevision extends AbstractTag -{ - - protected $Id = 228; - - protected $Name = 'SceneBalanceAlgorithmRevision'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Scene Balance Algorithm Revision'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoCD/SpecificationVersion.php b/lib/PHPExiftool/Driver/Tag/PhotoCD/SpecificationVersion.php deleted file mode 100644 index d72c57980..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoCD/SpecificationVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoCD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecificationVersion extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'SpecificationVersion'; - - protected $FullName = 'PhotoCD::Main'; - - protected $GroupName = 'PhotoCD'; - - protected $g0 = 'PhotoCD'; - - protected $g1 = 'PhotoCD'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Specification Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ColorClass.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ColorClass.php deleted file mode 100644 index b90ec88d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ColorClass.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorClass extends AbstractTag -{ - - protected $Id = 222; - - protected $Name = 'ColorClass'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Class'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0 (None)', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 (Winner)', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 (Winner alt)', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3 (Superior)', - ), - 4 => array( - 'Id' => 4, - 'Label' => '4 (Superior alt)', - ), - 5 => array( - 'Id' => 5, - 'Label' => '5 (Typical)', - ), - 6 => array( - 'Id' => 6, - 'Label' => '6 (Typical alt)', - ), - 7 => array( - 'Id' => 7, - 'Label' => '7 (Extras)', - ), - 8 => array( - 'Id' => 8, - 'Label' => '8 (Trash)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ConstrainedCropHeight.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ConstrainedCropHeight.php deleted file mode 100644 index 2de55a3aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ConstrainedCropHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConstrainedCropHeight extends AbstractTag -{ - - protected $Id = 214; - - protected $Name = 'ConstrainedCropHeight'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Constrained Crop Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ConstrainedCropWidth.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ConstrainedCropWidth.php deleted file mode 100644 index 2f22fd957..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/ConstrainedCropWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConstrainedCropWidth extends AbstractTag -{ - - protected $Id = 213; - - protected $Name = 'ConstrainedCropWidth'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Constrained Crop Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropBottom.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropBottom.php deleted file mode 100644 index f53efc471..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropBottom extends AbstractTag -{ - - protected $Id = 220; - - protected $Name = 'CropBottom'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropLeft.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropLeft.php deleted file mode 100644 index 2bf527296..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeft extends AbstractTag -{ - - protected $Id = 217; - - protected $Name = 'CropLeft'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropRight.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropRight.php deleted file mode 100644 index e89b49ee1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropRight extends AbstractTag -{ - - protected $Id = 219; - - protected $Name = 'CropRight'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropTop.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropTop.php deleted file mode 100644 index 6f17d1a6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/CropTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTop extends AbstractTag -{ - - protected $Id = 218; - - protected $Name = 'CropTop'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Crop Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/FrameNum.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/FrameNum.php deleted file mode 100644 index 8c1d7019e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/FrameNum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameNum extends AbstractTag -{ - - protected $Id = 215; - - protected $Name = 'FrameNum'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Frame Num'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropBottom.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropBottom.php deleted file mode 100644 index c7ec2beb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewCropBottom extends AbstractTag -{ - - protected $Id = 239; - - protected $Name = 'PreviewCropBottom'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Preview Crop Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropLeft.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropLeft.php deleted file mode 100644 index b46408b1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewCropLeft extends AbstractTag -{ - - protected $Id = 236; - - protected $Name = 'PreviewCropLeft'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Preview Crop Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropRight.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropRight.php deleted file mode 100644 index 34618556e..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewCropRight extends AbstractTag -{ - - protected $Id = 238; - - protected $Name = 'PreviewCropRight'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Preview Crop Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropTop.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropTop.php deleted file mode 100644 index d9adb02c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/PreviewCropTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewCropTop extends AbstractTag -{ - - protected $Id = 237; - - protected $Name = 'PreviewCropTop'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Preview Crop Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Rating.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Rating.php deleted file mode 100644 index 825125b26..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Rating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 223; - - protected $Name = 'Rating'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropBottom.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropBottom.php deleted file mode 100644 index 392abbbf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawCropBottom extends AbstractTag -{ - - protected $Id = 212; - - protected $Name = 'RawCropBottom'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Raw Crop Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropLeft.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropLeft.php deleted file mode 100644 index 906ce2309..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawCropLeft extends AbstractTag -{ - - protected $Id = 209; - - protected $Name = 'RawCropLeft'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Raw Crop Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropRight.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropRight.php deleted file mode 100644 index fb643e51f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawCropRight extends AbstractTag -{ - - protected $Id = 211; - - protected $Name = 'RawCropRight'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Raw Crop Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropTop.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropTop.php deleted file mode 100644 index a8752da01..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/RawCropTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawCropTop extends AbstractTag -{ - - protected $Id = 210; - - protected $Name = 'RawCropTop'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Raw Crop Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Rotation.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Rotation.php deleted file mode 100644 index c840bfa56..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Rotation.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 216; - - protected $Name = 'Rotation'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 0, - ), - 1 => array( - 'Id' => 1, - 'Label' => 90, - ), - 2 => array( - 'Id' => 2, - 'Label' => 180, - ), - 3 => array( - 'Id' => 3, - 'Label' => 270, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Tagged.php b/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Tagged.php deleted file mode 100644 index 101232e08..000000000 --- a/lib/PHPExiftool/Driver/Tag/PhotoMechanic/Tagged.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PhotoMechanic; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tagged extends AbstractTag -{ - - protected $Id = 221; - - protected $Name = 'Tagged'; - - protected $FullName = 'PhotoMechanic::SoftEdit'; - - protected $GroupName = 'PhotoMechanic'; - - protected $g0 = 'PhotoMechanic'; - - protected $g1 = 'PhotoMechanic'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Tagged'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/AlphaChannelsNames.php b/lib/PHPExiftool/Driver/Tag/Photoshop/AlphaChannelsNames.php deleted file mode 100644 index 34378e5e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/AlphaChannelsNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaChannelsNames extends AbstractTag -{ - - protected $Id = 1006; - - protected $Name = 'AlphaChannelsNames'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alpha Channels Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/AlphaIdentifiers.php b/lib/PHPExiftool/Driver/Tag/Photoshop/AlphaIdentifiers.php deleted file mode 100644 index 37440b87c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/AlphaIdentifiers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaIdentifiers extends AbstractTag -{ - - protected $Id = 1053; - - protected $Name = 'AlphaIdentifiers'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alpha Identifiers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/AlternateDuotoneColors.php b/lib/PHPExiftool/Driver/Tag/Photoshop/AlternateDuotoneColors.php deleted file mode 100644 index c84d0e43b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/AlternateDuotoneColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlternateDuotoneColors extends AbstractTag -{ - - protected $Id = 1066; - - protected $Name = 'AlternateDuotoneColors'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alternate Duotone Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/AlternateSpotColors.php b/lib/PHPExiftool/Driver/Tag/Photoshop/AlternateSpotColors.php deleted file mode 100644 index 14dc6dd00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/AlternateSpotColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlternateSpotColors extends AbstractTag -{ - - protected $Id = 1067; - - protected $Name = 'AlternateSpotColors'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Alternate Spot Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/AutoSaveFilePath.php b/lib/PHPExiftool/Driver/Tag/Photoshop/AutoSaveFilePath.php deleted file mode 100644 index b1edb91d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/AutoSaveFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoSaveFilePath extends AbstractTag -{ - - protected $Id = 1086; - - protected $Name = 'AutoSaveFilePath'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Save File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/AutoSaveFormat.php b/lib/PHPExiftool/Driver/Tag/Photoshop/AutoSaveFormat.php deleted file mode 100644 index 757ef6646..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/AutoSaveFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoSaveFormat extends AbstractTag -{ - - protected $Id = 1087; - - protected $Name = 'AutoSaveFormat'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Auto Save Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/BWHalftoningInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/BWHalftoningInfo.php deleted file mode 100644 index efe63b7df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/BWHalftoningInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BWHalftoningInfo extends AbstractTag -{ - - protected $Id = 1012; - - protected $Name = 'BW_HalftoningInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'BW Halftoning Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/BWTransferFunc.php b/lib/PHPExiftool/Driver/Tag/Photoshop/BWTransferFunc.php deleted file mode 100644 index 2ebb154a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/BWTransferFunc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BWTransferFunc extends AbstractTag -{ - - protected $Id = 1015; - - protected $Name = 'BW_TransferFunc'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'BW Transfer Func'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/Photoshop/BackgroundColor.php deleted file mode 100644 index d672a26c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/BackgroundColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 1010; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/BitDepth.php b/lib/PHPExiftool/Driver/Tag/Photoshop/BitDepth.php deleted file mode 100644 index 24e6e4448..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'BitDepth'; - - protected $FullName = 'Photoshop::Header'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/BorderInformation.php b/lib/PHPExiftool/Driver/Tag/Photoshop/BorderInformation.php deleted file mode 100644 index de3b4947b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/BorderInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BorderInformation extends AbstractTag -{ - - protected $Id = 1009; - - protected $Name = 'BorderInformation'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Border Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ClippingPathName.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ClippingPathName.php deleted file mode 100644 index 66db37f79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ClippingPathName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClippingPathName extends AbstractTag -{ - - protected $Id = 2999; - - protected $Name = 'ClippingPathName'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clipping Path Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorHalftoningInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ColorHalftoningInfo.php deleted file mode 100644 index 88911e162..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorHalftoningInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorHalftoningInfo extends AbstractTag -{ - - protected $Id = 1013; - - protected $Name = 'ColorHalftoningInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Halftoning Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ColorMode.php deleted file mode 100644 index c2ca13395..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorMode.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Photoshop::Header'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Color Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bitmap', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Grayscale', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Indexed', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'RGB', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'CMYK', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Multichannel', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Duotone', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Lab', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorSamplersResource.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ColorSamplersResource.php deleted file mode 100644 index daede6bf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorSamplersResource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSamplersResource extends AbstractTag -{ - - protected $Id = 1038; - - protected $Name = 'ColorSamplersResource'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Samplers Resource'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorSamplersResource2.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ColorSamplersResource2.php deleted file mode 100644 index 29ec99037..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorSamplersResource2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSamplersResource2 extends AbstractTag -{ - - protected $Id = 1073; - - protected $Name = 'ColorSamplersResource2'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Samplers Resource 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorTransferFuncs.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ColorTransferFuncs.php deleted file mode 100644 index 1aefe1bca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ColorTransferFuncs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTransferFuncs extends AbstractTag -{ - - protected $Id = 1016; - - protected $Name = 'ColorTransferFuncs'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Transfer Funcs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/CopyrightFlag.php b/lib/PHPExiftool/Driver/Tag/Photoshop/CopyrightFlag.php deleted file mode 100644 index 52efb2d44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/CopyrightFlag.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightFlag extends AbstractTag -{ - - protected $Id = 1034; - - protected $Name = 'CopyrightFlag'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Copyright Flag'; - - protected $local_g2 = 'Author'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => False, - ), - 1 => array( - 'Id' => 1, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/CountInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/CountInfo.php deleted file mode 100644 index 01efe25a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/CountInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountInfo extends AbstractTag -{ - - protected $Id = 1080; - - protected $Name = 'CountInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Count Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayInfo.php deleted file mode 100644 index bd8454281..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayInfo extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DisplayInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Display Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayedUnitsX.php b/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayedUnitsX.php deleted file mode 100644 index 728e421a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayedUnitsX.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayedUnitsX extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'DisplayedUnitsX'; - - protected $FullName = 'Photoshop::Resolution'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Displayed Units X'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'inches', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayedUnitsY.php b/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayedUnitsY.php deleted file mode 100644 index 53b232e29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/DisplayedUnitsY.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplayedUnitsY extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'DisplayedUnitsY'; - - protected $FullName = 'Photoshop::Resolution'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Displayed Units Y'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'inches', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneHalftoningInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneHalftoningInfo.php deleted file mode 100644 index ece3e98b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneHalftoningInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DuotoneHalftoningInfo extends AbstractTag -{ - - protected $Id = 1014; - - protected $Name = 'DuotoneHalftoningInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duotone Halftoning Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneImageInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneImageInfo.php deleted file mode 100644 index 5c4ede35c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneImageInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DuotoneImageInfo extends AbstractTag -{ - - protected $Id = 1018; - - protected $Name = 'DuotoneImageInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duotone Image Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneTransferFuncs.php b/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneTransferFuncs.php deleted file mode 100644 index 137ce998e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/DuotoneTransferFuncs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DuotoneTransferFuncs extends AbstractTag -{ - - protected $Id = 1017; - - protected $Name = 'DuotoneTransferFuncs'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duotone Transfer Funcs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/EPSOptions.php b/lib/PHPExiftool/Driver/Tag/Photoshop/EPSOptions.php deleted file mode 100644 index c5365db3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/EPSOptions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EPSOptions extends AbstractTag -{ - - protected $Id = 1021; - - protected $Name = 'EPSOptions'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'EPS Options'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/EffectiveBW.php b/lib/PHPExiftool/Driver/Tag/Photoshop/EffectiveBW.php deleted file mode 100644 index 7352cce31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/EffectiveBW.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectiveBW extends AbstractTag -{ - - protected $Id = 1019; - - protected $Name = 'EffectiveBW'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Effective BW'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/EffectsVisible.php b/lib/PHPExiftool/Driver/Tag/Photoshop/EffectsVisible.php deleted file mode 100644 index e9930d077..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/EffectsVisible.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EffectsVisible extends AbstractTag -{ - - protected $Id = 1042; - - protected $Name = 'EffectsVisible'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Effects Visible'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ExifInfo2.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ExifInfo2.php deleted file mode 100644 index 24872c800..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ExifInfo2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifInfo2 extends AbstractTag -{ - - protected $Id = 1059; - - protected $Name = 'ExifInfo2'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exif Info 2'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/GlobalAltitude.php b/lib/PHPExiftool/Driver/Tag/Photoshop/GlobalAltitude.php deleted file mode 100644 index 25ef491b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/GlobalAltitude.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GlobalAltitude extends AbstractTag -{ - - protected $Id = 1049; - - protected $Name = 'GlobalAltitude'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Global Altitude'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/GlobalAngle.php b/lib/PHPExiftool/Driver/Tag/Photoshop/GlobalAngle.php deleted file mode 100644 index dd203cc99..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/GlobalAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GlobalAngle extends AbstractTag -{ - - protected $Id = 1037; - - protected $Name = 'GlobalAngle'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Global Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/GridGuidesInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/GridGuidesInfo.php deleted file mode 100644 index bb1c8adb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/GridGuidesInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GridGuidesInfo extends AbstractTag -{ - - protected $Id = 1032; - - protected $Name = 'GridGuidesInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grid Guides Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/HDRToningInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/HDRToningInfo.php deleted file mode 100644 index bff216335..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/HDRToningInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRToningInfo extends AbstractTag -{ - - protected $Id = 1070; - - protected $Name = 'HDRToningInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HDR Toning Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ICCUntagged.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ICCUntagged.php deleted file mode 100644 index 59ab4f20e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ICCUntagged.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ICCUntagged extends AbstractTag -{ - - protected $Id = 1041; - - protected $Name = 'ICC_Untagged'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'ICC Untagged'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/IDsBaseValue.php b/lib/PHPExiftool/Driver/Tag/Photoshop/IDsBaseValue.php deleted file mode 100644 index ec8076b77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/IDsBaseValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IDsBaseValue extends AbstractTag -{ - - protected $Id = 1044; - - protected $Name = 'IDsBaseValue'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'IDs Base Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/IPTCDigest.php b/lib/PHPExiftool/Driver/Tag/Photoshop/IPTCDigest.php deleted file mode 100644 index 679fff035..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/IPTCDigest.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCDigest extends AbstractTag -{ - - protected $Id = 1061; - - protected $Name = 'IPTCDigest'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'IPTC Digest'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ImageHeight.php deleted file mode 100644 index b21146e2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'Photoshop::Header'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageReadyDataSets.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ImageReadyDataSets.php deleted file mode 100644 index ec5f96b61..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageReadyDataSets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageReadyDataSets extends AbstractTag -{ - - protected $Id = 7001; - - protected $Name = 'ImageReadyDataSets'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Ready Data Sets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageReadyVariables.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ImageReadyVariables.php deleted file mode 100644 index 71b6a4fbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageReadyVariables.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageReadyVariables extends AbstractTag -{ - - protected $Id = 7000; - - protected $Name = 'ImageReadyVariables'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Ready Variables'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ImageWidth.php deleted file mode 100644 index 4c589881e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'Photoshop::Header'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/IndexedColourTableCount.php b/lib/PHPExiftool/Driver/Tag/Photoshop/IndexedColourTableCount.php deleted file mode 100644 index 8f5e8ccee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/IndexedColourTableCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexedColourTableCount extends AbstractTag -{ - - protected $Id = 1046; - - protected $Name = 'IndexedColourTableCount'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Indexed Colour Table Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/JumpToXPEP.php b/lib/PHPExiftool/Driver/Tag/Photoshop/JumpToXPEP.php deleted file mode 100644 index 5fefc2958..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/JumpToXPEP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JumpToXPEP extends AbstractTag -{ - - protected $Id = 1052; - - protected $Name = 'JumpToXPEP'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Jump To XPEP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/LayerComps.php b/lib/PHPExiftool/Driver/Tag/Photoshop/LayerComps.php deleted file mode 100644 index 85d027c32..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/LayerComps.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LayerComps extends AbstractTag -{ - - protected $Id = 1065; - - protected $Name = 'LayerComps'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Layer Comps'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/LayerGroupsEnabledID.php b/lib/PHPExiftool/Driver/Tag/Photoshop/LayerGroupsEnabledID.php deleted file mode 100644 index e34741ee6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/LayerGroupsEnabledID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LayerGroupsEnabledID extends AbstractTag -{ - - protected $Id = 1072; - - protected $Name = 'LayerGroupsEnabledID'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Layer Groups Enabled ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/LayerSelectionIDs.php b/lib/PHPExiftool/Driver/Tag/Photoshop/LayerSelectionIDs.php deleted file mode 100644 index a1ca2472e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/LayerSelectionIDs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LayerSelectionIDs extends AbstractTag -{ - - protected $Id = 1069; - - protected $Name = 'LayerSelectionIDs'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Layer Selection IDs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/LayersGroupInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/LayersGroupInfo.php deleted file mode 100644 index ddb522813..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/LayersGroupInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LayersGroupInfo extends AbstractTag -{ - - protected $Id = 1026; - - protected $Name = 'LayersGroupInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Layers Group Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/LightroomWorkflow.php b/lib/PHPExiftool/Driver/Tag/Photoshop/LightroomWorkflow.php deleted file mode 100644 index 16a65fc60..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/LightroomWorkflow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightroomWorkflow extends AbstractTag -{ - - protected $Id = 8000; - - protected $Name = 'LightroomWorkflow'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lightroom Workflow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/MacintoshNSPrintInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/MacintoshNSPrintInfo.php deleted file mode 100644 index 9dbedbe15..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/MacintoshNSPrintInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacintoshNSPrintInfo extends AbstractTag -{ - - protected $Id = 1084; - - protected $Name = 'MacintoshNSPrintInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Macintosh NS Print Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/MacintoshPrintInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/MacintoshPrintInfo.php deleted file mode 100644 index 80514efb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/MacintoshPrintInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacintoshPrintInfo extends AbstractTag -{ - - protected $Id = 1001; - - protected $Name = 'MacintoshPrintInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Macintosh Print Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/MeasurementScale.php b/lib/PHPExiftool/Driver/Tag/Photoshop/MeasurementScale.php deleted file mode 100644 index 05076d32d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/MeasurementScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementScale extends AbstractTag -{ - - protected $Id = 1074; - - protected $Name = 'MeasurementScale'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Measurement Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/NumChannels.php b/lib/PHPExiftool/Driver/Tag/Photoshop/NumChannels.php deleted file mode 100644 index c878cb51b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/NumChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumChannels extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'NumChannels'; - - protected $FullName = 'Photoshop::Header'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Num Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag1.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag1.php deleted file mode 100644 index 03b92c511..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObsoletePhotoshopTag1 extends AbstractTag -{ - - protected $Id = 1020; - - protected $Name = 'ObsoletePhotoshopTag1'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Obsolete Photoshop Tag 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag2.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag2.php deleted file mode 100644 index 867cfe2e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObsoletePhotoshopTag2 extends AbstractTag -{ - - protected $Id = 1023; - - protected $Name = 'ObsoletePhotoshopTag2'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Obsolete Photoshop Tag 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag3.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag3.php deleted file mode 100644 index 3bf3cb2fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ObsoletePhotoshopTag3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ObsoletePhotoshopTag3 extends AbstractTag -{ - - protected $Id = 1027; - - protected $Name = 'ObsoletePhotoshopTag3'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Obsolete Photoshop Tag 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/OnionSkins.php b/lib/PHPExiftool/Driver/Tag/Photoshop/OnionSkins.php deleted file mode 100644 index c1b80538d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/OnionSkins.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OnionSkins extends AbstractTag -{ - - protected $Id = 1078; - - protected $Name = 'OnionSkins'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Onion Skins'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/OriginPathInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/OriginPathInfo.php deleted file mode 100644 index 0c1f26b0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/OriginPathInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginPathInfo extends AbstractTag -{ - - protected $Id = 3000; - - protected $Name = 'OriginPathInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Origin Path Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PStringCaption.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PStringCaption.php deleted file mode 100644 index 82bb9bf45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PStringCaption.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PStringCaption extends AbstractTag -{ - - protected $Id = 1008; - - protected $Name = 'PStringCaption'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'P String Caption'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PathSelectionState.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PathSelectionState.php deleted file mode 100644 index b05c32243..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PathSelectionState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PathSelectionState extends AbstractTag -{ - - protected $Id = 1088; - - protected $Name = 'PathSelectionState'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Path Selection State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/Photoshop2ColorTable.php b/lib/PHPExiftool/Driver/Tag/Photoshop/Photoshop2ColorTable.php deleted file mode 100644 index 96b6c20ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/Photoshop2ColorTable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Photoshop2ColorTable extends AbstractTag -{ - - protected $Id = 1003; - - protected $Name = 'Photoshop2ColorTable'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Photoshop 2 Color Table'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/Photoshop2Info.php b/lib/PHPExiftool/Driver/Tag/Photoshop/Photoshop2Info.php deleted file mode 100644 index bdd9d5af5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/Photoshop2Info.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Photoshop2Info extends AbstractTag -{ - - protected $Id = 1000; - - protected $Name = 'Photoshop2Info'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Photoshop 2 Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopBGRThumbnail.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopBGRThumbnail.php deleted file mode 100644 index 08f321756..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopBGRThumbnail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoshopBGRThumbnail extends AbstractTag -{ - - protected $Id = 1033; - - protected $Name = 'PhotoshopBGRThumbnail'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Photoshop BGR Thumbnail'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopFormat.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopFormat.php deleted file mode 100644 index 13b72546a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopFormat.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoshopFormat extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PhotoshopFormat'; - - protected $FullName = 'Photoshop::JPEG_Quality'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Photoshop Format'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Optimised', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Progressive', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopQuality.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopQuality.php deleted file mode 100644 index 65b9fe638..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoshopQuality extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PhotoshopQuality'; - - protected $FullName = 'Photoshop::JPEG_Quality'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Photoshop Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopThumbnail.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopThumbnail.php deleted file mode 100644 index be5a6dd1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PhotoshopThumbnail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotoshopThumbnail extends AbstractTag -{ - - protected $Id = 1036; - - protected $Name = 'PhotoshopThumbnail'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Photoshop Thumbnail'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PixelAspectRatio.php deleted file mode 100644 index 56d6d12a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PixelAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatio extends AbstractTag -{ - - protected $Id = 1064; - - protected $Name = 'PixelAspectRatio'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintFlags.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PrintFlags.php deleted file mode 100644 index 9011ba2ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintFlags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintFlags extends AbstractTag -{ - - protected $Id = 1011; - - protected $Name = 'PrintFlags'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Print Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintFlagsInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PrintFlagsInfo.php deleted file mode 100644 index 002d41dbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintFlagsInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintFlagsInfo extends AbstractTag -{ - - protected $Id = 10000; - - protected $Name = 'PrintFlagsInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Flags Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PrintInfo.php deleted file mode 100644 index eab0ba1d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintInfo extends AbstractTag -{ - - protected $Id = 1071; - - protected $Name = 'PrintInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintInfo2.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PrintInfo2.php deleted file mode 100644 index ece555fd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintInfo2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintInfo2 extends AbstractTag -{ - - protected $Id = 1082; - - protected $Name = 'PrintInfo2'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Info 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintScale.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PrintScale.php deleted file mode 100644 index 4d4acf136..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintScale extends AbstractTag -{ - - protected $Id = 1062; - - protected $Name = 'PrintScale'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintStyle.php b/lib/PHPExiftool/Driver/Tag/Photoshop/PrintStyle.php deleted file mode 100644 index 2325d5f57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/PrintStyle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintStyle extends AbstractTag -{ - - protected $Id = 1083; - - protected $Name = 'PrintStyle'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Print Style'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/ProgressiveScans.php b/lib/PHPExiftool/Driver/Tag/Photoshop/ProgressiveScans.php deleted file mode 100644 index feec9ea7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/ProgressiveScans.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProgressiveScans extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ProgressiveScans'; - - protected $FullName = 'Photoshop::JPEG_Quality'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Progressive Scans'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => '3 Scans', - ), - 2 => array( - 'Id' => 2, - 'Label' => '4 Scans', - ), - 3 => array( - 'Id' => 3, - 'Label' => '5 Scans', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/QuickMaskInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/QuickMaskInfo.php deleted file mode 100644 index fae4efcff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/QuickMaskInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuickMaskInfo extends AbstractTag -{ - - protected $Id = 1022; - - protected $Name = 'QuickMaskInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quick Mask Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/RawImageMode.php b/lib/PHPExiftool/Driver/Tag/Photoshop/RawImageMode.php deleted file mode 100644 index 26283e4f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/RawImageMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageMode extends AbstractTag -{ - - protected $Id = 1029; - - protected $Name = 'RawImageMode'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Image Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/SheetDisclosure.php b/lib/PHPExiftool/Driver/Tag/Photoshop/SheetDisclosure.php deleted file mode 100644 index 778ef6bfb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/SheetDisclosure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SheetDisclosure extends AbstractTag -{ - - protected $Id = 1076; - - protected $Name = 'SheetDisclosure'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sheet Disclosure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/Slices.php b/lib/PHPExiftool/Driver/Tag/Photoshop/Slices.php deleted file mode 100644 index ee1c947a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/Slices.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Slices extends AbstractTag -{ - - protected $Id = 1050; - - protected $Name = 'Slices'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slices'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/SpotHalftone.php b/lib/PHPExiftool/Driver/Tag/Photoshop/SpotHalftone.php deleted file mode 100644 index dc64b0130..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/SpotHalftone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpotHalftone extends AbstractTag -{ - - protected $Id = 1043; - - protected $Name = 'SpotHalftone'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Spot Halftone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/TargetLayerID.php b/lib/PHPExiftool/Driver/Tag/Photoshop/TargetLayerID.php deleted file mode 100644 index d6452fbc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/TargetLayerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetLayerID extends AbstractTag -{ - - protected $Id = 1024; - - protected $Name = 'TargetLayerID'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Target Layer ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/TimelineInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/TimelineInfo.php deleted file mode 100644 index 38fba333f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/TimelineInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimelineInfo extends AbstractTag -{ - - protected $Id = 1075; - - protected $Name = 'TimelineInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timeline Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/TransparentIndex.php b/lib/PHPExiftool/Driver/Tag/Photoshop/TransparentIndex.php deleted file mode 100644 index c4c90fbfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/TransparentIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransparentIndex extends AbstractTag -{ - - protected $Id = 1047; - - protected $Name = 'TransparentIndex'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Transparent Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/URL.php b/lib/PHPExiftool/Driver/Tag/Photoshop/URL.php deleted file mode 100644 index 219de593d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/URL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 1035; - - protected $Name = 'URL'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'URL'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/URLList.php b/lib/PHPExiftool/Driver/Tag/Photoshop/URLList.php deleted file mode 100644 index e24973a79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/URLList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URLList extends AbstractTag -{ - - protected $Id = 1054; - - protected $Name = 'URL_List'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'URL List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/UnicodeAlphaNames.php b/lib/PHPExiftool/Driver/Tag/Photoshop/UnicodeAlphaNames.php deleted file mode 100644 index f6f4cd713..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/UnicodeAlphaNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnicodeAlphaNames extends AbstractTag -{ - - protected $Id = 1045; - - protected $Name = 'UnicodeAlphaNames'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unicode Alpha Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/VersionInfo.php b/lib/PHPExiftool/Driver/Tag/Photoshop/VersionInfo.php deleted file mode 100644 index 9d31017c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/VersionInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionInfo extends AbstractTag -{ - - protected $Id = 1057; - - protected $Name = 'VersionInfo'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/Watermark.php b/lib/PHPExiftool/Driver/Tag/Photoshop/Watermark.php deleted file mode 100644 index 1d0e73aa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/Watermark.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Watermark extends AbstractTag -{ - - protected $Id = 1040; - - protected $Name = 'Watermark'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Watermark'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/WindowsDEVMODE.php b/lib/PHPExiftool/Driver/Tag/Photoshop/WindowsDEVMODE.php deleted file mode 100644 index 30cbbdba1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/WindowsDEVMODE.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowsDEVMODE extends AbstractTag -{ - - protected $Id = 1085; - - protected $Name = 'WindowsDEVMODE'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Windows DEVMODE'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/WorkflowURL.php b/lib/PHPExiftool/Driver/Tag/Photoshop/WorkflowURL.php deleted file mode 100644 index 4c0aad54b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/WorkflowURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorkflowURL extends AbstractTag -{ - - protected $Id = 1051; - - protected $Name = 'WorkflowURL'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Workflow URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/WorkingPath.php b/lib/PHPExiftool/Driver/Tag/Photoshop/WorkingPath.php deleted file mode 100644 index 057c26448..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/WorkingPath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorkingPath extends AbstractTag -{ - - protected $Id = 1025; - - protected $Name = 'WorkingPath'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Working Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/XMLData.php b/lib/PHPExiftool/Driver/Tag/Photoshop/XMLData.php deleted file mode 100644 index 4b143b00b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/XMLData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMLData extends AbstractTag -{ - - protected $Id = 1002; - - protected $Name = 'XMLData'; - - protected $FullName = 'Photoshop::Main'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'XML Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/XResolution.php b/lib/PHPExiftool/Driver/Tag/Photoshop/XResolution.php deleted file mode 100644 index 53a77d58c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'XResolution'; - - protected $FullName = 'Photoshop::Resolution'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Photoshop/YResolution.php b/lib/PHPExiftool/Driver/Tag/Photoshop/YResolution.php deleted file mode 100644 index eb0b26cef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Photoshop/YResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Photoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'YResolution'; - - protected $FullName = 'Photoshop::Resolution'; - - protected $GroupName = 'Photoshop'; - - protected $g0 = 'Photoshop'; - - protected $g1 = 'Photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Author.php b/lib/PHPExiftool/Driver/Tag/PostScript/Author.php deleted file mode 100644 index a12607f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'Author'; - - protected $Name = 'Author'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/BoundingBox.php b/lib/PHPExiftool/Driver/Tag/PostScript/BoundingBox.php deleted file mode 100644 index 1d5965cad..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/BoundingBox.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoundingBox extends AbstractTag -{ - - protected $Id = 'BoundingBox'; - - protected $Name = 'BoundingBox'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bounding Box'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Copyright.php b/lib/PHPExiftool/Driver/Tag/PostScript/Copyright.php deleted file mode 100644 index 16e6cf225..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Copyright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'Copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/CreateDate.php b/lib/PHPExiftool/Driver/Tag/PostScript/CreateDate.php deleted file mode 100644 index eeda63fab..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'CreationDate'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Creator.php b/lib/PHPExiftool/Driver/Tag/PostScript/Creator.php deleted file mode 100644 index eb6b2ed5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Creator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 'Creator'; - - protected $Name = 'Creator'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/EmbeddedFileName.php b/lib/PHPExiftool/Driver/Tag/PostScript/EmbeddedFileName.php deleted file mode 100644 index f55845d1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/EmbeddedFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedFileName extends AbstractTag -{ - - protected $Id = 'EmbeddedFileName'; - - protected $Name = 'EmbeddedFileName'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Embedded File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/For0.php b/lib/PHPExiftool/Driver/Tag/PostScript/For0.php deleted file mode 100644 index 79a6ab18a..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/For0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class For0 extends AbstractTag -{ - - protected $Id = 'For'; - - protected $Name = 'For'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'For'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/ImageData.php b/lib/PHPExiftool/Driver/Tag/PostScript/ImageData.php deleted file mode 100644 index cc4657f52..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/ImageData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageData extends AbstractTag -{ - - protected $Id = 'ImageData'; - - protected $Name = 'ImageData'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Keywords.php b/lib/PHPExiftool/Driver/Tag/PostScript/Keywords.php deleted file mode 100644 index 27e512efd..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/PostScript/ModifyDate.php deleted file mode 100644 index 38909d528..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'ModDate'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Pages.php b/lib/PHPExiftool/Driver/Tag/PostScript/Pages.php deleted file mode 100644 index 32c6a2dc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Pages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pages extends AbstractTag -{ - - protected $Id = 'Pages'; - - protected $Name = 'Pages'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Routing.php b/lib/PHPExiftool/Driver/Tag/PostScript/Routing.php deleted file mode 100644 index 8cfeaafd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Routing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Routing extends AbstractTag -{ - - protected $Id = 'Routing'; - - protected $Name = 'Routing'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Routing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Subject.php b/lib/PHPExiftool/Driver/Tag/PostScript/Subject.php deleted file mode 100644 index 6bc74dcd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'Subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/TIFFPreview.php b/lib/PHPExiftool/Driver/Tag/PostScript/TIFFPreview.php deleted file mode 100644 index 8e9e9f23c..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/TIFFPreview.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TIFFPreview extends AbstractTag -{ - - protected $Id = 'TIFFPreview'; - - protected $Name = 'TIFFPreview'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TIFF Preview'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Title.php b/lib/PHPExiftool/Driver/Tag/PostScript/Title.php deleted file mode 100644 index 21eec2a5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'Title'; - - protected $Name = 'Title'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PostScript/Version.php b/lib/PHPExiftool/Driver/Tag/PostScript/Version.php deleted file mode 100644 index e74dbeb29..000000000 --- a/lib/PHPExiftool/Driver/Tag/PostScript/Version.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PostScript; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 'Version'; - - protected $Name = 'Version'; - - protected $FullName = 'PostScript::Main'; - - protected $GroupName = 'PostScript'; - - protected $g0 = 'PostScript'; - - protected $g1 = 'PostScript'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/Compression.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/Compression.php deleted file mode 100644 index d60473ed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/Compression.php +++ /dev/null @@ -1,208 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 259; - - protected $Name = 'Compression'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Uncompressed', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'CCITT 1D', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'T4/Group 3 Fax', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'T6/Group 4 Fax', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'LZW', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'JPEG (old-style)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'JPEG', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Adobe Deflate', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'JBIG B&W', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'JBIG Color', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'JPEG', - ), - 262 => array( - 'Id' => 262, - 'Label' => 'Kodak 262', - ), - 32766 => array( - 'Id' => 32766, - 'Label' => 'Next', - ), - 32767 => array( - 'Id' => 32767, - 'Label' => 'Sony ARW Compressed', - ), - 32769 => array( - 'Id' => 32769, - 'Label' => 'Packed RAW', - ), - 32770 => array( - 'Id' => 32770, - 'Label' => 'Samsung SRW Compressed', - ), - 32771 => array( - 'Id' => 32771, - 'Label' => 'CCIRLEW', - ), - 32773 => array( - 'Id' => 32773, - 'Label' => 'PackBits', - ), - 32809 => array( - 'Id' => 32809, - 'Label' => 'Thunderscan', - ), - 32867 => array( - 'Id' => 32867, - 'Label' => 'Kodak KDC Compressed', - ), - 32895 => array( - 'Id' => 32895, - 'Label' => 'IT8CTPAD', - ), - 32896 => array( - 'Id' => 32896, - 'Label' => 'IT8LW', - ), - 32897 => array( - 'Id' => 32897, - 'Label' => 'IT8MP', - ), - 32898 => array( - 'Id' => 32898, - 'Label' => 'IT8BL', - ), - 32908 => array( - 'Id' => 32908, - 'Label' => 'PixarFilm', - ), - 32909 => array( - 'Id' => 32909, - 'Label' => 'PixarLog', - ), - 32946 => array( - 'Id' => 32946, - 'Label' => 'Deflate', - ), - 32947 => array( - 'Id' => 32947, - 'Label' => 'DCS', - ), - 34661 => array( - 'Id' => 34661, - 'Label' => 'JBIG', - ), - 34676 => array( - 'Id' => 34676, - 'Label' => 'SGILog', - ), - 34677 => array( - 'Id' => 34677, - 'Label' => 'SGILog24', - ), - 34712 => array( - 'Id' => 34712, - 'Label' => 'JPEG 2000', - ), - 34713 => array( - 'Id' => 34713, - 'Label' => 'Nikon NEF Compressed', - ), - 34715 => array( - 'Id' => 34715, - 'Label' => 'JBIG2 TIFF FX', - ), - 34718 => array( - 'Id' => 34718, - 'Label' => 'Microsoft Document Imaging (MDI) Binary Level Codec', - ), - 34719 => array( - 'Id' => 34719, - 'Label' => 'Microsoft Document Imaging (MDI) Progressive Transform Codec', - ), - 34720 => array( - 'Id' => 34720, - 'Label' => 'Microsoft Document Imaging (MDI) Vector', - ), - 34892 => array( - 'Id' => 34892, - 'Label' => 'Lossy JPEG', - ), - 65000 => array( - 'Id' => 65000, - 'Label' => 'Kodak DCR Compressed', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Pentax PEF Compressed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/PreviewImageLength.php deleted file mode 100644 index ff12135b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/PreviewImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/PreviewImageStart.php deleted file mode 100644 index 3bfc0c614..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/PreviewImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/ResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/ResolutionUnit.php deleted file mode 100644 index 7bc3c47d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/ResolutionUnit.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResolutionUnit extends AbstractTag -{ - - protected $Id = 296; - - protected $Name = 'ResolutionUnit'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Resolution Unit'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'inches', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/SubfileType.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/SubfileType.php deleted file mode 100644 index 891f4d828..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/SubfileType.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubfileType extends AbstractTag -{ - - protected $Id = 254; - - protected $Name = 'SubfileType'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subfile Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Full-resolution Image', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Reduced-resolution image', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Single page of multi-page image', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Single page of multi-page reduced-resolution image', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Transparency mask', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Transparency mask of reduced-resolution image', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Transparency mask of multi-page image', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Transparency mask of reduced-resolution multi-page image', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'TIFF/IT final page', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'TIFF-FX mixed raster content', - ), - 65537 => array( - 'Id' => 65537, - 'Label' => 'Alternate reduced-resolution image', - ), - 4294967295 => array( - 'Id' => 4294967295, - 'Label' => 'invalid', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/XResolution.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/XResolution.php deleted file mode 100644 index d533d9d9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/XResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 282; - - protected $Name = 'XResolution'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/YCbCrPositioning.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/YCbCrPositioning.php deleted file mode 100644 index ffdbd01d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/YCbCrPositioning.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YCbCrPositioning extends AbstractTag -{ - - protected $Id = 531; - - protected $Name = 'YCbCrPositioning'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Y Cb Cr Positioning'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Centered', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Co-sited', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/PreviewIFD/YResolution.php b/lib/PHPExiftool/Driver/Tag/PreviewIFD/YResolution.php deleted file mode 100644 index acb1ec0a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/PreviewIFD/YResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PreviewIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 283; - - protected $Name = 'YResolution'; - - protected $FullName = 'Nikon::PreviewIFD'; - - protected $GroupName = 'PreviewIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'PreviewIFD'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Y Resolution'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/PrintIM/PrintIMVersion.php b/lib/PHPExiftool/Driver/Tag/PrintIM/PrintIMVersion.php deleted file mode 100644 index 56612ca1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/PrintIM/PrintIMVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\PrintIM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrintIMVersion extends AbstractTag -{ - - protected $Id = 'PrintIMVersion'; - - protected $Name = 'PrintIMVersion'; - - protected $FullName = 'PrintIM::Main'; - - protected $GroupName = 'PrintIM'; - - protected $g0 = 'PrintIM'; - - protected $g1 = 'PrintIM'; - - protected $g2 = 'Printing'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'PrintIM Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECAggressiveness.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECAggressiveness.php deleted file mode 100644 index a2a21de13..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECAggressiveness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECAggressiveness extends AbstractTag -{ - - protected $Id = 'aec_aggressiveness'; - - protected $Name = 'AECAggressiveness'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Aggressiveness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECCurrentExpIndex.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECCurrentExpIndex.php deleted file mode 100644 index 095e6b651..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECCurrentExpIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECCurrentExpIndex extends AbstractTag -{ - - protected $Id = 'aec_current_exp_index'; - - protected $Name = 'AECCurrentExpIndex'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Current Exp Index'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECCurrentSensorLuma.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECCurrentSensorLuma.php deleted file mode 100644 index 7b9893488..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECCurrentSensorLuma.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECCurrentSensorLuma extends AbstractTag -{ - - protected $Id = 'aec_current_sensor_luma'; - - protected $Name = 'AECCurrentSensorLuma'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Current Sensor Luma'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECEnable.php deleted file mode 100644 index ca95128d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECEnable extends AbstractTag -{ - - protected $Id = 'aec_enable'; - - protected $Name = 'AECEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECExposureIndexAdjStep.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECExposureIndexAdjStep.php deleted file mode 100644 index f9f90ab30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECExposureIndexAdjStep.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECExposureIndexAdjStep extends AbstractTag -{ - - protected $Id = 'aec_exposure_index_adj_step'; - - protected $Name = 'AECExposureIndexAdjStep'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Exposure Index Adj Step'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECHighLumaRegionCount.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECHighLumaRegionCount.php deleted file mode 100644 index fa6bd7080..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECHighLumaRegionCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECHighLumaRegionCount extends AbstractTag -{ - - protected $Id = 'aec_high_luma_region_count'; - - protected $Name = 'AECHighLumaRegionCount'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC High Luma Region Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECHighLumaRegionThreshold.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECHighLumaRegionThreshold.php deleted file mode 100644 index 4eb2fc176..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECHighLumaRegionThreshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECHighLumaRegionThreshold extends AbstractTag -{ - - protected $Id = 'aec_high_luma_region_threshold'; - - protected $Name = 'AECHighLumaRegionThreshold'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC High Luma Region Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECIndoorIdx.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECIndoorIdx.php deleted file mode 100644 index eb56a5b2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECIndoorIdx.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECIndoorIdx extends AbstractTag -{ - - protected $Id = 'aec_indoor_idx'; - - protected $Name = 'AECIndoorIdx'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Indoor Idx'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECLumaTarget.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECLumaTarget.php deleted file mode 100644 index 515ab9fe2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECLumaTarget.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECLumaTarget extends AbstractTag -{ - - protected $Id = 'aec_luma_target'; - - protected $Name = 'AECLumaTarget'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Luma Target'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECLumaTolerance.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECLumaTolerance.php deleted file mode 100644 index e294f841d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECLumaTolerance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECLumaTolerance extends AbstractTag -{ - - protected $Id = 'aec_luma_tolerance'; - - protected $Name = 'AECLumaTolerance'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Luma Tolerance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECMode.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECMode.php deleted file mode 100644 index bd4e80a58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECMode extends AbstractTag -{ - - protected $Id = 'aec_mode'; - - protected $Name = 'AECMode'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOdoorIdx.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOdoorIdx.php deleted file mode 100644 index 636ebec3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOdoorIdx.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECOdoorIdx extends AbstractTag -{ - - protected $Id = 'aec_odoor_idx'; - - protected $Name = 'AECOdoorIdx'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Odoor Idx'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightDiscarded.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightDiscarded.php deleted file mode 100644 index f97f699c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightDiscarded.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECOutdoorBrightDiscarded extends AbstractTag -{ - - protected $Id = 'aec_outdoor_bright_discarded'; - - protected $Name = 'AECOutdoorBrightDiscarded'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Outdoor Bright Discarded'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightEnable.php deleted file mode 100644 index ea432f6ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECOutdoorBrightEnable extends AbstractTag -{ - - protected $Id = 'aec_outdoor_bright_enable'; - - protected $Name = 'AECOutdoorBrightEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Outdoor Bright Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightReduction.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightReduction.php deleted file mode 100644 index a4d999492..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightReduction.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECOutdoorBrightReduction extends AbstractTag -{ - - protected $Id = 'aec_outdoor_bright_reduction'; - - protected $Name = 'AECOutdoorBrightReduction'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Outdoor Bright Reduction'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightThresholdHI.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightThresholdHI.php deleted file mode 100644 index e78cc3e4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightThresholdHI.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECOutdoorBrightThresholdHI extends AbstractTag -{ - - protected $Id = 'aec_outdoor_bright_threshold_HI'; - - protected $Name = 'AECOutdoorBrightThresholdHI'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Outdoor Bright Threshold HI'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightThresholdLO.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightThresholdLO.php deleted file mode 100644 index ef32a45ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorBrightThresholdLO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECOutdoorBrightThresholdLO extends AbstractTag -{ - - protected $Id = 'aec_outdoor_bright_threshold_LO'; - - protected $Name = 'AECOutdoorBrightThresholdLO'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Outdoor Bright Threshold LO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorGammaIndex.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorGammaIndex.php deleted file mode 100644 index 573243363..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECOutdoorGammaIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECOutdoorGammaIndex extends AbstractTag -{ - - protected $Id = 'aec_outdoor_gamma_index'; - - protected $Name = 'AECOutdoorGammaIndex'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Outdoor Gamma Index'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotDigitalGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotDigitalGain.php deleted file mode 100644 index 112692a48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotDigitalGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECSnapshotDigitalGain extends AbstractTag -{ - - protected $Id = 'aec_snapshot_digital_gain'; - - protected $Name = 'AECSnapshotDigitalGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Snapshot Digital Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotExposureTimeMs.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotExposureTimeMs.php deleted file mode 100644 index c96a8267b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotExposureTimeMs.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECSnapshotExposureTimeMs extends AbstractTag -{ - - protected $Id = 'aec_snapshot_exposure_time_ms'; - - protected $Name = 'AECSnapshotExposureTimeMs'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Snapshot Exposure Time Ms'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotLineCount.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotLineCount.php deleted file mode 100644 index 3819c7e10..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotLineCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECSnapshotLineCount extends AbstractTag -{ - - protected $Id = 'aec_snapshot_line_count'; - - protected $Name = 'AECSnapshotLineCount'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Snapshot Line Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotSensorGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotSensorGain.php deleted file mode 100644 index 363b7b793..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECSnapshotSensorGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECSnapshotSensorGain extends AbstractTag -{ - - protected $Id = 'aec_snapshot_sensor_gain'; - - protected $Name = 'AECSnapshotSensorGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Snapshot Sensor Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECVfeLuma.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AECVfeLuma.php deleted file mode 100644 index 294889823..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AECVfeLuma.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AECVfeLuma extends AbstractTag -{ - - protected $Id = 'aec_vfe_luma'; - - protected $Name = 'AECVfeLuma'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AEC Vfe Luma'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFBoundary.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFBoundary.php deleted file mode 100644 index 793d28d81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFBoundary.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFBoundary extends AbstractTag -{ - - protected $Id = 'af_boundary'; - - protected $Name = 'AFBoundary'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Boundary'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFCollectEndStat.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFCollectEndStat.php deleted file mode 100644 index 46807c95a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFCollectEndStat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFCollectEndStat extends AbstractTag -{ - - protected $Id = 'af_collect_end_stat'; - - protected $Name = 'AFCollectEndStat'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Collect End Stat'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFEnable.php deleted file mode 100644 index 0ed590399..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFEnable extends AbstractTag -{ - - protected $Id = 'af_enable'; - - protected $Name = 'AFEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFarEnd.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFarEnd.php deleted file mode 100644 index 2af04a271..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFarEnd.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFarEnd extends AbstractTag -{ - - protected $Id = 'af_far_end'; - - protected $Name = 'AFFarEnd'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Far End'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFineSrchPoints.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFineSrchPoints.php deleted file mode 100644 index 663d446bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFineSrchPoints.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFineSrchPoints extends AbstractTag -{ - - protected $Id = 'af_fine_srch_points'; - - protected $Name = 'AFFineSrchPoints'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Fine Srch Points'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFineStep.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFineStep.php deleted file mode 100644 index 95574d458..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFineStep.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFineStep extends AbstractTag -{ - - protected $Id = 'af_fine_step'; - - protected $Name = 'AFFineStep'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Fine Step'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFocusTime.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFocusTime.php deleted file mode 100644 index cc5702767..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFFocusTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFFocusTime extends AbstractTag -{ - - protected $Id = 'af_focus_time'; - - protected $Name = 'AFFocusTime'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Focus Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFGrossStep.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFGrossStep.php deleted file mode 100644 index f8ef9d8c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFGrossStep.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFGrossStep extends AbstractTag -{ - - protected $Id = 'af_gross_step'; - - protected $Name = 'AFGrossStep'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Gross Step'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFMode.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFMode.php deleted file mode 100644 index 68e413383..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMode extends AbstractTag -{ - - protected $Id = 'af_mode'; - - protected $Name = 'AFMode'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFNearEnd.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFNearEnd.php deleted file mode 100644 index df8885852..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFNearEnd.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFNearEnd extends AbstractTag -{ - - protected $Id = 'af_near_end'; - - protected $Name = 'AFNearEnd'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Near End'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosDefMacro.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosDefMacro.php deleted file mode 100644 index 3fee84c79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosDefMacro.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPosDefMacro extends AbstractTag -{ - - protected $Id = 'af_pos_def_macro'; - - protected $Name = 'AFPosDefMacro'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Pos Def Macro'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosDefNorm.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosDefNorm.php deleted file mode 100644 index 5a135490e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosDefNorm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPosDefNorm extends AbstractTag -{ - - protected $Id = 'af_pos_def_norm'; - - protected $Name = 'AFPosDefNorm'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Pos Def Norm'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosition.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosition.php deleted file mode 100644 index 0e24233c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPosition extends AbstractTag -{ - - protected $Id = 'af_position'; - - protected $Name = 'AFPosition'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFProcess.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFProcess.php deleted file mode 100644 index 6db139850..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFProcess.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFProcess extends AbstractTag -{ - - protected $Id = 'af_process'; - - protected $Name = 'AFProcess'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Process'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFREnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFREnable.php deleted file mode 100644 index 05fd68167..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFREnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFREnable extends AbstractTag -{ - - protected $Id = 'afr_enable'; - - protected $Name = 'AFREnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster0ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster0ExpMod.php deleted file mode 100644 index c3513fd6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster0ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster0ExpMod extends AbstractTag -{ - - protected $Id = 'afr_faster_0_exp_mod'; - - protected $Name = 'AFRFaster0ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 0 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster0Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster0Trigger.php deleted file mode 100644 index 6178cba6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster0Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster0Trigger extends AbstractTag -{ - - protected $Id = 'afr_faster_0_trigger'; - - protected $Name = 'AFRFaster0Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 0 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster1ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster1ExpMod.php deleted file mode 100644 index 8c03e1be9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster1ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster1ExpMod extends AbstractTag -{ - - protected $Id = 'afr_faster_1_exp_mod'; - - protected $Name = 'AFRFaster1ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 1 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster1Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster1Trigger.php deleted file mode 100644 index 57f33296f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster1Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster1Trigger extends AbstractTag -{ - - protected $Id = 'afr_faster_1_trigger'; - - protected $Name = 'AFRFaster1Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 1 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster2ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster2ExpMod.php deleted file mode 100644 index 2bca03f39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster2ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster2ExpMod extends AbstractTag -{ - - protected $Id = 'afr_faster_2_exp_mod'; - - protected $Name = 'AFRFaster2ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 2 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster2Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster2Trigger.php deleted file mode 100644 index 3a017c346..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster2Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster2Trigger extends AbstractTag -{ - - protected $Id = 'afr_faster_2_trigger'; - - protected $Name = 'AFRFaster2Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 2 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster3ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster3ExpMod.php deleted file mode 100644 index afe92c539..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster3ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster3ExpMod extends AbstractTag -{ - - protected $Id = 'afr_faster_3_exp_mod'; - - protected $Name = 'AFRFaster3ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 3 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster3Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster3Trigger.php deleted file mode 100644 index 6f00f6abf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster3Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster3Trigger extends AbstractTag -{ - - protected $Id = 'afr_faster_3_trigger'; - - protected $Name = 'AFRFaster3Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 3 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster4ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster4ExpMod.php deleted file mode 100644 index 98007a19c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster4ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster4ExpMod extends AbstractTag -{ - - protected $Id = 'afr_faster_4_exp_mod'; - - protected $Name = 'AFRFaster4ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 4 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster4Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster4Trigger.php deleted file mode 100644 index d687e9c2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRFaster4Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRFaster4Trigger extends AbstractTag -{ - - protected $Id = 'afr_faster_4_trigger'; - - protected $Name = 'AFRFaster4Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Faster 4 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRPossibleFrameCnt.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRPossibleFrameCnt.php deleted file mode 100644 index 315de3744..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRPossibleFrameCnt.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRPossibleFrameCnt extends AbstractTag -{ - - protected $Id = 'afr_possible_frame_cnt'; - - protected $Name = 'AFRPossibleFrameCnt'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Possible Frame Cnt'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower0ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower0ExpMod.php deleted file mode 100644 index 3145fdd71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower0ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower0ExpMod extends AbstractTag -{ - - protected $Id = 'afr_slower_0_exp_mod'; - - protected $Name = 'AFRSlower0ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 0 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower0Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower0Trigger.php deleted file mode 100644 index 2b6d6cb7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower0Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower0Trigger extends AbstractTag -{ - - protected $Id = 'afr_slower_0_trigger'; - - protected $Name = 'AFRSlower0Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 0 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower1ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower1ExpMod.php deleted file mode 100644 index d78601cf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower1ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower1ExpMod extends AbstractTag -{ - - protected $Id = 'afr_slower_1_exp_mod'; - - protected $Name = 'AFRSlower1ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 1 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower1Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower1Trigger.php deleted file mode 100644 index 045537b1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower1Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower1Trigger extends AbstractTag -{ - - protected $Id = 'afr_slower_1_trigger'; - - protected $Name = 'AFRSlower1Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 1 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower2ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower2ExpMod.php deleted file mode 100644 index 3dd79ae42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower2ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower2ExpMod extends AbstractTag -{ - - protected $Id = 'afr_slower_2_exp_mod'; - - protected $Name = 'AFRSlower2ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 2 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower2Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower2Trigger.php deleted file mode 100644 index 7f63edcc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower2Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower2Trigger extends AbstractTag -{ - - protected $Id = 'afr_slower_2_trigger'; - - protected $Name = 'AFRSlower2Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 2 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower3ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower3ExpMod.php deleted file mode 100644 index f01d7b2d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower3ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower3ExpMod extends AbstractTag -{ - - protected $Id = 'afr_slower_3_exp_mod'; - - protected $Name = 'AFRSlower3ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 3 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower3Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower3Trigger.php deleted file mode 100644 index f5da1c601..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower3Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower3Trigger extends AbstractTag -{ - - protected $Id = 'afr_slower_3_trigger'; - - protected $Name = 'AFRSlower3Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 3 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower4ExpMod.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower4ExpMod.php deleted file mode 100644 index 843bf6524..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower4ExpMod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower4ExpMod extends AbstractTag -{ - - protected $Id = 'afr_slower_4_exp_mod'; - - protected $Name = 'AFRSlower4ExpMod'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 4 Exp Mod'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower4Trigger.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower4Trigger.php deleted file mode 100644 index ee8fdb468..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFRSlower4Trigger.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFRSlower4Trigger extends AbstractTag -{ - - protected $Id = 'afr_slower_4_trigger'; - - protected $Name = 'AFRSlower4Trigger'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AFR Slower 4 Trigger'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFResetLensAfterSnap.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFResetLensAfterSnap.php deleted file mode 100644 index 410328234..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFResetLensAfterSnap.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFResetLensAfterSnap extends AbstractTag -{ - - protected $Id = 'af_reset_lens_after_snap'; - - protected $Name = 'AFResetLensAfterSnap'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Reset Lens After Snap'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFStepsNearFar.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFStepsNearFar.php deleted file mode 100644 index d5bcf56da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFStepsNearFar.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStepsNearFar extends AbstractTag -{ - - protected $Id = 'af_steps_near_far'; - - protected $Name = 'AFStepsNearFar'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Steps Near Far'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFStepsNearInfinity.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFStepsNearInfinity.php deleted file mode 100644 index 508c3a1d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFStepsNearInfinity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStepsNearInfinity extends AbstractTag -{ - - protected $Id = 'af_steps_near_infinity'; - - protected $Name = 'AFStepsNearInfinity'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Steps Near Infinity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTestMode.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTestMode.php deleted file mode 100644 index 3553caae5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTestMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTestMode extends AbstractTag -{ - - protected $Id = 'af_test_mode'; - - protected $Name = 'AFTestMode'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Test Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions00.php deleted file mode 100644 index 03c1bdfd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions00 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[0]'; - - protected $Name = 'AFTracePositions00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions01.php deleted file mode 100644 index fd43e9ca7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions01 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[1]'; - - protected $Name = 'AFTracePositions01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions02.php deleted file mode 100644 index d1fc73320..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions02 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[2]'; - - protected $Name = 'AFTracePositions02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions03.php deleted file mode 100644 index b8d15b98c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions03 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[3]'; - - protected $Name = 'AFTracePositions03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions04.php deleted file mode 100644 index cc9cb5c83..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions04 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[4]'; - - protected $Name = 'AFTracePositions04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions05.php deleted file mode 100644 index 79c27644a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions05 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[5]'; - - protected $Name = 'AFTracePositions05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions06.php deleted file mode 100644 index d4d6818c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions06 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[6]'; - - protected $Name = 'AFTracePositions06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions07.php deleted file mode 100644 index 29db08688..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions07 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[7]'; - - protected $Name = 'AFTracePositions07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions08.php deleted file mode 100644 index de7e38eea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions08 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[8]'; - - protected $Name = 'AFTracePositions08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions09.php deleted file mode 100644 index 264ae6f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions09 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[9]'; - - protected $Name = 'AFTracePositions09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions10.php deleted file mode 100644 index 18efa10fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions10 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[10]'; - - protected $Name = 'AFTracePositions10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions11.php deleted file mode 100644 index d72f40671..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions11 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[11]'; - - protected $Name = 'AFTracePositions11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions12.php deleted file mode 100644 index 96236b85a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions12 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[12]'; - - protected $Name = 'AFTracePositions12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions13.php deleted file mode 100644 index 9b3667787..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions13 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[13]'; - - protected $Name = 'AFTracePositions13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions14.php deleted file mode 100644 index e7db00762..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions14 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[14]'; - - protected $Name = 'AFTracePositions14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions15.php deleted file mode 100644 index bb27a2ab0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions15 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[15]'; - - protected $Name = 'AFTracePositions15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions16.php deleted file mode 100644 index 1f1a68e3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions16 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[16]'; - - protected $Name = 'AFTracePositions16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions17.php deleted file mode 100644 index 5b53b33bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions17 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[17]'; - - protected $Name = 'AFTracePositions17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions18.php deleted file mode 100644 index e9999d32c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions18 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[18]'; - - protected $Name = 'AFTracePositions18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions19.php deleted file mode 100644 index 29d4e76c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions19 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[19]'; - - protected $Name = 'AFTracePositions19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions20.php deleted file mode 100644 index caba6d059..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions20 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[20]'; - - protected $Name = 'AFTracePositions20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions21.php deleted file mode 100644 index 7cf6ee313..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions21 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[21]'; - - protected $Name = 'AFTracePositions21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions22.php deleted file mode 100644 index cdb133565..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions22 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[22]'; - - protected $Name = 'AFTracePositions22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions23.php deleted file mode 100644 index 89bc6bd48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions23 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[23]'; - - protected $Name = 'AFTracePositions23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions24.php deleted file mode 100644 index 5772f0569..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions24 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[24]'; - - protected $Name = 'AFTracePositions24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions25.php deleted file mode 100644 index c73a4b9f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions25 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[25]'; - - protected $Name = 'AFTracePositions25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions26.php deleted file mode 100644 index 1873cbd29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions26 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[26]'; - - protected $Name = 'AFTracePositions26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions27.php deleted file mode 100644 index 08cfe9248..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions27 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[27]'; - - protected $Name = 'AFTracePositions27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions28.php deleted file mode 100644 index bc3df7ced..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions28 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[28]'; - - protected $Name = 'AFTracePositions28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions29.php deleted file mode 100644 index 6521bbe30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions29 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[29]'; - - protected $Name = 'AFTracePositions29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions30.php deleted file mode 100644 index 19d9b449f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions30 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[30]'; - - protected $Name = 'AFTracePositions30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions31.php deleted file mode 100644 index 425458991..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions31 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[31]'; - - protected $Name = 'AFTracePositions31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions32.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions32.php deleted file mode 100644 index 4b2dfd792..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions32.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions32 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[32]'; - - protected $Name = 'AFTracePositions32'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 32'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions33.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions33.php deleted file mode 100644 index ce5b40e20..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions33.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions33 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[33]'; - - protected $Name = 'AFTracePositions33'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 33'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions34.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions34.php deleted file mode 100644 index 229e61db6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions34.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions34 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[34]'; - - protected $Name = 'AFTracePositions34'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 34'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions35.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions35.php deleted file mode 100644 index 6e5a41248..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions35.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions35 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[35]'; - - protected $Name = 'AFTracePositions35'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 35'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions36.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions36.php deleted file mode 100644 index c4fe1c951..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions36.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions36 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[36]'; - - protected $Name = 'AFTracePositions36'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 36'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions37.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions37.php deleted file mode 100644 index 1ee0629d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions37.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions37 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[37]'; - - protected $Name = 'AFTracePositions37'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 37'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions38.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions38.php deleted file mode 100644 index 5fd46f756..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions38.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions38 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[38]'; - - protected $Name = 'AFTracePositions38'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 38'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions39.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions39.php deleted file mode 100644 index 5cafa8efe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions39.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions39 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[39]'; - - protected $Name = 'AFTracePositions39'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 39'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions40.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions40.php deleted file mode 100644 index 433166a86..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions40.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions40 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[40]'; - - protected $Name = 'AFTracePositions40'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 40'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions41.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions41.php deleted file mode 100644 index 01402950e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions41.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions41 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[41]'; - - protected $Name = 'AFTracePositions41'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 41'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions42.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions42.php deleted file mode 100644 index 57a0bee9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions42.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions42 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[42]'; - - protected $Name = 'AFTracePositions42'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 42'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions43.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions43.php deleted file mode 100644 index d0b3005bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions43.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions43 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[43]'; - - protected $Name = 'AFTracePositions43'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 43'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions44.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions44.php deleted file mode 100644 index 6b8b90813..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions44.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions44 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[44]'; - - protected $Name = 'AFTracePositions44'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 44'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions45.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions45.php deleted file mode 100644 index 2b871b119..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions45.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions45 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[45]'; - - protected $Name = 'AFTracePositions45'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 45'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions46.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions46.php deleted file mode 100644 index b14f24198..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions46.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions46 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[46]'; - - protected $Name = 'AFTracePositions46'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 46'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions47.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions47.php deleted file mode 100644 index e6bbcea02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions47.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions47 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[47]'; - - protected $Name = 'AFTracePositions47'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 47'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions48.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions48.php deleted file mode 100644 index a7a52ce50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions48.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions48 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[48]'; - - protected $Name = 'AFTracePositions48'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 48'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions49.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions49.php deleted file mode 100644 index 2f4659dd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTracePositions49.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTracePositions49 extends AbstractTag -{ - - protected $Id = 'af_trace_positions[49]'; - - protected $Name = 'AFTracePositions49'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Positions 49'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats00.php deleted file mode 100644 index cd245e00e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats00 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[0]'; - - protected $Name = 'AFTraceStats00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats01.php deleted file mode 100644 index da221e70d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats01 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[1]'; - - protected $Name = 'AFTraceStats01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats02.php deleted file mode 100644 index 2bae1d991..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats02 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[2]'; - - protected $Name = 'AFTraceStats02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats03.php deleted file mode 100644 index 42f869d7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats03 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[3]'; - - protected $Name = 'AFTraceStats03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats04.php deleted file mode 100644 index e70b43a5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats04 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[4]'; - - protected $Name = 'AFTraceStats04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats05.php deleted file mode 100644 index 8c7327c1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats05 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[5]'; - - protected $Name = 'AFTraceStats05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats06.php deleted file mode 100644 index e4532a71b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats06 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[6]'; - - protected $Name = 'AFTraceStats06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats07.php deleted file mode 100644 index 238d5bc9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats07 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[7]'; - - protected $Name = 'AFTraceStats07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats08.php deleted file mode 100644 index 434289fd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats08 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[8]'; - - protected $Name = 'AFTraceStats08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats09.php deleted file mode 100644 index e9da065fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats09 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[9]'; - - protected $Name = 'AFTraceStats09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats10.php deleted file mode 100644 index 7e2c32c66..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats10 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[10]'; - - protected $Name = 'AFTraceStats10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats11.php deleted file mode 100644 index ee705ddd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats11 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[11]'; - - protected $Name = 'AFTraceStats11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats12.php deleted file mode 100644 index 708a23643..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats12 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[12]'; - - protected $Name = 'AFTraceStats12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats13.php deleted file mode 100644 index d660ceda3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats13 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[13]'; - - protected $Name = 'AFTraceStats13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats14.php deleted file mode 100644 index ef293f721..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats14 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[14]'; - - protected $Name = 'AFTraceStats14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats15.php deleted file mode 100644 index 2bc0e20cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats15 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[15]'; - - protected $Name = 'AFTraceStats15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats16.php deleted file mode 100644 index b0c09471f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats16 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[16]'; - - protected $Name = 'AFTraceStats16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats17.php deleted file mode 100644 index 713748c11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats17 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[17]'; - - protected $Name = 'AFTraceStats17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats18.php deleted file mode 100644 index 7bee7700f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats18 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[18]'; - - protected $Name = 'AFTraceStats18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats19.php deleted file mode 100644 index 9ea2864ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats19 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[19]'; - - protected $Name = 'AFTraceStats19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats20.php deleted file mode 100644 index c02552feb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats20 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[20]'; - - protected $Name = 'AFTraceStats20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats21.php deleted file mode 100644 index c1465054d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats21 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[21]'; - - protected $Name = 'AFTraceStats21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats22.php deleted file mode 100644 index 6d01bf48b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats22 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[22]'; - - protected $Name = 'AFTraceStats22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats23.php deleted file mode 100644 index cb4ec6fe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats23 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[23]'; - - protected $Name = 'AFTraceStats23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats24.php deleted file mode 100644 index 0c91835f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats24 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[24]'; - - protected $Name = 'AFTraceStats24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats25.php deleted file mode 100644 index 0bd38a46d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats25 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[25]'; - - protected $Name = 'AFTraceStats25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats26.php deleted file mode 100644 index fcade970c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats26 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[26]'; - - protected $Name = 'AFTraceStats26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats27.php deleted file mode 100644 index 579cb43d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats27 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[27]'; - - protected $Name = 'AFTraceStats27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats28.php deleted file mode 100644 index 18f1b7238..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats28 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[28]'; - - protected $Name = 'AFTraceStats28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats29.php deleted file mode 100644 index 485fd9d0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats29 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[29]'; - - protected $Name = 'AFTraceStats29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats30.php deleted file mode 100644 index 4a3feebc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats30 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[30]'; - - protected $Name = 'AFTraceStats30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats31.php deleted file mode 100644 index 9ff37059b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats31 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[31]'; - - protected $Name = 'AFTraceStats31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats32.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats32.php deleted file mode 100644 index b88f0985c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats32.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats32 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[32]'; - - protected $Name = 'AFTraceStats32'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 32'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats33.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats33.php deleted file mode 100644 index 5be956513..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats33.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats33 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[33]'; - - protected $Name = 'AFTraceStats33'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 33'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats34.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats34.php deleted file mode 100644 index b0dc9698c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats34.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats34 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[34]'; - - protected $Name = 'AFTraceStats34'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 34'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats35.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats35.php deleted file mode 100644 index 5d6b6b972..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats35.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats35 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[35]'; - - protected $Name = 'AFTraceStats35'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 35'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats36.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats36.php deleted file mode 100644 index c203c034b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats36.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats36 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[36]'; - - protected $Name = 'AFTraceStats36'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 36'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats37.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats37.php deleted file mode 100644 index 462b7ed04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats37.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats37 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[37]'; - - protected $Name = 'AFTraceStats37'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 37'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats38.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats38.php deleted file mode 100644 index 7d48c9050..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats38.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats38 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[38]'; - - protected $Name = 'AFTraceStats38'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 38'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats39.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats39.php deleted file mode 100644 index 1d6c4b2ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats39.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats39 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[39]'; - - protected $Name = 'AFTraceStats39'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 39'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats40.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats40.php deleted file mode 100644 index 4ffb7f0f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats40.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats40 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[40]'; - - protected $Name = 'AFTraceStats40'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 40'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats41.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats41.php deleted file mode 100644 index 51bcd306e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats41.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats41 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[41]'; - - protected $Name = 'AFTraceStats41'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 41'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats42.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats42.php deleted file mode 100644 index 877b2de1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats42.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats42 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[42]'; - - protected $Name = 'AFTraceStats42'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 42'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats43.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats43.php deleted file mode 100644 index 6b77abde8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats43.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats43 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[43]'; - - protected $Name = 'AFTraceStats43'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 43'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats44.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats44.php deleted file mode 100644 index 817f51af0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats44.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats44 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[44]'; - - protected $Name = 'AFTraceStats44'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 44'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats45.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats45.php deleted file mode 100644 index 50b13bfd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats45.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats45 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[45]'; - - protected $Name = 'AFTraceStats45'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 45'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats46.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats46.php deleted file mode 100644 index 897efa79e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats46.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats46 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[46]'; - - protected $Name = 'AFTraceStats46'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 46'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats47.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats47.php deleted file mode 100644 index 16258a018..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats47.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats47 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[47]'; - - protected $Name = 'AFTraceStats47'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 47'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats48.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats48.php deleted file mode 100644 index 5db088f82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats48.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats48 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[48]'; - - protected $Name = 'AFTraceStats48'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 48'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats49.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats49.php deleted file mode 100644 index d060aada6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFTraceStats49.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFTraceStats49 extends AbstractTag -{ - - protected $Id = 'af_trace_stats[49]'; - - protected $Name = 'AFTraceStats49'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Trace Stats 49'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFUndershootProtect.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFUndershootProtect.php deleted file mode 100644 index 338c0e146..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFUndershootProtect.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFUndershootProtect extends AbstractTag -{ - - protected $Id = 'af_undershoot_protect'; - - protected $Name = 'AFUndershootProtect'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Undershoot Protect'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeHorzOffset.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeHorzOffset.php deleted file mode 100644 index c5737f1a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeHorzOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFVfeHorzOffset extends AbstractTag -{ - - protected $Id = 'af_vfe_horz_offset'; - - protected $Name = 'AFVfeHorzOffset'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Vfe Horz Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeHorzWidth.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeHorzWidth.php deleted file mode 100644 index c04625184..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeHorzWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFVfeHorzWidth extends AbstractTag -{ - - protected $Id = 'af_vfe_horz_width'; - - protected $Name = 'AFVfeHorzWidth'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Vfe Horz Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeMetricMax.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeMetricMax.php deleted file mode 100644 index 731af1443..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeMetricMax.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFVfeMetricMax extends AbstractTag -{ - - protected $Id = 'af_vfe_metric_max'; - - protected $Name = 'AFVfeMetricMax'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Vfe Metric Max'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeVertHeight.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeVertHeight.php deleted file mode 100644 index e01293f26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeVertHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFVfeVertHeight extends AbstractTag -{ - - protected $Id = 'af_vfe_vert_height'; - - protected $Name = 'AFVfeVertHeight'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Vfe Vert Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeVertOffset.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeVertOffset.php deleted file mode 100644 index 54140e35b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AFVfeVertOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFVfeVertOffset extends AbstractTag -{ - - protected $Id = 'af_vfe_vert_offset'; - - protected $Name = 'AFVfeVertOffset'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Vfe Vert Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeDetect.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeDetect.php deleted file mode 100644 index e4fe8354c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeDetect.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeDetect extends AbstractTag -{ - - protected $Id = 'asf3_edge_detect'; - - protected $Name = 'ASF3EdgeDetect'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Detect'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA11.php deleted file mode 100644 index 9b24d1e50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA11 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a11'; - - protected $Name = 'ASF3EdgeFilterA11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA12.php deleted file mode 100644 index 9d5687409..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA12 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a12'; - - protected $Name = 'ASF3EdgeFilterA12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA13.php deleted file mode 100644 index 923eb701d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA13 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a13'; - - protected $Name = 'ASF3EdgeFilterA13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA21.php deleted file mode 100644 index 7de0e554a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA21 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a21'; - - protected $Name = 'ASF3EdgeFilterA21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA22.php deleted file mode 100644 index b6ccb0d8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA22 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a22'; - - protected $Name = 'ASF3EdgeFilterA22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA23.php deleted file mode 100644 index 2e2d71ee3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA23 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a23'; - - protected $Name = 'ASF3EdgeFilterA23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA31.php deleted file mode 100644 index bf0f5df56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA31 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a31'; - - protected $Name = 'ASF3EdgeFilterA31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA32.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA32.php deleted file mode 100644 index 9024078ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA32.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA32 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a32'; - - protected $Name = 'ASF3EdgeFilterA32'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A32'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA33.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA33.php deleted file mode 100644 index 92f2a6c33..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3EdgeFilterA33.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3EdgeFilterA33 extends AbstractTag -{ - - protected $Id = 'asf3_edge_filter_a33'; - - protected $Name = 'ASF3EdgeFilterA33'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Edge Filter A33'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3Enable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3Enable.php deleted file mode 100644 index a295600c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3Enable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3Enable extends AbstractTag -{ - - protected $Id = 'asf3_enable'; - - protected $Name = 'ASF3Enable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3LowerThreshold.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3LowerThreshold.php deleted file mode 100644 index cd5f11477..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3LowerThreshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3LowerThreshold extends AbstractTag -{ - - protected $Id = 'asf3_lower_threshold'; - - protected $Name = 'ASF3LowerThreshold'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Lower Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA11.php deleted file mode 100644 index b6e9d0a6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA11 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a11'; - - protected $Name = 'ASF3NoiseFilterA11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA12.php deleted file mode 100644 index e7ff6be47..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA12 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a12'; - - protected $Name = 'ASF3NoiseFilterA12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA13.php deleted file mode 100644 index 094c8f527..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA13 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a13'; - - protected $Name = 'ASF3NoiseFilterA13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA21.php deleted file mode 100644 index fe6f1555d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA21 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a21'; - - protected $Name = 'ASF3NoiseFilterA21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA22.php deleted file mode 100644 index 3b13974c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA22 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a22'; - - protected $Name = 'ASF3NoiseFilterA22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA23.php deleted file mode 100644 index 95650811f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA23 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a23'; - - protected $Name = 'ASF3NoiseFilterA23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA31.php deleted file mode 100644 index 1d609d7a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA31 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a31'; - - protected $Name = 'ASF3NoiseFilterA31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA32.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA32.php deleted file mode 100644 index c068e3534..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA32.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA32 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a32'; - - protected $Name = 'ASF3NoiseFilterA32'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A32'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA33.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA33.php deleted file mode 100644 index 2c10fc0fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3NoiseFilterA33.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3NoiseFilterA33 extends AbstractTag -{ - - protected $Id = 'asf3_noise_filter_a33'; - - protected $Name = 'ASF3NoiseFilterA33'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Noise Filter A33'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3UpperThreshold.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3UpperThreshold.php deleted file mode 100644 index 10b61ecae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF3UpperThreshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF3UpperThreshold extends AbstractTag -{ - - protected $Id = 'asf3_upper_threshold'; - - protected $Name = 'ASF3UpperThreshold'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF3 Upper Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtLoThres.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtLoThres.php deleted file mode 100644 index a813fba9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtLoThres.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5BrtLoThres extends AbstractTag -{ - - protected $Id = 'asf5_brt_lo_thres'; - - protected $Name = 'ASF5BrtLoThres'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Brt Lo Thres'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtShrpDegF1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtShrpDegF1.php deleted file mode 100644 index df0f6c529..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtShrpDegF1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5BrtShrpDegF1 extends AbstractTag -{ - - protected $Id = 'asf5_brt_shrp_deg_f1'; - - protected $Name = 'ASF5BrtShrpDegF1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Brt Shrp Deg F1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtShrpDegF2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtShrpDegF2.php deleted file mode 100644 index 42f4100c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtShrpDegF2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5BrtShrpDegF2 extends AbstractTag -{ - - protected $Id = 'asf5_brt_shrp_deg_f2'; - - protected $Name = 'ASF5BrtShrpDegF2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Brt Shrp Deg F2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtSmthPercent.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtSmthPercent.php deleted file mode 100644 index b84320789..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtSmthPercent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5BrtSmthPercent extends AbstractTag -{ - - protected $Id = 'asf5_brt_smth_percent'; - - protected $Name = 'ASF5BrtSmthPercent'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Brt Smth Percent'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtUpThres.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtUpThres.php deleted file mode 100644 index 7099a16e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5BrtUpThres.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5BrtUpThres extends AbstractTag -{ - - protected $Id = 'asf5_brt_up_thres'; - - protected $Name = 'ASF5BrtUpThres'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Brt Up Thres'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Enable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Enable.php deleted file mode 100644 index cda4f6e94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Enable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Enable extends AbstractTag -{ - - protected $Id = 'asf5_enable'; - - protected $Name = 'ASF5Enable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5ExposureIndex1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5ExposureIndex1.php deleted file mode 100644 index f06204991..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5ExposureIndex1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5ExposureIndex1 extends AbstractTag -{ - - protected $Id = 'asf5_exposure_index_1'; - - protected $Name = 'ASF5ExposureIndex1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Exposure Index 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5ExposureIndex2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5ExposureIndex2.php deleted file mode 100644 index 433864794..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5ExposureIndex2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5ExposureIndex2 extends AbstractTag -{ - - protected $Id = 'asf5_exposure_index_2'; - - protected $Name = 'ASF5ExposureIndex2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Exposure Index 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A11.php deleted file mode 100644 index 3c4fae24f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A11 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a11'; - - protected $Name = 'ASF5Filter1A11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A12.php deleted file mode 100644 index 35ba0120e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A12 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a12'; - - protected $Name = 'ASF5Filter1A12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A13.php deleted file mode 100644 index b65335206..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A13 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a13'; - - protected $Name = 'ASF5Filter1A13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A14.php deleted file mode 100644 index 6c551ce06..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A14 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a14'; - - protected $Name = 'ASF5Filter1A14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A15.php deleted file mode 100644 index 76878df05..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A15 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a15'; - - protected $Name = 'ASF5Filter1A15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A21.php deleted file mode 100644 index 963408d92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A21 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a21'; - - protected $Name = 'ASF5Filter1A21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A22.php deleted file mode 100644 index b5cd4787d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A22 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a22'; - - protected $Name = 'ASF5Filter1A22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A23.php deleted file mode 100644 index aa2c9d3bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A23 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a23'; - - protected $Name = 'ASF5Filter1A23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A24.php deleted file mode 100644 index 6df4bd386..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A24 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a24'; - - protected $Name = 'ASF5Filter1A24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A25.php deleted file mode 100644 index 090ccf8ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A25 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a25'; - - protected $Name = 'ASF5Filter1A25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A31.php deleted file mode 100644 index 91f9e23f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A31 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a31'; - - protected $Name = 'ASF5Filter1A31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A32.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A32.php deleted file mode 100644 index 791caf6f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A32.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A32 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a32'; - - protected $Name = 'ASF5Filter1A32'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A32'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A33.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A33.php deleted file mode 100644 index a1924eb57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A33.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A33 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a33'; - - protected $Name = 'ASF5Filter1A33'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A33'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A34.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A34.php deleted file mode 100644 index 566130a30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A34.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A34 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a34'; - - protected $Name = 'ASF5Filter1A34'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A34'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A35.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A35.php deleted file mode 100644 index 222de1f3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A35.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A35 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a35'; - - protected $Name = 'ASF5Filter1A35'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A35'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A41.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A41.php deleted file mode 100644 index ca3443250..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A41.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A41 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a41'; - - protected $Name = 'ASF5Filter1A41'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A41'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A42.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A42.php deleted file mode 100644 index 04e20b819..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A42.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A42 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a42'; - - protected $Name = 'ASF5Filter1A42'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A42'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A43.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A43.php deleted file mode 100644 index d6974073c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A43.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A43 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a43'; - - protected $Name = 'ASF5Filter1A43'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A43'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A44.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A44.php deleted file mode 100644 index 08c01cb2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A44.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A44 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a44'; - - protected $Name = 'ASF5Filter1A44'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A44'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A45.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A45.php deleted file mode 100644 index 17b49b931..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A45.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A45 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a45'; - - protected $Name = 'ASF5Filter1A45'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A45'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A51.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A51.php deleted file mode 100644 index 41402bc11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A51.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A51 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a51'; - - protected $Name = 'ASF5Filter1A51'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A51'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A52.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A52.php deleted file mode 100644 index a330fa6c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A52.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A52 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a52'; - - protected $Name = 'ASF5Filter1A52'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A52'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A53.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A53.php deleted file mode 100644 index a2899a22e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A53.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A53 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a53'; - - protected $Name = 'ASF5Filter1A53'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A53'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A54.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A54.php deleted file mode 100644 index 89be3bb48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A54.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A54 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a54'; - - protected $Name = 'ASF5Filter1A54'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A54'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A55.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A55.php deleted file mode 100644 index ae03f8342..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter1A55.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter1A55 extends AbstractTag -{ - - protected $Id = 'asf5_filter1_a55'; - - protected $Name = 'ASF5Filter1A55'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter1 A55'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A11.php deleted file mode 100644 index 61dbf4aae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A11 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a11'; - - protected $Name = 'ASF5Filter2A11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A12.php deleted file mode 100644 index a75542896..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A12 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a12'; - - protected $Name = 'ASF5Filter2A12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A13.php deleted file mode 100644 index a2839cbe7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A13 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a13'; - - protected $Name = 'ASF5Filter2A13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A14.php deleted file mode 100644 index 024913da4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A14 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a14'; - - protected $Name = 'ASF5Filter2A14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A15.php deleted file mode 100644 index 0d9d18e39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A15 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a15'; - - protected $Name = 'ASF5Filter2A15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A21.php deleted file mode 100644 index 0cddf9dda..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A21 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a21'; - - protected $Name = 'ASF5Filter2A21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A22.php deleted file mode 100644 index a3d797c9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A22 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a22'; - - protected $Name = 'ASF5Filter2A22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A23.php deleted file mode 100644 index e264951e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A23 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a23'; - - protected $Name = 'ASF5Filter2A23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A24.php deleted file mode 100644 index 643faad29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A24 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a24'; - - protected $Name = 'ASF5Filter2A24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A25.php deleted file mode 100644 index a0414d3e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A25 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a25'; - - protected $Name = 'ASF5Filter2A25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A31.php deleted file mode 100644 index 206bfd8e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A31 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a31'; - - protected $Name = 'ASF5Filter2A31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A32.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A32.php deleted file mode 100644 index 040db5d34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A32.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A32 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a32'; - - protected $Name = 'ASF5Filter2A32'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A32'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A33.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A33.php deleted file mode 100644 index f8ad1f8cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A33.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A33 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a33'; - - protected $Name = 'ASF5Filter2A33'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A33'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A34.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A34.php deleted file mode 100644 index 922a80da8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A34.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A34 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a34'; - - protected $Name = 'ASF5Filter2A34'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A34'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A35.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A35.php deleted file mode 100644 index 5a668a1b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A35.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A35 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a35'; - - protected $Name = 'ASF5Filter2A35'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A35'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A41.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A41.php deleted file mode 100644 index c4362da85..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A41.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A41 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a41'; - - protected $Name = 'ASF5Filter2A41'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A41'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A42.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A42.php deleted file mode 100644 index 15a548414..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A42.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A42 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a42'; - - protected $Name = 'ASF5Filter2A42'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A42'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A43.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A43.php deleted file mode 100644 index 4cdf2d9b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A43.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A43 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a43'; - - protected $Name = 'ASF5Filter2A43'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A43'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A44.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A44.php deleted file mode 100644 index 6415fc824..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A44.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A44 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a44'; - - protected $Name = 'ASF5Filter2A44'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A44'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A45.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A45.php deleted file mode 100644 index 42fd6a109..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A45.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A45 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a45'; - - protected $Name = 'ASF5Filter2A45'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A45'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A51.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A51.php deleted file mode 100644 index e158d6584..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A51.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A51 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a51'; - - protected $Name = 'ASF5Filter2A51'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A51'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A52.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A52.php deleted file mode 100644 index 8161927de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A52.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A52 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a52'; - - protected $Name = 'ASF5Filter2A52'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A52'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A53.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A53.php deleted file mode 100644 index 7c6e77feb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A53.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A53 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a53'; - - protected $Name = 'ASF5Filter2A53'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A53'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A54.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A54.php deleted file mode 100644 index 934b8b9ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A54.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A54 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a54'; - - protected $Name = 'ASF5Filter2A54'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A54'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A55.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A55.php deleted file mode 100644 index eac2a4c74..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5Filter2A55.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5Filter2A55 extends AbstractTag -{ - - protected $Id = 'asf5_filter2_a55'; - - protected $Name = 'ASF5Filter2A55'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter2 A55'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5FilterMode.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5FilterMode.php deleted file mode 100644 index 0085e79ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5FilterMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5FilterMode extends AbstractTag -{ - - protected $Id = 'asf5_filter_mode'; - - protected $Name = 'ASF5FilterMode'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Filter Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowLoThres.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowLoThres.php deleted file mode 100644 index 13e86d057..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowLoThres.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LowLoThres extends AbstractTag -{ - - protected $Id = 'asf5_low_lo_thres'; - - protected $Name = 'ASF5LowLoThres'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Low Lo Thres'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowShrpDegF1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowShrpDegF1.php deleted file mode 100644 index 2da657d34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowShrpDegF1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LowShrpDegF1 extends AbstractTag -{ - - protected $Id = 'asf5_low_shrp_deg_f1'; - - protected $Name = 'ASF5LowShrpDegF1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Low Shrp Deg F1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowShrpDegF2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowShrpDegF2.php deleted file mode 100644 index 1dcf0f6ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowShrpDegF2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LowShrpDegF2 extends AbstractTag -{ - - protected $Id = 'asf5_low_shrp_deg_f2'; - - protected $Name = 'ASF5LowShrpDegF2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Low Shrp Deg F2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowSmthPrcnt.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowSmthPrcnt.php deleted file mode 100644 index be2c43339..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowSmthPrcnt.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LowSmthPrcnt extends AbstractTag -{ - - protected $Id = 'asf5_low_smth_prcnt'; - - protected $Name = 'ASF5LowSmthPrcnt'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Low Smth Prcnt'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowUpThres.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowUpThres.php deleted file mode 100644 index cd15f2d05..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LowUpThres.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LowUpThres extends AbstractTag -{ - - protected $Id = 'asf5_low_up_thres'; - - protected $Name = 'ASF5LowUpThres'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Low Up Thres'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter00.php deleted file mode 100644 index e7bad3a77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter00 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[0]'; - - protected $Name = 'ASF5LumaFilter00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter01.php deleted file mode 100644 index e961e8e72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter01 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[1]'; - - protected $Name = 'ASF5LumaFilter01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter02.php deleted file mode 100644 index d750079bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter02 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[2]'; - - protected $Name = 'ASF5LumaFilter02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter03.php deleted file mode 100644 index 0db6a42e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter03 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[3]'; - - protected $Name = 'ASF5LumaFilter03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter04.php deleted file mode 100644 index c6d96ba39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter04 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[4]'; - - protected $Name = 'ASF5LumaFilter04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter05.php deleted file mode 100644 index b237df66b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter05 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[5]'; - - protected $Name = 'ASF5LumaFilter05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter06.php deleted file mode 100644 index 486057f2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter06 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[6]'; - - protected $Name = 'ASF5LumaFilter06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter07.php deleted file mode 100644 index 2f1839bdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter07 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[7]'; - - protected $Name = 'ASF5LumaFilter07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter08.php deleted file mode 100644 index 164388c42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5LumaFilter08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5LumaFilter08 extends AbstractTag -{ - - protected $Id = 'asf5_luma_filter[8]'; - - protected $Name = 'ASF5LumaFilter08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Luma Filter 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5MaxExposureIndex.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5MaxExposureIndex.php deleted file mode 100644 index 2cbc8eda7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5MaxExposureIndex.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5MaxExposureIndex extends AbstractTag -{ - - protected $Id = 'asf5_max_exposure_index'; - - protected $Name = 'ASF5MaxExposureIndex'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Max Exposure Index'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmLoThres.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmLoThres.php deleted file mode 100644 index 4414ca523..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmLoThres.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5NrmLoThres extends AbstractTag -{ - - protected $Id = 'asf5_nrm_lo_thres'; - - protected $Name = 'ASF5NrmLoThres'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Nrm Lo Thres'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmShrpDegF1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmShrpDegF1.php deleted file mode 100644 index 5a6b772d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmShrpDegF1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5NrmShrpDegF1 extends AbstractTag -{ - - protected $Id = 'asf5_nrm_shrp_deg_f1'; - - protected $Name = 'ASF5NrmShrpDegF1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Nrm Shrp Deg F1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmShrpDegF2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmShrpDegF2.php deleted file mode 100644 index 012065d98..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmShrpDegF2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5NrmShrpDegF2 extends AbstractTag -{ - - protected $Id = 'asf5_nrm_shrp_deg_f2'; - - protected $Name = 'ASF5NrmShrpDegF2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Nrm Shrp Deg F2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmSmthPrcnt.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmSmthPrcnt.php deleted file mode 100644 index 097a15fc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmSmthPrcnt.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5NrmSmthPrcnt extends AbstractTag -{ - - protected $Id = 'asf5_nrm_smth_prcnt'; - - protected $Name = 'ASF5NrmSmthPrcnt'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Nrm Smth Prcnt'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmUpThres.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmUpThres.php deleted file mode 100644 index 52793dfea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmUpThres.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5NrmUpThres extends AbstractTag -{ - - protected $Id = 'asf5_nrm_up_thres'; - - protected $Name = 'ASF5NrmUpThres'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Nrm Up Thres'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmizeFactor1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmizeFactor1.php deleted file mode 100644 index e3eba2d39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmizeFactor1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5NrmizeFactor1 extends AbstractTag -{ - - protected $Id = 'asf5_nrmize_factor1'; - - protected $Name = 'ASF5NrmizeFactor1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Nrmize Factor1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmizeFactor2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmizeFactor2.php deleted file mode 100644 index e8a7bb5fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ASF5NrmizeFactor2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ASF5NrmizeFactor2 extends AbstractTag -{ - - protected $Id = 'asf5_nrmize_factor2'; - - protected $Name = 'ASF5NrmizeFactor2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ASF5 Nrmize Factor2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAggressiveness.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAggressiveness.php deleted file mode 100644 index f8f5f6f7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAggressiveness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBAggressiveness extends AbstractTag -{ - - protected $Id = 'awb_aggressiveness'; - - protected $Name = 'AWBAggressiveness'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Aggressiveness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAgwGridDist2Thresh.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAgwGridDist2Thresh.php deleted file mode 100644 index 0dd9c8eb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAgwGridDist2Thresh.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBAgwGridDist2Thresh extends AbstractTag -{ - - protected $Id = 'awb_agw_grid_dist_2_thresh'; - - protected $Name = 'AWBAgwGridDist2Thresh'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Agw Grid Dist 2 Thresh'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAlgorithm.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAlgorithm.php deleted file mode 100644 index e45f25ca3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAlgorithm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBAlgorithm extends AbstractTag -{ - - protected $Id = 'awb_algorithm'; - - protected $Name = 'AWBAlgorithm'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Algorithm'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAveBgRatio.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAveBgRatio.php deleted file mode 100644 index a1f07aab0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAveBgRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBAveBgRatio extends AbstractTag -{ - - protected $Id = 'awb_ave_bg_ratio'; - - protected $Name = 'AWBAveBgRatio'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Ave Bg Ratio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAveRgRatio.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAveRgRatio.php deleted file mode 100644 index 0bb7e2351..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBAveRgRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBAveRgRatio extends AbstractTag -{ - - protected $Id = 'awb_ave_rg_ratio'; - - protected $Name = 'AWBAveRgRatio'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Ave Rg Ratio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef1.php deleted file mode 100644 index 964aa56b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef1 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref1'; - - protected $Name = 'AWBBlueGainAdjRef1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef2.php deleted file mode 100644 index b3b2813f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef2 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref2'; - - protected $Name = 'AWBBlueGainAdjRef2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef3.php deleted file mode 100644 index 6ea6472a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef3 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref3'; - - protected $Name = 'AWBBlueGainAdjRef3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef4.php deleted file mode 100644 index e82aa28b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef4 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref4'; - - protected $Name = 'AWBBlueGainAdjRef4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef5.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef5.php deleted file mode 100644 index 2421ecd86..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef5 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref5'; - - protected $Name = 'AWBBlueGainAdjRef5'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef6.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef6.php deleted file mode 100644 index fc523f310..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef6 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref6'; - - protected $Name = 'AWBBlueGainAdjRef6'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef7.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef7.php deleted file mode 100644 index 47815bb2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef7 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref7'; - - protected $Name = 'AWBBlueGainAdjRef7'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef8.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef8.php deleted file mode 100644 index 8d678a762..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainAdjRef8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainAdjRef8 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_adj_ref8'; - - protected $Name = 'AWBBlueGainAdjRef8'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Adj Ref8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef1.php deleted file mode 100644 index 6057b4418..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef1 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref1'; - - protected $Name = 'AWBBlueGainRef1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef2.php deleted file mode 100644 index 399197ce7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef2 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref2'; - - protected $Name = 'AWBBlueGainRef2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef3.php deleted file mode 100644 index 1d99b88b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef3 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref3'; - - protected $Name = 'AWBBlueGainRef3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef4.php deleted file mode 100644 index 631729678..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef4 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref4'; - - protected $Name = 'AWBBlueGainRef4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef5.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef5.php deleted file mode 100644 index bd4943107..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef5 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref5'; - - protected $Name = 'AWBBlueGainRef5'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef6.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef6.php deleted file mode 100644 index 4294e7e30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef6 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref6'; - - protected $Name = 'AWBBlueGainRef6'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef7.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef7.php deleted file mode 100644 index 222ed543b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef7 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref7'; - - protected $Name = 'AWBBlueGainRef7'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef8.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef8.php deleted file mode 100644 index da7628c9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBBlueGainRef8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBBlueGainRef8 extends AbstractTag -{ - - protected $Id = 'awb_blue_gain_ref8'; - - protected $Name = 'AWBBlueGainRef8'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Blue Gain Ref8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBCcBias.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBCcBias.php deleted file mode 100644 index b045e4cec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBCcBias.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBCcBias extends AbstractTag -{ - - protected $Id = 'awb_cc_bias'; - - protected $Name = 'AWBCcBias'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Cc Bias'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBCompactClusterR2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBCompactClusterR2.php deleted file mode 100644 index a62146686..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBCompactClusterR2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBCompactClusterR2 extends AbstractTag -{ - - protected $Id = 'awb_compact_cluster_R2'; - - protected $Name = 'AWBCompactClusterR2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Compact Cluster R2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBEnable.php deleted file mode 100644 index 8f14cee93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBEnable extends AbstractTag -{ - - protected $Id = 'awb_enable'; - - protected $Name = 'AWBEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBGreenOffsetBg.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBGreenOffsetBg.php deleted file mode 100644 index a43a23d6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBGreenOffsetBg.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBGreenOffsetBg extends AbstractTag -{ - - protected $Id = 'awb_green_offset_bg'; - - protected $Name = 'AWBGreenOffsetBg'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Green Offset Bg'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBGreenOffsetRg.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBGreenOffsetRg.php deleted file mode 100644 index f2b50901a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBGreenOffsetRg.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBGreenOffsetRg extends AbstractTag -{ - - protected $Id = 'awb_green_offset_rg'; - - protected $Name = 'AWBGreenOffsetRg'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Green Offset Rg'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBIndoorSampleInfluence.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBIndoorSampleInfluence.php deleted file mode 100644 index d4da87369..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBIndoorSampleInfluence.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBIndoorSampleInfluence extends AbstractTag -{ - - protected $Id = 'awb_indoor_sample_influence'; - - protected $Name = 'AWBIndoorSampleInfluence'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Indoor Sample Influence'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC1.php deleted file mode 100644 index 49f7e152c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeC1 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_c1'; - - protected $Name = 'AWBLoVfeC1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe C1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC2.php deleted file mode 100644 index 9e5a092f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeC2 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_c2'; - - protected $Name = 'AWBLoVfeC2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe C2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC3.php deleted file mode 100644 index baa3ed96f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeC3 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_c3'; - - protected $Name = 'AWBLoVfeC3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe C3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC4.php deleted file mode 100644 index f68c54f1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeC4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeC4 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_c4'; - - protected $Name = 'AWBLoVfeC4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe C4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM1.php deleted file mode 100644 index bb2416f64..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeM1 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_m1'; - - protected $Name = 'AWBLoVfeM1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe M1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM2.php deleted file mode 100644 index b88ce1725..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeM2 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_m2'; - - protected $Name = 'AWBLoVfeM2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe M2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM3.php deleted file mode 100644 index eafce094c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeM3 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_m3'; - - protected $Name = 'AWBLoVfeM3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe M3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM4.php deleted file mode 100644 index bdca317f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeM4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeM4 extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_m4'; - - protected $Name = 'AWBLoVfeM4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe M4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeMaxY.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeMaxY.php deleted file mode 100644 index b348f5341..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeMaxY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeMaxY extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_max_y'; - - protected $Name = 'AWBLoVfeMaxY'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe Max Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeMinY.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeMinY.php deleted file mode 100644 index db7c2dd29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLoVfeMinY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLoVfeMinY extends AbstractTag -{ - - protected $Id = 'awb_lo_vfe_min_y'; - - protected $Name = 'AWBLoVfeMinY'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Lo Vfe Min Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLowLigColCorEna.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLowLigColCorEna.php deleted file mode 100644 index fc6ae8088..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBLowLigColCorEna.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBLowLigColCorEna extends AbstractTag -{ - - protected $Id = 'awb_low_lig_col_cor_ena'; - - protected $Name = 'AWBLowLigColCorEna'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Low Lig Col Cor Ena'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxBGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxBGain.php deleted file mode 100644 index a65e28628..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxBGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBMaxBGain extends AbstractTag -{ - - protected $Id = 'awb_max_b_gain'; - - protected $Name = 'AWBMaxBGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Max B Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxGGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxGGain.php deleted file mode 100644 index cbd5fdcfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxGGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBMaxGGain extends AbstractTag -{ - - protected $Id = 'awb_max_g_gain'; - - protected $Name = 'AWBMaxGGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Max G Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxRGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxRGain.php deleted file mode 100644 index 92c1e89a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMaxRGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBMaxRGain extends AbstractTag -{ - - protected $Id = 'awb_max_r_gain'; - - protected $Name = 'AWBMaxRGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Max R Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinBGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinBGain.php deleted file mode 100644 index dfe06092a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinBGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBMinBGain extends AbstractTag -{ - - protected $Id = 'awb_min_b_gain'; - - protected $Name = 'AWBMinBGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Min B Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinGGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinGGain.php deleted file mode 100644 index 618590a9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinGGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBMinGGain extends AbstractTag -{ - - protected $Id = 'awb_min_g_gain'; - - protected $Name = 'AWBMinGGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Min G Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinRGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinRGain.php deleted file mode 100644 index 97da0c9b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBMinRGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBMinRGain extends AbstractTag -{ - - protected $Id = 'awb_min_r_gain'; - - protected $Name = 'AWBMinRGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Min R Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC1.php deleted file mode 100644 index ef80aea80..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeC1 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_c1'; - - protected $Name = 'AWBNormVfeC1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe C1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC2.php deleted file mode 100644 index f49224342..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeC2 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_c2'; - - protected $Name = 'AWBNormVfeC2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe C2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC3.php deleted file mode 100644 index 1fe6fe439..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeC3 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_c3'; - - protected $Name = 'AWBNormVfeC3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe C3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC4.php deleted file mode 100644 index f3f0bc2b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeC4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeC4 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_c4'; - - protected $Name = 'AWBNormVfeC4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe C4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM1.php deleted file mode 100644 index 36c86859e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeM1 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_m1'; - - protected $Name = 'AWBNormVfeM1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe M1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM2.php deleted file mode 100644 index 50dc2af9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeM2 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_m2'; - - protected $Name = 'AWBNormVfeM2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe M2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM3.php deleted file mode 100644 index 5e552b1a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeM3 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_m3'; - - protected $Name = 'AWBNormVfeM3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe M3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM4.php deleted file mode 100644 index a952b23e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeM4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeM4 extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_m4'; - - protected $Name = 'AWBNormVfeM4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe M4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeMaxY.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeMaxY.php deleted file mode 100644 index 80d118543..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeMaxY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeMaxY extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_max_y'; - - protected $Name = 'AWBNormVfeMaxY'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe Max Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeMinY.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeMinY.php deleted file mode 100644 index b453f11a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBNormVfeMinY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBNormVfeMinY extends AbstractTag -{ - - protected $Id = 'awb_norm_vfe_min_y'; - - protected $Name = 'AWBNormVfeMinY'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Norm Vfe Min Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC1.php deleted file mode 100644 index 6f9a32893..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeC1 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_c1'; - - protected $Name = 'AWBOudorVfeC1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe C1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC2.php deleted file mode 100644 index 56177f140..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeC2 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_c2'; - - protected $Name = 'AWBOudorVfeC2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe C2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC3.php deleted file mode 100644 index 11d861b44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeC3 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_c3'; - - protected $Name = 'AWBOudorVfeC3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe C3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC4.php deleted file mode 100644 index f273b0848..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeC4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeC4 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_c4'; - - protected $Name = 'AWBOudorVfeC4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe C4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM1.php deleted file mode 100644 index 3589f8544..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeM1 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_m1'; - - protected $Name = 'AWBOudorVfeM1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe M1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM2.php deleted file mode 100644 index 71f26f71c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeM2 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_m2'; - - protected $Name = 'AWBOudorVfeM2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe M2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM3.php deleted file mode 100644 index 5b0457f0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeM3 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_m3'; - - protected $Name = 'AWBOudorVfeM3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe M3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM4.php deleted file mode 100644 index d18db93d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeM4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeM4 extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_m4'; - - protected $Name = 'AWBOudorVfeM4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe M4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeMaxY.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeMaxY.php deleted file mode 100644 index b6910545d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeMaxY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeMaxY extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_max_y'; - - protected $Name = 'AWBOudorVfeMaxY'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe Max Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeMinY.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeMinY.php deleted file mode 100644 index b92097628..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOudorVfeMinY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOudorVfeMinY extends AbstractTag -{ - - protected $Id = 'awb_oudor_vfe_min_y'; - - protected $Name = 'AWBOudorVfeMinY'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Oudor Vfe Min Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOutdoorSampleInfluence.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOutdoorSampleInfluence.php deleted file mode 100644 index 8cf74f587..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBOutdoorSampleInfluence.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBOutdoorSampleInfluence extends AbstractTag -{ - - protected $Id = 'awb_outdoor_sample_influence'; - - protected $Name = 'AWBOutdoorSampleInfluence'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Outdoor Sample Influence'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbBgain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbBgain.php deleted file mode 100644 index 0f4f09c7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbBgain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBPrevWbBgain extends AbstractTag -{ - - protected $Id = 'awb_prev_wb_bgain'; - - protected $Name = 'AWBPrevWbBgain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Prev Wb Bgain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbGgain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbGgain.php deleted file mode 100644 index 821e20070..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbGgain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBPrevWbGgain extends AbstractTag -{ - - protected $Id = 'awb_prev_wb_ggain'; - - protected $Name = 'AWBPrevWbGgain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Prev Wb Ggain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbRgain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbRgain.php deleted file mode 100644 index 24b561925..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBPrevWbRgain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBPrevWbRgain extends AbstractTag -{ - - protected $Id = 'awb_prev_wb_rgain'; - - protected $Name = 'AWBPrevWbRgain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Prev Wb Rgain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef1.php deleted file mode 100644 index ea144bca8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef1 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref1'; - - protected $Name = 'AWBRedGainAdjRef1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef2.php deleted file mode 100644 index 35e4102fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef2 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref2'; - - protected $Name = 'AWBRedGainAdjRef2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef3.php deleted file mode 100644 index f76e75db8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef3 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref3'; - - protected $Name = 'AWBRedGainAdjRef3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef4.php deleted file mode 100644 index 919599335..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef4 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref4'; - - protected $Name = 'AWBRedGainAdjRef4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef5.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef5.php deleted file mode 100644 index ba79aeeee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef5 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref5'; - - protected $Name = 'AWBRedGainAdjRef5'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef6.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef6.php deleted file mode 100644 index d9c7fdbdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef6 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref6'; - - protected $Name = 'AWBRedGainAdjRef6'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef7.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef7.php deleted file mode 100644 index 696d8745a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef7 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref7'; - - protected $Name = 'AWBRedGainAdjRef7'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef8.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef8.php deleted file mode 100644 index f3b847cbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainAdjRef8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainAdjRef8 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_adj_ref8'; - - protected $Name = 'AWBRedGainAdjRef8'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Adj Ref8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef1.php deleted file mode 100644 index 9bb3c55f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef1 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref1'; - - protected $Name = 'AWBRedGainRef1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef2.php deleted file mode 100644 index 15fa0072a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef2 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref2'; - - protected $Name = 'AWBRedGainRef2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef3.php deleted file mode 100644 index 3035d3a47..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef3 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref3'; - - protected $Name = 'AWBRedGainRef3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef4.php deleted file mode 100644 index acee182cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef4 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref4'; - - protected $Name = 'AWBRedGainRef4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef5.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef5.php deleted file mode 100644 index 266a9dc3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef5 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref5'; - - protected $Name = 'AWBRedGainRef5'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef6.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef6.php deleted file mode 100644 index 60a8eeb46..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef6 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref6'; - - protected $Name = 'AWBRedGainRef6'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef7.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef7.php deleted file mode 100644 index fd01cb2e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef7 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref7'; - - protected $Name = 'AWBRedGainRef7'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef8.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef8.php deleted file mode 100644 index 15a98f0d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBRedGainRef8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBRedGainRef8 extends AbstractTag -{ - - protected $Id = 'awb_red_gain_ref8'; - - protected $Name = 'AWBRedGainRef8'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Red Gain Ref8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSampleDecision.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSampleDecision.php deleted file mode 100644 index 52a1e8fb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSampleDecision.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBSampleDecision extends AbstractTag -{ - - protected $Id = 'awb_sample_decision'; - - protected $Name = 'AWBSampleDecision'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Sample Decision'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSnapshotBGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSnapshotBGain.php deleted file mode 100644 index 79c27a491..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSnapshotBGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBSnapshotBGain extends AbstractTag -{ - - protected $Id = 'awb_snapshot_b_gain'; - - protected $Name = 'AWBSnapshotBGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Snapshot B Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSnapshotRGain.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSnapshotRGain.php deleted file mode 100644 index 1132fd321..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AWBSnapshotRGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AWBSnapshotRGain extends AbstractTag -{ - - protected $Id = 'awb_snapshot_r_gain'; - - protected $Name = 'AWBSnapshotRGain'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AWB Snapshot R Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AntiBadingPixelClk.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AntiBadingPixelClk.php deleted file mode 100644 index 39104c4b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AntiBadingPixelClk.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AntiBadingPixelClk extends AbstractTag -{ - - protected $Id = 'anti_bading_pixel_clk'; - - protected $Name = 'AntiBadingPixelClk'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anti Bading Pixel Clk'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AntiBadingPixelClkPerLine.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AntiBadingPixelClkPerLine.php deleted file mode 100644 index e12a8888b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AntiBadingPixelClkPerLine.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AntiBadingPixelClkPerLine extends AbstractTag -{ - - protected $Id = 'anti_bading_pixel_clk_per_line'; - - protected $Name = 'AntiBadingPixelClkPerLine'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Anti Bading Pixel Clk Per Line'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/AntibandingEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/AntibandingEnable.php deleted file mode 100644 index f12f52408..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/AntibandingEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AntibandingEnable extends AbstractTag -{ - - protected $Id = 'antibanding_enable'; - - protected $Name = 'AntibandingEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Antibanding Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/BlckLvlEvenCols.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/BlckLvlEvenCols.php deleted file mode 100644 index 217e4057c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/BlckLvlEvenCols.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlckLvlEvenCols extends AbstractTag -{ - - protected $Id = 'blck_lvl_even_cols'; - - protected $Name = 'BlckLvlEvenCols'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blck Lvl Even Cols'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/BlckLvlOddCols.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/BlckLvlOddCols.php deleted file mode 100644 index b7a627de4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/BlckLvlOddCols.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlckLvlOddCols extends AbstractTag -{ - - protected $Id = 'blck_lvl_odd_cols'; - - protected $Name = 'BlckLvlOddCols'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blck Lvl Odd Cols'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/CamMclkHz.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/CamMclkHz.php deleted file mode 100644 index 0757c5cb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/CamMclkHz.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CamMclkHz extends AbstractTag -{ - - protected $Id = 'cam_mclk_hz'; - - protected $Name = 'CamMclkHz'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cam Mclk Hz'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupChroThres1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupChroThres1.php deleted file mode 100644 index 0f22602f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupChroThres1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChroSupChroThres1 extends AbstractTag -{ - - protected $Id = 'chro_sup_chro_thres_1'; - - protected $Name = 'ChroSupChroThres1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chro Sup Chro Thres 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupChroThres2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupChroThres2.php deleted file mode 100644 index ca2c78107..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupChroThres2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChroSupChroThres2 extends AbstractTag -{ - - protected $Id = 'chro_sup_chro_thres_2'; - - protected $Name = 'ChroSupChroThres2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chro Sup Chro Thres 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres1.php deleted file mode 100644 index 003b56558..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChroSupLumaThres1 extends AbstractTag -{ - - protected $Id = 'chro_sup_luma_thres_1'; - - protected $Name = 'ChroSupLumaThres1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chro Sup Luma Thres 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres2.php deleted file mode 100644 index e8d7f30f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChroSupLumaThres2 extends AbstractTag -{ - - protected $Id = 'chro_sup_luma_thres_2'; - - protected $Name = 'ChroSupLumaThres2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chro Sup Luma Thres 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres3.php deleted file mode 100644 index ddffcb168..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChroSupLumaThres3 extends AbstractTag -{ - - protected $Id = 'chro_sup_luma_thres_3'; - - protected $Name = 'ChroSupLumaThres3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chro Sup Luma Thres 3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres4.php deleted file mode 100644 index fd6fbb267..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChroSupLumaThres4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChroSupLumaThres4 extends AbstractTag -{ - - protected $Id = 'chro_sup_luma_thres_4'; - - protected $Name = 'ChroSupLumaThres4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chro Sup Luma Thres 4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChromSupress.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ChromSupress.php deleted file mode 100644 index d3584d0e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ChromSupress.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromSupress extends AbstractTag -{ - - protected $Id = 'chrom_supress'; - - protected $Name = 'ChromSupress'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chrom Supress'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/ClipToAfRato.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/ClipToAfRato.php deleted file mode 100644 index 8351bf3da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/ClipToAfRato.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipToAfRato extends AbstractTag -{ - - protected $Id = 'clip_to_af_rato'; - - protected $Name = 'ClipToAfRato'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Clip To Af Rato'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/CurrResol.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/CurrResol.php deleted file mode 100644 index 68e41dd45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/CurrResol.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrResol extends AbstractTag -{ - - protected $Id = 'curr_resol'; - - protected $Name = 'CurrResol'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Curr Resol'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmAM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmAM.php deleted file mode 100644 index 74dcf9c49..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmAM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmAM extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_a_m'; - - protected $Name = 'DayltConvChrmA_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm A M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmAP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmAP.php deleted file mode 100644 index 92de76b38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmAP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmAP extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_a_p'; - - protected $Name = 'DayltConvChrmA_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm A P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmBM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmBM.php deleted file mode 100644 index 986974fc8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmBM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmBM extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_b_m'; - - protected $Name = 'DayltConvChrmB_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm B M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmBP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmBP.php deleted file mode 100644 index 704e2b33e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmBP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmBP extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_b_p'; - - protected $Name = 'DayltConvChrmB_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm B P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmCM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmCM.php deleted file mode 100644 index 80ae3617b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmCM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmCM extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_c_m'; - - protected $Name = 'DayltConvChrmC_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm C M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmCP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmCP.php deleted file mode 100644 index 9ab79a4d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmCP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmCP extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_c_p'; - - protected $Name = 'DayltConvChrmC_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm C P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmDM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmDM.php deleted file mode 100644 index 94f102ae2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmDM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmDM extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_d_m'; - - protected $Name = 'DayltConvChrmD_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm D M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmDP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmDP.php deleted file mode 100644 index ad2c5d352..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmDP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmDP extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_d_p'; - - protected $Name = 'DayltConvChrmD_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm D P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmKCb.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmKCb.php deleted file mode 100644 index 4c2e62e9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmKCb.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmKCb extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_k_cb'; - - protected $Name = 'DayltConvChrmKCb'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm K Cb'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmKCr.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmKCr.php deleted file mode 100644 index bb78310c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvChrmKCr.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvChrmKCr extends AbstractTag -{ - - protected $Id = 'daylt_conv_chrm_k_cr'; - - protected $Name = 'DayltConvChrmKCr'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Chrm K Cr'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaK.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaK.php deleted file mode 100644 index 6dc418ccb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaK.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvLumaK extends AbstractTag -{ - - protected $Id = 'daylt_conv_luma_k'; - - protected $Name = 'DayltConvLumaK'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Luma K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV0.php deleted file mode 100644 index a300e115d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvLumaV0 extends AbstractTag -{ - - protected $Id = 'daylt_conv_luma_v0'; - - protected $Name = 'DayltConvLumaV0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Luma V0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV1.php deleted file mode 100644 index 19a296b17..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvLumaV1 extends AbstractTag -{ - - protected $Id = 'daylt_conv_luma_v1'; - - protected $Name = 'DayltConvLumaV1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Luma V1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV2.php deleted file mode 100644 index 6afc09283..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DayltConvLumaV2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DayltConvLumaV2 extends AbstractTag -{ - - protected $Id = 'daylt_conv_luma_v2'; - - protected $Name = 'DayltConvLumaV2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Daylt Conv Luma V2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmAM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmAM.php deleted file mode 100644 index d3a43e995..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmAM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmAM extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_a_m'; - - protected $Name = 'DefConvChrmA_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm A M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmAP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmAP.php deleted file mode 100644 index e6c4d2009..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmAP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmAP extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_a_p'; - - protected $Name = 'DefConvChrmA_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm A P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmBM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmBM.php deleted file mode 100644 index 44fb342f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmBM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmBM extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_b_m'; - - protected $Name = 'DefConvChrmB_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm B M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmBP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmBP.php deleted file mode 100644 index 75b957697..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmBP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmBP extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_b_p'; - - protected $Name = 'DefConvChrmB_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm B P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmCM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmCM.php deleted file mode 100644 index b3c15f6f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmCM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmCM extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_c_m'; - - protected $Name = 'DefConvChrmC_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm C M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmCP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmCP.php deleted file mode 100644 index 1864dd63c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmCP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmCP extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_c_p'; - - protected $Name = 'DefConvChrmC_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm C P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmDM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmDM.php deleted file mode 100644 index 7f932aa47..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmDM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmDM extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_d_m'; - - protected $Name = 'DefConvChrmD_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm D M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmDP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmDP.php deleted file mode 100644 index f15c7ce56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmDP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmDP extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_d_p'; - - protected $Name = 'DefConvChrmD_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm D P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmKCb.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmKCb.php deleted file mode 100644 index fed920b2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmKCb.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmKCb extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_k_cb'; - - protected $Name = 'DefConvChrmKCb'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm K Cb'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmKCr.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmKCr.php deleted file mode 100644 index 4d02c4f1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvChrmKCr.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvChrmKCr extends AbstractTag -{ - - protected $Id = 'def_conv_chrm_k_cr'; - - protected $Name = 'DefConvChrmKCr'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Chrm K Cr'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaK.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaK.php deleted file mode 100644 index 584b70668..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaK.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvLumaK extends AbstractTag -{ - - protected $Id = 'def_conv_luma_k'; - - protected $Name = 'DefConvLumaK'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Luma K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV0.php deleted file mode 100644 index d137b59c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvLumaV0 extends AbstractTag -{ - - protected $Id = 'def_conv_luma_v0'; - - protected $Name = 'DefConvLumaV0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Luma V0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV1.php deleted file mode 100644 index ff7e18943..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvLumaV1 extends AbstractTag -{ - - protected $Id = 'def_conv_luma_v1'; - - protected $Name = 'DefConvLumaV1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Luma V1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV2.php deleted file mode 100644 index facd77448..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefConvLumaV2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefConvLumaV2 extends AbstractTag -{ - - protected $Id = 'def_conv_luma_v2'; - - protected $Name = 'DefConvLumaV2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Conv Luma V2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC0.php deleted file mode 100644 index 1be735d8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC0 extends AbstractTag -{ - - protected $Id = 'def_cor_c0'; - - protected $Name = 'DefCorC0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC1.php deleted file mode 100644 index dfe65cd31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC1 extends AbstractTag -{ - - protected $Id = 'def_cor_c1'; - - protected $Name = 'DefCorC1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC2.php deleted file mode 100644 index 42c03fdc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC2 extends AbstractTag -{ - - protected $Id = 'def_cor_c2'; - - protected $Name = 'DefCorC2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC3.php deleted file mode 100644 index 0dff59d19..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC3 extends AbstractTag -{ - - protected $Id = 'def_cor_c3'; - - protected $Name = 'DefCorC3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC4.php deleted file mode 100644 index 00df4c243..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC4 extends AbstractTag -{ - - protected $Id = 'def_cor_c4'; - - protected $Name = 'DefCorC4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC5.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC5.php deleted file mode 100644 index bc8d0a412..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC5 extends AbstractTag -{ - - protected $Id = 'def_cor_c5'; - - protected $Name = 'DefCorC5'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC6.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC6.php deleted file mode 100644 index 34d0a853f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC6 extends AbstractTag -{ - - protected $Id = 'def_cor_c6'; - - protected $Name = 'DefCorC6'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC7.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC7.php deleted file mode 100644 index 66f125873..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC7 extends AbstractTag -{ - - protected $Id = 'def_cor_c7'; - - protected $Name = 'DefCorC7'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC8.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC8.php deleted file mode 100644 index c9067e275..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorC8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorC8 extends AbstractTag -{ - - protected $Id = 'def_cor_c8'; - - protected $Name = 'DefCorC8'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor C8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK0.php deleted file mode 100644 index 668133eac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorK0 extends AbstractTag -{ - - protected $Id = 'def_cor_k0'; - - protected $Name = 'DefCorK0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor K0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK1.php deleted file mode 100644 index 9a6b29129..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorK1 extends AbstractTag -{ - - protected $Id = 'def_cor_k1'; - - protected $Name = 'DefCorK1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor K1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK2.php deleted file mode 100644 index 705e8d583..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefCorK2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefCorK2 extends AbstractTag -{ - - protected $Id = 'def_cor_k2'; - - protected $Name = 'DefCorK2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Cor K2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefLumaGammaMode.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefLumaGammaMode.php deleted file mode 100644 index b8127b7ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefLumaGammaMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefLumaGammaMode extends AbstractTag -{ - - protected $Id = 'def_luma_gamma_mode'; - - protected $Name = 'DefLumaGammaMode'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Luma Gamma Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefRgbGammaMode.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefRgbGammaMode.php deleted file mode 100644 index c7a839a3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefRgbGammaMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefRgbGammaMode extends AbstractTag -{ - - protected $Id = 'def_rgb_gamma_mode'; - - protected $Name = 'DefRgbGammaMode'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Def Rgb Gamma Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixCorEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixCorEnable.php deleted file mode 100644 index da815322e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixCorEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefectPixCorEnable extends AbstractTag -{ - - protected $Id = 'defect_pix_cor_enable'; - - protected $Name = 'DefectPixCorEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Defect Pix Cor Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixMaxThresh.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixMaxThresh.php deleted file mode 100644 index 50b02d03e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixMaxThresh.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefectPixMaxThresh extends AbstractTag -{ - - protected $Id = 'defect_pix_max_thresh'; - - protected $Name = 'DefectPixMaxThresh'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Defect Pix Max Thresh'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixMinThresh.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixMinThresh.php deleted file mode 100644 index 0d403e059..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DefectPixMinThresh.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefectPixMinThresh extends AbstractTag -{ - - protected $Id = 'defect_pix_min_thresh'; - - protected $Name = 'DefectPixMinThresh'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Defect Pix Min Thresh'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/DiscardFrstFrm.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/DiscardFrstFrm.php deleted file mode 100644 index 7cd641580..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/DiscardFrstFrm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiscardFrstFrm extends AbstractTag -{ - - protected $Id = 'discard_frst_frm'; - - protected $Name = 'DiscardFrstFrm'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Discard Frst Frm'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/FrmSkipPttrn.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/FrmSkipPttrn.php deleted file mode 100644 index be8e77e1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/FrmSkipPttrn.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrmSkipPttrn extends AbstractTag -{ - - protected $Id = 'frm_skip_pttrn'; - - protected $Name = 'FrmSkipPttrn'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frm Skip Pttrn'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/GammaEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/GammaEnable.php deleted file mode 100644 index 6aff3680c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/GammaEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GammaEnable extends AbstractTag -{ - - protected $Id = 'gamma_enable'; - - protected $Name = 'GammaEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gamma Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJREnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/HJREnable.php deleted file mode 100644 index f069cf77a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJREnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HJREnable extends AbstractTag -{ - - protected $Id = 'HJR_enable'; - - protected $Name = 'HJREnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HJR Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRMaxNumFrames.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRMaxNumFrames.php deleted file mode 100644 index 56e9cc71f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRMaxNumFrames.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HJRMaxNumFrames extends AbstractTag -{ - - protected $Id = 'HJR_max_num_frames'; - - protected $Name = 'HJRMaxNumFrames'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HJR Max Num Frames'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRNReductionFlat.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRNReductionFlat.php deleted file mode 100644 index 6b5e009da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRNReductionFlat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HJRNReductionFlat extends AbstractTag -{ - - protected $Id = 'HJR_n_reduction_flat'; - - protected $Name = 'HJR_NReductionFlat'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HJR N Reduction Flat'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRNReductionTexture.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRNReductionTexture.php deleted file mode 100644 index 3405537e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRNReductionTexture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HJRNReductionTexture extends AbstractTag -{ - - protected $Id = 'HJR_n_reduction_texture'; - - protected $Name = 'HJR_NReductionTexture'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HJR N Reduction Texture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJROneToTwoOffset.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/HJROneToTwoOffset.php deleted file mode 100644 index f22a56d32..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJROneToTwoOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HJROneToTwoOffset extends AbstractTag -{ - - protected $Id = 'HJR_one_to_two_offset'; - - protected $Name = 'HJROneToTwoOffset'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HJR One To Two Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRTextureThreshold.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRTextureThreshold.php deleted file mode 100644 index ba0e91832..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/HJRTextureThreshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HJRTextureThreshold extends AbstractTag -{ - - protected $Id = 'HJR_texture_threshold'; - - protected $Name = 'HJRTextureThreshold'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HJR Texture Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmAM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmAM.php deleted file mode 100644 index 1549c61e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmAM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmAM extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_a_m'; - - protected $Name = 'IncandConvChrmA_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm A M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmAP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmAP.php deleted file mode 100644 index a832de499..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmAP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmAP extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_a_p'; - - protected $Name = 'IncandConvChrmA_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm A P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmBM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmBM.php deleted file mode 100644 index e1839c742..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmBM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmBM extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_b_m'; - - protected $Name = 'IncandConvChrmB_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm B M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmBP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmBP.php deleted file mode 100644 index 898e51b9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmBP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmBP extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_b_p'; - - protected $Name = 'IncandConvChrmB_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm B P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmCM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmCM.php deleted file mode 100644 index 77401343b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmCM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmCM extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_c_m'; - - protected $Name = 'IncandConvChrmC_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm C M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmCP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmCP.php deleted file mode 100644 index 7b94f5dea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmCP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmCP extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_c_p'; - - protected $Name = 'IncandConvChrmC_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm C P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmDM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmDM.php deleted file mode 100644 index 0798d63ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmDM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmDM extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_d_m'; - - protected $Name = 'IncandConvChrmD_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm D M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmDP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmDP.php deleted file mode 100644 index 6ac856ce1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmDP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmDP extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_d_p'; - - protected $Name = 'IncandConvChrmD_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm D P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmKCb.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmKCb.php deleted file mode 100644 index 2ba9e7956..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmKCb.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmKCb extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_k_cb'; - - protected $Name = 'IncandConvChrmKCb'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm K Cb'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmKCr.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmKCr.php deleted file mode 100644 index bf5b6cebc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvChrmKCr.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvChrmKCr extends AbstractTag -{ - - protected $Id = 'incand_conv_chrm_k_cr'; - - protected $Name = 'IncandConvChrmKCr'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Chrm K Cr'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaK.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaK.php deleted file mode 100644 index 31597bc5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaK.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvLumaK extends AbstractTag -{ - - protected $Id = 'incand_conv_luma_k'; - - protected $Name = 'IncandConvLumaK'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Luma K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV0.php deleted file mode 100644 index 1df90a50c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvLumaV0 extends AbstractTag -{ - - protected $Id = 'incand_conv_luma_v0'; - - protected $Name = 'IncandConvLumaV0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Luma V0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV1.php deleted file mode 100644 index 47f2ab2e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvLumaV1 extends AbstractTag -{ - - protected $Id = 'incand_conv_luma_v1'; - - protected $Name = 'IncandConvLumaV1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Luma V1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV2.php deleted file mode 100644 index 493bddc35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/IncandConvLumaV2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncandConvLumaV2 extends AbstractTag -{ - - protected $Id = 'incand_conv_luma_v2'; - - protected $Name = 'IncandConvLumaV2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Incand Conv Luma V2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/LADetect.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/LADetect.php deleted file mode 100644 index 2c060ecbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/LADetect.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LADetect extends AbstractTag -{ - - protected $Id = 'la_detect'; - - protected $Name = 'LADetect'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LA Detect'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/LAEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/LAEnable.php deleted file mode 100644 index c9250ae02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/LAEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LAEnable extends AbstractTag -{ - - protected $Id = 'la_enable'; - - protected $Name = 'LAEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'LA Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/MaxPrviewFps.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/MaxPrviewFps.php deleted file mode 100644 index 03fb9967a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/MaxPrviewFps.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPrviewFps extends AbstractTag -{ - - protected $Id = 'max_prview_fps'; - - protected $Name = 'MaxPrviewFps'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Prview Fps'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/MaxVideoFps.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/MaxVideoFps.php deleted file mode 100644 index 08a58e98f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/MaxVideoFps.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxVideoFps extends AbstractTag -{ - - protected $Id = 'max_video_fps'; - - protected $Name = 'MaxVideoFps'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Video Fps'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/NghtshtFps.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/NghtshtFps.php deleted file mode 100644 index 160ef934c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/NghtshtFps.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NghtshtFps extends AbstractTag -{ - - protected $Id = 'nghtsht_fps'; - - protected $Name = 'NghtshtFps'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nghtsht Fps'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/NightshotMode.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/NightshotMode.php deleted file mode 100644 index 640c8286b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/NightshotMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NightshotMode extends AbstractTag -{ - - protected $Id = 'nightshot_mode'; - - protected $Name = 'NightshotMode'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Nightshot Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/OutlierDistance.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/OutlierDistance.php deleted file mode 100644 index 0da264a7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/OutlierDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutlierDistance extends AbstractTag -{ - - protected $Id = 'outlier_distance'; - - protected $Name = 'OutlierDistance'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Outlier Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/PclkInvert.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/PclkInvert.php deleted file mode 100644 index 9adcdbae7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/PclkInvert.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PclkInvert extends AbstractTag -{ - - protected $Id = 'pclk_invert'; - - protected $Name = 'PclkInvert'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pclk Invert'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/PrviewFps.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/PrviewFps.php deleted file mode 100644 index 828c2e0e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/PrviewFps.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrviewFps extends AbstractTag -{ - - protected $Id = 'prview_fps'; - - protected $Name = 'PrviewFps'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prview Fps'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/PrviewResol.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/PrviewResol.php deleted file mode 100644 index 9c71b9523..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/PrviewResol.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrviewResol extends AbstractTag -{ - - protected $Id = 'prview_resol'; - - protected $Name = 'PrviewResol'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Prview Resol'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl00.php deleted file mode 100644 index 04eedb69e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[0]'; - - protected $Name = 'R2ABlueCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl01.php deleted file mode 100644 index cc1857877..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[1]'; - - protected $Name = 'R2ABlueCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl02.php deleted file mode 100644 index 00f6ac4bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[2]'; - - protected $Name = 'R2ABlueCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl03.php deleted file mode 100644 index 189f2d776..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[3]'; - - protected $Name = 'R2ABlueCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl04.php deleted file mode 100644 index e1e6a2c51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[4]'; - - protected $Name = 'R2ABlueCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl05.php deleted file mode 100644 index 0b6790fa5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[5]'; - - protected $Name = 'R2ABlueCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl06.php deleted file mode 100644 index a58d16b45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[6]'; - - protected $Name = 'R2ABlueCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl07.php deleted file mode 100644 index ba826fa5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[7]'; - - protected $Name = 'R2ABlueCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl08.php deleted file mode 100644 index 95e6f7287..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[8]'; - - protected $Name = 'R2ABlueCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl09.php deleted file mode 100644 index 91bf762c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[9]'; - - protected $Name = 'R2ABlueCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl10.php deleted file mode 100644 index 4ac049674..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[10]'; - - protected $Name = 'R2ABlueCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl11.php deleted file mode 100644 index 2b6a737bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[11]'; - - protected $Name = 'R2ABlueCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl12.php deleted file mode 100644 index 1c1b511b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[12]'; - - protected $Name = 'R2ABlueCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl13.php deleted file mode 100644 index 8af6cf58e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[13]'; - - protected $Name = 'R2ABlueCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl14.php deleted file mode 100644 index d457e394b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[14]'; - - protected $Name = 'R2ABlueCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl15.php deleted file mode 100644 index df88dd7a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[15]'; - - protected $Name = 'R2ABlueCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl16.php deleted file mode 100644 index d3998c6e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[16]'; - - protected $Name = 'R2ABlueCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl17.php deleted file mode 100644 index 6bd3512c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[17]'; - - protected $Name = 'R2ABlueCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl18.php deleted file mode 100644 index 7ec85c1d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[18]'; - - protected $Name = 'R2ABlueCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl19.php deleted file mode 100644 index 267a7236f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[19]'; - - protected $Name = 'R2ABlueCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl20.php deleted file mode 100644 index 47698a310..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[20]'; - - protected $Name = 'R2ABlueCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl21.php deleted file mode 100644 index 195473f5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[21]'; - - protected $Name = 'R2ABlueCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl22.php deleted file mode 100644 index ba563433e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[22]'; - - protected $Name = 'R2ABlueCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl23.php deleted file mode 100644 index ead3b6f1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[23]'; - - protected $Name = 'R2ABlueCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl24.php deleted file mode 100644 index 82a16c361..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[24]'; - - protected $Name = 'R2ABlueCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl25.php deleted file mode 100644 index 7d2366ff6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[25]'; - - protected $Name = 'R2ABlueCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl26.php deleted file mode 100644 index 4df0ff3fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[26]'; - - protected $Name = 'R2ABlueCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl27.php deleted file mode 100644 index bfeb45bee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[27]'; - - protected $Name = 'R2ABlueCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl28.php deleted file mode 100644 index 4cf7b3f35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[28]'; - - protected $Name = 'R2ABlueCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl29.php deleted file mode 100644 index f7869c02b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[29]'; - - protected $Name = 'R2ABlueCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl30.php deleted file mode 100644 index bf8287aff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[30]'; - - protected $Name = 'R2ABlueCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl31.php deleted file mode 100644 index 70495ff6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_ctbl[31]'; - - protected $Name = 'R2ABlueCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl00.php deleted file mode 100644 index 288dadbb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl00 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[0]'; - - protected $Name = 'R2ABlueStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl01.php deleted file mode 100644 index 2e47c9c29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl01 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[1]'; - - protected $Name = 'R2ABlueStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl02.php deleted file mode 100644 index 6f7139feb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl02 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[2]'; - - protected $Name = 'R2ABlueStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl03.php deleted file mode 100644 index 4d8e76aa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl03 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[3]'; - - protected $Name = 'R2ABlueStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl04.php deleted file mode 100644 index 1c67404c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl04 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[4]'; - - protected $Name = 'R2ABlueStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl05.php deleted file mode 100644 index db331d714..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl05 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[5]'; - - protected $Name = 'R2ABlueStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl06.php deleted file mode 100644 index 53be6fa27..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl06 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[6]'; - - protected $Name = 'R2ABlueStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl07.php deleted file mode 100644 index 713610ca0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl07 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[7]'; - - protected $Name = 'R2ABlueStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl08.php deleted file mode 100644 index b50b7cd05..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl08 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[8]'; - - protected $Name = 'R2ABlueStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl09.php deleted file mode 100644 index 2dbaade42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl09 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[9]'; - - protected $Name = 'R2ABlueStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl10.php deleted file mode 100644 index 791ab0c75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl10 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[10]'; - - protected $Name = 'R2ABlueStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl11.php deleted file mode 100644 index a3eb75087..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl11 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[11]'; - - protected $Name = 'R2ABlueStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl12.php deleted file mode 100644 index c6e6854f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl12 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[12]'; - - protected $Name = 'R2ABlueStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl13.php deleted file mode 100644 index 0beb95b26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl13 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[13]'; - - protected $Name = 'R2ABlueStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl14.php deleted file mode 100644 index abd80c59c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl14 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[14]'; - - protected $Name = 'R2ABlueStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl15.php deleted file mode 100644 index 44b8c9a9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl15 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[15]'; - - protected $Name = 'R2ABlueStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl16.php deleted file mode 100644 index d972dce00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl16 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[16]'; - - protected $Name = 'R2ABlueStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl17.php deleted file mode 100644 index 318f7335c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl17 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[17]'; - - protected $Name = 'R2ABlueStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl18.php deleted file mode 100644 index ac6c722d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl18 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[18]'; - - protected $Name = 'R2ABlueStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl19.php deleted file mode 100644 index d2b0da44a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl19 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[19]'; - - protected $Name = 'R2ABlueStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl20.php deleted file mode 100644 index cfeccc0df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl20 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[20]'; - - protected $Name = 'R2ABlueStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl21.php deleted file mode 100644 index 931207e7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl21 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[21]'; - - protected $Name = 'R2ABlueStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl22.php deleted file mode 100644 index ccf999347..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl22 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[22]'; - - protected $Name = 'R2ABlueStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl23.php deleted file mode 100644 index 87a8fd08b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl23 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[23]'; - - protected $Name = 'R2ABlueStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl24.php deleted file mode 100644 index 5e00a4a62..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl24 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[24]'; - - protected $Name = 'R2ABlueStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl25.php deleted file mode 100644 index 1d1a60fdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl25 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[25]'; - - protected $Name = 'R2ABlueStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl26.php deleted file mode 100644 index f6abb7d50..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl26 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[26]'; - - protected $Name = 'R2ABlueStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl27.php deleted file mode 100644 index c3f90f31a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl27 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[27]'; - - protected $Name = 'R2ABlueStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl28.php deleted file mode 100644 index 3a82b1305..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl28 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[28]'; - - protected $Name = 'R2ABlueStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl29.php deleted file mode 100644 index cf3882e7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl29 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[29]'; - - protected $Name = 'R2ABlueStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl30.php deleted file mode 100644 index fbc816d30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl30 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[30]'; - - protected $Name = 'R2ABlueStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl31.php deleted file mode 100644 index 650c3c4f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ABlueStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ABlueStbl31 extends AbstractTag -{ - - protected $Id = 'r2_a_blue_stbl[31]'; - - protected $Name = 'R2ABlueStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Blue Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ACx.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ACx.php deleted file mode 100644 index b446d6f2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ACx.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ACx extends AbstractTag -{ - - protected $Id = 'r2_a_cx'; - - protected $Name = 'R2ACx'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Cx'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ACy.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ACy.php deleted file mode 100644 index 6e3d4ffb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ACy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ACy extends AbstractTag -{ - - protected $Id = 'r2_a_cy'; - - protected $Name = 'R2ACy'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Cy'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl00.php deleted file mode 100644 index c6c52a377..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[0]'; - - protected $Name = 'R2AGreenCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl01.php deleted file mode 100644 index cb497d9bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[1]'; - - protected $Name = 'R2AGreenCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl02.php deleted file mode 100644 index ad135ec44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[2]'; - - protected $Name = 'R2AGreenCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl03.php deleted file mode 100644 index 956aca9c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[3]'; - - protected $Name = 'R2AGreenCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl04.php deleted file mode 100644 index 4d88e7dc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[4]'; - - protected $Name = 'R2AGreenCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl05.php deleted file mode 100644 index a7f734cab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[5]'; - - protected $Name = 'R2AGreenCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl06.php deleted file mode 100644 index e41974aab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[6]'; - - protected $Name = 'R2AGreenCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl07.php deleted file mode 100644 index dc7e2fe97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[7]'; - - protected $Name = 'R2AGreenCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl08.php deleted file mode 100644 index cc74ee3d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[8]'; - - protected $Name = 'R2AGreenCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl09.php deleted file mode 100644 index a4f4ce768..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[9]'; - - protected $Name = 'R2AGreenCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl10.php deleted file mode 100644 index d077abcac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[10]'; - - protected $Name = 'R2AGreenCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl11.php deleted file mode 100644 index 4ee61c5e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[11]'; - - protected $Name = 'R2AGreenCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl12.php deleted file mode 100644 index eb5499a0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[12]'; - - protected $Name = 'R2AGreenCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl13.php deleted file mode 100644 index eff6f5558..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[13]'; - - protected $Name = 'R2AGreenCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl14.php deleted file mode 100644 index a62157092..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[14]'; - - protected $Name = 'R2AGreenCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl15.php deleted file mode 100644 index d9fae3972..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[15]'; - - protected $Name = 'R2AGreenCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl16.php deleted file mode 100644 index d9e387cdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[16]'; - - protected $Name = 'R2AGreenCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl17.php deleted file mode 100644 index 0e25c4fa8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[17]'; - - protected $Name = 'R2AGreenCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl18.php deleted file mode 100644 index 3e82e11db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[18]'; - - protected $Name = 'R2AGreenCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl19.php deleted file mode 100644 index 734994ca4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[19]'; - - protected $Name = 'R2AGreenCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl20.php deleted file mode 100644 index 3ace8f7f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[20]'; - - protected $Name = 'R2AGreenCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl21.php deleted file mode 100644 index 5a8f8b5ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[21]'; - - protected $Name = 'R2AGreenCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl22.php deleted file mode 100644 index 8c0f87647..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[22]'; - - protected $Name = 'R2AGreenCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl23.php deleted file mode 100644 index aeef1edb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[23]'; - - protected $Name = 'R2AGreenCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl24.php deleted file mode 100644 index a77d0aba7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[24]'; - - protected $Name = 'R2AGreenCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl25.php deleted file mode 100644 index e4188cdc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[25]'; - - protected $Name = 'R2AGreenCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl26.php deleted file mode 100644 index a153c437a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[26]'; - - protected $Name = 'R2AGreenCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl27.php deleted file mode 100644 index 55023b30f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[27]'; - - protected $Name = 'R2AGreenCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl28.php deleted file mode 100644 index d36c1139f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[28]'; - - protected $Name = 'R2AGreenCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl29.php deleted file mode 100644 index 2ee4ba4ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[29]'; - - protected $Name = 'R2AGreenCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl30.php deleted file mode 100644 index 8ad28431f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[30]'; - - protected $Name = 'R2AGreenCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl31.php deleted file mode 100644 index fc70fca57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_a_green_ctbl[31]'; - - protected $Name = 'R2AGreenCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl00.php deleted file mode 100644 index 351768ae0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl00 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[0]'; - - protected $Name = 'R2AGreenStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl01.php deleted file mode 100644 index 5f2183c91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl01 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[1]'; - - protected $Name = 'R2AGreenStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl02.php deleted file mode 100644 index 406e129f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl02 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[2]'; - - protected $Name = 'R2AGreenStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl03.php deleted file mode 100644 index 0b51c7b0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl03 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[3]'; - - protected $Name = 'R2AGreenStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl04.php deleted file mode 100644 index d165e7359..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl04 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[4]'; - - protected $Name = 'R2AGreenStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl05.php deleted file mode 100644 index 47dd54231..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl05 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[5]'; - - protected $Name = 'R2AGreenStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl06.php deleted file mode 100644 index 4de0feb7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl06 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[6]'; - - protected $Name = 'R2AGreenStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl07.php deleted file mode 100644 index 5506aeff8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl07 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[7]'; - - protected $Name = 'R2AGreenStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl08.php deleted file mode 100644 index aff450f8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl08 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[8]'; - - protected $Name = 'R2AGreenStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl09.php deleted file mode 100644 index 072550c01..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl09 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[9]'; - - protected $Name = 'R2AGreenStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl10.php deleted file mode 100644 index cc249edf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl10 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[10]'; - - protected $Name = 'R2AGreenStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl11.php deleted file mode 100644 index 4c2c6036c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl11 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[11]'; - - protected $Name = 'R2AGreenStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl12.php deleted file mode 100644 index dea27e822..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl12 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[12]'; - - protected $Name = 'R2AGreenStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl13.php deleted file mode 100644 index 490e6e337..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl13 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[13]'; - - protected $Name = 'R2AGreenStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl14.php deleted file mode 100644 index ddb161fc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl14 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[14]'; - - protected $Name = 'R2AGreenStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl15.php deleted file mode 100644 index c0a63d094..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl15 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[15]'; - - protected $Name = 'R2AGreenStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl16.php deleted file mode 100644 index 020954ffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl16 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[16]'; - - protected $Name = 'R2AGreenStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl17.php deleted file mode 100644 index 1667975b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl17 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[17]'; - - protected $Name = 'R2AGreenStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl18.php deleted file mode 100644 index 03a69de5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl18 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[18]'; - - protected $Name = 'R2AGreenStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl19.php deleted file mode 100644 index 7634bf570..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl19 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[19]'; - - protected $Name = 'R2AGreenStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl20.php deleted file mode 100644 index c129aeba4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl20 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[20]'; - - protected $Name = 'R2AGreenStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl21.php deleted file mode 100644 index 0254acecd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl21 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[21]'; - - protected $Name = 'R2AGreenStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl22.php deleted file mode 100644 index e396a5b66..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl22 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[22]'; - - protected $Name = 'R2AGreenStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl23.php deleted file mode 100644 index 406fcd063..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl23 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[23]'; - - protected $Name = 'R2AGreenStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl24.php deleted file mode 100644 index f7b29dea0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl24 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[24]'; - - protected $Name = 'R2AGreenStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl25.php deleted file mode 100644 index 80b92b903..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl25 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[25]'; - - protected $Name = 'R2AGreenStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl26.php deleted file mode 100644 index ed0b181a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl26 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[26]'; - - protected $Name = 'R2AGreenStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl27.php deleted file mode 100644 index 98d2e4296..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl27 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[27]'; - - protected $Name = 'R2AGreenStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl28.php deleted file mode 100644 index 30f6b1da0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl28 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[28]'; - - protected $Name = 'R2AGreenStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl29.php deleted file mode 100644 index 45d97b1d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl29 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[29]'; - - protected $Name = 'R2AGreenStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl30.php deleted file mode 100644 index 576193917..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl30 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[30]'; - - protected $Name = 'R2AGreenStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl31.php deleted file mode 100644 index f6a065427..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AGreenStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AGreenStbl31 extends AbstractTag -{ - - protected $Id = 'r2_a_green_stbl[31]'; - - protected $Name = 'R2AGreenStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Green Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AHeight.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AHeight.php deleted file mode 100644 index c4b373361..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AHeight extends AbstractTag -{ - - protected $Id = 'r2_a_height'; - - protected $Name = 'R2AHeight'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AIntervals.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AIntervals.php deleted file mode 100644 index a3f962f2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AIntervals.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AIntervals extends AbstractTag -{ - - protected $Id = 'r2_a_intervals'; - - protected $Name = 'R2AIntervals'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Intervals'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl00.php deleted file mode 100644 index ced1b3013..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[0]'; - - protected $Name = 'R2ARedCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl01.php deleted file mode 100644 index 343002e6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[1]'; - - protected $Name = 'R2ARedCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl02.php deleted file mode 100644 index 0ade963a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[2]'; - - protected $Name = 'R2ARedCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl03.php deleted file mode 100644 index f2a36ab13..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[3]'; - - protected $Name = 'R2ARedCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl04.php deleted file mode 100644 index a400c4163..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[4]'; - - protected $Name = 'R2ARedCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl05.php deleted file mode 100644 index ed31083fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[5]'; - - protected $Name = 'R2ARedCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl06.php deleted file mode 100644 index 7ae08a15d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[6]'; - - protected $Name = 'R2ARedCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl07.php deleted file mode 100644 index fcde30544..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[7]'; - - protected $Name = 'R2ARedCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl08.php deleted file mode 100644 index 42512edff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[8]'; - - protected $Name = 'R2ARedCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl09.php deleted file mode 100644 index 848c95ed1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[9]'; - - protected $Name = 'R2ARedCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl10.php deleted file mode 100644 index db24be0f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[10]'; - - protected $Name = 'R2ARedCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl11.php deleted file mode 100644 index 64d0217aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[11]'; - - protected $Name = 'R2ARedCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl12.php deleted file mode 100644 index f5615a01f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[12]'; - - protected $Name = 'R2ARedCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl13.php deleted file mode 100644 index 1713921c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[13]'; - - protected $Name = 'R2ARedCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl14.php deleted file mode 100644 index 68109d81b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[14]'; - - protected $Name = 'R2ARedCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl15.php deleted file mode 100644 index 086721e2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[15]'; - - protected $Name = 'R2ARedCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl16.php deleted file mode 100644 index 0a7d71b0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[16]'; - - protected $Name = 'R2ARedCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl17.php deleted file mode 100644 index 13a62bb04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[17]'; - - protected $Name = 'R2ARedCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl18.php deleted file mode 100644 index d4c761c23..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[18]'; - - protected $Name = 'R2ARedCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl19.php deleted file mode 100644 index b481110e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[19]'; - - protected $Name = 'R2ARedCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl20.php deleted file mode 100644 index 344c09982..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[20]'; - - protected $Name = 'R2ARedCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl21.php deleted file mode 100644 index 8249c86d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[21]'; - - protected $Name = 'R2ARedCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl22.php deleted file mode 100644 index e0dea8339..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[22]'; - - protected $Name = 'R2ARedCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl23.php deleted file mode 100644 index e54c22cef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[23]'; - - protected $Name = 'R2ARedCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl24.php deleted file mode 100644 index db9df22b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[24]'; - - protected $Name = 'R2ARedCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl25.php deleted file mode 100644 index fce6c19ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[25]'; - - protected $Name = 'R2ARedCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl26.php deleted file mode 100644 index ff31c5bbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[26]'; - - protected $Name = 'R2ARedCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl27.php deleted file mode 100644 index bb0cca34d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[27]'; - - protected $Name = 'R2ARedCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl28.php deleted file mode 100644 index 0a5b66996..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[28]'; - - protected $Name = 'R2ARedCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl29.php deleted file mode 100644 index f58975cd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[29]'; - - protected $Name = 'R2ARedCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl30.php deleted file mode 100644 index 63eda3c1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[30]'; - - protected $Name = 'R2ARedCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl31.php deleted file mode 100644 index 67833e895..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_a_red_ctbl[31]'; - - protected $Name = 'R2ARedCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl00.php deleted file mode 100644 index 552fc1a56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl00 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[0]'; - - protected $Name = 'R2ARedStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl01.php deleted file mode 100644 index 40d4a48d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl01 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[1]'; - - protected $Name = 'R2ARedStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl02.php deleted file mode 100644 index a307ed2ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl02 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[2]'; - - protected $Name = 'R2ARedStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl03.php deleted file mode 100644 index 42720ec8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl03 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[3]'; - - protected $Name = 'R2ARedStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl04.php deleted file mode 100644 index b1ca6198c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl04 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[4]'; - - protected $Name = 'R2ARedStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl05.php deleted file mode 100644 index 65effa828..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl05 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[5]'; - - protected $Name = 'R2ARedStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl06.php deleted file mode 100644 index 1b1d38b03..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl06 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[6]'; - - protected $Name = 'R2ARedStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl07.php deleted file mode 100644 index 7e4256d6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl07 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[7]'; - - protected $Name = 'R2ARedStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl08.php deleted file mode 100644 index f7e4bf3ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl08 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[8]'; - - protected $Name = 'R2ARedStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl09.php deleted file mode 100644 index d28eab9a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl09 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[9]'; - - protected $Name = 'R2ARedStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl10.php deleted file mode 100644 index 1af3d0f17..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl10 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[10]'; - - protected $Name = 'R2ARedStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl11.php deleted file mode 100644 index 3fe35d42a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl11 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[11]'; - - protected $Name = 'R2ARedStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl12.php deleted file mode 100644 index c202d7c68..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl12 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[12]'; - - protected $Name = 'R2ARedStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl13.php deleted file mode 100644 index 288f4b41b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl13 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[13]'; - - protected $Name = 'R2ARedStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl14.php deleted file mode 100644 index ddae02837..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl14 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[14]'; - - protected $Name = 'R2ARedStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl15.php deleted file mode 100644 index 7379deb47..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl15 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[15]'; - - protected $Name = 'R2ARedStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl16.php deleted file mode 100644 index 89c2fd4b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl16 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[16]'; - - protected $Name = 'R2ARedStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl17.php deleted file mode 100644 index 70c1fb6d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl17 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[17]'; - - protected $Name = 'R2ARedStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl18.php deleted file mode 100644 index ddc697d19..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl18 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[18]'; - - protected $Name = 'R2ARedStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl19.php deleted file mode 100644 index da684917e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl19 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[19]'; - - protected $Name = 'R2ARedStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl20.php deleted file mode 100644 index b0812ca63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl20 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[20]'; - - protected $Name = 'R2ARedStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl21.php deleted file mode 100644 index 1aa5d8bab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl21 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[21]'; - - protected $Name = 'R2ARedStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl22.php deleted file mode 100644 index 1cce1249b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl22 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[22]'; - - protected $Name = 'R2ARedStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl23.php deleted file mode 100644 index 715dcae3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl23 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[23]'; - - protected $Name = 'R2ARedStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl24.php deleted file mode 100644 index bb6433a21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl24 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[24]'; - - protected $Name = 'R2ARedStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl25.php deleted file mode 100644 index f818e5015..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl25 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[25]'; - - protected $Name = 'R2ARedStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl26.php deleted file mode 100644 index 5da044d34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl26 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[26]'; - - protected $Name = 'R2ARedStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl27.php deleted file mode 100644 index a1591eb38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl27 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[27]'; - - protected $Name = 'R2ARedStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl28.php deleted file mode 100644 index ab3df03a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl28 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[28]'; - - protected $Name = 'R2ARedStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl29.php deleted file mode 100644 index b98416ebc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl29 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[29]'; - - protected $Name = 'R2ARedStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl30.php deleted file mode 100644 index e0760008e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl30 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[30]'; - - protected $Name = 'R2ARedStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl31.php deleted file mode 100644 index 4958facde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ARedStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ARedStbl31 extends AbstractTag -{ - - protected $Id = 'r2_a_red_stbl[31]'; - - protected $Name = 'R2ARedStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Red Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl00.php deleted file mode 100644 index 16ec1fceb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl00 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[0]'; - - protected $Name = 'R2ATbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl01.php deleted file mode 100644 index 16371adec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl01 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[1]'; - - protected $Name = 'R2ATbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl02.php deleted file mode 100644 index 03980bc2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl02 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[2]'; - - protected $Name = 'R2ATbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl03.php deleted file mode 100644 index 83755446f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl03 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[3]'; - - protected $Name = 'R2ATbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl04.php deleted file mode 100644 index ada675791..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl04 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[4]'; - - protected $Name = 'R2ATbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl05.php deleted file mode 100644 index 43ea6126f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl05 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[5]'; - - protected $Name = 'R2ATbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl06.php deleted file mode 100644 index 03b3bdf9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl06 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[6]'; - - protected $Name = 'R2ATbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl07.php deleted file mode 100644 index 0d625a7e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl07 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[7]'; - - protected $Name = 'R2ATbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl08.php deleted file mode 100644 index 429e8d464..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl08 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[8]'; - - protected $Name = 'R2ATbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl09.php deleted file mode 100644 index 6db123bef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl09 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[9]'; - - protected $Name = 'R2ATbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl10.php deleted file mode 100644 index 83d71adcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl10 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[10]'; - - protected $Name = 'R2ATbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl11.php deleted file mode 100644 index 58fe01962..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl11 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[11]'; - - protected $Name = 'R2ATbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl12.php deleted file mode 100644 index 3184ada81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl12 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[12]'; - - protected $Name = 'R2ATbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl13.php deleted file mode 100644 index f17c2c824..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl13 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[13]'; - - protected $Name = 'R2ATbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl14.php deleted file mode 100644 index 1142c79d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl14 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[14]'; - - protected $Name = 'R2ATbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl15.php deleted file mode 100644 index 1db041deb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl15 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[15]'; - - protected $Name = 'R2ATbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl16.php deleted file mode 100644 index 39feb98e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl16 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[16]'; - - protected $Name = 'R2ATbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl17.php deleted file mode 100644 index 257eaf5f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl17 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[17]'; - - protected $Name = 'R2ATbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl18.php deleted file mode 100644 index 17911f46f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl18 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[18]'; - - protected $Name = 'R2ATbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl19.php deleted file mode 100644 index 06242e558..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl19 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[19]'; - - protected $Name = 'R2ATbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl20.php deleted file mode 100644 index dfeadd184..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl20 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[20]'; - - protected $Name = 'R2ATbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl21.php deleted file mode 100644 index 96a461ac8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl21 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[21]'; - - protected $Name = 'R2ATbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl22.php deleted file mode 100644 index 3964746d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl22 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[22]'; - - protected $Name = 'R2ATbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl23.php deleted file mode 100644 index 92befb1e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl23 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[23]'; - - protected $Name = 'R2ATbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl24.php deleted file mode 100644 index bc019d717..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl24 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[24]'; - - protected $Name = 'R2ATbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl25.php deleted file mode 100644 index f3d34f30e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl25 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[25]'; - - protected $Name = 'R2ATbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl26.php deleted file mode 100644 index d1abd2738..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl26 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[26]'; - - protected $Name = 'R2ATbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl27.php deleted file mode 100644 index 91d65d753..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl27 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[27]'; - - protected $Name = 'R2ATbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl28.php deleted file mode 100644 index 865cf32f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl28 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[28]'; - - protected $Name = 'R2ATbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl29.php deleted file mode 100644 index c69f99381..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl29 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[29]'; - - protected $Name = 'R2ATbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl30.php deleted file mode 100644 index cc867dbfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl30 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[30]'; - - protected $Name = 'R2ATbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl31.php deleted file mode 100644 index 2d0a95eef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2ATbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2ATbl31 extends AbstractTag -{ - - protected $Id = 'r2_a_tbl[31]'; - - protected $Name = 'R2ATbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Tbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AWidth.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AWidth.php deleted file mode 100644 index 9008bf42e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2AWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2AWidth extends AbstractTag -{ - - protected $Id = 'r2_a_width'; - - protected $Name = 'R2AWidth'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 A Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl00.php deleted file mode 100644 index 9786f4bd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[0]'; - - protected $Name = 'R2D65BlueCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl01.php deleted file mode 100644 index 7fd902bf9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[1]'; - - protected $Name = 'R2D65BlueCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl02.php deleted file mode 100644 index df25b7c6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[2]'; - - protected $Name = 'R2D65BlueCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl03.php deleted file mode 100644 index 0021b18ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[3]'; - - protected $Name = 'R2D65BlueCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl04.php deleted file mode 100644 index d6af553f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[4]'; - - protected $Name = 'R2D65BlueCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl05.php deleted file mode 100644 index 488ad1084..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[5]'; - - protected $Name = 'R2D65BlueCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl06.php deleted file mode 100644 index 2653fa2c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[6]'; - - protected $Name = 'R2D65BlueCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl07.php deleted file mode 100644 index c47855f99..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[7]'; - - protected $Name = 'R2D65BlueCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl08.php deleted file mode 100644 index cf3e87f93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[8]'; - - protected $Name = 'R2D65BlueCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl09.php deleted file mode 100644 index 040b67b8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[9]'; - - protected $Name = 'R2D65BlueCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl10.php deleted file mode 100644 index 6decdce1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[10]'; - - protected $Name = 'R2D65BlueCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl11.php deleted file mode 100644 index 7eac25c15..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[11]'; - - protected $Name = 'R2D65BlueCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl12.php deleted file mode 100644 index b65934bb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[12]'; - - protected $Name = 'R2D65BlueCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl13.php deleted file mode 100644 index 1c0e9adb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[13]'; - - protected $Name = 'R2D65BlueCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl14.php deleted file mode 100644 index 9353e35ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[14]'; - - protected $Name = 'R2D65BlueCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl15.php deleted file mode 100644 index 3f6eb8d4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[15]'; - - protected $Name = 'R2D65BlueCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl16.php deleted file mode 100644 index a3ba53205..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[16]'; - - protected $Name = 'R2D65BlueCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl17.php deleted file mode 100644 index a9e3be39c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[17]'; - - protected $Name = 'R2D65BlueCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl18.php deleted file mode 100644 index ba3d4cc02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[18]'; - - protected $Name = 'R2D65BlueCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl19.php deleted file mode 100644 index 983d3c27d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[19]'; - - protected $Name = 'R2D65BlueCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl20.php deleted file mode 100644 index e9ed48918..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[20]'; - - protected $Name = 'R2D65BlueCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl21.php deleted file mode 100644 index d202e8aba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[21]'; - - protected $Name = 'R2D65BlueCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl22.php deleted file mode 100644 index c70dde0f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[22]'; - - protected $Name = 'R2D65BlueCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl23.php deleted file mode 100644 index eeaa38020..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[23]'; - - protected $Name = 'R2D65BlueCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl24.php deleted file mode 100644 index feca5faea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[24]'; - - protected $Name = 'R2D65BlueCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl25.php deleted file mode 100644 index 06e6dc321..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[25]'; - - protected $Name = 'R2D65BlueCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl26.php deleted file mode 100644 index 0c887b5c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[26]'; - - protected $Name = 'R2D65BlueCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl27.php deleted file mode 100644 index 49d8f2514..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[27]'; - - protected $Name = 'R2D65BlueCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl28.php deleted file mode 100644 index 2bf81f0ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[28]'; - - protected $Name = 'R2D65BlueCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl29.php deleted file mode 100644 index 70de41735..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[29]'; - - protected $Name = 'R2D65BlueCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl30.php deleted file mode 100644 index 7966732aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[30]'; - - protected $Name = 'R2D65BlueCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl31.php deleted file mode 100644 index b511f1f6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_ctbl[31]'; - - protected $Name = 'R2D65BlueCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl00.php deleted file mode 100644 index 96b2bd1e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl00 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[0]'; - - protected $Name = 'R2D65BlueStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl01.php deleted file mode 100644 index 204c059c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl01 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[1]'; - - protected $Name = 'R2D65BlueStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl02.php deleted file mode 100644 index 9d7be9b35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl02 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[2]'; - - protected $Name = 'R2D65BlueStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl03.php deleted file mode 100644 index 451ed5174..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl03 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[3]'; - - protected $Name = 'R2D65BlueStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl04.php deleted file mode 100644 index 62c4de1b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl04 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[4]'; - - protected $Name = 'R2D65BlueStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl05.php deleted file mode 100644 index a888cfc58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl05 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[5]'; - - protected $Name = 'R2D65BlueStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl06.php deleted file mode 100644 index 1c157fe89..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl06 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[6]'; - - protected $Name = 'R2D65BlueStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl07.php deleted file mode 100644 index b19cb8c4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl07 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[7]'; - - protected $Name = 'R2D65BlueStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl08.php deleted file mode 100644 index e7e3e7575..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl08 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[8]'; - - protected $Name = 'R2D65BlueStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl09.php deleted file mode 100644 index 643fd744a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl09 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[9]'; - - protected $Name = 'R2D65BlueStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl10.php deleted file mode 100644 index 71cd140e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl10 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[10]'; - - protected $Name = 'R2D65BlueStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl11.php deleted file mode 100644 index c4d2e7588..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl11 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[11]'; - - protected $Name = 'R2D65BlueStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl12.php deleted file mode 100644 index 58bbd7c10..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl12 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[12]'; - - protected $Name = 'R2D65BlueStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl13.php deleted file mode 100644 index 4425c1cef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl13 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[13]'; - - protected $Name = 'R2D65BlueStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl14.php deleted file mode 100644 index 832f8d978..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl14 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[14]'; - - protected $Name = 'R2D65BlueStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl15.php deleted file mode 100644 index fb07218fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl15 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[15]'; - - protected $Name = 'R2D65BlueStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl16.php deleted file mode 100644 index afa8e441b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl16 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[16]'; - - protected $Name = 'R2D65BlueStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl17.php deleted file mode 100644 index e2c448c5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl17 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[17]'; - - protected $Name = 'R2D65BlueStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl18.php deleted file mode 100644 index 37a6543be..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl18 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[18]'; - - protected $Name = 'R2D65BlueStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl19.php deleted file mode 100644 index 15ab7d40f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl19 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[19]'; - - protected $Name = 'R2D65BlueStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl20.php deleted file mode 100644 index 0ec82deae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl20 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[20]'; - - protected $Name = 'R2D65BlueStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl21.php deleted file mode 100644 index f9c180cfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl21 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[21]'; - - protected $Name = 'R2D65BlueStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl22.php deleted file mode 100644 index c7a7eab36..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl22 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[22]'; - - protected $Name = 'R2D65BlueStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl23.php deleted file mode 100644 index 385aa734c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl23 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[23]'; - - protected $Name = 'R2D65BlueStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl24.php deleted file mode 100644 index 17e958c2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl24 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[24]'; - - protected $Name = 'R2D65BlueStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl25.php deleted file mode 100644 index d1b2b047a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl25 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[25]'; - - protected $Name = 'R2D65BlueStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl26.php deleted file mode 100644 index 39035f17a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl26 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[26]'; - - protected $Name = 'R2D65BlueStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl27.php deleted file mode 100644 index 781647bf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl27 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[27]'; - - protected $Name = 'R2D65BlueStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl28.php deleted file mode 100644 index 15105478d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl28 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[28]'; - - protected $Name = 'R2D65BlueStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl29.php deleted file mode 100644 index 656eb3836..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl29 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[29]'; - - protected $Name = 'R2D65BlueStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl30.php deleted file mode 100644 index 82fac3257..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl30 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[30]'; - - protected $Name = 'R2D65BlueStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl31.php deleted file mode 100644 index 0d7e5bf21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65BlueStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65BlueStbl31 extends AbstractTag -{ - - protected $Id = 'r2_d65_blue_stbl[31]'; - - protected $Name = 'R2D65BlueStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Blue Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Cx.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Cx.php deleted file mode 100644 index a886259bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Cx.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Cx extends AbstractTag -{ - - protected $Id = 'r2_d65_cx'; - - protected $Name = 'R2D65Cx'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Cx'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Cy.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Cy.php deleted file mode 100644 index 501cea8a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Cy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Cy extends AbstractTag -{ - - protected $Id = 'r2_d65_cy'; - - protected $Name = 'R2D65Cy'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Cy'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl00.php deleted file mode 100644 index 09f722e2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[0]'; - - protected $Name = 'R2D65GreenCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl01.php deleted file mode 100644 index e4925dcdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[1]'; - - protected $Name = 'R2D65GreenCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl02.php deleted file mode 100644 index 1973acd46..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[2]'; - - protected $Name = 'R2D65GreenCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl03.php deleted file mode 100644 index c555e47c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[3]'; - - protected $Name = 'R2D65GreenCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl04.php deleted file mode 100644 index e2f6363d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[4]'; - - protected $Name = 'R2D65GreenCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl05.php deleted file mode 100644 index 58b4d57e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[5]'; - - protected $Name = 'R2D65GreenCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl06.php deleted file mode 100644 index 9bcdf6d4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[6]'; - - protected $Name = 'R2D65GreenCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl07.php deleted file mode 100644 index 1d9079699..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[7]'; - - protected $Name = 'R2D65GreenCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl08.php deleted file mode 100644 index 890f68a7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[8]'; - - protected $Name = 'R2D65GreenCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl09.php deleted file mode 100644 index 2de1ae20b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[9]'; - - protected $Name = 'R2D65GreenCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl10.php deleted file mode 100644 index 2f58fc726..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[10]'; - - protected $Name = 'R2D65GreenCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl11.php deleted file mode 100644 index 34a50d369..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[11]'; - - protected $Name = 'R2D65GreenCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl12.php deleted file mode 100644 index 9eef4e733..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[12]'; - - protected $Name = 'R2D65GreenCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl13.php deleted file mode 100644 index 474dc7b61..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[13]'; - - protected $Name = 'R2D65GreenCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl14.php deleted file mode 100644 index dfea0ff53..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[14]'; - - protected $Name = 'R2D65GreenCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl15.php deleted file mode 100644 index 9f5f2211c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[15]'; - - protected $Name = 'R2D65GreenCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl16.php deleted file mode 100644 index 1860ffbd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[16]'; - - protected $Name = 'R2D65GreenCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl17.php deleted file mode 100644 index 3b4dd8866..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[17]'; - - protected $Name = 'R2D65GreenCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl18.php deleted file mode 100644 index 3f2ec9000..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[18]'; - - protected $Name = 'R2D65GreenCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl19.php deleted file mode 100644 index 2595aab6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[19]'; - - protected $Name = 'R2D65GreenCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl20.php deleted file mode 100644 index b4af55d16..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[20]'; - - protected $Name = 'R2D65GreenCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl21.php deleted file mode 100644 index 66cdcec27..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[21]'; - - protected $Name = 'R2D65GreenCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl22.php deleted file mode 100644 index 6928e4d6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[22]'; - - protected $Name = 'R2D65GreenCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl23.php deleted file mode 100644 index afae313c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[23]'; - - protected $Name = 'R2D65GreenCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl24.php deleted file mode 100644 index 8a49d6ff8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[24]'; - - protected $Name = 'R2D65GreenCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl25.php deleted file mode 100644 index db786af6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[25]'; - - protected $Name = 'R2D65GreenCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl26.php deleted file mode 100644 index 54b5208e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[26]'; - - protected $Name = 'R2D65GreenCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl27.php deleted file mode 100644 index ca4d0c2cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[27]'; - - protected $Name = 'R2D65GreenCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl28.php deleted file mode 100644 index bd7eacd30..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[28]'; - - protected $Name = 'R2D65GreenCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl29.php deleted file mode 100644 index ab6b8fc70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[29]'; - - protected $Name = 'R2D65GreenCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl30.php deleted file mode 100644 index 2ce06a455..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[30]'; - - protected $Name = 'R2D65GreenCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl31.php deleted file mode 100644 index e0959d48b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_ctbl[31]'; - - protected $Name = 'R2D65GreenCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl00.php deleted file mode 100644 index 373c12c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl00 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[0]'; - - protected $Name = 'R2D65GreenStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl01.php deleted file mode 100644 index d6dd86ea7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl01 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[1]'; - - protected $Name = 'R2D65GreenStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl02.php deleted file mode 100644 index 6dee8338f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl02 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[2]'; - - protected $Name = 'R2D65GreenStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl03.php deleted file mode 100644 index 414e4668f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl03 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[3]'; - - protected $Name = 'R2D65GreenStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl04.php deleted file mode 100644 index 77ff7da59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl04 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[4]'; - - protected $Name = 'R2D65GreenStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl05.php deleted file mode 100644 index 3f423a09b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl05 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[5]'; - - protected $Name = 'R2D65GreenStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl06.php deleted file mode 100644 index 307a962b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl06 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[6]'; - - protected $Name = 'R2D65GreenStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl07.php deleted file mode 100644 index 56bbf5e6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl07 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[7]'; - - protected $Name = 'R2D65GreenStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl08.php deleted file mode 100644 index 830661e91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl08 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[8]'; - - protected $Name = 'R2D65GreenStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl09.php deleted file mode 100644 index 144e1e840..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl09 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[9]'; - - protected $Name = 'R2D65GreenStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl10.php deleted file mode 100644 index 18f22c59a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl10 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[10]'; - - protected $Name = 'R2D65GreenStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl11.php deleted file mode 100644 index 22b17a5c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl11 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[11]'; - - protected $Name = 'R2D65GreenStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl12.php deleted file mode 100644 index cdd20e8b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl12 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[12]'; - - protected $Name = 'R2D65GreenStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl13.php deleted file mode 100644 index 694679065..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl13 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[13]'; - - protected $Name = 'R2D65GreenStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl14.php deleted file mode 100644 index db69f48ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl14 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[14]'; - - protected $Name = 'R2D65GreenStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl15.php deleted file mode 100644 index d1c8c583a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl15 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[15]'; - - protected $Name = 'R2D65GreenStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl16.php deleted file mode 100644 index 165c21cac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl16 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[16]'; - - protected $Name = 'R2D65GreenStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl17.php deleted file mode 100644 index b48a3f094..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl17 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[17]'; - - protected $Name = 'R2D65GreenStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl18.php deleted file mode 100644 index 6a68f551c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl18 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[18]'; - - protected $Name = 'R2D65GreenStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl19.php deleted file mode 100644 index ef485956c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl19 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[19]'; - - protected $Name = 'R2D65GreenStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl20.php deleted file mode 100644 index e3b485f2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl20 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[20]'; - - protected $Name = 'R2D65GreenStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl21.php deleted file mode 100644 index 859fa340d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl21 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[21]'; - - protected $Name = 'R2D65GreenStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl22.php deleted file mode 100644 index be6b3a89d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl22 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[22]'; - - protected $Name = 'R2D65GreenStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl23.php deleted file mode 100644 index 5747619ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl23 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[23]'; - - protected $Name = 'R2D65GreenStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl24.php deleted file mode 100644 index 851fa0012..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl24 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[24]'; - - protected $Name = 'R2D65GreenStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl25.php deleted file mode 100644 index 3e0b45697..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl25 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[25]'; - - protected $Name = 'R2D65GreenStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl26.php deleted file mode 100644 index 40da277bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl26 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[26]'; - - protected $Name = 'R2D65GreenStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl27.php deleted file mode 100644 index f5a8cbd26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl27 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[27]'; - - protected $Name = 'R2D65GreenStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl28.php deleted file mode 100644 index 1c65ee6f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl28 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[28]'; - - protected $Name = 'R2D65GreenStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl29.php deleted file mode 100644 index ef347e662..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl29 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[29]'; - - protected $Name = 'R2D65GreenStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl30.php deleted file mode 100644 index b72b4a606..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl30 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[30]'; - - protected $Name = 'R2D65GreenStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl31.php deleted file mode 100644 index 991d40b54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65GreenStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65GreenStbl31 extends AbstractTag -{ - - protected $Id = 'r2_d65_green_stbl[31]'; - - protected $Name = 'R2D65GreenStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Green Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Height.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Height.php deleted file mode 100644 index ccd4d5d01..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Height.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Height extends AbstractTag -{ - - protected $Id = 'r2_d65_height'; - - protected $Name = 'R2D65Height'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Intervals.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Intervals.php deleted file mode 100644 index a2fa850dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Intervals.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Intervals extends AbstractTag -{ - - protected $Id = 'r2_d65_intervals'; - - protected $Name = 'R2D65Intervals'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Intervals'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl00.php deleted file mode 100644 index eebf92bd3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[0]'; - - protected $Name = 'R2D65RedCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl01.php deleted file mode 100644 index 76f9f02d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[1]'; - - protected $Name = 'R2D65RedCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl02.php deleted file mode 100644 index 293a21086..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[2]'; - - protected $Name = 'R2D65RedCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl03.php deleted file mode 100644 index 13541bbbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[3]'; - - protected $Name = 'R2D65RedCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl04.php deleted file mode 100644 index 0dba111e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[4]'; - - protected $Name = 'R2D65RedCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl05.php deleted file mode 100644 index bc3ae4c05..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[5]'; - - protected $Name = 'R2D65RedCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl06.php deleted file mode 100644 index fbf4b5dbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[6]'; - - protected $Name = 'R2D65RedCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl07.php deleted file mode 100644 index e6ca17456..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[7]'; - - protected $Name = 'R2D65RedCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl08.php deleted file mode 100644 index af3e5cab0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[8]'; - - protected $Name = 'R2D65RedCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl09.php deleted file mode 100644 index 740f781cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[9]'; - - protected $Name = 'R2D65RedCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl10.php deleted file mode 100644 index 56818aa0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[10]'; - - protected $Name = 'R2D65RedCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl11.php deleted file mode 100644 index a20383627..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[11]'; - - protected $Name = 'R2D65RedCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl12.php deleted file mode 100644 index 0059cc22d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[12]'; - - protected $Name = 'R2D65RedCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl13.php deleted file mode 100644 index 53272e1c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[13]'; - - protected $Name = 'R2D65RedCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl14.php deleted file mode 100644 index 712e21bac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[14]'; - - protected $Name = 'R2D65RedCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl15.php deleted file mode 100644 index b8ba49c92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[15]'; - - protected $Name = 'R2D65RedCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl16.php deleted file mode 100644 index 712b0f210..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[16]'; - - protected $Name = 'R2D65RedCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl17.php deleted file mode 100644 index 6feb7207c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[17]'; - - protected $Name = 'R2D65RedCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl18.php deleted file mode 100644 index 8e6d7aad2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[18]'; - - protected $Name = 'R2D65RedCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl19.php deleted file mode 100644 index 7550f677a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[19]'; - - protected $Name = 'R2D65RedCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl20.php deleted file mode 100644 index 65330e1bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[20]'; - - protected $Name = 'R2D65RedCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl21.php deleted file mode 100644 index 6e9abc24c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[21]'; - - protected $Name = 'R2D65RedCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl22.php deleted file mode 100644 index 9bca9dfdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[22]'; - - protected $Name = 'R2D65RedCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl23.php deleted file mode 100644 index 8d9907dcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[23]'; - - protected $Name = 'R2D65RedCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl24.php deleted file mode 100644 index 8ec90f56e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[24]'; - - protected $Name = 'R2D65RedCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl25.php deleted file mode 100644 index 1a0583688..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[25]'; - - protected $Name = 'R2D65RedCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl26.php deleted file mode 100644 index 416dd7c3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[26]'; - - protected $Name = 'R2D65RedCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl27.php deleted file mode 100644 index e62b1d1f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[27]'; - - protected $Name = 'R2D65RedCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl28.php deleted file mode 100644 index d7a84ad4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[28]'; - - protected $Name = 'R2D65RedCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl29.php deleted file mode 100644 index 530ca82c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[29]'; - - protected $Name = 'R2D65RedCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl30.php deleted file mode 100644 index d13655c90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[30]'; - - protected $Name = 'R2D65RedCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl31.php deleted file mode 100644 index 8678ad458..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_ctbl[31]'; - - protected $Name = 'R2D65RedCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl00.php deleted file mode 100644 index 85eb7a13a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl00 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[0]'; - - protected $Name = 'R2D65RedStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl01.php deleted file mode 100644 index 5b893df41..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl01 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[1]'; - - protected $Name = 'R2D65RedStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl02.php deleted file mode 100644 index b427d0883..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl02 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[2]'; - - protected $Name = 'R2D65RedStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl03.php deleted file mode 100644 index aa28b29ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl03 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[3]'; - - protected $Name = 'R2D65RedStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl04.php deleted file mode 100644 index 8afd78eab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl04 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[4]'; - - protected $Name = 'R2D65RedStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl05.php deleted file mode 100644 index 9fad598b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl05 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[5]'; - - protected $Name = 'R2D65RedStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl06.php deleted file mode 100644 index 5c26d4f15..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl06 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[6]'; - - protected $Name = 'R2D65RedStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl07.php deleted file mode 100644 index 02ca6efe5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl07 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[7]'; - - protected $Name = 'R2D65RedStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl08.php deleted file mode 100644 index e24d3922f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl08 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[8]'; - - protected $Name = 'R2D65RedStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl09.php deleted file mode 100644 index d858ce803..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl09 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[9]'; - - protected $Name = 'R2D65RedStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl10.php deleted file mode 100644 index a6389331e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl10 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[10]'; - - protected $Name = 'R2D65RedStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl11.php deleted file mode 100644 index f6831308d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl11 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[11]'; - - protected $Name = 'R2D65RedStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl12.php deleted file mode 100644 index 5546e8cff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl12 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[12]'; - - protected $Name = 'R2D65RedStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl13.php deleted file mode 100644 index 20e348dde..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl13 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[13]'; - - protected $Name = 'R2D65RedStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl14.php deleted file mode 100644 index 660593d03..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl14 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[14]'; - - protected $Name = 'R2D65RedStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl15.php deleted file mode 100644 index e8aed6ac0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl15 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[15]'; - - protected $Name = 'R2D65RedStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl16.php deleted file mode 100644 index ca436af48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl16 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[16]'; - - protected $Name = 'R2D65RedStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl17.php deleted file mode 100644 index 95e0f0e5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl17 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[17]'; - - protected $Name = 'R2D65RedStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl18.php deleted file mode 100644 index 99120a20e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl18 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[18]'; - - protected $Name = 'R2D65RedStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl19.php deleted file mode 100644 index 64401e6e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl19 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[19]'; - - protected $Name = 'R2D65RedStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl20.php deleted file mode 100644 index 314913f9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl20 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[20]'; - - protected $Name = 'R2D65RedStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl21.php deleted file mode 100644 index c38c61be0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl21 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[21]'; - - protected $Name = 'R2D65RedStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl22.php deleted file mode 100644 index 3b131e420..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl22 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[22]'; - - protected $Name = 'R2D65RedStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl23.php deleted file mode 100644 index 531009f0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl23 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[23]'; - - protected $Name = 'R2D65RedStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl24.php deleted file mode 100644 index 02f2c62ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl24 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[24]'; - - protected $Name = 'R2D65RedStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl25.php deleted file mode 100644 index f75463ec4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl25 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[25]'; - - protected $Name = 'R2D65RedStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl26.php deleted file mode 100644 index a2c4800a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl26 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[26]'; - - protected $Name = 'R2D65RedStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl27.php deleted file mode 100644 index 9de3bed0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl27 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[27]'; - - protected $Name = 'R2D65RedStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl28.php deleted file mode 100644 index f25f3993b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl28 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[28]'; - - protected $Name = 'R2D65RedStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl29.php deleted file mode 100644 index 3e84d4226..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl29 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[29]'; - - protected $Name = 'R2D65RedStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl30.php deleted file mode 100644 index e5a850473..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl30 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[30]'; - - protected $Name = 'R2D65RedStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl31.php deleted file mode 100644 index cf664f31e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65RedStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65RedStbl31 extends AbstractTag -{ - - protected $Id = 'r2_d65_red_stbl[31]'; - - protected $Name = 'R2D65RedStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Red Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl00.php deleted file mode 100644 index a7745628b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl00 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[0]'; - - protected $Name = 'R2D65Tbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl01.php deleted file mode 100644 index 61d7644bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl01 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[1]'; - - protected $Name = 'R2D65Tbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl02.php deleted file mode 100644 index d08bb502a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl02 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[2]'; - - protected $Name = 'R2D65Tbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl03.php deleted file mode 100644 index 1dcb5e317..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl03 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[3]'; - - protected $Name = 'R2D65Tbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl04.php deleted file mode 100644 index 5bc2ffb5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl04 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[4]'; - - protected $Name = 'R2D65Tbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl05.php deleted file mode 100644 index b17ca0a56..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl05 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[5]'; - - protected $Name = 'R2D65Tbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl06.php deleted file mode 100644 index 75bb70743..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl06 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[6]'; - - protected $Name = 'R2D65Tbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl07.php deleted file mode 100644 index 86fd2c594..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl07 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[7]'; - - protected $Name = 'R2D65Tbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl08.php deleted file mode 100644 index f43e8af38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl08 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[8]'; - - protected $Name = 'R2D65Tbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl09.php deleted file mode 100644 index 5ffe49059..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl09 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[9]'; - - protected $Name = 'R2D65Tbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl10.php deleted file mode 100644 index 9053278f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl10 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[10]'; - - protected $Name = 'R2D65Tbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl11.php deleted file mode 100644 index f20e366ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl11 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[11]'; - - protected $Name = 'R2D65Tbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl12.php deleted file mode 100644 index e741ed75b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl12 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[12]'; - - protected $Name = 'R2D65Tbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl13.php deleted file mode 100644 index 1a7464ddb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl13 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[13]'; - - protected $Name = 'R2D65Tbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl14.php deleted file mode 100644 index f300fc684..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl14 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[14]'; - - protected $Name = 'R2D65Tbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl15.php deleted file mode 100644 index 80eea5261..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl15 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[15]'; - - protected $Name = 'R2D65Tbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl16.php deleted file mode 100644 index e58b96a8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl16 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[16]'; - - protected $Name = 'R2D65Tbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl17.php deleted file mode 100644 index 3ca95f44c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl17 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[17]'; - - protected $Name = 'R2D65Tbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl18.php deleted file mode 100644 index 21811b076..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl18 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[18]'; - - protected $Name = 'R2D65Tbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl19.php deleted file mode 100644 index 68647b25a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl19 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[19]'; - - protected $Name = 'R2D65Tbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl20.php deleted file mode 100644 index 809369a5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl20 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[20]'; - - protected $Name = 'R2D65Tbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl21.php deleted file mode 100644 index 421a69b0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl21 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[21]'; - - protected $Name = 'R2D65Tbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl22.php deleted file mode 100644 index cbc5316d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl22 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[22]'; - - protected $Name = 'R2D65Tbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl23.php deleted file mode 100644 index 999587d8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl23 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[23]'; - - protected $Name = 'R2D65Tbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl24.php deleted file mode 100644 index 3468fda2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl24 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[24]'; - - protected $Name = 'R2D65Tbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl25.php deleted file mode 100644 index 072c03641..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl25 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[25]'; - - protected $Name = 'R2D65Tbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl26.php deleted file mode 100644 index 19b70d248..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl26 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[26]'; - - protected $Name = 'R2D65Tbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl27.php deleted file mode 100644 index 728f41005..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl27 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[27]'; - - protected $Name = 'R2D65Tbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl28.php deleted file mode 100644 index cadae4704..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl28 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[28]'; - - protected $Name = 'R2D65Tbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl29.php deleted file mode 100644 index e2331f467..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl29 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[29]'; - - protected $Name = 'R2D65Tbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl30.php deleted file mode 100644 index 20fee8b90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl30 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[30]'; - - protected $Name = 'R2D65Tbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl31.php deleted file mode 100644 index 948b3c139..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Tbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Tbl31 extends AbstractTag -{ - - protected $Id = 'r2_d65_tbl[31]'; - - protected $Name = 'R2D65Tbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Tbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Width.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Width.php deleted file mode 100644 index 68a020dd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2D65Width.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2D65Width extends AbstractTag -{ - - protected $Id = 'r2_d65_width'; - - protected $Name = 'R2D65Width'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 D65 Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl00.php deleted file mode 100644 index f8929b4a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[0]'; - - protected $Name = 'R2TL84BlueCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl01.php deleted file mode 100644 index 1dee24269..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[1]'; - - protected $Name = 'R2TL84BlueCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl02.php deleted file mode 100644 index 0f1fe58a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[2]'; - - protected $Name = 'R2TL84BlueCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl03.php deleted file mode 100644 index acbebbb4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[3]'; - - protected $Name = 'R2TL84BlueCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl04.php deleted file mode 100644 index 21f5d627a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[4]'; - - protected $Name = 'R2TL84BlueCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl05.php deleted file mode 100644 index 52a9b6420..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[5]'; - - protected $Name = 'R2TL84BlueCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl06.php deleted file mode 100644 index 29ac30894..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[6]'; - - protected $Name = 'R2TL84BlueCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl07.php deleted file mode 100644 index 27d4efbd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[7]'; - - protected $Name = 'R2TL84BlueCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl08.php deleted file mode 100644 index a6093ef08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[8]'; - - protected $Name = 'R2TL84BlueCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl09.php deleted file mode 100644 index bdfb3502c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[9]'; - - protected $Name = 'R2TL84BlueCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl10.php deleted file mode 100644 index 8b0dba060..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[10]'; - - protected $Name = 'R2TL84BlueCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl11.php deleted file mode 100644 index 0bfe6b903..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[11]'; - - protected $Name = 'R2TL84BlueCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl12.php deleted file mode 100644 index bb5d4018e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[12]'; - - protected $Name = 'R2TL84BlueCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl13.php deleted file mode 100644 index 7609ab60b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[13]'; - - protected $Name = 'R2TL84BlueCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl14.php deleted file mode 100644 index b3ed6490e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[14]'; - - protected $Name = 'R2TL84BlueCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl15.php deleted file mode 100644 index 7140daed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[15]'; - - protected $Name = 'R2TL84BlueCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl16.php deleted file mode 100644 index 433e45f7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[16]'; - - protected $Name = 'R2TL84BlueCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl17.php deleted file mode 100644 index 3d7658a54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[17]'; - - protected $Name = 'R2TL84BlueCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl18.php deleted file mode 100644 index 7e1d31292..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[18]'; - - protected $Name = 'R2TL84BlueCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl19.php deleted file mode 100644 index 851181d16..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[19]'; - - protected $Name = 'R2TL84BlueCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl20.php deleted file mode 100644 index d49bfe749..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[20]'; - - protected $Name = 'R2TL84BlueCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl21.php deleted file mode 100644 index 654f4b0b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[21]'; - - protected $Name = 'R2TL84BlueCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl22.php deleted file mode 100644 index 4f0554020..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[22]'; - - protected $Name = 'R2TL84BlueCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl23.php deleted file mode 100644 index c1e1dde0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[23]'; - - protected $Name = 'R2TL84BlueCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl24.php deleted file mode 100644 index 334e2033c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[24]'; - - protected $Name = 'R2TL84BlueCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl25.php deleted file mode 100644 index 8a1e7cbe2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[25]'; - - protected $Name = 'R2TL84BlueCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl26.php deleted file mode 100644 index f8f03bffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[26]'; - - protected $Name = 'R2TL84BlueCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl27.php deleted file mode 100644 index f2eaeb08b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[27]'; - - protected $Name = 'R2TL84BlueCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl28.php deleted file mode 100644 index b96e9eef6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[28]'; - - protected $Name = 'R2TL84BlueCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl29.php deleted file mode 100644 index 2fe66ddf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[29]'; - - protected $Name = 'R2TL84BlueCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl30.php deleted file mode 100644 index ea317be38..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[30]'; - - protected $Name = 'R2TL84BlueCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl31.php deleted file mode 100644 index 1de597107..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_ctbl[31]'; - - protected $Name = 'R2TL84BlueCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl00.php deleted file mode 100644 index dd7d908fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl00 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[0]'; - - protected $Name = 'R2TL84BlueStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl01.php deleted file mode 100644 index 031d401dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl01 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[1]'; - - protected $Name = 'R2TL84BlueStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl02.php deleted file mode 100644 index eea958bfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl02 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[2]'; - - protected $Name = 'R2TL84BlueStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl03.php deleted file mode 100644 index f3bc4b78b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl03 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[3]'; - - protected $Name = 'R2TL84BlueStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl04.php deleted file mode 100644 index 643b70f97..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl04 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[4]'; - - protected $Name = 'R2TL84BlueStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl05.php deleted file mode 100644 index 2c8ab2b68..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl05 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[5]'; - - protected $Name = 'R2TL84BlueStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl06.php deleted file mode 100644 index a442e504a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl06 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[6]'; - - protected $Name = 'R2TL84BlueStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl07.php deleted file mode 100644 index a0fa26f83..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl07 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[7]'; - - protected $Name = 'R2TL84BlueStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl08.php deleted file mode 100644 index a8dd0541d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl08 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[8]'; - - protected $Name = 'R2TL84BlueStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl09.php deleted file mode 100644 index ebd313017..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl09 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[9]'; - - protected $Name = 'R2TL84BlueStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl10.php deleted file mode 100644 index 764ebf37d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl10 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[10]'; - - protected $Name = 'R2TL84BlueStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl11.php deleted file mode 100644 index d879deed8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl11 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[11]'; - - protected $Name = 'R2TL84BlueStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl12.php deleted file mode 100644 index 93276ad5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl12 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[12]'; - - protected $Name = 'R2TL84BlueStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl13.php deleted file mode 100644 index d0abdc7d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl13 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[13]'; - - protected $Name = 'R2TL84BlueStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl14.php deleted file mode 100644 index ef3d5c14b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl14 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[14]'; - - protected $Name = 'R2TL84BlueStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl15.php deleted file mode 100644 index a5197343d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl15 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[15]'; - - protected $Name = 'R2TL84BlueStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl16.php deleted file mode 100644 index 540c182dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl16 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[16]'; - - protected $Name = 'R2TL84BlueStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl17.php deleted file mode 100644 index 761424d74..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl17 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[17]'; - - protected $Name = 'R2TL84BlueStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl18.php deleted file mode 100644 index daac30d78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl18 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[18]'; - - protected $Name = 'R2TL84BlueStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl19.php deleted file mode 100644 index 76f69fda5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl19 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[19]'; - - protected $Name = 'R2TL84BlueStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl20.php deleted file mode 100644 index 0da6d327e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl20 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[20]'; - - protected $Name = 'R2TL84BlueStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl21.php deleted file mode 100644 index b9147abcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl21 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[21]'; - - protected $Name = 'R2TL84BlueStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl22.php deleted file mode 100644 index f7fb65580..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl22 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[22]'; - - protected $Name = 'R2TL84BlueStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl23.php deleted file mode 100644 index 5acbd916e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl23 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[23]'; - - protected $Name = 'R2TL84BlueStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl24.php deleted file mode 100644 index 4bbbc13bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl24 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[24]'; - - protected $Name = 'R2TL84BlueStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl25.php deleted file mode 100644 index 2c73c4613..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl25 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[25]'; - - protected $Name = 'R2TL84BlueStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl26.php deleted file mode 100644 index 0fed14fcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl26 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[26]'; - - protected $Name = 'R2TL84BlueStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl27.php deleted file mode 100644 index a15126d14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl27 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[27]'; - - protected $Name = 'R2TL84BlueStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl28.php deleted file mode 100644 index 358e49533..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl28 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[28]'; - - protected $Name = 'R2TL84BlueStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl29.php deleted file mode 100644 index ff63dab70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl29 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[29]'; - - protected $Name = 'R2TL84BlueStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl30.php deleted file mode 100644 index cc4c0497e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl30 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[30]'; - - protected $Name = 'R2TL84BlueStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl31.php deleted file mode 100644 index b19644974..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84BlueStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84BlueStbl31 extends AbstractTag -{ - - protected $Id = 'r2_tl84_blue_stbl[31]'; - - protected $Name = 'R2TL84BlueStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Blue Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Cx.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Cx.php deleted file mode 100644 index 7af7672dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Cx.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Cx extends AbstractTag -{ - - protected $Id = 'r2_tl84_cx'; - - protected $Name = 'R2TL84Cx'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Cx'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Cy.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Cy.php deleted file mode 100644 index 3abc32822..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Cy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Cy extends AbstractTag -{ - - protected $Id = 'r2_tl84_cy'; - - protected $Name = 'R2TL84Cy'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Cy'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl00.php deleted file mode 100644 index dc4c8d85f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[0]'; - - protected $Name = 'R2TL84GreenCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl01.php deleted file mode 100644 index a5fc2e04e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[1]'; - - protected $Name = 'R2TL84GreenCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl02.php deleted file mode 100644 index 133e7cfb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[2]'; - - protected $Name = 'R2TL84GreenCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl03.php deleted file mode 100644 index 418c5fdd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[3]'; - - protected $Name = 'R2TL84GreenCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl04.php deleted file mode 100644 index 3a8899718..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[4]'; - - protected $Name = 'R2TL84GreenCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl05.php deleted file mode 100644 index 650c9fa37..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[5]'; - - protected $Name = 'R2TL84GreenCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl06.php deleted file mode 100644 index 3ebcc91ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[6]'; - - protected $Name = 'R2TL84GreenCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl07.php deleted file mode 100644 index 02f48711b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[7]'; - - protected $Name = 'R2TL84GreenCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl08.php deleted file mode 100644 index dcf7c3c98..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[8]'; - - protected $Name = 'R2TL84GreenCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl09.php deleted file mode 100644 index 6089587ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[9]'; - - protected $Name = 'R2TL84GreenCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl10.php deleted file mode 100644 index f00cc51a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[10]'; - - protected $Name = 'R2TL84GreenCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl11.php deleted file mode 100644 index 7d6cf7ed7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[11]'; - - protected $Name = 'R2TL84GreenCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl12.php deleted file mode 100644 index 3abd76b34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[12]'; - - protected $Name = 'R2TL84GreenCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl13.php deleted file mode 100644 index 7dc97a20b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[13]'; - - protected $Name = 'R2TL84GreenCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl14.php deleted file mode 100644 index 01d1163e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[14]'; - - protected $Name = 'R2TL84GreenCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl15.php deleted file mode 100644 index 9f3dd86c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[15]'; - - protected $Name = 'R2TL84GreenCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl16.php deleted file mode 100644 index b7a421811..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[16]'; - - protected $Name = 'R2TL84GreenCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl17.php deleted file mode 100644 index a68857e52..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[17]'; - - protected $Name = 'R2TL84GreenCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl18.php deleted file mode 100644 index 9f88bc0df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[18]'; - - protected $Name = 'R2TL84GreenCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl19.php deleted file mode 100644 index 111f3c649..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[19]'; - - protected $Name = 'R2TL84GreenCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl20.php deleted file mode 100644 index adf137d17..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[20]'; - - protected $Name = 'R2TL84GreenCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl21.php deleted file mode 100644 index 724e35e5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[21]'; - - protected $Name = 'R2TL84GreenCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl22.php deleted file mode 100644 index d0d57b8ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[22]'; - - protected $Name = 'R2TL84GreenCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl23.php deleted file mode 100644 index 37c4deebf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[23]'; - - protected $Name = 'R2TL84GreenCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl24.php deleted file mode 100644 index 9173aa183..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[24]'; - - protected $Name = 'R2TL84GreenCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl25.php deleted file mode 100644 index 97737a30f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[25]'; - - protected $Name = 'R2TL84GreenCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl26.php deleted file mode 100644 index afe829289..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[26]'; - - protected $Name = 'R2TL84GreenCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl27.php deleted file mode 100644 index 09205fe8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[27]'; - - protected $Name = 'R2TL84GreenCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl28.php deleted file mode 100644 index 0e8c073b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[28]'; - - protected $Name = 'R2TL84GreenCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl29.php deleted file mode 100644 index 447472dda..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[29]'; - - protected $Name = 'R2TL84GreenCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl30.php deleted file mode 100644 index 5efb50458..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[30]'; - - protected $Name = 'R2TL84GreenCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl31.php deleted file mode 100644 index efd0b38a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_ctbl[31]'; - - protected $Name = 'R2TL84GreenCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl00.php deleted file mode 100644 index 79abe361d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl00 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[0]'; - - protected $Name = 'R2TL84GreenStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl01.php deleted file mode 100644 index 0b08e9292..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl01 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[1]'; - - protected $Name = 'R2TL84GreenStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl02.php deleted file mode 100644 index 282cb9bca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl02 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[2]'; - - protected $Name = 'R2TL84GreenStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl03.php deleted file mode 100644 index f22e8d838..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl03 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[3]'; - - protected $Name = 'R2TL84GreenStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl04.php deleted file mode 100644 index 8a435923f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl04 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[4]'; - - protected $Name = 'R2TL84GreenStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl05.php deleted file mode 100644 index 14d57bd3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl05 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[5]'; - - protected $Name = 'R2TL84GreenStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl06.php deleted file mode 100644 index f008f50d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl06 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[6]'; - - protected $Name = 'R2TL84GreenStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl07.php deleted file mode 100644 index f19b28e7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl07 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[7]'; - - protected $Name = 'R2TL84GreenStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl08.php deleted file mode 100644 index 00855acef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl08 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[8]'; - - protected $Name = 'R2TL84GreenStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl09.php deleted file mode 100644 index 19ab3cd2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl09 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[9]'; - - protected $Name = 'R2TL84GreenStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl10.php deleted file mode 100644 index ce1d53880..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl10 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[10]'; - - protected $Name = 'R2TL84GreenStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl11.php deleted file mode 100644 index 8bd57205d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl11 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[11]'; - - protected $Name = 'R2TL84GreenStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl12.php deleted file mode 100644 index 7547395c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl12 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[12]'; - - protected $Name = 'R2TL84GreenStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl13.php deleted file mode 100644 index 134c2d85f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl13 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[13]'; - - protected $Name = 'R2TL84GreenStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl14.php deleted file mode 100644 index d3e60e9eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl14 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[14]'; - - protected $Name = 'R2TL84GreenStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl15.php deleted file mode 100644 index 38e1dba78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl15 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[15]'; - - protected $Name = 'R2TL84GreenStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl16.php deleted file mode 100644 index e1c16ee7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl16 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[16]'; - - protected $Name = 'R2TL84GreenStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl17.php deleted file mode 100644 index 1e77f7d16..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl17 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[17]'; - - protected $Name = 'R2TL84GreenStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl18.php deleted file mode 100644 index 8758b8b0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl18 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[18]'; - - protected $Name = 'R2TL84GreenStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl19.php deleted file mode 100644 index 919b98f3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl19 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[19]'; - - protected $Name = 'R2TL84GreenStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl20.php deleted file mode 100644 index ea4441929..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl20 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[20]'; - - protected $Name = 'R2TL84GreenStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl21.php deleted file mode 100644 index 5e17e3741..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl21 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[21]'; - - protected $Name = 'R2TL84GreenStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl22.php deleted file mode 100644 index 2219b4d82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl22 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[22]'; - - protected $Name = 'R2TL84GreenStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl23.php deleted file mode 100644 index 21e1928d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl23 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[23]'; - - protected $Name = 'R2TL84GreenStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl24.php deleted file mode 100644 index 066bb811a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl24 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[24]'; - - protected $Name = 'R2TL84GreenStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl25.php deleted file mode 100644 index 580e22a91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl25 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[25]'; - - protected $Name = 'R2TL84GreenStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl26.php deleted file mode 100644 index c3ac9435d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl26 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[26]'; - - protected $Name = 'R2TL84GreenStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl27.php deleted file mode 100644 index 5fc03210c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl27 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[27]'; - - protected $Name = 'R2TL84GreenStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl28.php deleted file mode 100644 index 2b891893d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl28 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[28]'; - - protected $Name = 'R2TL84GreenStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl29.php deleted file mode 100644 index 0c9d1e641..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl29 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[29]'; - - protected $Name = 'R2TL84GreenStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl30.php deleted file mode 100644 index 5216a213a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl30 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[30]'; - - protected $Name = 'R2TL84GreenStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl31.php deleted file mode 100644 index 88b756d31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84GreenStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84GreenStbl31 extends AbstractTag -{ - - protected $Id = 'r2_tl84_green_stbl[31]'; - - protected $Name = 'R2TL84GreenStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Green Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Height.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Height.php deleted file mode 100644 index 5053355a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Height.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Height extends AbstractTag -{ - - protected $Id = 'r2_tl84_height'; - - protected $Name = 'R2TL84Height'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Intervals.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Intervals.php deleted file mode 100644 index 68f211529..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Intervals.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Intervals extends AbstractTag -{ - - protected $Id = 'r2_tl84_intervals'; - - protected $Name = 'R2TL84Intervals'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Intervals'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl00.php deleted file mode 100644 index 280f103fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl00 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[0]'; - - protected $Name = 'R2TL84RedCtbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl01.php deleted file mode 100644 index 5154c0bc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl01 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[1]'; - - protected $Name = 'R2TL84RedCtbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl02.php deleted file mode 100644 index daf6d004f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl02 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[2]'; - - protected $Name = 'R2TL84RedCtbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl03.php deleted file mode 100644 index e91491c7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl03 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[3]'; - - protected $Name = 'R2TL84RedCtbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl04.php deleted file mode 100644 index 3314b3bb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl04 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[4]'; - - protected $Name = 'R2TL84RedCtbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl05.php deleted file mode 100644 index 36d9c1eb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl05 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[5]'; - - protected $Name = 'R2TL84RedCtbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl06.php deleted file mode 100644 index 44a92385a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl06 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[6]'; - - protected $Name = 'R2TL84RedCtbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl07.php deleted file mode 100644 index 0e5d02f57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl07 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[7]'; - - protected $Name = 'R2TL84RedCtbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl08.php deleted file mode 100644 index 447ed7745..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl08 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[8]'; - - protected $Name = 'R2TL84RedCtbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl09.php deleted file mode 100644 index 8ea878852..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl09 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[9]'; - - protected $Name = 'R2TL84RedCtbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl10.php deleted file mode 100644 index f421472c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl10 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[10]'; - - protected $Name = 'R2TL84RedCtbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl11.php deleted file mode 100644 index ac3a15e1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl11 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[11]'; - - protected $Name = 'R2TL84RedCtbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl12.php deleted file mode 100644 index b37549f69..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl12 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[12]'; - - protected $Name = 'R2TL84RedCtbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl13.php deleted file mode 100644 index 3ea460a9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl13 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[13]'; - - protected $Name = 'R2TL84RedCtbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl14.php deleted file mode 100644 index 6facdd7f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl14 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[14]'; - - protected $Name = 'R2TL84RedCtbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl15.php deleted file mode 100644 index dcfdf1bbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl15 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[15]'; - - protected $Name = 'R2TL84RedCtbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl16.php deleted file mode 100644 index 81082bc36..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl16 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[16]'; - - protected $Name = 'R2TL84RedCtbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl17.php deleted file mode 100644 index f0311a231..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl17 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[17]'; - - protected $Name = 'R2TL84RedCtbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl18.php deleted file mode 100644 index 5f195d00f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl18 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[18]'; - - protected $Name = 'R2TL84RedCtbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl19.php deleted file mode 100644 index 88617624d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl19 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[19]'; - - protected $Name = 'R2TL84RedCtbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl20.php deleted file mode 100644 index bbf0ec71d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl20 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[20]'; - - protected $Name = 'R2TL84RedCtbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl21.php deleted file mode 100644 index 2307d5c28..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl21 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[21]'; - - protected $Name = 'R2TL84RedCtbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl22.php deleted file mode 100644 index fc206be98..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl22 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[22]'; - - protected $Name = 'R2TL84RedCtbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl23.php deleted file mode 100644 index 2958701fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl23 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[23]'; - - protected $Name = 'R2TL84RedCtbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl24.php deleted file mode 100644 index 263ca42f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl24 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[24]'; - - protected $Name = 'R2TL84RedCtbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl25.php deleted file mode 100644 index a62933582..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl25 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[25]'; - - protected $Name = 'R2TL84RedCtbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl26.php deleted file mode 100644 index e1bd452fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl26 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[26]'; - - protected $Name = 'R2TL84RedCtbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl27.php deleted file mode 100644 index 8108ce892..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl27 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[27]'; - - protected $Name = 'R2TL84RedCtbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl28.php deleted file mode 100644 index 691f7bb62..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl28 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[28]'; - - protected $Name = 'R2TL84RedCtbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl29.php deleted file mode 100644 index 3a0a5bc91..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl29 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[29]'; - - protected $Name = 'R2TL84RedCtbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl30.php deleted file mode 100644 index d2507e60a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl30 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[30]'; - - protected $Name = 'R2TL84RedCtbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl31.php deleted file mode 100644 index e47a68eb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedCtbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedCtbl31 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_ctbl[31]'; - - protected $Name = 'R2TL84RedCtbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Ctbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl00.php deleted file mode 100644 index c23477b93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl00 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[0]'; - - protected $Name = 'R2TL84RedStbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl01.php deleted file mode 100644 index 694d2e247..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl01 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[1]'; - - protected $Name = 'R2TL84RedStbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl02.php deleted file mode 100644 index f20de8512..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl02 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[2]'; - - protected $Name = 'R2TL84RedStbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl03.php deleted file mode 100644 index b78ce1b20..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl03 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[3]'; - - protected $Name = 'R2TL84RedStbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl04.php deleted file mode 100644 index cd54c8da9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl04 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[4]'; - - protected $Name = 'R2TL84RedStbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl05.php deleted file mode 100644 index 040665296..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl05 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[5]'; - - protected $Name = 'R2TL84RedStbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl06.php deleted file mode 100644 index 8df1e3d84..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl06 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[6]'; - - protected $Name = 'R2TL84RedStbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl07.php deleted file mode 100644 index 4c5ec1dff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl07 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[7]'; - - protected $Name = 'R2TL84RedStbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl08.php deleted file mode 100644 index aa04a2ffb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl08 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[8]'; - - protected $Name = 'R2TL84RedStbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl09.php deleted file mode 100644 index f6b38e8d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl09 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[9]'; - - protected $Name = 'R2TL84RedStbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl10.php deleted file mode 100644 index 47df91306..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl10 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[10]'; - - protected $Name = 'R2TL84RedStbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl11.php deleted file mode 100644 index 251805625..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl11 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[11]'; - - protected $Name = 'R2TL84RedStbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl12.php deleted file mode 100644 index 6d2ebeaa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl12 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[12]'; - - protected $Name = 'R2TL84RedStbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl13.php deleted file mode 100644 index 9c6b143d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl13 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[13]'; - - protected $Name = 'R2TL84RedStbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl14.php deleted file mode 100644 index a12109168..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl14 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[14]'; - - protected $Name = 'R2TL84RedStbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl15.php deleted file mode 100644 index 66840adb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl15 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[15]'; - - protected $Name = 'R2TL84RedStbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl16.php deleted file mode 100644 index 9605c1c5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl16 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[16]'; - - protected $Name = 'R2TL84RedStbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl17.php deleted file mode 100644 index dbf8dba59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl17 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[17]'; - - protected $Name = 'R2TL84RedStbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl18.php deleted file mode 100644 index 0cd2cf807..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl18 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[18]'; - - protected $Name = 'R2TL84RedStbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl19.php deleted file mode 100644 index bbd3a3daa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl19 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[19]'; - - protected $Name = 'R2TL84RedStbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl20.php deleted file mode 100644 index 28f3cf434..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl20 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[20]'; - - protected $Name = 'R2TL84RedStbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl21.php deleted file mode 100644 index b1606396d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl21 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[21]'; - - protected $Name = 'R2TL84RedStbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl22.php deleted file mode 100644 index 837559c0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl22 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[22]'; - - protected $Name = 'R2TL84RedStbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl23.php deleted file mode 100644 index 16f0c5a61..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl23 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[23]'; - - protected $Name = 'R2TL84RedStbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl24.php deleted file mode 100644 index 262dcd691..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl24 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[24]'; - - protected $Name = 'R2TL84RedStbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl25.php deleted file mode 100644 index 165fa4b75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl25 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[25]'; - - protected $Name = 'R2TL84RedStbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl26.php deleted file mode 100644 index 8170c72ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl26 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[26]'; - - protected $Name = 'R2TL84RedStbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl27.php deleted file mode 100644 index bd9d48099..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl27 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[27]'; - - protected $Name = 'R2TL84RedStbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl28.php deleted file mode 100644 index 5377ff1cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl28 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[28]'; - - protected $Name = 'R2TL84RedStbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl29.php deleted file mode 100644 index e756203c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl29 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[29]'; - - protected $Name = 'R2TL84RedStbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl30.php deleted file mode 100644 index 9304b61ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl30 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[30]'; - - protected $Name = 'R2TL84RedStbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl31.php deleted file mode 100644 index 54faa7343..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84RedStbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84RedStbl31 extends AbstractTag -{ - - protected $Id = 'r2_tl84_red_stbl[31]'; - - protected $Name = 'R2TL84RedStbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Red Stbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl00.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl00.php deleted file mode 100644 index fa382591f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl00.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl00 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[0]'; - - protected $Name = 'R2TL84Tbl00'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 00'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl01.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl01.php deleted file mode 100644 index a78e56d40..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl01.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl01 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[1]'; - - protected $Name = 'R2TL84Tbl01'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 01'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl02.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl02.php deleted file mode 100644 index 8b47c44b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl02.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl02 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[2]'; - - protected $Name = 'R2TL84Tbl02'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 02'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl03.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl03.php deleted file mode 100644 index b734560b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl03.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl03 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[3]'; - - protected $Name = 'R2TL84Tbl03'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 03'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl04.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl04.php deleted file mode 100644 index abfaa0107..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl04.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl04 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[4]'; - - protected $Name = 'R2TL84Tbl04'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 04'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl05.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl05.php deleted file mode 100644 index d0166da93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl05.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl05 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[5]'; - - protected $Name = 'R2TL84Tbl05'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 05'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl06.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl06.php deleted file mode 100644 index adc19606e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl06.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl06 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[6]'; - - protected $Name = 'R2TL84Tbl06'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 06'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl07.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl07.php deleted file mode 100644 index be286cf27..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl07.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl07 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[7]'; - - protected $Name = 'R2TL84Tbl07'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 07'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl08.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl08.php deleted file mode 100644 index e2d984121..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl08.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl08 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[8]'; - - protected $Name = 'R2TL84Tbl08'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 08'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl09.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl09.php deleted file mode 100644 index 9a0f4f6b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl09.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl09 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[9]'; - - protected $Name = 'R2TL84Tbl09'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 09'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl10.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl10.php deleted file mode 100644 index 2e3727c6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl10.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl10 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[10]'; - - protected $Name = 'R2TL84Tbl10'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 10'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl11.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl11.php deleted file mode 100644 index 15ef03838..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl11.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl11 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[11]'; - - protected $Name = 'R2TL84Tbl11'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 11'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl12.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl12.php deleted file mode 100644 index fc909d3f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl12.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl12 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[12]'; - - protected $Name = 'R2TL84Tbl12'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 12'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl13.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl13.php deleted file mode 100644 index db1c20070..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl13.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl13 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[13]'; - - protected $Name = 'R2TL84Tbl13'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 13'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl14.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl14.php deleted file mode 100644 index fdba754a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl14.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl14 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[14]'; - - protected $Name = 'R2TL84Tbl14'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 14'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl15.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl15.php deleted file mode 100644 index f3a6807c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl15.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl15 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[15]'; - - protected $Name = 'R2TL84Tbl15'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 15'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl16.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl16.php deleted file mode 100644 index 6d51738db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl16.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl16 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[16]'; - - protected $Name = 'R2TL84Tbl16'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 16'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl17.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl17.php deleted file mode 100644 index e0dd67602..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl17.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl17 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[17]'; - - protected $Name = 'R2TL84Tbl17'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 17'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl18.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl18.php deleted file mode 100644 index ffae292f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl18.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl18 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[18]'; - - protected $Name = 'R2TL84Tbl18'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 18'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl19.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl19.php deleted file mode 100644 index 664d9fc94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl19.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl19 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[19]'; - - protected $Name = 'R2TL84Tbl19'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 19'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl20.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl20.php deleted file mode 100644 index 1b348a608..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl20.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl20 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[20]'; - - protected $Name = 'R2TL84Tbl20'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 20'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl21.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl21.php deleted file mode 100644 index 8f2113e79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl21.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl21 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[21]'; - - protected $Name = 'R2TL84Tbl21'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 21'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl22.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl22.php deleted file mode 100644 index 0d053d43e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl22.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl22 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[22]'; - - protected $Name = 'R2TL84Tbl22'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 22'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl23.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl23.php deleted file mode 100644 index 62b4876c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl23.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl23 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[23]'; - - protected $Name = 'R2TL84Tbl23'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 23'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl24.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl24.php deleted file mode 100644 index c5bea6f3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl24.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl24 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[24]'; - - protected $Name = 'R2TL84Tbl24'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 24'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl25.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl25.php deleted file mode 100644 index a75f45e90..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl25.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl25 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[25]'; - - protected $Name = 'R2TL84Tbl25'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 25'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl26.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl26.php deleted file mode 100644 index 82d9ae476..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl26.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl26 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[26]'; - - protected $Name = 'R2TL84Tbl26'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 26'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl27.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl27.php deleted file mode 100644 index 9b7da6f23..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl27.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl27 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[27]'; - - protected $Name = 'R2TL84Tbl27'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 27'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl28.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl28.php deleted file mode 100644 index a87e19774..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl28.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl28 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[28]'; - - protected $Name = 'R2TL84Tbl28'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 28'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl29.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl29.php deleted file mode 100644 index 8b5ae3346..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl29.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl29 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[29]'; - - protected $Name = 'R2TL84Tbl29'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 29'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl30.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl30.php deleted file mode 100644 index 7ba05bb35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl30.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl30 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[30]'; - - protected $Name = 'R2TL84Tbl30'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 30'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl31.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl31.php deleted file mode 100644 index 8f1689ce2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Tbl31.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Tbl31 extends AbstractTag -{ - - protected $Id = 'r2_tl84_tbl[31]'; - - protected $Name = 'R2TL84Tbl31'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Tbl 31'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Width.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Width.php deleted file mode 100644 index a1c536e00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/R2TL84Width.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class R2TL84Width extends AbstractTag -{ - - protected $Id = 'r2_tl84_width'; - - protected $Name = 'R2TL84Width'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'R2 TL84 Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/RolloffEnable.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/RolloffEnable.php deleted file mode 100644 index 46e036a1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/RolloffEnable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RolloffEnable extends AbstractTag -{ - - protected $Id = 'rolloff_enable'; - - protected $Name = 'RolloffEnable'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rolloff Enable'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensorFmt.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/SensorFmt.php deleted file mode 100644 index 042401ac4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensorFmt.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorFmt extends AbstractTag -{ - - protected $Id = 'sensor_fmt'; - - protected $Name = 'SensorFmt'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Fmt'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensorType.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/SensorType.php deleted file mode 100644 index ce2bcedc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensorType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorType extends AbstractTag -{ - - protected $Id = 'sensor_type'; - - protected $Name = 'SensorType'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrFulHght.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrFulHght.php deleted file mode 100644 index 665ca3a9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrFulHght.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensrFulHght extends AbstractTag -{ - - protected $Id = 'sensr_ful_hght'; - - protected $Name = 'SensrFulHght'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensr Ful Hght'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrFulWdth.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrFulWdth.php deleted file mode 100644 index fcc49bb5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrFulWdth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensrFulWdth extends AbstractTag -{ - - protected $Id = 'sensr_ful_wdth'; - - protected $Name = 'SensrFulWdth'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensr Ful Wdth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrQtrHght.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrQtrHght.php deleted file mode 100644 index 51951f97c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrQtrHght.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensrQtrHght extends AbstractTag -{ - - protected $Id = 'sensr_qtr_hght'; - - protected $Name = 'SensrQtrHght'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensr Qtr Hght'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrQtrWdth.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrQtrWdth.php deleted file mode 100644 index e6ab80fa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/SensrQtrWdth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensrQtrWdth extends AbstractTag -{ - - protected $Id = 'sensr_qtr_wdth'; - - protected $Name = 'SensrQtrWdth'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensr Qtr Wdth'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/SnapshotResol.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/SnapshotResol.php deleted file mode 100644 index fa37b34c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/SnapshotResol.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SnapshotResol extends AbstractTag -{ - - protected $Id = 'snapshot_resol'; - - protected $Name = 'SnapshotResol'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Snapshot Resol'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmAM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmAM.php deleted file mode 100644 index 42ba2e75d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmAM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmAM extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_a_m'; - - protected $Name = 'TL84ConvChrmA_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm A M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmAP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmAP.php deleted file mode 100644 index 3d8b27f7d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmAP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmAP extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_a_p'; - - protected $Name = 'TL84ConvChrmA_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm A P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmBM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmBM.php deleted file mode 100644 index e0ca01cfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmBM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmBM extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_b_m'; - - protected $Name = 'TL84ConvChrmB_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm B M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmBP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmBP.php deleted file mode 100644 index cf1afb589..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmBP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmBP extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_b_p'; - - protected $Name = 'TL84ConvChrmB_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm B P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmCM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmCM.php deleted file mode 100644 index 31c5242fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmCM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmCM extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_c_m'; - - protected $Name = 'TL84ConvChrmC_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm C M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmCP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmCP.php deleted file mode 100644 index 919197d79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmCP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmCP extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_c_p'; - - protected $Name = 'TL84ConvChrmC_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm C P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmDM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmDM.php deleted file mode 100644 index e83e9fe48..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmDM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmDM extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_d_m'; - - protected $Name = 'TL84ConvChrmD_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm D M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmDP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmDP.php deleted file mode 100644 index 513b227d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmDP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmDP extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_d_p'; - - protected $Name = 'TL84ConvChrmD_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm D P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmKCb.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmKCb.php deleted file mode 100644 index a400482da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmKCb.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmKCb extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_k_cb'; - - protected $Name = 'TL84ConvChrmKCb'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm K Cb'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmKCr.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmKCr.php deleted file mode 100644 index 28b6073eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvChrmKCr.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvChrmKCr extends AbstractTag -{ - - protected $Id = 'tl84_conv_chrm_k_cr'; - - protected $Name = 'TL84ConvChrmKCr'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Chrm K Cr'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaK.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaK.php deleted file mode 100644 index f49402722..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaK.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvLumaK extends AbstractTag -{ - - protected $Id = 'tl84_conv_luma_k'; - - protected $Name = 'TL84ConvLumaK'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Luma K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV0.php deleted file mode 100644 index 01194b432..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvLumaV0 extends AbstractTag -{ - - protected $Id = 'tl84_conv_luma_v0'; - - protected $Name = 'TL84ConvLumaV0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Luma V0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV1.php deleted file mode 100644 index 8820b5836..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvLumaV1 extends AbstractTag -{ - - protected $Id = 'tl84_conv_luma_v1'; - - protected $Name = 'TL84ConvLumaV1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Luma V1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV2.php deleted file mode 100644 index f500ba569..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/TL84ConvLumaV2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TL84ConvLumaV2 extends AbstractTag -{ - - protected $Id = 'tl84_conv_luma_v2'; - - protected $Name = 'TL84ConvLumaV2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TL84 Conv Luma V2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/VideoFps.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/VideoFps.php deleted file mode 100644 index 8767d80bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/VideoFps.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFps extends AbstractTag -{ - - protected $Id = 'video_fps'; - - protected $Name = 'VideoFps'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Fps'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmAM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmAM.php deleted file mode 100644 index d65d05ee7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmAM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmAM extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_a_m'; - - protected $Name = 'YhiYloConvChrmA_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm A M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmAP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmAP.php deleted file mode 100644 index 2026de482..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmAP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmAP extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_a_p'; - - protected $Name = 'YhiYloConvChrmA_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm A P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmBM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmBM.php deleted file mode 100644 index fa9de56c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmBM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmBM extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_b_m'; - - protected $Name = 'YhiYloConvChrmB_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm B M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmBP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmBP.php deleted file mode 100644 index 96f953872..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmBP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmBP extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_b_p'; - - protected $Name = 'YhiYloConvChrmB_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm B P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmCM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmCM.php deleted file mode 100644 index 30f456b1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmCM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmCM extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_c_m'; - - protected $Name = 'YhiYloConvChrmC_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm C M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmCP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmCP.php deleted file mode 100644 index c6fe75dfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmCP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmCP extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_c_p'; - - protected $Name = 'YhiYloConvChrmC_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm C P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmDM.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmDM.php deleted file mode 100644 index acec38361..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmDM.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmDM extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_d_m'; - - protected $Name = 'YhiYloConvChrmD_M'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm D M'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmDP.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmDP.php deleted file mode 100644 index 7103bc8d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmDP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmDP extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_d_p'; - - protected $Name = 'YhiYloConvChrmD_P'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm D P'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmKCb.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmKCb.php deleted file mode 100644 index 6a20a3c70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmKCb.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmKCb extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_k_cb'; - - protected $Name = 'YhiYloConvChrmKCb'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm K Cb'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmKCr.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmKCr.php deleted file mode 100644 index 5746bb897..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvChrmKCr.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvChrmKCr extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_chrm_k_cr'; - - protected $Name = 'YhiYloConvChrmKCr'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Chrm K Cr'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaK.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaK.php deleted file mode 100644 index 1e356ee9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaK.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvLumaK extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_luma_k'; - - protected $Name = 'YhiYloConvLumaK'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Luma K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV0.php deleted file mode 100644 index 627242aad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvLumaV0 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_luma_v0'; - - protected $Name = 'YhiYloConvLumaV0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Luma V0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV1.php deleted file mode 100644 index be502ef29..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvLumaV1 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_luma_v1'; - - protected $Name = 'YhiYloConvLumaV1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Luma V1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV2.php deleted file mode 100644 index 6487f906a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloConvLumaV2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloConvLumaV2 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_conv_luma_v2'; - - protected $Name = 'YhiYloConvLumaV2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Conv Luma V2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC0.php deleted file mode 100644 index b62fe339c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC0 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c0'; - - protected $Name = 'YhiYloCorC0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC1.php deleted file mode 100644 index f252e4af5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC1 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c1'; - - protected $Name = 'YhiYloCorC1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC2.php deleted file mode 100644 index 8ddf57d02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC2 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c2'; - - protected $Name = 'YhiYloCorC2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC3.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC3.php deleted file mode 100644 index ac385501f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC3 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c3'; - - protected $Name = 'YhiYloCorC3'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C3'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC4.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC4.php deleted file mode 100644 index c4f5f430c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC4 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c4'; - - protected $Name = 'YhiYloCorC4'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C4'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC5.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC5.php deleted file mode 100644 index c3fc9cd9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC5 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c5'; - - protected $Name = 'YhiYloCorC5'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C5'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC6.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC6.php deleted file mode 100644 index ca38b0891..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC6 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c6'; - - protected $Name = 'YhiYloCorC6'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C6'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC7.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC7.php deleted file mode 100644 index 62140add7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC7.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC7 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c7'; - - protected $Name = 'YhiYloCorC7'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C7'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC8.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC8.php deleted file mode 100644 index 9d374b651..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorC8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorC8 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_c8'; - - protected $Name = 'YhiYloCorC8'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor C8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK0.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK0.php deleted file mode 100644 index ede516ce3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK0.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorK0 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_k0'; - - protected $Name = 'YhiYloCorK0'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor K0'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK1.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK1.php deleted file mode 100644 index 7c827c5c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorK1 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_k1'; - - protected $Name = 'YhiYloCorK1'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor K1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK2.php b/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK2.php deleted file mode 100644 index a59ba0f63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Qualcomm/YhiYloCorK2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Qualcomm; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YhiYloCorK2 extends AbstractTag -{ - - protected $Id = 'yhi_ylo_cor_k2'; - - protected $Name = 'YhiYloCorK2'; - - protected $FullName = 'Qualcomm::Main'; - - protected $GroupName = 'Qualcomm'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Qualcomm'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Yhi Ylo Cor K2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ARDroneFile.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ARDroneFile.php deleted file mode 100644 index 8fe07fcdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ARDroneFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ARDroneFile extends AbstractTag -{ - - protected $Id = 'ardt'; - - protected $Name = 'ARDroneFile'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AR Drone File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ARDroneTelemetry.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ARDroneTelemetry.php deleted file mode 100644 index c67dffb70..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ARDroneTelemetry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ARDroneTelemetry extends AbstractTag -{ - - protected $Id = 'prrt'; - - protected $Name = 'ARDroneTelemetry'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AR Drone Telemetry'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Album.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Album.php deleted file mode 100644 index c802be8c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Album'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AlbumArtist.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AlbumArtist.php deleted file mode 100644 index 57c9b2023..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AlbumArtist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumArtist extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AlbumArtist'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Artist'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AlbumTitleID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AlbumTitleID.php deleted file mode 100644 index e053d03a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AlbumTitleID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumTitleID extends AbstractTag -{ - - protected $Id = 'atID'; - - protected $Name = 'AlbumTitleID'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Album Title ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ApertureMode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ApertureMode.php deleted file mode 100644 index d5b074d8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ApertureMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureMode extends AbstractTag -{ - - protected $Id = 'apmd'; - - protected $Name = 'ApertureMode'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Aperture Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreAccount.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreAccount.php deleted file mode 100644 index 612abe003..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreAccount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AppleStoreAccount extends AbstractTag -{ - - protected $Id = 'apID'; - - protected $Name = 'AppleStoreAccount'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Apple Store Account'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreAccountType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreAccountType.php deleted file mode 100644 index 8f63e9d4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreAccountType.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AppleStoreAccountType extends AbstractTag -{ - - protected $Id = 'akID'; - - protected $Name = 'AppleStoreAccountType'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Apple Store Account Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'iTunes', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AOL', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreCatalogID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreCatalogID.php deleted file mode 100644 index 16b65367d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreCatalogID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AppleStoreCatalogID extends AbstractTag -{ - - protected $Id = 'cnID'; - - protected $Name = 'AppleStoreCatalogID'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Apple Store Catalog ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreCountry.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreCountry.php deleted file mode 100644 index 059a40ceb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AppleStoreCountry.php +++ /dev/null @@ -1,666 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AppleStoreCountry extends AbstractTag -{ - - protected $Id = 'sfID'; - - protected $Name = 'AppleStoreCountry'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Apple Store Country'; - - protected $Values = array( - 143441 => array( - 'Id' => 143441, - 'Label' => 'United States', - ), - 143442 => array( - 'Id' => 143442, - 'Label' => 'France', - ), - 143443 => array( - 'Id' => 143443, - 'Label' => 'Germany', - ), - 143444 => array( - 'Id' => 143444, - 'Label' => 'United Kingdom', - ), - 143445 => array( - 'Id' => 143445, - 'Label' => 'Austria', - ), - 143446 => array( - 'Id' => 143446, - 'Label' => 'Belgium', - ), - 143447 => array( - 'Id' => 143447, - 'Label' => 'Finland', - ), - 143448 => array( - 'Id' => 143448, - 'Label' => 'Greece', - ), - 143449 => array( - 'Id' => 143449, - 'Label' => 'Ireland', - ), - 143450 => array( - 'Id' => 143450, - 'Label' => 'Italy', - ), - 143451 => array( - 'Id' => 143451, - 'Label' => 'Luxembourg', - ), - 143452 => array( - 'Id' => 143452, - 'Label' => 'Netherlands', - ), - 143453 => array( - 'Id' => 143453, - 'Label' => 'Portugal', - ), - 143454 => array( - 'Id' => 143454, - 'Label' => 'Spain', - ), - 143455 => array( - 'Id' => 143455, - 'Label' => 'Canada', - ), - 143456 => array( - 'Id' => 143456, - 'Label' => 'Sweden', - ), - 143457 => array( - 'Id' => 143457, - 'Label' => 'Norway', - ), - 143458 => array( - 'Id' => 143458, - 'Label' => 'Denmark', - ), - 143459 => array( - 'Id' => 143459, - 'Label' => 'Switzerland', - ), - 143460 => array( - 'Id' => 143460, - 'Label' => 'Australia', - ), - 143461 => array( - 'Id' => 143461, - 'Label' => 'New Zealand', - ), - 143462 => array( - 'Id' => 143462, - 'Label' => 'Japan', - ), - 143463 => array( - 'Id' => 143463, - 'Label' => 'Hong Kong', - ), - 143464 => array( - 'Id' => 143464, - 'Label' => 'Singapore', - ), - 143465 => array( - 'Id' => 143465, - 'Label' => 'China', - ), - 143466 => array( - 'Id' => 143466, - 'Label' => 'Republic of Korea', - ), - 143467 => array( - 'Id' => 143467, - 'Label' => 'India', - ), - 143468 => array( - 'Id' => 143468, - 'Label' => 'Mexico', - ), - 143469 => array( - 'Id' => 143469, - 'Label' => 'Russia', - ), - 143470 => array( - 'Id' => 143470, - 'Label' => 'Taiwan', - ), - 143471 => array( - 'Id' => 143471, - 'Label' => 'Vietnam', - ), - 143472 => array( - 'Id' => 143472, - 'Label' => 'South Africa', - ), - 143473 => array( - 'Id' => 143473, - 'Label' => 'Malaysia', - ), - 143474 => array( - 'Id' => 143474, - 'Label' => 'Philippines', - ), - 143475 => array( - 'Id' => 143475, - 'Label' => 'Thailand', - ), - 143476 => array( - 'Id' => 143476, - 'Label' => 'Indonesia', - ), - 143477 => array( - 'Id' => 143477, - 'Label' => 'Pakistan', - ), - 143478 => array( - 'Id' => 143478, - 'Label' => 'Poland', - ), - 143479 => array( - 'Id' => 143479, - 'Label' => 'Saudi Arabia', - ), - 143480 => array( - 'Id' => 143480, - 'Label' => 'Turkey', - ), - 143481 => array( - 'Id' => 143481, - 'Label' => 'United Arab Emirates', - ), - 143482 => array( - 'Id' => 143482, - 'Label' => 'Hungary', - ), - 143483 => array( - 'Id' => 143483, - 'Label' => 'Chile', - ), - 143484 => array( - 'Id' => 143484, - 'Label' => 'Nepal', - ), - 143485 => array( - 'Id' => 143485, - 'Label' => 'Panama', - ), - 143486 => array( - 'Id' => 143486, - 'Label' => 'Sri Lanka', - ), - 143487 => array( - 'Id' => 143487, - 'Label' => 'Romania', - ), - 143489 => array( - 'Id' => 143489, - 'Label' => 'Czech Republic', - ), - 143491 => array( - 'Id' => 143491, - 'Label' => 'Israel', - ), - 143492 => array( - 'Id' => 143492, - 'Label' => 'Ukraine', - ), - 143493 => array( - 'Id' => 143493, - 'Label' => 'Kuwait', - ), - 143494 => array( - 'Id' => 143494, - 'Label' => 'Croatia', - ), - 143495 => array( - 'Id' => 143495, - 'Label' => 'Costa Rica', - ), - 143496 => array( - 'Id' => 143496, - 'Label' => 'Slovakia', - ), - 143497 => array( - 'Id' => 143497, - 'Label' => 'Lebanon', - ), - 143498 => array( - 'Id' => 143498, - 'Label' => 'Qatar', - ), - 143499 => array( - 'Id' => 143499, - 'Label' => 'Slovenia', - ), - 143501 => array( - 'Id' => 143501, - 'Label' => 'Colombia', - ), - 143502 => array( - 'Id' => 143502, - 'Label' => 'Venezuela', - ), - 143503 => array( - 'Id' => 143503, - 'Label' => 'Brazil', - ), - 143504 => array( - 'Id' => 143504, - 'Label' => 'Guatemala', - ), - 143505 => array( - 'Id' => 143505, - 'Label' => 'Argentina', - ), - 143506 => array( - 'Id' => 143506, - 'Label' => 'El Salvador', - ), - 143507 => array( - 'Id' => 143507, - 'Label' => 'Peru', - ), - 143508 => array( - 'Id' => 143508, - 'Label' => 'Dominican Republic', - ), - 143509 => array( - 'Id' => 143509, - 'Label' => 'Ecuador', - ), - 143510 => array( - 'Id' => 143510, - 'Label' => 'Honduras', - ), - 143511 => array( - 'Id' => 143511, - 'Label' => 'Jamaica', - ), - 143512 => array( - 'Id' => 143512, - 'Label' => 'Nicaragua', - ), - 143513 => array( - 'Id' => 143513, - 'Label' => 'Paraguay', - ), - 143514 => array( - 'Id' => 143514, - 'Label' => 'Uruguay', - ), - 143515 => array( - 'Id' => 143515, - 'Label' => 'Macau', - ), - 143516 => array( - 'Id' => 143516, - 'Label' => 'Egypt', - ), - 143517 => array( - 'Id' => 143517, - 'Label' => 'Kazakhstan', - ), - 143518 => array( - 'Id' => 143518, - 'Label' => 'Estonia', - ), - 143519 => array( - 'Id' => 143519, - 'Label' => 'Latvia', - ), - 143520 => array( - 'Id' => 143520, - 'Label' => 'Lithuania', - ), - 143521 => array( - 'Id' => 143521, - 'Label' => 'Malta', - ), - 143523 => array( - 'Id' => 143523, - 'Label' => 'Moldova', - ), - 143524 => array( - 'Id' => 143524, - 'Label' => 'Armenia', - ), - 143525 => array( - 'Id' => 143525, - 'Label' => 'Botswana', - ), - 143526 => array( - 'Id' => 143526, - 'Label' => 'Bulgaria', - ), - 143528 => array( - 'Id' => 143528, - 'Label' => 'Jordan', - ), - 143529 => array( - 'Id' => 143529, - 'Label' => 'Kenya', - ), - 143530 => array( - 'Id' => 143530, - 'Label' => 'Macedonia', - ), - 143531 => array( - 'Id' => 143531, - 'Label' => 'Madagascar', - ), - 143532 => array( - 'Id' => 143532, - 'Label' => 'Mali', - ), - 143533 => array( - 'Id' => 143533, - 'Label' => 'Mauritius', - ), - 143534 => array( - 'Id' => 143534, - 'Label' => 'Niger', - ), - 143535 => array( - 'Id' => 143535, - 'Label' => 'Senegal', - ), - 143536 => array( - 'Id' => 143536, - 'Label' => 'Tunisia', - ), - 143537 => array( - 'Id' => 143537, - 'Label' => 'Uganda', - ), - 143538 => array( - 'Id' => 143538, - 'Label' => 'Anguilla', - ), - 143539 => array( - 'Id' => 143539, - 'Label' => 'Bahamas', - ), - 143540 => array( - 'Id' => 143540, - 'Label' => 'Antigua and Barbuda', - ), - 143541 => array( - 'Id' => 143541, - 'Label' => 'Barbados', - ), - 143542 => array( - 'Id' => 143542, - 'Label' => 'Bermuda', - ), - 143543 => array( - 'Id' => 143543, - 'Label' => 'British Virgin Islands', - ), - 143544 => array( - 'Id' => 143544, - 'Label' => 'Cayman Islands', - ), - 143545 => array( - 'Id' => 143545, - 'Label' => 'Dominica', - ), - 143546 => array( - 'Id' => 143546, - 'Label' => 'Grenada', - ), - 143547 => array( - 'Id' => 143547, - 'Label' => 'Montserrat', - ), - 143548 => array( - 'Id' => 143548, - 'Label' => 'St. Kitts and Nevis', - ), - 143549 => array( - 'Id' => 143549, - 'Label' => 'St. Lucia', - ), - 143550 => array( - 'Id' => 143550, - 'Label' => 'St. Vincent and The Grenadines', - ), - 143551 => array( - 'Id' => 143551, - 'Label' => 'Trinidad and Tobago', - ), - 143552 => array( - 'Id' => 143552, - 'Label' => 'Turks and Caicos', - ), - 143553 => array( - 'Id' => 143553, - 'Label' => 'Guyana', - ), - 143554 => array( - 'Id' => 143554, - 'Label' => 'Suriname', - ), - 143555 => array( - 'Id' => 143555, - 'Label' => 'Belize', - ), - 143556 => array( - 'Id' => 143556, - 'Label' => 'Bolivia', - ), - 143557 => array( - 'Id' => 143557, - 'Label' => 'Cyprus', - ), - 143558 => array( - 'Id' => 143558, - 'Label' => 'Iceland', - ), - 143559 => array( - 'Id' => 143559, - 'Label' => 'Bahrain', - ), - 143560 => array( - 'Id' => 143560, - 'Label' => 'Brunei Darussalam', - ), - 143561 => array( - 'Id' => 143561, - 'Label' => 'Nigeria', - ), - 143562 => array( - 'Id' => 143562, - 'Label' => 'Oman', - ), - 143563 => array( - 'Id' => 143563, - 'Label' => 'Algeria', - ), - 143564 => array( - 'Id' => 143564, - 'Label' => 'Angola', - ), - 143565 => array( - 'Id' => 143565, - 'Label' => 'Belarus', - ), - 143566 => array( - 'Id' => 143566, - 'Label' => 'Uzbekistan', - ), - 143568 => array( - 'Id' => 143568, - 'Label' => 'Azerbaijan', - ), - 143571 => array( - 'Id' => 143571, - 'Label' => 'Yemen', - ), - 143572 => array( - 'Id' => 143572, - 'Label' => 'Tanzania', - ), - 143573 => array( - 'Id' => 143573, - 'Label' => 'Ghana', - ), - 143575 => array( - 'Id' => 143575, - 'Label' => 'Albania', - ), - 143576 => array( - 'Id' => 143576, - 'Label' => 'Benin', - ), - 143577 => array( - 'Id' => 143577, - 'Label' => 'Bhutan', - ), - 143578 => array( - 'Id' => 143578, - 'Label' => 'Burkina Faso', - ), - 143579 => array( - 'Id' => 143579, - 'Label' => 'Cambodia', - ), - 143580 => array( - 'Id' => 143580, - 'Label' => 'Cape Verde', - ), - 143581 => array( - 'Id' => 143581, - 'Label' => 'Chad', - ), - 143582 => array( - 'Id' => 143582, - 'Label' => 'Republic of the Congo', - ), - 143583 => array( - 'Id' => 143583, - 'Label' => 'Fiji', - ), - 143584 => array( - 'Id' => 143584, - 'Label' => 'Gambia', - ), - 143585 => array( - 'Id' => 143585, - 'Label' => 'Guinea-Bissau', - ), - 143586 => array( - 'Id' => 143586, - 'Label' => 'Kyrgyzstan', - ), - 143587 => array( - 'Id' => 143587, - 'Label' => 'Lao People\'s Democratic Republic', - ), - 143588 => array( - 'Id' => 143588, - 'Label' => 'Liberia', - ), - 143589 => array( - 'Id' => 143589, - 'Label' => 'Malawi', - ), - 143590 => array( - 'Id' => 143590, - 'Label' => 'Mauritania', - ), - 143591 => array( - 'Id' => 143591, - 'Label' => 'Federated States of Micronesia', - ), - 143592 => array( - 'Id' => 143592, - 'Label' => 'Mongolia', - ), - 143593 => array( - 'Id' => 143593, - 'Label' => 'Mozambique', - ), - 143594 => array( - 'Id' => 143594, - 'Label' => 'Namibia', - ), - 143595 => array( - 'Id' => 143595, - 'Label' => 'Palau', - ), - 143597 => array( - 'Id' => 143597, - 'Label' => 'Papua New Guinea', - ), - 143598 => array( - 'Id' => 143598, - 'Label' => 'Sao Tome and Principe', - ), - 143599 => array( - 'Id' => 143599, - 'Label' => 'Seychelles', - ), - 143600 => array( - 'Id' => 143600, - 'Label' => 'Sierra Leone', - ), - 143601 => array( - 'Id' => 143601, - 'Label' => 'Solomon Islands', - ), - 143602 => array( - 'Id' => 143602, - 'Label' => 'Swaziland', - ), - 143603 => array( - 'Id' => 143603, - 'Label' => 'Tajikistan', - ), - 143604 => array( - 'Id' => 143604, - 'Label' => 'Turkmenistan', - ), - 143605 => array( - 'Id' => 143605, - 'Label' => 'Zimbabwe', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Arranger.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Arranger.php deleted file mode 100644 index 7b4293cd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Arranger.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Arranger extends AbstractTag -{ - - protected $Id = '\\xa9arg'; - - protected $Name = 'Arranger'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Arranger'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ArrangerKeywords.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ArrangerKeywords.php deleted file mode 100644 index 279afa5a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ArrangerKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArrangerKeywords extends AbstractTag -{ - - protected $Id = '\\xa9ark'; - - protected $Name = 'ArrangerKeywords'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Arranger Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Artist.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Artist.php deleted file mode 100644 index b8ad49cf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Artist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Artist'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Artwork.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Artwork.php deleted file mode 100644 index 00aaec73f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Artwork.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artwork extends AbstractTag -{ - - protected $Id = 'artwork'; - - protected $Name = 'Artwork'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artwork'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAttributes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAttributes.php deleted file mode 100644 index a9af81f83..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAttributes.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioAttributes extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AudioAttributes'; - - protected $FullName = 'QuickTime::AudioProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Attributes'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Encrypted', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Variable bitrate', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Dual mono', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvailableBitRateRange.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvailableBitRateRange.php deleted file mode 100644 index c18e96711..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvailableBitRateRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioAvailableBitRateRange extends AbstractTag -{ - - protected $Id = 'abrt'; - - protected $Name = 'AudioAvailableBitRateRange'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Available Bit Rate Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvailableNumberChannels.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvailableNumberChannels.php deleted file mode 100644 index b309786e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvailableNumberChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioAvailableNumberChannels extends AbstractTag -{ - - protected $Id = 'cmnc'; - - protected $Name = 'AudioAvailableNumberChannels'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Available Number Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvgBitrate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvgBitrate.php deleted file mode 100644 index b27d4d27c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioAvgBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioAvgBitrate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'AudioAvgBitrate'; - - protected $FullName = 'QuickTime::AudioProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Avg Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioBitRateControlMode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioBitRateControlMode.php deleted file mode 100644 index 2ab7407cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioBitRateControlMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitRateControlMode extends AbstractTag -{ - - protected $Id = 'acbf'; - - protected $Name = 'AudioBitRateControlMode'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Bit Rate Control Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioBitsPerSample.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioBitsPerSample.php deleted file mode 100644 index 2cbc861a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioBitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBitsPerSample extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'AudioBitsPerSample'; - - protected $FullName = 'QuickTime::AudioSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Audio Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioChannels.php deleted file mode 100644 index 89dee1770..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodec.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodec.php deleted file mode 100644 index 210867380..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodec.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodec extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AudioCodec'; - - protected $FullName = 'QuickTime::AudioProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Audio Codec'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodecInfo.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodecInfo.php deleted file mode 100644 index 713fb588a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodecInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecInfo extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'AudioCodecInfo'; - - protected $FullName = 'QuickTime::AudioProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Codec Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodecPrimeMethod.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodecPrimeMethod.php deleted file mode 100644 index 7c14f0794..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCodecPrimeMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodecPrimeMethod extends AbstractTag -{ - - protected $Id = 'prmm'; - - protected $Name = 'AudioCodecPrimeMethod'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Codec Prime Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioComponentVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioComponentVersion.php deleted file mode 100644 index f20514a9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioComponentVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioComponentVersion extends AbstractTag -{ - - protected $Id = 'cdcv'; - - protected $Name = 'AudioComponentVersion'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Component Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCurrentTargetBitRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCurrentTargetBitRate.php deleted file mode 100644 index b5e4777ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioCurrentTargetBitRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCurrentTargetBitRate extends AbstractTag -{ - - protected $Id = 'brat'; - - protected $Name = 'AudioCurrentTargetBitRate'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Current Target Bit Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioDoesSampleRateConversion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioDoesSampleRateConversion.php deleted file mode 100644 index ffc1f4d9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioDoesSampleRateConversion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioDoesSampleRateConversion extends AbstractTag -{ - - protected $Id = 'lmrc'; - - protected $Name = 'AudioDoesSampleRateConversion'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Does Sample Rate Conversion'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioEncodingParamsVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioEncodingParamsVersion.php deleted file mode 100644 index 550627693..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioEncodingParamsVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioEncodingParamsVersion extends AbstractTag -{ - - protected $Id = 'vers'; - - protected $Name = 'AudioEncodingParamsVersion'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Encoding Params Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioExtendFrequencies.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioExtendFrequencies.php deleted file mode 100644 index 1cb0a8a00..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioExtendFrequencies.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioExtendFrequencies extends AbstractTag -{ - - protected $Id = 'acef'; - - protected $Name = 'AudioExtendFrequencies'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Extend Frequencies'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioFormat.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioFormat.php deleted file mode 100644 index 452cb6c06..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFormat extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AudioFormat'; - - protected $FullName = 'QuickTime::AudioSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Audio Format'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioGain.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioGain.php deleted file mode 100644 index 32a48a3a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioGain extends AbstractTag -{ - - protected $Id = 'player.movie.audio.gain'; - - protected $Name = 'AudioGain'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioHasVariablePacketByteSizes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioHasVariablePacketByteSizes.php deleted file mode 100644 index 2fe652932..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioHasVariablePacketByteSizes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioHasVariablePacketByteSizes extends AbstractTag -{ - - protected $Id = 'vpk?'; - - protected $Name = 'AudioHasVariablePacketByteSizes'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Has Variable Packet Byte Sizes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioInputBufferSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioInputBufferSize.php deleted file mode 100644 index 25ff86688..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioInputBufferSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioInputBufferSize extends AbstractTag -{ - - protected $Id = 'tbuf'; - - protected $Name = 'AudioInputBufferSize'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Input Buffer Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioIsInitialized.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioIsInitialized.php deleted file mode 100644 index d8b1ca327..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioIsInitialized.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioIsInitialized extends AbstractTag -{ - - protected $Id = 'init'; - - protected $Name = 'AudioIsInitialized'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Is Initialized'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMaxBitrate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMaxBitrate.php deleted file mode 100644 index fd34dc0c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMaxBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioMaxBitrate extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AudioMaxBitrate'; - - protected $FullName = 'QuickTime::AudioProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Max Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMaximumPacketByteSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMaximumPacketByteSize.php deleted file mode 100644 index 4b1cb2d7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMaximumPacketByteSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioMaximumPacketByteSize extends AbstractTag -{ - - protected $Id = 'pakb'; - - protected $Name = 'AudioMaximumPacketByteSize'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Maximum Packet Byte Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumDelayMode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumDelayMode.php deleted file mode 100644 index 4ca6000af..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumDelayMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioMinimumDelayMode extends AbstractTag -{ - - protected $Id = 'mdel'; - - protected $Name = 'AudioMinimumDelayMode'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Minimum Delay Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumNumberInputPackets.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumNumberInputPackets.php deleted file mode 100644 index 144e20601..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumNumberInputPackets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioMinimumNumberInputPackets extends AbstractTag -{ - - protected $Id = 'mnip'; - - protected $Name = 'AudioMinimumNumberInputPackets'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Minimum Number Input Packets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumNumberOutputPackets.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumNumberOutputPackets.php deleted file mode 100644 index dfaf19717..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioMinimumNumberOutputPackets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioMinimumNumberOutputPackets extends AbstractTag -{ - - protected $Id = 'mnop'; - - protected $Name = 'AudioMinimumNumberOutputPackets'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Minimum Number Output Packets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioOutputPrecedence.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioOutputPrecedence.php deleted file mode 100644 index 1d5333c7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioOutputPrecedence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioOutputPrecedence extends AbstractTag -{ - - protected $Id = 'oppr'; - - protected $Name = 'AudioOutputPrecedence'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Output Precedence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioPacketFrameSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioPacketFrameSize.php deleted file mode 100644 index bf3ee91b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioPacketFrameSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioPacketFrameSize extends AbstractTag -{ - - protected $Id = 'pakf'; - - protected $Name = 'AudioPacketFrameSize'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Packet Frame Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioProfileVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioProfileVersion.php deleted file mode 100644 index 75c0fabd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioProfileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioProfileVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AudioProfileVersion'; - - protected $FullName = 'QuickTime::AudioProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Profile Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioQualitySetting.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioQualitySetting.php deleted file mode 100644 index 5073975cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioQualitySetting.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioQualitySetting extends AbstractTag -{ - - protected $Id = 'srcq'; - - protected $Name = 'AudioQualitySetting'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Quality Setting'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioRequiresPacketDescription.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioRequiresPacketDescription.php deleted file mode 100644 index 69fdab3bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioRequiresPacketDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioRequiresPacketDescription extends AbstractTag -{ - - protected $Id = 'pakd'; - - protected $Name = 'AudioRequiresPacketDescription'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Requires Packet Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioSampleRate.php deleted file mode 100644 index 534d9203d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioSampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioTrackID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioTrackID.php deleted file mode 100644 index e6690b0b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioTrackID extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AudioTrackID'; - - protected $FullName = 'QuickTime::AudioProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioUseRecommendedSampleRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioUseRecommendedSampleRate.php deleted file mode 100644 index b20738838..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioUseRecommendedSampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioUseRecommendedSampleRate extends AbstractTag -{ - - protected $Id = 'ursr'; - - protected $Name = 'AudioUseRecommendedSampleRate'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Use Recommended Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioUsedInputBufferSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioUsedInputBufferSize.php deleted file mode 100644 index 69ca6e7ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioUsedInputBufferSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioUsedInputBufferSize extends AbstractTag -{ - - protected $Id = 'ubuf'; - - protected $Name = 'AudioUsedInputBufferSize'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Used Input Buffer Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioVBRQuality.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioVBRQuality.php deleted file mode 100644 index 1b3fdefeb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioVBRQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioVBRQuality extends AbstractTag -{ - - protected $Id = 'vbrq'; - - protected $Name = 'AudioVBRQuality'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio VBR Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioVendorID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioVendorID.php deleted file mode 100644 index 4316cb7ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioVendorID.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioVendorID extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'AudioVendorID'; - - protected $FullName = 'QuickTime::AudioSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Audio Vendor ID'; - - protected $MaxLength = 4; - - protected $Values = array( - 'AR.D' => array( - 'Id' => 'AR.D', - 'Label' => 'Parrot AR.Drone', - ), - 'FFMP' => array( - 'Id' => 'FFMP', - 'Label' => 'FFmpeg', - ), - 'GIC ' => array( - 'Id' => 'GIC ', - 'Label' => 'General Imaging Co.', - ), - 'KMPI' => array( - 'Id' => 'KMPI', - 'Label' => 'Konica-Minolta', - ), - 'NIKO' => array( - 'Id' => 'NIKO', - 'Label' => 'Nikon', - ), - 'SMI ' => array( - 'Id' => 'SMI ', - 'Label' => 'Sorenson Media Inc.', - ), - 'ZORA' => array( - 'Id' => 'ZORA', - 'Label' => 'Zoran Corporation', - ), - 'appl' => array( - 'Id' => 'appl', - 'Label' => 'Apple', - ), - 'fe20' => array( - 'Id' => 'fe20', - 'Label' => 'Olympus (fe20)', - ), - 'kdak' => array( - 'Id' => 'kdak', - 'Label' => 'Kodak', - ), - 'leic' => array( - 'Id' => 'leic', - 'Label' => 'Leica', - ), - 'mino' => array( - 'Id' => 'mino', - 'Label' => 'Minolta', - ), - 'niko' => array( - 'Id' => 'niko', - 'Label' => 'Nikon', - ), - 'olym' => array( - 'Id' => 'olym', - 'Label' => 'Olympus', - ), - 'pana' => array( - 'Id' => 'pana', - 'Label' => 'Panasonic', - ), - 'pent' => array( - 'Id' => 'pent', - 'Label' => 'Pentax', - ), - 'pr01' => array( - 'Id' => 'pr01', - 'Label' => 'Olympus (pr01)', - ), - 'sany' => array( - 'Id' => 'sany', - 'Label' => 'Sanyo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioZeroFramesPadded.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AudioZeroFramesPadded.php deleted file mode 100644 index c8dcc49f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AudioZeroFramesPadded.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioZeroFramesPadded extends AbstractTag -{ - - protected $Id = 'pad0'; - - protected $Name = 'AudioZeroFramesPadded'; - - protected $FullName = 'QuickTime::EncodingParams'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Zero Frames Padded'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Author.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Author.php deleted file mode 100644 index 4b5c71a08..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Author'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AverageBitrate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AverageBitrate.php deleted file mode 100644 index 738465397..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AverageBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AverageBitrate extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AverageBitrate'; - - protected $FullName = 'QuickTime::Bitrate'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Average Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AvgBitrate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AvgBitrate.php deleted file mode 100644 index b849b7d38..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AvgBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgBitrate extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AvgBitrate'; - - protected $FullName = 'QuickTime::HintHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Avg Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/AvgPDUSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/AvgPDUSize.php deleted file mode 100644 index 35d8f3748..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/AvgPDUSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgPDUSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'AvgPDUSize'; - - protected $FullName = 'QuickTime::HintHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Avg PDU Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/QuickTime/BackgroundColor.php deleted file mode 100644 index 5c51681d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/BackgroundColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'QuickTime::TCMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Balance.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Balance.php deleted file mode 100644 index 51da8beac..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Balance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Balance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Balance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Balance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Bass.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Bass.php deleted file mode 100644 index cf44e423b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Bass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Bass extends AbstractTag -{ - - protected $Id = 'player.movie.audio.bass'; - - protected $Name = 'Bass'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bass'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/BeatsPerMinute.php b/lib/PHPExiftool/Driver/Tag/QuickTime/BeatsPerMinute.php deleted file mode 100644 index bd44f3321..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/BeatsPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatsPerMinute extends AbstractTag -{ - - protected $Id = 'tmpo'; - - protected $Name = 'BeatsPerMinute'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Beats Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/BinaryXML.php b/lib/PHPExiftool/Driver/Tag/QuickTime/BinaryXML.php deleted file mode 100644 index 3052f5f73..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/BinaryXML.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BinaryXML extends AbstractTag -{ - - protected $Id = 'bxml'; - - protected $Name = 'BinaryXML'; - - protected $FullName = 'QuickTime::Meta'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Binary XML'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/BitDepth.php b/lib/PHPExiftool/Driver/Tag/QuickTime/BitDepth.php deleted file mode 100644 index 3b2e6d0fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/BitDepth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitDepth extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'BitDepth'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bit Depth'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Brightness.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Brightness.php deleted file mode 100644 index f3a17813f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Brightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 'player.movie.visual.brightness'; - - protected $Name = 'Brightness'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Brightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/BufferSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/BufferSize.php deleted file mode 100644 index 0efd96b68..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/BufferSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BufferSize extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'BufferSize'; - - protected $FullName = 'QuickTime::Bitrate'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Buffer Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CDDB1Info.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CDDB1Info.php deleted file mode 100644 index ecd479b3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CDDB1Info.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CDDB1Info extends AbstractTag -{ - - protected $Id = 'iTunes_CDDB_1'; - - protected $Name = 'CDDB1Info'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CDDB1 Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CDDBTrackNumber.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CDDBTrackNumber.php deleted file mode 100644 index 76c3b1c12..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CDDBTrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CDDBTrackNumber extends AbstractTag -{ - - protected $Id = 'iTunes_CDDB_TrackNumber'; - - protected $Name = 'CDDBTrackNumber'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'CDDB Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraAngle.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CameraAngle.php deleted file mode 100644 index 1332ac313..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraAngle extends AbstractTag -{ - - protected $Id = 'angl'; - - protected $Name = 'CameraAngle'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraDirection.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CameraDirection.php deleted file mode 100644 index 1a0f50fd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraDirection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraDirection extends AbstractTag -{ - - protected $Id = 'direction.facing'; - - protected $Name = 'CameraDirection'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Direction'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CameraID.php deleted file mode 100644 index 528b3eb4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraID extends AbstractTag -{ - - protected $Id = 'cmid'; - - protected $Name = 'CameraID'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraIdentifier.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CameraIdentifier.php deleted file mode 100644 index e838257db..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraIdentifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraIdentifier extends AbstractTag -{ - - protected $Id = 'camera.identifier'; - - protected $Name = 'CameraIdentifier'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Identifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraMotion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CameraMotion.php deleted file mode 100644 index 3d372e49c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CameraMotion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraMotion extends AbstractTag -{ - - protected $Id = 'direction.motion'; - - protected $Name = 'CameraMotion'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Motion'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Category.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Category.php deleted file mode 100644 index 03cd7a488..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 'catg'; - - protected $Name = 'Category'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Certificate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Certificate.php deleted file mode 100644 index 5d0037aab..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Certificate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Certificate extends AbstractTag -{ - - protected $Id = 'cert'; - - protected $Name = 'Certificate'; - - protected $FullName = 'QuickTime::SchemeInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Certificate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ChapterList.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ChapterList.php deleted file mode 100644 index 758ad08b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ChapterList.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterList extends AbstractTag -{ - - protected $Id = 'chpl'; - - protected $Name = 'ChapterList'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chapter List'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ChunkOffset.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ChunkOffset.php deleted file mode 100644 index ad7bd5199..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ChunkOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChunkOffset extends AbstractTag -{ - - protected $Id = 'stco'; - - protected $Name = 'ChunkOffset'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chunk Offset'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ChunkOffset64.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ChunkOffset64.php deleted file mode 100644 index 7d4a88906..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ChunkOffset64.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChunkOffset64 extends AbstractTag -{ - - protected $Id = 'co64'; - - protected $Name = 'ChunkOffset64'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Chunk Offset 64'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Classification.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Classification.php deleted file mode 100644 index c79673443..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Classification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Classification extends AbstractTag -{ - - protected $Id = 'clsf'; - - protected $Name = 'Classification'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Classification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureHeight.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureHeight.php deleted file mode 100644 index 013a8cdef..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CleanApertureHeight extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CleanApertureHeight'; - - protected $FullName = 'QuickTime::CleanAperture'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Clean Aperture Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureOffsetX.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureOffsetX.php deleted file mode 100644 index afb8df440..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureOffsetX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CleanApertureOffsetX extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CleanApertureOffsetX'; - - protected $FullName = 'QuickTime::CleanAperture'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Clean Aperture Offset X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureOffsetY.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureOffsetY.php deleted file mode 100644 index c97a67a52..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureOffsetY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CleanApertureOffsetY extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'CleanApertureOffsetY'; - - protected $FullName = 'QuickTime::CleanAperture'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Clean Aperture Offset Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureWidth.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureWidth.php deleted file mode 100644 index 3411acb73..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CleanApertureWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CleanApertureWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CleanApertureWidth'; - - protected $FullName = 'QuickTime::CleanAperture'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Clean Aperture Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ClipFileName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ClipFileName.php deleted file mode 100644 index d920cb71f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ClipFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipFileName extends AbstractTag -{ - - protected $Id = 'clfn'; - - protected $Name = 'ClipFileName'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Clip File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ClipID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ClipID.php deleted file mode 100644 index a26b3cc00..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ClipID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClipID extends AbstractTag -{ - - protected $Id = 'clid'; - - protected $Name = 'ClipID'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Clip ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CodeVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CodeVersion.php deleted file mode 100644 index 03a5fe10d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CodeVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodeVersion extends AbstractTag -{ - - protected $Id = 'cver'; - - protected $Name = 'CodeVersion'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Code Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CollectionName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CollectionName.php deleted file mode 100644 index b219291ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CollectionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollectionName extends AbstractTag -{ - - protected $Id = 'coll'; - - protected $Name = 'CollectionName'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Collection Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Color.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Color.php deleted file mode 100644 index ebdcf2870..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Color.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Color extends AbstractTag -{ - - protected $Id = 'player.movie.visual.color'; - - protected $Name = 'Color'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ColorRepresentation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ColorRepresentation.php deleted file mode 100644 index 015e7f4fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ColorRepresentation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorRepresentation extends AbstractTag -{ - - protected $Id = 'colr'; - - protected $Name = 'ColorRepresentation'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Color Representation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Comment.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Comment.php deleted file mode 100644 index fcce44e32..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Comment'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CompactSampleSizes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CompactSampleSizes.php deleted file mode 100644 index ffa04bf17..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CompactSampleSizes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompactSampleSizes extends AbstractTag -{ - - protected $Id = 'stz2'; - - protected $Name = 'CompactSampleSizes'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compact Sample Sizes'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CompatibleBrands.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CompatibleBrands.php deleted file mode 100644 index 7ba2e6ac0..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CompatibleBrands.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompatibleBrands extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CompatibleBrands'; - - protected $FullName = 'QuickTime::FileType'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Compatible Brands'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Compilation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Compilation.php deleted file mode 100644 index a8a1f3b77..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Compilation.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compilation extends AbstractTag -{ - - protected $Id = 'cpil'; - - protected $Name = 'Compilation'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compilation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Composer.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Composer.php deleted file mode 100644 index 92fa5a2ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Composer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Composer'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ComposerKeywords.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ComposerKeywords.php deleted file mode 100644 index b654b0376..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ComposerKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComposerKeywords extends AbstractTag -{ - - protected $Id = '\\xa9cok'; - - protected $Name = 'ComposerKeywords'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CompositionTimeToSample.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CompositionTimeToSample.php deleted file mode 100644 index dd0ae7014..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CompositionTimeToSample.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionTimeToSample extends AbstractTag -{ - - protected $Id = 'ctts'; - - protected $Name = 'CompositionTimeToSample'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composition Time To Sample'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CompositionToDecodeTimelineMapping.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CompositionToDecodeTimelineMapping.php deleted file mode 100644 index 461205b1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CompositionToDecodeTimelineMapping.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompositionToDecodeTimelineMapping extends AbstractTag -{ - - protected $Id = 'cslg'; - - protected $Name = 'CompositionToDecodeTimelineMapping'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composition To Decode Timeline Mapping'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Compression.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Compression.php deleted file mode 100644 index 836fd4af3..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Compression.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 'dcom'; - - protected $Name = 'Compression'; - - protected $FullName = 'QuickTime::CMovie'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorID.php deleted file mode 100644 index 5066b506b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressorID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CompressorID'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Compressor ID'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorName.php deleted file mode 100644 index 4b1b04059..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressorName extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'CompressorName'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Compressor Name'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorVersion.php deleted file mode 100644 index 111d27ee8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CompressorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressorVersion extends AbstractTag -{ - - protected $Id = 'CNCV'; - - protected $Name = 'CompressorVersion'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Compressor Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentCreateDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ContentCreateDate.php deleted file mode 100644 index b2935d59b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentCreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentCreateDate extends AbstractTag -{ - - protected $Id = '\\xa9day'; - - protected $Name = 'ContentCreateDate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentDistributorID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ContentDistributorID.php deleted file mode 100644 index 53930c0a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentDistributorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentDistributorID extends AbstractTag -{ - - protected $Id = 'cdis'; - - protected $Name = 'ContentDistributorID'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Distributor ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ContentID.php deleted file mode 100644 index 60b2ed15d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentID extends AbstractTag -{ - - protected $Id = 'ccid'; - - protected $Name = 'ContentID'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentRating.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ContentRating.php deleted file mode 100644 index 2f60f4545..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ContentRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentRating extends AbstractTag -{ - - protected $Id = 'iTunEXTC'; - - protected $Name = 'ContentRating'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Contrast.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Contrast.php deleted file mode 100644 index e49ce281d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Contrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'player.movie.visual.contrast'; - - protected $Name = 'Contrast'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Copyright.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Copyright.php deleted file mode 100644 index fb16574c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Copyright'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CoverArt.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CoverArt.php deleted file mode 100644 index a8b121737..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CoverArt.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoverArt extends AbstractTag -{ - - protected $Id = 'covr'; - - protected $Name = 'CoverArt'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cover Art'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CoverURI.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CoverURI.php deleted file mode 100644 index 276fcc302..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CoverURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoverURI extends AbstractTag -{ - - protected $Id = 'cvru'; - - protected $Name = 'CoverURI'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cover URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CreateDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CreateDate.php deleted file mode 100644 index b441c58cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CreateDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'CreateDate'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CreationDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CreationDate.php deleted file mode 100644 index d54c6051f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CreationDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationDate extends AbstractTag -{ - - protected $Id = 'creationdate'; - - protected $Name = 'CreationDate'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creation Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/CurrentTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/CurrentTime.php deleted file mode 100644 index c7f63151e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/CurrentTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentTime extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'CurrentTime'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Current Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Data.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Data.php deleted file mode 100644 index 5d5def580..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Data.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Data extends AbstractTag -{ - - protected $Id = 'data'; - - protected $Name = 'Data'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/DataInformation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/DataInformation.php deleted file mode 100644 index 2809fbd28..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/DataInformation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataInformation extends AbstractTag -{ - - protected $Id = 'dinf'; - - protected $Name = 'DataInformation'; - - protected $FullName = 'QuickTime::Meta'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Information'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/QuickTime/DateTimeOriginal.php deleted file mode 100644 index 202de4f3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'date'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Description.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Description.php deleted file mode 100644 index 5b6927e9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Description'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Director.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Director.php deleted file mode 100644 index a203c325e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Director.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Director extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Director'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Director'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/DiskNumber.php b/lib/PHPExiftool/Driver/Tag/QuickTime/DiskNumber.php deleted file mode 100644 index a6d0f162c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/DiskNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiskNumber extends AbstractTag -{ - - protected $Id = 'disk'; - - protected $Name = 'DiskNumber'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Disk Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/DisplaySize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/DisplaySize.php deleted file mode 100644 index 2c7829277..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/DisplaySize.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DisplaySize extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'DisplaySize'; - - protected $FullName = 'QuickTime::Video'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Display Size'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Double Size', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Half Size', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Full Screen', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Current Size', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Duration.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Duration.php deleted file mode 100644 index 2441a4179..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Duration'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit1.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit1.php deleted file mode 100644 index 41f4c5a8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit1 extends AbstractTag -{ - - protected $Id = '\\xa9ed1'; - - protected $Name = 'Edit1'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit2.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit2.php deleted file mode 100644 index a4d11e5bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit2 extends AbstractTag -{ - - protected $Id = '\\xa9ed2'; - - protected $Name = 'Edit2'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit3.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit3.php deleted file mode 100644 index a709a5428..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit3 extends AbstractTag -{ - - protected $Id = '\\xa9ed3'; - - protected $Name = 'Edit3'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit4.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit4.php deleted file mode 100644 index 01cd1a119..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit4.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit4 extends AbstractTag -{ - - protected $Id = '\\xa9ed4'; - - protected $Name = 'Edit4'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 4'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit5.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit5.php deleted file mode 100644 index ba45ce216..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit5.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit5 extends AbstractTag -{ - - protected $Id = '\\xa9ed5'; - - protected $Name = 'Edit5'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 5'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit6.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit6.php deleted file mode 100644 index c3f591e89..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit6.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit6 extends AbstractTag -{ - - protected $Id = '\\xa9ed6'; - - protected $Name = 'Edit6'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 6'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit7.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit7.php deleted file mode 100644 index d2a717f10..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit7.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit7 extends AbstractTag -{ - - protected $Id = '\\xa9ed7'; - - protected $Name = 'Edit7'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 7'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit8.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit8.php deleted file mode 100644 index 40b908ecb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit8.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit8 extends AbstractTag -{ - - protected $Id = '\\xa9ed8'; - - protected $Name = 'Edit8'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 8'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit9.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Edit9.php deleted file mode 100644 index fae446f5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Edit9.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edit9 extends AbstractTag -{ - - protected $Id = '\\xa9ed9'; - - protected $Name = 'Edit9'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edit 9'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/QuickTime/EncodedBy.php deleted file mode 100644 index 730919d6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = '\\xa9enc'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/EncodedWith.php b/lib/PHPExiftool/Driver/Tag/QuickTime/EncodedWith.php deleted file mode 100644 index c8b8ad0f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/EncodedWith.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedWith extends AbstractTag -{ - - protected $Id = 'Encoded_With'; - - protected $Name = 'EncodedWith'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded With'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Encoder.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Encoder.php deleted file mode 100644 index fbcd05531..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Encoder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Encoder extends AbstractTag -{ - - protected $Id = '\\xa9too'; - - protected $Name = 'Encoder'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoder'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/EncoderVendor.php b/lib/PHPExiftool/Driver/Tag/QuickTime/EncoderVendor.php deleted file mode 100644 index 52353ebcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/EncoderVendor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncoderVendor extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'EncoderVendor'; - - protected $FullName = 'QuickTime::DecodeConfig'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Encoder Vendor'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/EncoderVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/EncoderVersion.php deleted file mode 100644 index 491f5c17c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/EncoderVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncoderVersion extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'EncoderVersion'; - - protected $FullName = 'QuickTime::DecodeConfig'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Encoder Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/EpisodeGlobalUniqueID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/EpisodeGlobalUniqueID.php deleted file mode 100644 index b7df6a2ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/EpisodeGlobalUniqueID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EpisodeGlobalUniqueID extends AbstractTag -{ - - protected $Id = 'egid'; - - protected $Name = 'EpisodeGlobalUniqueID'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Episode Global Unique ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/FileFunctionFlags.php b/lib/PHPExiftool/Driver/Tag/QuickTime/FileFunctionFlags.php deleted file mode 100644 index b1ab519c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/FileFunctionFlags.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileFunctionFlags extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FileFunctionFlags'; - - protected $FullName = 'QuickTime::FileProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Function Flags'; - - protected $Values = array( - 268435456 => array( - 'Id' => 268435456, - 'Label' => 'Fragmented', - ), - 536870912 => array( - 'Id' => 536870912, - 'Label' => 'Additional tracks', - ), - 1073741824 => array( - 'Id' => 1073741824, - 'Label' => 'Edited', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/FileProfileVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/FileProfileVersion.php deleted file mode 100644 index 08ffb8503..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/FileProfileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileProfileVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FileProfileVersion'; - - protected $FullName = 'QuickTime::FileProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Profile Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/FirmwareVersion.php deleted file mode 100644 index e3da1006e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/FirmwareVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'CNFV'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/FontName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/FontName.php deleted file mode 100644 index fc3d169e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/FontName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontName extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'FontName'; - - protected $FullName = 'QuickTime::TCMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'pstring'; - - protected $Writable = false; - - protected $Description = 'Font Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/FontTable.php b/lib/PHPExiftool/Driver/Tag/QuickTime/FontTable.php deleted file mode 100644 index aa9c68413..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/FontTable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontTable extends AbstractTag -{ - - protected $Id = 'ftab'; - - protected $Name = 'FontTable'; - - protected $FullName = 'QuickTime::OtherSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Font Table'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Format.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Format.php deleted file mode 100644 index 0c2052914..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Format.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Format extends AbstractTag -{ - - protected $Id = '\\xa9fmt'; - - protected $Name = 'Format'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/FrameReadoutTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/FrameReadoutTime.php deleted file mode 100644 index 34d4e5d4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/FrameReadoutTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameReadoutTime extends AbstractTag -{ - - protected $Id = 'camera.framereadouttimeinmicroseconds'; - - protected $Name = 'FrameReadoutTime'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Frame Readout Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Free.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Free.php deleted file mode 100644 index 5e1db1ccb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Free.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Free extends AbstractTag -{ - - protected $Id = 'free'; - - protected $Name = 'Free'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Free'; - - protected $flag_Binary = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GPSCoordinates.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GPSCoordinates.php deleted file mode 100644 index c92f22dba..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GPSCoordinates.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSCoordinates extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GPSCoordinates'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Coordinates'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Gamma.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Gamma.php deleted file mode 100644 index 234ed2768..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 'gama'; - - protected $Name = 'Gamma'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GenBalance.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GenBalance.php deleted file mode 100644 index 42e9c78ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GenBalance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenBalance extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'GenBalance'; - - protected $FullName = 'QuickTime::GenMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed16s'; - - protected $Writable = false; - - protected $Description = 'Gen Balance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GenFlags.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GenFlags.php deleted file mode 100644 index 30b861abe..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GenFlags.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenFlags extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'GenFlags'; - - protected $FullName = 'QuickTime::GenMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Gen Flags'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GenGraphicsMode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GenGraphicsMode.php deleted file mode 100644 index ffdcf7008..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GenGraphicsMode.php +++ /dev/null @@ -1,170 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenGraphicsMode extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'GenGraphicsMode'; - - protected $FullName = 'QuickTime::GenMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Gen Graphics Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'srcCopy', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'srcOr', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'srcXor', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'srcBic', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'notSrcCopy', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'notSrcOr', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'notSrcXor', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'notSrcBic', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'patCopy', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'patOr', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'patXor', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'patBic', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'notPatCopy', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'notPatOr', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'notPatXor', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'notPatBic', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'blend', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'addPin', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'addOver', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'subPin', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'transparent', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'addMax', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'subOver', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'addMin', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'grayishTextOr', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'hilite', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'ditherCopy', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Alpha', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'White Alpha', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Pre-multiplied Black Alpha', - ), - 272 => array( - 'Id' => 272, - 'Label' => 'Component Alpha', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GenMediaVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GenMediaVersion.php deleted file mode 100644 index 581ee80de..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GenMediaVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenMediaVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'GenMediaVersion'; - - protected $FullName = 'QuickTime::GenMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Gen Media Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GenOpColor.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GenOpColor.php deleted file mode 100644 index f1613a120..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GenOpColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenOpColor extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'GenOpColor'; - - protected $FullName = 'QuickTime::GenMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Gen Op Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Genre.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Genre.php deleted file mode 100644 index db590c029..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Genre'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GenreID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GenreID.php deleted file mode 100644 index 44013bceb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GenreID.php +++ /dev/null @@ -1,7698 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GenreID extends AbstractTag -{ - - protected $Id = 'geID'; - - protected $Name = 'GenreID'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Genre ID'; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'Music|Blues', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Music|Comedy', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Music|Children\'s Music', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Music|Classical', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Music|Country', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Music|Electronic', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Music|Holiday', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Music|Opera', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Music|Singer/Songwriter', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Music|Jazz', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Music|Latino', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Music|New Age', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Music|Pop', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Music|R&B/Soul', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Music|Soundtrack', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Music|Dance', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Music|Hip-Hop/Rap', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Music|World', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Music|Alternative', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Music|Rock', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Music|Christian & Gospel', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Music|Vocal', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Music|Reggae', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Music|Easy Listening', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Podcasts', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Music|J-Pop', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Music|Enka', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Music|Anime', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Music|Kayokyoku', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Music Videos', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'TV Shows', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Movies', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Music', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'iPod Games', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'App Store', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Tones', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Books', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Mac App Store', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Textbooks', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Music|Fitness & Workout', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Music|K-Pop', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Music|Karaoke', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Music|Instrumental', - ), - 74 => array( - 'Id' => 74, - 'Label' => 'Audiobooks|News', - ), - 75 => array( - 'Id' => 75, - 'Label' => 'Audiobooks|Programs & Performances', - ), - 1001 => array( - 'Id' => 1001, - 'Label' => 'Music|Alternative|College Rock', - ), - 1002 => array( - 'Id' => 1002, - 'Label' => 'Music|Alternative|Goth Rock', - ), - 1003 => array( - 'Id' => 1003, - 'Label' => 'Music|Alternative|Grunge', - ), - 1004 => array( - 'Id' => 1004, - 'Label' => 'Music|Alternative|Indie Rock', - ), - 1005 => array( - 'Id' => 1005, - 'Label' => 'Music|Alternative|New Wave', - ), - 1006 => array( - 'Id' => 1006, - 'Label' => 'Music|Alternative|Punk', - ), - 1007 => array( - 'Id' => 1007, - 'Label' => 'Music|Blues|Chicago Blues', - ), - 1009 => array( - 'Id' => 1009, - 'Label' => 'Music|Blues|Classic Blues', - ), - 1010 => array( - 'Id' => 1010, - 'Label' => 'Music|Blues|Contemporary Blues', - ), - 1011 => array( - 'Id' => 1011, - 'Label' => 'Music|Blues|Country Blues', - ), - 1012 => array( - 'Id' => 1012, - 'Label' => 'Music|Blues|Delta Blues', - ), - 1013 => array( - 'Id' => 1013, - 'Label' => 'Music|Blues|Electric Blues', - ), - 1014 => array( - 'Id' => 1014, - 'Label' => 'Music|Children\'s Music|Lullabies', - ), - 1015 => array( - 'Id' => 1015, - 'Label' => 'Music|Children\'s Music|Sing-Along', - ), - 1016 => array( - 'Id' => 1016, - 'Label' => 'Music|Children\'s Music|Stories', - ), - 1017 => array( - 'Id' => 1017, - 'Label' => 'Music|Classical|Avant-Garde', - ), - 1018 => array( - 'Id' => 1018, - 'Label' => 'Music|Classical|Baroque', - ), - 1019 => array( - 'Id' => 1019, - 'Label' => 'Music|Classical|Chamber Music', - ), - 1020 => array( - 'Id' => 1020, - 'Label' => 'Music|Classical|Chant', - ), - 1021 => array( - 'Id' => 1021, - 'Label' => 'Music|Classical|Choral', - ), - 1022 => array( - 'Id' => 1022, - 'Label' => 'Music|Classical|Classical Crossover', - ), - 1023 => array( - 'Id' => 1023, - 'Label' => 'Music|Classical|Early Music', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Music|Classical|Impressionist', - ), - 1025 => array( - 'Id' => 1025, - 'Label' => 'Music|Classical|Medieval', - ), - 1026 => array( - 'Id' => 1026, - 'Label' => 'Music|Classical|Minimalism', - ), - 1027 => array( - 'Id' => 1027, - 'Label' => 'Music|Classical|Modern Composition', - ), - 1028 => array( - 'Id' => 1028, - 'Label' => 'Music|Classical|Opera', - ), - 1029 => array( - 'Id' => 1029, - 'Label' => 'Music|Classical|Orchestral', - ), - 1030 => array( - 'Id' => 1030, - 'Label' => 'Music|Classical|Renaissance', - ), - 1031 => array( - 'Id' => 1031, - 'Label' => 'Music|Classical|Romantic', - ), - 1032 => array( - 'Id' => 1032, - 'Label' => 'Music|Classical|Wedding Music', - ), - 1033 => array( - 'Id' => 1033, - 'Label' => 'Music|Country|Alternative Country', - ), - 1034 => array( - 'Id' => 1034, - 'Label' => 'Music|Country|Americana', - ), - 1035 => array( - 'Id' => 1035, - 'Label' => 'Music|Country|Bluegrass', - ), - 1036 => array( - 'Id' => 1036, - 'Label' => 'Music|Country|Contemporary Bluegrass', - ), - 1037 => array( - 'Id' => 1037, - 'Label' => 'Music|Country|Contemporary Country', - ), - 1038 => array( - 'Id' => 1038, - 'Label' => 'Music|Country|Country Gospel', - ), - 1039 => array( - 'Id' => 1039, - 'Label' => 'Music|Country|Honky Tonk', - ), - 1040 => array( - 'Id' => 1040, - 'Label' => 'Music|Country|Outlaw Country', - ), - 1041 => array( - 'Id' => 1041, - 'Label' => 'Music|Country|Traditional Bluegrass', - ), - 1042 => array( - 'Id' => 1042, - 'Label' => 'Music|Country|Traditional Country', - ), - 1043 => array( - 'Id' => 1043, - 'Label' => 'Music|Country|Urban Cowboy', - ), - 1044 => array( - 'Id' => 1044, - 'Label' => 'Music|Dance|Breakbeat', - ), - 1045 => array( - 'Id' => 1045, - 'Label' => 'Music|Dance|Exercise', - ), - 1046 => array( - 'Id' => 1046, - 'Label' => 'Music|Dance|Garage', - ), - 1047 => array( - 'Id' => 1047, - 'Label' => 'Music|Dance|Hardcore', - ), - 1048 => array( - 'Id' => 1048, - 'Label' => 'Music|Dance|House', - ), - 1049 => array( - 'Id' => 1049, - 'Label' => 'Music|Dance|Jungle/Drum\'n\'bass', - ), - 1050 => array( - 'Id' => 1050, - 'Label' => 'Music|Dance|Techno', - ), - 1051 => array( - 'Id' => 1051, - 'Label' => 'Music|Dance|Trance', - ), - 1052 => array( - 'Id' => 1052, - 'Label' => 'Music|Jazz|Big Band', - ), - 1053 => array( - 'Id' => 1053, - 'Label' => 'Music|Jazz|Bop', - ), - 1054 => array( - 'Id' => 1054, - 'Label' => 'Music|Easy Listening|Lounge', - ), - 1055 => array( - 'Id' => 1055, - 'Label' => 'Music|Easy Listening|Swing', - ), - 1056 => array( - 'Id' => 1056, - 'Label' => 'Music|Electronic|Ambient', - ), - 1057 => array( - 'Id' => 1057, - 'Label' => 'Music|Electronic|Downtempo', - ), - 1058 => array( - 'Id' => 1058, - 'Label' => 'Music|Electronic|Electronica', - ), - 1060 => array( - 'Id' => 1060, - 'Label' => 'Music|Electronic|IDM/Experimental', - ), - 1061 => array( - 'Id' => 1061, - 'Label' => 'Music|Electronic|Industrial', - ), - 1062 => array( - 'Id' => 1062, - 'Label' => 'Music|Singer/Songwriter|Alternative Folk', - ), - 1063 => array( - 'Id' => 1063, - 'Label' => 'Music|Singer/Songwriter|Contemporary Folk', - ), - 1064 => array( - 'Id' => 1064, - 'Label' => 'Music|Singer/Songwriter|Contemporary Singer/Songwriter', - ), - 1065 => array( - 'Id' => 1065, - 'Label' => 'Music|Singer/Songwriter|Folk-Rock', - ), - 1066 => array( - 'Id' => 1066, - 'Label' => 'Music|Singer/Songwriter|New Acoustic', - ), - 1067 => array( - 'Id' => 1067, - 'Label' => 'Music|Singer/Songwriter|Traditional Folk', - ), - 1068 => array( - 'Id' => 1068, - 'Label' => 'Music|Hip-Hop/Rap|Alternative Rap', - ), - 1069 => array( - 'Id' => 1069, - 'Label' => 'Music|Hip-Hop/Rap|Dirty South', - ), - 1070 => array( - 'Id' => 1070, - 'Label' => 'Music|Hip-Hop/Rap|East Coast Rap', - ), - 1071 => array( - 'Id' => 1071, - 'Label' => 'Music|Hip-Hop/Rap|Gangsta Rap', - ), - 1072 => array( - 'Id' => 1072, - 'Label' => 'Music|Hip-Hop/Rap|Hardcore Rap', - ), - 1073 => array( - 'Id' => 1073, - 'Label' => 'Music|Hip-Hop/Rap|Hip-Hop', - ), - 1074 => array( - 'Id' => 1074, - 'Label' => 'Music|Hip-Hop/Rap|Latin Rap', - ), - 1075 => array( - 'Id' => 1075, - 'Label' => 'Music|Hip-Hop/Rap|Old School Rap', - ), - 1076 => array( - 'Id' => 1076, - 'Label' => 'Music|Hip-Hop/Rap|Rap', - ), - 1077 => array( - 'Id' => 1077, - 'Label' => 'Music|Hip-Hop/Rap|Underground Rap', - ), - 1078 => array( - 'Id' => 1078, - 'Label' => 'Music|Hip-Hop/Rap|West Coast Rap', - ), - 1079 => array( - 'Id' => 1079, - 'Label' => 'Music|Holiday|Chanukah', - ), - 1080 => array( - 'Id' => 1080, - 'Label' => 'Music|Holiday|Christmas', - ), - 1081 => array( - 'Id' => 1081, - 'Label' => 'Music|Holiday|Christmas: Children\'s', - ), - 1082 => array( - 'Id' => 1082, - 'Label' => 'Music|Holiday|Christmas: Classic', - ), - 1083 => array( - 'Id' => 1083, - 'Label' => 'Music|Holiday|Christmas: Classical', - ), - 1084 => array( - 'Id' => 1084, - 'Label' => 'Music|Holiday|Christmas: Jazz', - ), - 1085 => array( - 'Id' => 1085, - 'Label' => 'Music|Holiday|Christmas: Modern', - ), - 1086 => array( - 'Id' => 1086, - 'Label' => 'Music|Holiday|Christmas: Pop', - ), - 1087 => array( - 'Id' => 1087, - 'Label' => 'Music|Holiday|Christmas: R&B', - ), - 1088 => array( - 'Id' => 1088, - 'Label' => 'Music|Holiday|Christmas: Religious', - ), - 1089 => array( - 'Id' => 1089, - 'Label' => 'Music|Holiday|Christmas: Rock', - ), - 1090 => array( - 'Id' => 1090, - 'Label' => 'Music|Holiday|Easter', - ), - 1091 => array( - 'Id' => 1091, - 'Label' => 'Music|Holiday|Halloween', - ), - 1092 => array( - 'Id' => 1092, - 'Label' => 'Music|Holiday|Holiday: Other', - ), - 1093 => array( - 'Id' => 1093, - 'Label' => 'Music|Holiday|Thanksgiving', - ), - 1094 => array( - 'Id' => 1094, - 'Label' => 'Music|Christian & Gospel|CCM', - ), - 1095 => array( - 'Id' => 1095, - 'Label' => 'Music|Christian & Gospel|Christian Metal', - ), - 1096 => array( - 'Id' => 1096, - 'Label' => 'Music|Christian & Gospel|Christian Pop', - ), - 1097 => array( - 'Id' => 1097, - 'Label' => 'Music|Christian & Gospel|Christian Rap', - ), - 1098 => array( - 'Id' => 1098, - 'Label' => 'Music|Christian & Gospel|Christian Rock', - ), - 1099 => array( - 'Id' => 1099, - 'Label' => 'Music|Christian & Gospel|Classic Christian', - ), - 1100 => array( - 'Id' => 1100, - 'Label' => 'Music|Christian & Gospel|Contemporary Gospel', - ), - 1101 => array( - 'Id' => 1101, - 'Label' => 'Music|Christian & Gospel|Gospel', - ), - 1103 => array( - 'Id' => 1103, - 'Label' => 'Music|Christian & Gospel|Praise & Worship', - ), - 1104 => array( - 'Id' => 1104, - 'Label' => 'Music|Christian & Gospel|Southern Gospel', - ), - 1105 => array( - 'Id' => 1105, - 'Label' => 'Music|Christian & Gospel|Traditional Gospel', - ), - 1106 => array( - 'Id' => 1106, - 'Label' => 'Music|Jazz|Avant-Garde Jazz', - ), - 1107 => array( - 'Id' => 1107, - 'Label' => 'Music|Jazz|Contemporary Jazz', - ), - 1108 => array( - 'Id' => 1108, - 'Label' => 'Music|Jazz|Crossover Jazz', - ), - 1109 => array( - 'Id' => 1109, - 'Label' => 'Music|Jazz|Dixieland', - ), - 1110 => array( - 'Id' => 1110, - 'Label' => 'Music|Jazz|Fusion', - ), - 1111 => array( - 'Id' => 1111, - 'Label' => 'Music|Jazz|Latin Jazz', - ), - 1112 => array( - 'Id' => 1112, - 'Label' => 'Music|Jazz|Mainstream Jazz', - ), - 1113 => array( - 'Id' => 1113, - 'Label' => 'Music|Jazz|Ragtime', - ), - 1114 => array( - 'Id' => 1114, - 'Label' => 'Music|Jazz|Smooth Jazz', - ), - 1115 => array( - 'Id' => 1115, - 'Label' => 'Music|Latino|Latin Jazz', - ), - 1116 => array( - 'Id' => 1116, - 'Label' => 'Music|Latino|Contemporary Latin', - ), - 1117 => array( - 'Id' => 1117, - 'Label' => 'Music|Latino|Pop Latino', - ), - 1118 => array( - 'Id' => 1118, - 'Label' => 'Music|Latino|Raices', - ), - 1119 => array( - 'Id' => 1119, - 'Label' => 'Music|Latino|Latin Urban', - ), - 1120 => array( - 'Id' => 1120, - 'Label' => 'Music|Latino|Baladas y Boleros', - ), - 1121 => array( - 'Id' => 1121, - 'Label' => 'Music|Latino|Alternativo & Rock Latino', - ), - 1122 => array( - 'Id' => 1122, - 'Label' => 'Music|Brazilian', - ), - 1123 => array( - 'Id' => 1123, - 'Label' => 'Music|Latino|Regional Mexicano', - ), - 1124 => array( - 'Id' => 1124, - 'Label' => 'Music|Latino|Salsa y Tropical', - ), - 1125 => array( - 'Id' => 1125, - 'Label' => 'Music|New Age|Environmental', - ), - 1126 => array( - 'Id' => 1126, - 'Label' => 'Music|New Age|Healing', - ), - 1127 => array( - 'Id' => 1127, - 'Label' => 'Music|New Age|Meditation', - ), - 1128 => array( - 'Id' => 1128, - 'Label' => 'Music|New Age|Nature', - ), - 1129 => array( - 'Id' => 1129, - 'Label' => 'Music|New Age|Relaxation', - ), - 1130 => array( - 'Id' => 1130, - 'Label' => 'Music|New Age|Travel', - ), - 1131 => array( - 'Id' => 1131, - 'Label' => 'Music|Pop|Adult Contemporary', - ), - 1132 => array( - 'Id' => 1132, - 'Label' => 'Music|Pop|Britpop', - ), - 1133 => array( - 'Id' => 1133, - 'Label' => 'Music|Pop|Pop/Rock', - ), - 1134 => array( - 'Id' => 1134, - 'Label' => 'Music|Pop|Soft Rock', - ), - 1135 => array( - 'Id' => 1135, - 'Label' => 'Music|Pop|Teen Pop', - ), - 1136 => array( - 'Id' => 1136, - 'Label' => 'Music|R&B/Soul|Contemporary R&B', - ), - 1137 => array( - 'Id' => 1137, - 'Label' => 'Music|R&B/Soul|Disco', - ), - 1138 => array( - 'Id' => 1138, - 'Label' => 'Music|R&B/Soul|Doo Wop', - ), - 1139 => array( - 'Id' => 1139, - 'Label' => 'Music|R&B/Soul|Funk', - ), - 1140 => array( - 'Id' => 1140, - 'Label' => 'Music|R&B/Soul|Motown', - ), - 1141 => array( - 'Id' => 1141, - 'Label' => 'Music|R&B/Soul|Neo-Soul', - ), - 1142 => array( - 'Id' => 1142, - 'Label' => 'Music|R&B/Soul|Quiet Storm', - ), - 1143 => array( - 'Id' => 1143, - 'Label' => 'Music|R&B/Soul|Soul', - ), - 1144 => array( - 'Id' => 1144, - 'Label' => 'Music|Rock|Adult Alternative', - ), - 1145 => array( - 'Id' => 1145, - 'Label' => 'Music|Rock|American Trad Rock', - ), - 1146 => array( - 'Id' => 1146, - 'Label' => 'Music|Rock|Arena Rock', - ), - 1147 => array( - 'Id' => 1147, - 'Label' => 'Music|Rock|Blues-Rock', - ), - 1148 => array( - 'Id' => 1148, - 'Label' => 'Music|Rock|British Invasion', - ), - 1149 => array( - 'Id' => 1149, - 'Label' => 'Music|Rock|Death Metal/Black Metal', - ), - 1150 => array( - 'Id' => 1150, - 'Label' => 'Music|Rock|Glam Rock', - ), - 1151 => array( - 'Id' => 1151, - 'Label' => 'Music|Rock|Hair Metal', - ), - 1152 => array( - 'Id' => 1152, - 'Label' => 'Music|Rock|Hard Rock', - ), - 1153 => array( - 'Id' => 1153, - 'Label' => 'Music|Rock|Metal', - ), - 1154 => array( - 'Id' => 1154, - 'Label' => 'Music|Rock|Jam Bands', - ), - 1155 => array( - 'Id' => 1155, - 'Label' => 'Music|Rock|Prog-Rock/Art Rock', - ), - 1156 => array( - 'Id' => 1156, - 'Label' => 'Music|Rock|Psychedelic', - ), - 1157 => array( - 'Id' => 1157, - 'Label' => 'Music|Rock|Rock & Roll', - ), - 1158 => array( - 'Id' => 1158, - 'Label' => 'Music|Rock|Rockabilly', - ), - 1159 => array( - 'Id' => 1159, - 'Label' => 'Music|Rock|Roots Rock', - ), - 1160 => array( - 'Id' => 1160, - 'Label' => 'Music|Rock|Singer/Songwriter', - ), - 1161 => array( - 'Id' => 1161, - 'Label' => 'Music|Rock|Southern Rock', - ), - 1162 => array( - 'Id' => 1162, - 'Label' => 'Music|Rock|Surf', - ), - 1163 => array( - 'Id' => 1163, - 'Label' => 'Music|Rock|Tex-Mex', - ), - 1165 => array( - 'Id' => 1165, - 'Label' => 'Music|Soundtrack|Foreign Cinema', - ), - 1166 => array( - 'Id' => 1166, - 'Label' => 'Music|Soundtrack|Musicals', - ), - 1167 => array( - 'Id' => 1167, - 'Label' => 'Music|Comedy|Novelty', - ), - 1168 => array( - 'Id' => 1168, - 'Label' => 'Music|Soundtrack|Original Score', - ), - 1169 => array( - 'Id' => 1169, - 'Label' => 'Music|Soundtrack|Soundtrack', - ), - 1171 => array( - 'Id' => 1171, - 'Label' => 'Music|Comedy|Standup Comedy', - ), - 1172 => array( - 'Id' => 1172, - 'Label' => 'Music|Soundtrack|TV Soundtrack', - ), - 1173 => array( - 'Id' => 1173, - 'Label' => 'Music|Vocal|Standards', - ), - 1174 => array( - 'Id' => 1174, - 'Label' => 'Music|Vocal|Traditional Pop', - ), - 1175 => array( - 'Id' => 1175, - 'Label' => 'Music|Jazz|Vocal Jazz', - ), - 1176 => array( - 'Id' => 1176, - 'Label' => 'Music|Vocal|Vocal Pop', - ), - 1177 => array( - 'Id' => 1177, - 'Label' => 'Music|World|Afro-Beat', - ), - 1178 => array( - 'Id' => 1178, - 'Label' => 'Music|World|Afro-Pop', - ), - 1179 => array( - 'Id' => 1179, - 'Label' => 'Music|World|Cajun', - ), - 1180 => array( - 'Id' => 1180, - 'Label' => 'Music|World|Celtic', - ), - 1181 => array( - 'Id' => 1181, - 'Label' => 'Music|World|Celtic Folk', - ), - 1182 => array( - 'Id' => 1182, - 'Label' => 'Music|World|Contemporary Celtic', - ), - 1183 => array( - 'Id' => 1183, - 'Label' => 'Music|Reggae|Dancehall', - ), - 1184 => array( - 'Id' => 1184, - 'Label' => 'Music|World|Drinking Songs', - ), - 1185 => array( - 'Id' => 1185, - 'Label' => 'Music|Indian|Indian Pop', - ), - 1186 => array( - 'Id' => 1186, - 'Label' => 'Music|World|Japanese Pop', - ), - 1187 => array( - 'Id' => 1187, - 'Label' => 'Music|World|Klezmer', - ), - 1188 => array( - 'Id' => 1188, - 'Label' => 'Music|World|Polka', - ), - 1189 => array( - 'Id' => 1189, - 'Label' => 'Music|World|Traditional Celtic', - ), - 1190 => array( - 'Id' => 1190, - 'Label' => 'Music|World|Worldbeat', - ), - 1191 => array( - 'Id' => 1191, - 'Label' => 'Music|World|Zydeco', - ), - 1192 => array( - 'Id' => 1192, - 'Label' => 'Music|Reggae|Roots Reggae', - ), - 1193 => array( - 'Id' => 1193, - 'Label' => 'Music|Reggae|Dub', - ), - 1194 => array( - 'Id' => 1194, - 'Label' => 'Music|Reggae|Ska', - ), - 1195 => array( - 'Id' => 1195, - 'Label' => 'Music|World|Caribbean', - ), - 1196 => array( - 'Id' => 1196, - 'Label' => 'Music|World|South America', - ), - 1197 => array( - 'Id' => 1197, - 'Label' => 'Music|Arabic', - ), - 1198 => array( - 'Id' => 1198, - 'Label' => 'Music|World|North America', - ), - 1199 => array( - 'Id' => 1199, - 'Label' => 'Music|World|Hawaii', - ), - 1200 => array( - 'Id' => 1200, - 'Label' => 'Music|World|Australia', - ), - 1201 => array( - 'Id' => 1201, - 'Label' => 'Music|World|Japan', - ), - 1202 => array( - 'Id' => 1202, - 'Label' => 'Music|World|France', - ), - 1203 => array( - 'Id' => 1203, - 'Label' => 'Music|World|Africa', - ), - 1204 => array( - 'Id' => 1204, - 'Label' => 'Music|World|Asia', - ), - 1205 => array( - 'Id' => 1205, - 'Label' => 'Music|World|Europe', - ), - 1206 => array( - 'Id' => 1206, - 'Label' => 'Music|World|South Africa', - ), - 1207 => array( - 'Id' => 1207, - 'Label' => 'Music|Jazz|Hard Bop', - ), - 1208 => array( - 'Id' => 1208, - 'Label' => 'Music|Jazz|Trad Jazz', - ), - 1209 => array( - 'Id' => 1209, - 'Label' => 'Music|Jazz|Cool', - ), - 1210 => array( - 'Id' => 1210, - 'Label' => 'Music|Blues|Acoustic Blues', - ), - 1211 => array( - 'Id' => 1211, - 'Label' => 'Music|Classical|High Classical', - ), - 1220 => array( - 'Id' => 1220, - 'Label' => 'Music|Brazilian|Axe', - ), - 1221 => array( - 'Id' => 1221, - 'Label' => 'Music|Brazilian|Bossa Nova', - ), - 1222 => array( - 'Id' => 1222, - 'Label' => 'Music|Brazilian|Choro', - ), - 1223 => array( - 'Id' => 1223, - 'Label' => 'Music|Brazilian|Forro', - ), - 1224 => array( - 'Id' => 1224, - 'Label' => 'Music|Brazilian|Frevo', - ), - 1225 => array( - 'Id' => 1225, - 'Label' => 'Music|Brazilian|MPB', - ), - 1226 => array( - 'Id' => 1226, - 'Label' => 'Music|Brazilian|Pagode', - ), - 1227 => array( - 'Id' => 1227, - 'Label' => 'Music|Brazilian|Samba', - ), - 1228 => array( - 'Id' => 1228, - 'Label' => 'Music|Brazilian|Sertanejo', - ), - 1229 => array( - 'Id' => 1229, - 'Label' => 'Music|Brazilian|Baile Funk', - ), - 1230 => array( - 'Id' => 1230, - 'Label' => 'Music|Alternative|Chinese Alt', - ), - 1231 => array( - 'Id' => 1231, - 'Label' => 'Music|Alternative|Korean Indie', - ), - 1232 => array( - 'Id' => 1232, - 'Label' => 'Music|Chinese', - ), - 1233 => array( - 'Id' => 1233, - 'Label' => 'Music|Chinese|Chinese Classical', - ), - 1234 => array( - 'Id' => 1234, - 'Label' => 'Music|Chinese|Chinese Flute', - ), - 1235 => array( - 'Id' => 1235, - 'Label' => 'Music|Chinese|Chinese Opera', - ), - 1236 => array( - 'Id' => 1236, - 'Label' => 'Music|Chinese|Chinese Orchestral', - ), - 1237 => array( - 'Id' => 1237, - 'Label' => 'Music|Chinese|Chinese Regional Folk', - ), - 1238 => array( - 'Id' => 1238, - 'Label' => 'Music|Chinese|Chinese Strings', - ), - 1239 => array( - 'Id' => 1239, - 'Label' => 'Music|Chinese|Taiwanese Folk', - ), - 1240 => array( - 'Id' => 1240, - 'Label' => 'Music|Chinese|Tibetan Native Music', - ), - 1241 => array( - 'Id' => 1241, - 'Label' => 'Music|Hip-Hop/Rap|Chinese Hip-Hop', - ), - 1242 => array( - 'Id' => 1242, - 'Label' => 'Music|Hip-Hop/Rap|Korean Hip-Hop', - ), - 1243 => array( - 'Id' => 1243, - 'Label' => 'Music|Korean', - ), - 1244 => array( - 'Id' => 1244, - 'Label' => 'Music|Korean|Korean Classical', - ), - 1245 => array( - 'Id' => 1245, - 'Label' => 'Music|Korean|Korean Trad Song', - ), - 1246 => array( - 'Id' => 1246, - 'Label' => 'Music|Korean|Korean Trad Instrumental', - ), - 1247 => array( - 'Id' => 1247, - 'Label' => 'Music|Korean|Korean Trad Theater', - ), - 1248 => array( - 'Id' => 1248, - 'Label' => 'Music|Rock|Chinese Rock', - ), - 1249 => array( - 'Id' => 1249, - 'Label' => 'Music|Rock|Korean Rock', - ), - 1250 => array( - 'Id' => 1250, - 'Label' => 'Music|Pop|C-Pop', - ), - 1251 => array( - 'Id' => 1251, - 'Label' => 'Music|Pop|Cantopop/HK-Pop', - ), - 1252 => array( - 'Id' => 1252, - 'Label' => 'Music|Pop|Korean Folk-Pop', - ), - 1253 => array( - 'Id' => 1253, - 'Label' => 'Music|Pop|Mandopop', - ), - 1254 => array( - 'Id' => 1254, - 'Label' => 'Music|Pop|Tai-Pop', - ), - 1255 => array( - 'Id' => 1255, - 'Label' => 'Music|Pop|Malaysian Pop', - ), - 1256 => array( - 'Id' => 1256, - 'Label' => 'Music|Pop|Pinoy Pop', - ), - 1257 => array( - 'Id' => 1257, - 'Label' => 'Music|Pop|Original Pilipino Music', - ), - 1258 => array( - 'Id' => 1258, - 'Label' => 'Music|Pop|Manilla Sound', - ), - 1259 => array( - 'Id' => 1259, - 'Label' => 'Music|Pop|Indo Pop', - ), - 1260 => array( - 'Id' => 1260, - 'Label' => 'Music|Pop|Thai Pop', - ), - 1261 => array( - 'Id' => 1261, - 'Label' => 'Music|Vocal|Trot', - ), - 1262 => array( - 'Id' => 1262, - 'Label' => 'Music|Indian', - ), - 1263 => array( - 'Id' => 1263, - 'Label' => 'Music|Indian|Bollywood', - ), - 1264 => array( - 'Id' => 1264, - 'Label' => 'Music|Indian|Tamil', - ), - 1265 => array( - 'Id' => 1265, - 'Label' => 'Music|Indian|Telugu', - ), - 1266 => array( - 'Id' => 1266, - 'Label' => 'Music|Indian|Regional Indian', - ), - 1267 => array( - 'Id' => 1267, - 'Label' => 'Music|Indian|Devotional & Spiritual', - ), - 1268 => array( - 'Id' => 1268, - 'Label' => 'Music|Indian|Sufi', - ), - 1269 => array( - 'Id' => 1269, - 'Label' => 'Music|Indian|Indian Classical', - ), - 1270 => array( - 'Id' => 1270, - 'Label' => 'Music|World|Russian Chanson', - ), - 1271 => array( - 'Id' => 1271, - 'Label' => 'Music|World|Dini', - ), - 1272 => array( - 'Id' => 1272, - 'Label' => 'Music|World|Halk', - ), - 1273 => array( - 'Id' => 1273, - 'Label' => 'Music|World|Sanat', - ), - 1274 => array( - 'Id' => 1274, - 'Label' => 'Music|World|Dangdut', - ), - 1275 => array( - 'Id' => 1275, - 'Label' => 'Music|World|Indonesian Religious', - ), - 1276 => array( - 'Id' => 1276, - 'Label' => 'Music|World|Calypso', - ), - 1277 => array( - 'Id' => 1277, - 'Label' => 'Music|World|Soca', - ), - 1278 => array( - 'Id' => 1278, - 'Label' => 'Music|Indian|Ghazals', - ), - 1279 => array( - 'Id' => 1279, - 'Label' => 'Music|Indian|Indian Folk', - ), - 1280 => array( - 'Id' => 1280, - 'Label' => 'Music|World|Arabesque', - ), - 1281 => array( - 'Id' => 1281, - 'Label' => 'Music|World|Afrikaans', - ), - 1282 => array( - 'Id' => 1282, - 'Label' => 'Music|World|Farsi', - ), - 1283 => array( - 'Id' => 1283, - 'Label' => 'Music|World|Israeli', - ), - 1284 => array( - 'Id' => 1284, - 'Label' => 'Music|Arabic|Khaleeji', - ), - 1285 => array( - 'Id' => 1285, - 'Label' => 'Music|Arabic|North African', - ), - 1286 => array( - 'Id' => 1286, - 'Label' => 'Music|Arabic|Arabic Pop', - ), - 1287 => array( - 'Id' => 1287, - 'Label' => 'Music|Arabic|Islamic', - ), - 1288 => array( - 'Id' => 1288, - 'Label' => 'Music|Soundtrack|Sound Effects', - ), - 1289 => array( - 'Id' => 1289, - 'Label' => 'Music|Folk', - ), - 1290 => array( - 'Id' => 1290, - 'Label' => 'Music|Orchestral', - ), - 1291 => array( - 'Id' => 1291, - 'Label' => 'Music|Marching', - ), - 1293 => array( - 'Id' => 1293, - 'Label' => 'Music|Pop|Oldies', - ), - 1294 => array( - 'Id' => 1294, - 'Label' => 'Music|Country|Thai Country', - ), - 1295 => array( - 'Id' => 1295, - 'Label' => 'Music|World|Flamenco', - ), - 1296 => array( - 'Id' => 1296, - 'Label' => 'Music|World|Tango', - ), - 1297 => array( - 'Id' => 1297, - 'Label' => 'Music|World|Fado', - ), - 1298 => array( - 'Id' => 1298, - 'Label' => 'Music|World|Iberia', - ), - 1299 => array( - 'Id' => 1299, - 'Label' => 'Music|World|Russian', - ), - 1300 => array( - 'Id' => 1300, - 'Label' => 'Music|World|Turkish', - ), - 1301 => array( - 'Id' => 1301, - 'Label' => 'Podcasts|Arts', - ), - 1302 => array( - 'Id' => 1302, - 'Label' => 'Podcasts|Society & Culture|Personal Journals', - ), - 1303 => array( - 'Id' => 1303, - 'Label' => 'Podcasts|Comedy', - ), - 1304 => array( - 'Id' => 1304, - 'Label' => 'Podcasts|Education', - ), - 1305 => array( - 'Id' => 1305, - 'Label' => 'Podcasts|Kids & Family', - ), - 1306 => array( - 'Id' => 1306, - 'Label' => 'Podcasts|Arts|Food', - ), - 1307 => array( - 'Id' => 1307, - 'Label' => 'Podcasts|Health', - ), - 1309 => array( - 'Id' => 1309, - 'Label' => 'Podcasts|TV & Film', - ), - 1310 => array( - 'Id' => 1310, - 'Label' => 'Podcasts|Music', - ), - 1311 => array( - 'Id' => 1311, - 'Label' => 'Podcasts|News & Politics', - ), - 1314 => array( - 'Id' => 1314, - 'Label' => 'Podcasts|Religion & Spirituality', - ), - 1315 => array( - 'Id' => 1315, - 'Label' => 'Podcasts|Science & Medicine', - ), - 1316 => array( - 'Id' => 1316, - 'Label' => 'Podcasts|Sports & Recreation', - ), - 1318 => array( - 'Id' => 1318, - 'Label' => 'Podcasts|Technology', - ), - 1320 => array( - 'Id' => 1320, - 'Label' => 'Podcasts|Society & Culture|Places & Travel', - ), - 1321 => array( - 'Id' => 1321, - 'Label' => 'Podcasts|Business', - ), - 1323 => array( - 'Id' => 1323, - 'Label' => 'Podcasts|Games & Hobbies', - ), - 1324 => array( - 'Id' => 1324, - 'Label' => 'Podcasts|Society & Culture', - ), - 1325 => array( - 'Id' => 1325, - 'Label' => 'Podcasts|Government & Organizations', - ), - 1401 => array( - 'Id' => 1401, - 'Label' => 'Podcasts|Arts|Literature', - ), - 1402 => array( - 'Id' => 1402, - 'Label' => 'Podcasts|Arts|Design', - ), - 1404 => array( - 'Id' => 1404, - 'Label' => 'Podcasts|Games & Hobbies|Video Games', - ), - 1405 => array( - 'Id' => 1405, - 'Label' => 'Podcasts|Arts|Performing Arts', - ), - 1406 => array( - 'Id' => 1406, - 'Label' => 'Podcasts|Arts|Visual Arts', - ), - 1410 => array( - 'Id' => 1410, - 'Label' => 'Podcasts|Business|Careers', - ), - 1412 => array( - 'Id' => 1412, - 'Label' => 'Podcasts|Business|Investing', - ), - 1413 => array( - 'Id' => 1413, - 'Label' => 'Podcasts|Business|Management & Marketing', - ), - 1415 => array( - 'Id' => 1415, - 'Label' => 'Podcasts|Education|K-12', - ), - 1416 => array( - 'Id' => 1416, - 'Label' => 'Podcasts|Education|Higher Education', - ), - 1417 => array( - 'Id' => 1417, - 'Label' => 'Podcasts|Health|Fitness & Nutrition', - ), - 1420 => array( - 'Id' => 1420, - 'Label' => 'Podcasts|Health|Self-Help', - ), - 1421 => array( - 'Id' => 1421, - 'Label' => 'Podcasts|Health|Sexuality', - ), - 1438 => array( - 'Id' => 1438, - 'Label' => 'Podcasts|Religion & Spirituality|Buddhism', - ), - 1439 => array( - 'Id' => 1439, - 'Label' => 'Podcasts|Religion & Spirituality|Christianity', - ), - 1440 => array( - 'Id' => 1440, - 'Label' => 'Podcasts|Religion & Spirituality|Islam', - ), - 1441 => array( - 'Id' => 1441, - 'Label' => 'Podcasts|Religion & Spirituality|Judaism', - ), - 1443 => array( - 'Id' => 1443, - 'Label' => 'Podcasts|Society & Culture|Philosophy', - ), - 1444 => array( - 'Id' => 1444, - 'Label' => 'Podcasts|Religion & Spirituality|Spirituality', - ), - 1446 => array( - 'Id' => 1446, - 'Label' => 'Podcasts|Technology|Gadgets', - ), - 1448 => array( - 'Id' => 1448, - 'Label' => 'Podcasts|Technology|Tech News', - ), - 1450 => array( - 'Id' => 1450, - 'Label' => 'Podcasts|Technology|Podcasting', - ), - 1454 => array( - 'Id' => 1454, - 'Label' => 'Podcasts|Games & Hobbies|Automotive', - ), - 1455 => array( - 'Id' => 1455, - 'Label' => 'Podcasts|Games & Hobbies|Aviation', - ), - 1456 => array( - 'Id' => 1456, - 'Label' => 'Podcasts|Sports & Recreation|Outdoor', - ), - 1459 => array( - 'Id' => 1459, - 'Label' => 'Podcasts|Arts|Fashion & Beauty', - ), - 1460 => array( - 'Id' => 1460, - 'Label' => 'Podcasts|Games & Hobbies|Hobbies', - ), - 1461 => array( - 'Id' => 1461, - 'Label' => 'Podcasts|Games & Hobbies|Other Games', - ), - 1462 => array( - 'Id' => 1462, - 'Label' => 'Podcasts|Society & Culture|History', - ), - 1463 => array( - 'Id' => 1463, - 'Label' => 'Podcasts|Religion & Spirituality|Hinduism', - ), - 1464 => array( - 'Id' => 1464, - 'Label' => 'Podcasts|Religion & Spirituality|Other', - ), - 1465 => array( - 'Id' => 1465, - 'Label' => 'Podcasts|Sports & Recreation|Professional', - ), - 1466 => array( - 'Id' => 1466, - 'Label' => 'Podcasts|Sports & Recreation|College & High School', - ), - 1467 => array( - 'Id' => 1467, - 'Label' => 'Podcasts|Sports & Recreation|Amateur', - ), - 1468 => array( - 'Id' => 1468, - 'Label' => 'Podcasts|Education|Educational Technology', - ), - 1469 => array( - 'Id' => 1469, - 'Label' => 'Podcasts|Education|Language Courses', - ), - 1470 => array( - 'Id' => 1470, - 'Label' => 'Podcasts|Education|Training', - ), - 1471 => array( - 'Id' => 1471, - 'Label' => 'Podcasts|Business|Business News', - ), - 1472 => array( - 'Id' => 1472, - 'Label' => 'Podcasts|Business|Shopping', - ), - 1473 => array( - 'Id' => 1473, - 'Label' => 'Podcasts|Government & Organizations|National', - ), - 1474 => array( - 'Id' => 1474, - 'Label' => 'Podcasts|Government & Organizations|Regional', - ), - 1475 => array( - 'Id' => 1475, - 'Label' => 'Podcasts|Government & Organizations|Local', - ), - 1476 => array( - 'Id' => 1476, - 'Label' => 'Podcasts|Government & Organizations|Non-Profit', - ), - 1477 => array( - 'Id' => 1477, - 'Label' => 'Podcasts|Science & Medicine|Natural Sciences', - ), - 1478 => array( - 'Id' => 1478, - 'Label' => 'Podcasts|Science & Medicine|Medicine', - ), - 1479 => array( - 'Id' => 1479, - 'Label' => 'Podcasts|Science & Medicine|Social Sciences', - ), - 1480 => array( - 'Id' => 1480, - 'Label' => 'Podcasts|Technology|Software How-To', - ), - 1481 => array( - 'Id' => 1481, - 'Label' => 'Podcasts|Health|Alternative Health', - ), - 1602 => array( - 'Id' => 1602, - 'Label' => 'Music Videos|Blues', - ), - 1603 => array( - 'Id' => 1603, - 'Label' => 'Music Videos|Comedy', - ), - 1604 => array( - 'Id' => 1604, - 'Label' => 'Music Videos|Children\'s Music', - ), - 1605 => array( - 'Id' => 1605, - 'Label' => 'Music Videos|Classical', - ), - 1606 => array( - 'Id' => 1606, - 'Label' => 'Music Videos|Country', - ), - 1607 => array( - 'Id' => 1607, - 'Label' => 'Music Videos|Electronic', - ), - 1608 => array( - 'Id' => 1608, - 'Label' => 'Music Videos|Holiday', - ), - 1609 => array( - 'Id' => 1609, - 'Label' => 'Music Videos|Opera', - ), - 1610 => array( - 'Id' => 1610, - 'Label' => 'Music Videos|Singer/Songwriter', - ), - 1611 => array( - 'Id' => 1611, - 'Label' => 'Music Videos|Jazz', - ), - 1612 => array( - 'Id' => 1612, - 'Label' => 'Music Videos|Latin', - ), - 1613 => array( - 'Id' => 1613, - 'Label' => 'Music Videos|New Age', - ), - 1614 => array( - 'Id' => 1614, - 'Label' => 'Music Videos|Pop', - ), - 1615 => array( - 'Id' => 1615, - 'Label' => 'Music Videos|R&B/Soul', - ), - 1616 => array( - 'Id' => 1616, - 'Label' => 'Music Videos|Soundtrack', - ), - 1617 => array( - 'Id' => 1617, - 'Label' => 'Music Videos|Dance', - ), - 1618 => array( - 'Id' => 1618, - 'Label' => 'Music Videos|Hip-Hop/Rap', - ), - 1619 => array( - 'Id' => 1619, - 'Label' => 'Music Videos|World', - ), - 1620 => array( - 'Id' => 1620, - 'Label' => 'Music Videos|Alternative', - ), - 1621 => array( - 'Id' => 1621, - 'Label' => 'Music Videos|Rock', - ), - 1622 => array( - 'Id' => 1622, - 'Label' => 'Music Videos|Christian & Gospel', - ), - 1623 => array( - 'Id' => 1623, - 'Label' => 'Music Videos|Vocal', - ), - 1624 => array( - 'Id' => 1624, - 'Label' => 'Music Videos|Reggae', - ), - 1625 => array( - 'Id' => 1625, - 'Label' => 'Music Videos|Easy Listening', - ), - 1626 => array( - 'Id' => 1626, - 'Label' => 'Music Videos|Podcasts', - ), - 1627 => array( - 'Id' => 1627, - 'Label' => 'Music Videos|J-Pop', - ), - 1628 => array( - 'Id' => 1628, - 'Label' => 'Music Videos|Enka', - ), - 1629 => array( - 'Id' => 1629, - 'Label' => 'Music Videos|Anime', - ), - 1630 => array( - 'Id' => 1630, - 'Label' => 'Music Videos|Kayokyoku', - ), - 1631 => array( - 'Id' => 1631, - 'Label' => 'Music Videos|Disney', - ), - 1632 => array( - 'Id' => 1632, - 'Label' => 'Music Videos|French Pop', - ), - 1633 => array( - 'Id' => 1633, - 'Label' => 'Music Videos|German Pop', - ), - 1634 => array( - 'Id' => 1634, - 'Label' => 'Music Videos|German Folk', - ), - 1635 => array( - 'Id' => 1635, - 'Label' => 'Music Videos|Alternative|Chinese Alt', - ), - 1636 => array( - 'Id' => 1636, - 'Label' => 'Music Videos|Alternative|Korean Indie', - ), - 1637 => array( - 'Id' => 1637, - 'Label' => 'Music Videos|Chinese', - ), - 1638 => array( - 'Id' => 1638, - 'Label' => 'Music Videos|Chinese|Chinese Classical', - ), - 1639 => array( - 'Id' => 1639, - 'Label' => 'Music Videos|Chinese|Chinese Flute', - ), - 1640 => array( - 'Id' => 1640, - 'Label' => 'Music Videos|Chinese|Chinese Opera', - ), - 1641 => array( - 'Id' => 1641, - 'Label' => 'Music Videos|Chinese|Chinese Orchestral', - ), - 1642 => array( - 'Id' => 1642, - 'Label' => 'Music Videos|Chinese|Chinese Regional Folk', - ), - 1643 => array( - 'Id' => 1643, - 'Label' => 'Music Videos|Chinese|Chinese Strings', - ), - 1644 => array( - 'Id' => 1644, - 'Label' => 'Music Videos|Chinese|Taiwanese Folk', - ), - 1645 => array( - 'Id' => 1645, - 'Label' => 'Music Videos|Chinese|Tibetan Native Music', - ), - 1646 => array( - 'Id' => 1646, - 'Label' => 'Music Videos|Hip-Hop/Rap|Chinese Hip-Hop', - ), - 1647 => array( - 'Id' => 1647, - 'Label' => 'Music Videos|Hip-Hop/Rap|Korean Hip-Hop', - ), - 1648 => array( - 'Id' => 1648, - 'Label' => 'Music Videos|Korean', - ), - 1649 => array( - 'Id' => 1649, - 'Label' => 'Music Videos|Korean|Korean Classical', - ), - 1650 => array( - 'Id' => 1650, - 'Label' => 'Music Videos|Korean|Korean Trad Song', - ), - 1651 => array( - 'Id' => 1651, - 'Label' => 'Music Videos|Korean|Korean Trad Instrumental', - ), - 1652 => array( - 'Id' => 1652, - 'Label' => 'Music Videos|Korean|Korean Trad Theater', - ), - 1653 => array( - 'Id' => 1653, - 'Label' => 'Music Videos|Rock|Chinese Rock', - ), - 1654 => array( - 'Id' => 1654, - 'Label' => 'Music Videos|Rock|Korean Rock', - ), - 1655 => array( - 'Id' => 1655, - 'Label' => 'Music Videos|Pop|C-Pop', - ), - 1656 => array( - 'Id' => 1656, - 'Label' => 'Music Videos|Pop|Cantopop/HK-Pop', - ), - 1657 => array( - 'Id' => 1657, - 'Label' => 'Music Videos|Pop|Korean Folk-Pop', - ), - 1658 => array( - 'Id' => 1658, - 'Label' => 'Music Videos|Pop|Mandopop', - ), - 1659 => array( - 'Id' => 1659, - 'Label' => 'Music Videos|Pop|Tai-Pop', - ), - 1660 => array( - 'Id' => 1660, - 'Label' => 'Music Videos|Pop|Malaysian Pop', - ), - 1661 => array( - 'Id' => 1661, - 'Label' => 'Music Videos|Pop|Pinoy Pop', - ), - 1662 => array( - 'Id' => 1662, - 'Label' => 'Music Videos|Pop|Original Pilipino Music', - ), - 1663 => array( - 'Id' => 1663, - 'Label' => 'Music Videos|Pop|Manilla Sound', - ), - 1664 => array( - 'Id' => 1664, - 'Label' => 'Music Videos|Pop|Indo Pop', - ), - 1665 => array( - 'Id' => 1665, - 'Label' => 'Music Videos|Pop|Thai Pop', - ), - 1666 => array( - 'Id' => 1666, - 'Label' => 'Music Videos|Vocal|Trot', - ), - 1671 => array( - 'Id' => 1671, - 'Label' => 'Music Videos|Brazilian', - ), - 1672 => array( - 'Id' => 1672, - 'Label' => 'Music Videos|Brazilian|Axe', - ), - 1673 => array( - 'Id' => 1673, - 'Label' => 'Music Videos|Brazilian|Baile Funk', - ), - 1674 => array( - 'Id' => 1674, - 'Label' => 'Music Videos|Brazilian|Bossa Nova', - ), - 1675 => array( - 'Id' => 1675, - 'Label' => 'Music Videos|Brazilian|Choro', - ), - 1676 => array( - 'Id' => 1676, - 'Label' => 'Music Videos|Brazilian|Forro', - ), - 1677 => array( - 'Id' => 1677, - 'Label' => 'Music Videos|Brazilian|Frevo', - ), - 1678 => array( - 'Id' => 1678, - 'Label' => 'Music Videos|Brazilian|MPB', - ), - 1679 => array( - 'Id' => 1679, - 'Label' => 'Music Videos|Brazilian|Pagode', - ), - 1680 => array( - 'Id' => 1680, - 'Label' => 'Music Videos|Brazilian|Samba', - ), - 1681 => array( - 'Id' => 1681, - 'Label' => 'Music Videos|Brazilian|Sertanejo', - ), - 1682 => array( - 'Id' => 1682, - 'Label' => 'Music Videos|Classical|High Classical', - ), - 1683 => array( - 'Id' => 1683, - 'Label' => 'Music Videos|Fitness & Workout', - ), - 1684 => array( - 'Id' => 1684, - 'Label' => 'Music Videos|Instrumental', - ), - 1685 => array( - 'Id' => 1685, - 'Label' => 'Music Videos|Jazz|MZGenre.MusicVideo.Jazz.BigBand', - ), - 1686 => array( - 'Id' => 1686, - 'Label' => 'Music Videos|K-Pop', - ), - 1687 => array( - 'Id' => 1687, - 'Label' => 'Music Videos|Karaoke', - ), - 1688 => array( - 'Id' => 1688, - 'Label' => 'Music Videos|Rock|Heavy Metal', - ), - 1689 => array( - 'Id' => 1689, - 'Label' => 'Music Videos|Spoken Word', - ), - 1690 => array( - 'Id' => 1690, - 'Label' => 'Music Videos|Indian', - ), - 1691 => array( - 'Id' => 1691, - 'Label' => 'Music Videos|Indian|Bollywood', - ), - 1692 => array( - 'Id' => 1692, - 'Label' => 'Music Videos|Indian|Tamil', - ), - 1693 => array( - 'Id' => 1693, - 'Label' => 'Music Videos|Indian|Telugu', - ), - 1694 => array( - 'Id' => 1694, - 'Label' => 'Music Videos|Indian|Regional Indian', - ), - 1695 => array( - 'Id' => 1695, - 'Label' => 'Music Videos|Indian|Devotional & Spiritual', - ), - 1696 => array( - 'Id' => 1696, - 'Label' => 'Music Videos|Indian|Sufi', - ), - 1697 => array( - 'Id' => 1697, - 'Label' => 'Music Videos|Indian|Indian Classical', - ), - 1698 => array( - 'Id' => 1698, - 'Label' => 'Music Videos|World|Russian Chanson', - ), - 1699 => array( - 'Id' => 1699, - 'Label' => 'Music Videos|World|Dini', - ), - 1700 => array( - 'Id' => 1700, - 'Label' => 'Music Videos|World|Halk', - ), - 1701 => array( - 'Id' => 1701, - 'Label' => 'Music Videos|World|Sanat', - ), - 1702 => array( - 'Id' => 1702, - 'Label' => 'Music Videos|World|Dangdut', - ), - 1703 => array( - 'Id' => 1703, - 'Label' => 'Music Videos|World|Indonesian Religious', - ), - 1704 => array( - 'Id' => 1704, - 'Label' => 'Music Videos|Indian|Indian Pop', - ), - 1705 => array( - 'Id' => 1705, - 'Label' => 'Music Videos|World|Calypso', - ), - 1706 => array( - 'Id' => 1706, - 'Label' => 'Music Videos|World|Soca', - ), - 1707 => array( - 'Id' => 1707, - 'Label' => 'Music Videos|Indian|Ghazals', - ), - 1708 => array( - 'Id' => 1708, - 'Label' => 'Music Videos|Indian|Indian Folk', - ), - 1709 => array( - 'Id' => 1709, - 'Label' => 'Music Videos|World|Arabesque', - ), - 1710 => array( - 'Id' => 1710, - 'Label' => 'Music Videos|World|Afrikaans', - ), - 1711 => array( - 'Id' => 1711, - 'Label' => 'Music Videos|World|Farsi', - ), - 1712 => array( - 'Id' => 1712, - 'Label' => 'Music Videos|World|Israeli', - ), - 1713 => array( - 'Id' => 1713, - 'Label' => 'Music Videos|Arabic', - ), - 1714 => array( - 'Id' => 1714, - 'Label' => 'Music Videos|Arabic|Khaleeji', - ), - 1715 => array( - 'Id' => 1715, - 'Label' => 'Music Videos|Arabic|North African', - ), - 1716 => array( - 'Id' => 1716, - 'Label' => 'Music Videos|Arabic|Arabic Pop', - ), - 1717 => array( - 'Id' => 1717, - 'Label' => 'Music Videos|Arabic|Islamic', - ), - 1718 => array( - 'Id' => 1718, - 'Label' => 'Music Videos|Soundtrack|Sound Effects', - ), - 1719 => array( - 'Id' => 1719, - 'Label' => 'Music Videos|Folk', - ), - 1720 => array( - 'Id' => 1720, - 'Label' => 'Music Videos|Orchestral', - ), - 1721 => array( - 'Id' => 1721, - 'Label' => 'Music Videos|Marching', - ), - 1723 => array( - 'Id' => 1723, - 'Label' => 'Music Videos|Pop|Oldies', - ), - 1724 => array( - 'Id' => 1724, - 'Label' => 'Music Videos|Country|Thai Country', - ), - 1725 => array( - 'Id' => 1725, - 'Label' => 'Music Videos|World|Flamenco', - ), - 1726 => array( - 'Id' => 1726, - 'Label' => 'Music Videos|World|Tango', - ), - 1727 => array( - 'Id' => 1727, - 'Label' => 'Music Videos|World|Fado', - ), - 1728 => array( - 'Id' => 1728, - 'Label' => 'Music Videos|World|Iberia', - ), - 1729 => array( - 'Id' => 1729, - 'Label' => 'Music Videos|World|Russian', - ), - 1730 => array( - 'Id' => 1730, - 'Label' => 'Music Videos|World|Turkish', - ), - 1731 => array( - 'Id' => 1731, - 'Label' => 'Music Videos|Alternative|College Rock', - ), - 1732 => array( - 'Id' => 1732, - 'Label' => 'Music Videos|Alternative|Goth Rock', - ), - 1733 => array( - 'Id' => 1733, - 'Label' => 'Music Videos|Alternative|Grunge', - ), - 1734 => array( - 'Id' => 1734, - 'Label' => 'Music Videos|Alternative|Indie Rock', - ), - 1735 => array( - 'Id' => 1735, - 'Label' => 'Music Videos|Alternative|New Wave', - ), - 1736 => array( - 'Id' => 1736, - 'Label' => 'Music Videos|Alternative|Punk', - ), - 1737 => array( - 'Id' => 1737, - 'Label' => 'Music Videos|Blues|Acoustic Blues', - ), - 1738 => array( - 'Id' => 1738, - 'Label' => 'Music Videos|Blues|Chicago Blues', - ), - 1739 => array( - 'Id' => 1739, - 'Label' => 'Music Videos|Blues|Classic Blues', - ), - 1740 => array( - 'Id' => 1740, - 'Label' => 'Music Videos|Blues|Contemporary Blues', - ), - 1741 => array( - 'Id' => 1741, - 'Label' => 'Music Videos|Blues|Country Blues', - ), - 1742 => array( - 'Id' => 1742, - 'Label' => 'Music Videos|Blues|Delta Blues', - ), - 1743 => array( - 'Id' => 1743, - 'Label' => 'Music Videos|Blues|Electric Blues', - ), - 1744 => array( - 'Id' => 1744, - 'Label' => 'Music Videos|Children\'s Music|Lullabies', - ), - 1745 => array( - 'Id' => 1745, - 'Label' => 'Music Videos|Children\'s Music|Sing-Along', - ), - 1746 => array( - 'Id' => 1746, - 'Label' => 'Music Videos|Children\'s Music|Stories', - ), - 1747 => array( - 'Id' => 1747, - 'Label' => 'Music Videos|Christian & Gospel|CCM', - ), - 1748 => array( - 'Id' => 1748, - 'Label' => 'Music Videos|Christian & Gospel|Christian Metal', - ), - 1749 => array( - 'Id' => 1749, - 'Label' => 'Music Videos|Christian & Gospel|Christian Pop', - ), - 1750 => array( - 'Id' => 1750, - 'Label' => 'Music Videos|Christian & Gospel|Christian Rap', - ), - 1751 => array( - 'Id' => 1751, - 'Label' => 'Music Videos|Christian & Gospel|Christian Rock', - ), - 1752 => array( - 'Id' => 1752, - 'Label' => 'Music Videos|Christian & Gospel|Classic Christian', - ), - 1753 => array( - 'Id' => 1753, - 'Label' => 'Music Videos|Christian & Gospel|Contemporary Gospel', - ), - 1754 => array( - 'Id' => 1754, - 'Label' => 'Music Videos|Christian & Gospel|Gospel', - ), - 1755 => array( - 'Id' => 1755, - 'Label' => 'Music Videos|Christian & Gospel|Praise & Worship', - ), - 1756 => array( - 'Id' => 1756, - 'Label' => 'Music Videos|Christian & Gospel|Southern Gospel', - ), - 1757 => array( - 'Id' => 1757, - 'Label' => 'Music Videos|Christian & Gospel|Traditional Gospel', - ), - 1758 => array( - 'Id' => 1758, - 'Label' => 'Music Videos|Classical|Avant-Garde', - ), - 1759 => array( - 'Id' => 1759, - 'Label' => 'Music Videos|Classical|Baroque', - ), - 1760 => array( - 'Id' => 1760, - 'Label' => 'Music Videos|Classical|Chamber Music', - ), - 1761 => array( - 'Id' => 1761, - 'Label' => 'Music Videos|Classical|Chant', - ), - 1762 => array( - 'Id' => 1762, - 'Label' => 'Music Videos|Classical|Choral', - ), - 1763 => array( - 'Id' => 1763, - 'Label' => 'Music Videos|Classical|Classical Crossover', - ), - 1764 => array( - 'Id' => 1764, - 'Label' => 'Music Videos|Classical|Early Music', - ), - 1765 => array( - 'Id' => 1765, - 'Label' => 'Music Videos|Classical|Impressionist', - ), - 1766 => array( - 'Id' => 1766, - 'Label' => 'Music Videos|Classical|Medieval', - ), - 1767 => array( - 'Id' => 1767, - 'Label' => 'Music Videos|Classical|Minimalism', - ), - 1768 => array( - 'Id' => 1768, - 'Label' => 'Music Videos|Classical|Modern Composition', - ), - 1769 => array( - 'Id' => 1769, - 'Label' => 'Music Videos|Classical|Orchestral', - ), - 1770 => array( - 'Id' => 1770, - 'Label' => 'Music Videos|Classical|Renaissance', - ), - 1771 => array( - 'Id' => 1771, - 'Label' => 'Music Videos|Classical|Romantic', - ), - 1772 => array( - 'Id' => 1772, - 'Label' => 'Music Videos|Classical|Wedding Music', - ), - 1773 => array( - 'Id' => 1773, - 'Label' => 'Music Videos|Comedy|Novelty', - ), - 1774 => array( - 'Id' => 1774, - 'Label' => 'Music Videos|Comedy|Standup Comedy', - ), - 1775 => array( - 'Id' => 1775, - 'Label' => 'Music Videos|Country|Alternative Country', - ), - 1776 => array( - 'Id' => 1776, - 'Label' => 'Music Videos|Country|Americana', - ), - 1777 => array( - 'Id' => 1777, - 'Label' => 'Music Videos|Country|Bluegrass', - ), - 1778 => array( - 'Id' => 1778, - 'Label' => 'Music Videos|Country|Contemporary Bluegrass', - ), - 1779 => array( - 'Id' => 1779, - 'Label' => 'Music Videos|Country|Contemporary Country', - ), - 1780 => array( - 'Id' => 1780, - 'Label' => 'Music Videos|Country|Country Gospel', - ), - 1781 => array( - 'Id' => 1781, - 'Label' => 'Music Videos|Country|Honky Tonk', - ), - 1782 => array( - 'Id' => 1782, - 'Label' => 'Music Videos|Country|Outlaw Country', - ), - 1783 => array( - 'Id' => 1783, - 'Label' => 'Music Videos|Country|Traditional Bluegrass', - ), - 1784 => array( - 'Id' => 1784, - 'Label' => 'Music Videos|Country|Traditional Country', - ), - 1785 => array( - 'Id' => 1785, - 'Label' => 'Music Videos|Country|Urban Cowboy', - ), - 1786 => array( - 'Id' => 1786, - 'Label' => 'Music Videos|Dance|Breakbeat', - ), - 1787 => array( - 'Id' => 1787, - 'Label' => 'Music Videos|Dance|Exercise', - ), - 1788 => array( - 'Id' => 1788, - 'Label' => 'Music Videos|Dance|Garage', - ), - 1789 => array( - 'Id' => 1789, - 'Label' => 'Music Videos|Dance|Hardcore', - ), - 1790 => array( - 'Id' => 1790, - 'Label' => 'Music Videos|Dance|House', - ), - 1791 => array( - 'Id' => 1791, - 'Label' => 'Music Videos|Dance|Jungle/Drum\'n\'bass', - ), - 1792 => array( - 'Id' => 1792, - 'Label' => 'Music Videos|Dance|Techno', - ), - 1793 => array( - 'Id' => 1793, - 'Label' => 'Music Videos|Dance|Trance', - ), - 1794 => array( - 'Id' => 1794, - 'Label' => 'Music Videos|Easy Listening|Lounge', - ), - 1795 => array( - 'Id' => 1795, - 'Label' => 'Music Videos|Easy Listening|Swing', - ), - 1796 => array( - 'Id' => 1796, - 'Label' => 'Music Videos|Electronic|Ambient', - ), - 1797 => array( - 'Id' => 1797, - 'Label' => 'Music Videos|Electronic|Downtempo', - ), - 1798 => array( - 'Id' => 1798, - 'Label' => 'Music Videos|Electronic|Electronica', - ), - 1799 => array( - 'Id' => 1799, - 'Label' => 'Music Videos|Electronic|IDM/Experimental', - ), - 1800 => array( - 'Id' => 1800, - 'Label' => 'Music Videos|Electronic|Industrial', - ), - 1801 => array( - 'Id' => 1801, - 'Label' => 'Music Videos|Hip-Hop/Rap|Alternative Rap', - ), - 1802 => array( - 'Id' => 1802, - 'Label' => 'Music Videos|Hip-Hop/Rap|Dirty South', - ), - 1803 => array( - 'Id' => 1803, - 'Label' => 'Music Videos|Hip-Hop/Rap|East Coast Rap', - ), - 1804 => array( - 'Id' => 1804, - 'Label' => 'Music Videos|Hip-Hop/Rap|Gangsta Rap', - ), - 1805 => array( - 'Id' => 1805, - 'Label' => 'Music Videos|Hip-Hop/Rap|Hardcore Rap', - ), - 1806 => array( - 'Id' => 1806, - 'Label' => 'Music Videos|Hip-Hop/Rap|Hip-Hop', - ), - 1807 => array( - 'Id' => 1807, - 'Label' => 'Music Videos|Hip-Hop/Rap|Latin Rap', - ), - 1808 => array( - 'Id' => 1808, - 'Label' => 'Music Videos|Hip-Hop/Rap|Old School Rap', - ), - 1809 => array( - 'Id' => 1809, - 'Label' => 'Music Videos|Hip-Hop/Rap|Rap', - ), - 1810 => array( - 'Id' => 1810, - 'Label' => 'Music Videos|Hip-Hop/Rap|Underground Rap', - ), - 1811 => array( - 'Id' => 1811, - 'Label' => 'Music Videos|Hip-Hop/Rap|West Coast Rap', - ), - 1812 => array( - 'Id' => 1812, - 'Label' => 'Music Videos|Holiday|Chanukah', - ), - 1813 => array( - 'Id' => 1813, - 'Label' => 'Music Videos|Holiday|Christmas', - ), - 1814 => array( - 'Id' => 1814, - 'Label' => 'Music Videos|Holiday|Christmas: Children\'s', - ), - 1815 => array( - 'Id' => 1815, - 'Label' => 'Music Videos|Holiday|Christmas: Classic', - ), - 1816 => array( - 'Id' => 1816, - 'Label' => 'Music Videos|Holiday|Christmas: Classical', - ), - 1817 => array( - 'Id' => 1817, - 'Label' => 'Music Videos|Holiday|Christmas: Jazz', - ), - 1818 => array( - 'Id' => 1818, - 'Label' => 'Music Videos|Holiday|Christmas: Modern', - ), - 1819 => array( - 'Id' => 1819, - 'Label' => 'Music Videos|Holiday|Christmas: Pop', - ), - 1820 => array( - 'Id' => 1820, - 'Label' => 'Music Videos|Holiday|Christmas: R&B', - ), - 1821 => array( - 'Id' => 1821, - 'Label' => 'Music Videos|Holiday|Christmas: Religious', - ), - 1822 => array( - 'Id' => 1822, - 'Label' => 'Music Videos|Holiday|Christmas: Rock', - ), - 1823 => array( - 'Id' => 1823, - 'Label' => 'Music Videos|Holiday|Easter', - ), - 1824 => array( - 'Id' => 1824, - 'Label' => 'Music Videos|Holiday|Halloween', - ), - 1825 => array( - 'Id' => 1825, - 'Label' => 'Music Videos|Holiday|Thanksgiving', - ), - 1826 => array( - 'Id' => 1826, - 'Label' => 'Music Videos|Jazz|Avant-Garde Jazz', - ), - 1828 => array( - 'Id' => 1828, - 'Label' => 'Music Videos|Jazz|Bop', - ), - 1829 => array( - 'Id' => 1829, - 'Label' => 'Music Videos|Jazz|Contemporary Jazz', - ), - 1830 => array( - 'Id' => 1830, - 'Label' => 'Music Videos|Jazz|Cool', - ), - 1831 => array( - 'Id' => 1831, - 'Label' => 'Music Videos|Jazz|Crossover Jazz', - ), - 1832 => array( - 'Id' => 1832, - 'Label' => 'Music Videos|Jazz|Dixieland', - ), - 1833 => array( - 'Id' => 1833, - 'Label' => 'Music Videos|Jazz|Fusion', - ), - 1834 => array( - 'Id' => 1834, - 'Label' => 'Music Videos|Jazz|Hard Bop', - ), - 1835 => array( - 'Id' => 1835, - 'Label' => 'Music Videos|Jazz|Latin Jazz', - ), - 1836 => array( - 'Id' => 1836, - 'Label' => 'Music Videos|Jazz|Mainstream Jazz', - ), - 1837 => array( - 'Id' => 1837, - 'Label' => 'Music Videos|Jazz|Ragtime', - ), - 1838 => array( - 'Id' => 1838, - 'Label' => 'Music Videos|Jazz|Smooth Jazz', - ), - 1839 => array( - 'Id' => 1839, - 'Label' => 'Music Videos|Jazz|Trad Jazz', - ), - 1840 => array( - 'Id' => 1840, - 'Label' => 'Music Videos|Latin|Alternativo & Rock Latino', - ), - 1841 => array( - 'Id' => 1841, - 'Label' => 'Music Videos|Latin|Baladas y Boleros', - ), - 1842 => array( - 'Id' => 1842, - 'Label' => 'Music Videos|Latin|Contemporary Latin', - ), - 1843 => array( - 'Id' => 1843, - 'Label' => 'Music Videos|Latin|Latin Jazz', - ), - 1844 => array( - 'Id' => 1844, - 'Label' => 'Music Videos|Latin|Latin Urban', - ), - 1845 => array( - 'Id' => 1845, - 'Label' => 'Music Videos|Latin|Pop Latino', - ), - 1846 => array( - 'Id' => 1846, - 'Label' => 'Music Videos|Latin|Raices', - ), - 1847 => array( - 'Id' => 1847, - 'Label' => 'Music Videos|Latin|Regional Mexicano', - ), - 1848 => array( - 'Id' => 1848, - 'Label' => 'Music Videos|Latin|Salsa y Tropical', - ), - 1849 => array( - 'Id' => 1849, - 'Label' => 'Music Videos|New Age|Healing', - ), - 1850 => array( - 'Id' => 1850, - 'Label' => 'Music Videos|New Age|Meditation', - ), - 1851 => array( - 'Id' => 1851, - 'Label' => 'Music Videos|New Age|Nature', - ), - 1852 => array( - 'Id' => 1852, - 'Label' => 'Music Videos|New Age|Relaxation', - ), - 1853 => array( - 'Id' => 1853, - 'Label' => 'Music Videos|New Age|Travel', - ), - 1854 => array( - 'Id' => 1854, - 'Label' => 'Music Videos|Pop|Adult Contemporary', - ), - 1855 => array( - 'Id' => 1855, - 'Label' => 'Music Videos|Pop|Britpop', - ), - 1856 => array( - 'Id' => 1856, - 'Label' => 'Music Videos|Pop|Pop/Rock', - ), - 1857 => array( - 'Id' => 1857, - 'Label' => 'Music Videos|Pop|Soft Rock', - ), - 1858 => array( - 'Id' => 1858, - 'Label' => 'Music Videos|Pop|Teen Pop', - ), - 1859 => array( - 'Id' => 1859, - 'Label' => 'Music Videos|R&B/Soul|Contemporary R&B', - ), - 1860 => array( - 'Id' => 1860, - 'Label' => 'Music Videos|R&B/Soul|Disco', - ), - 1861 => array( - 'Id' => 1861, - 'Label' => 'Music Videos|R&B/Soul|Doo Wop', - ), - 1862 => array( - 'Id' => 1862, - 'Label' => 'Music Videos|R&B/Soul|Funk', - ), - 1863 => array( - 'Id' => 1863, - 'Label' => 'Music Videos|R&B/Soul|Motown', - ), - 1864 => array( - 'Id' => 1864, - 'Label' => 'Music Videos|R&B/Soul|Neo-Soul', - ), - 1865 => array( - 'Id' => 1865, - 'Label' => 'Music Videos|R&B/Soul|Soul', - ), - 1866 => array( - 'Id' => 1866, - 'Label' => 'Music Videos|Reggae|Dancehall', - ), - 1867 => array( - 'Id' => 1867, - 'Label' => 'Music Videos|Reggae|Dub', - ), - 1868 => array( - 'Id' => 1868, - 'Label' => 'Music Videos|Reggae|Roots Reggae', - ), - 1869 => array( - 'Id' => 1869, - 'Label' => 'Music Videos|Reggae|Ska', - ), - 1870 => array( - 'Id' => 1870, - 'Label' => 'Music Videos|Rock|Adult Alternative', - ), - 1871 => array( - 'Id' => 1871, - 'Label' => 'Music Videos|Rock|American Trad Rock', - ), - 1872 => array( - 'Id' => 1872, - 'Label' => 'Music Videos|Rock|Arena Rock', - ), - 1873 => array( - 'Id' => 1873, - 'Label' => 'Music Videos|Rock|Blues-Rock', - ), - 1874 => array( - 'Id' => 1874, - 'Label' => 'Music Videos|Rock|British Invasion', - ), - 1875 => array( - 'Id' => 1875, - 'Label' => 'Music Videos|Rock|Death Metal/Black Metal', - ), - 1876 => array( - 'Id' => 1876, - 'Label' => 'Music Videos|Rock|Glam Rock', - ), - 1877 => array( - 'Id' => 1877, - 'Label' => 'Music Videos|Rock|Hair Metal', - ), - 1878 => array( - 'Id' => 1878, - 'Label' => 'Music Videos|Rock|Hard Rock', - ), - 1879 => array( - 'Id' => 1879, - 'Label' => 'Music Videos|Rock|Jam Bands', - ), - 1880 => array( - 'Id' => 1880, - 'Label' => 'Music Videos|Rock|Prog-Rock/Art Rock', - ), - 1881 => array( - 'Id' => 1881, - 'Label' => 'Music Videos|Rock|Psychedelic', - ), - 1882 => array( - 'Id' => 1882, - 'Label' => 'Music Videos|Rock|Rock & Roll', - ), - 1883 => array( - 'Id' => 1883, - 'Label' => 'Music Videos|Rock|Rockabilly', - ), - 1884 => array( - 'Id' => 1884, - 'Label' => 'Music Videos|Rock|Roots Rock', - ), - 1885 => array( - 'Id' => 1885, - 'Label' => 'Music Videos|Rock|Singer/Songwriter', - ), - 1886 => array( - 'Id' => 1886, - 'Label' => 'Music Videos|Rock|Southern Rock', - ), - 1887 => array( - 'Id' => 1887, - 'Label' => 'Music Videos|Rock|Surf', - ), - 1888 => array( - 'Id' => 1888, - 'Label' => 'Music Videos|Rock|Tex-Mex', - ), - 1889 => array( - 'Id' => 1889, - 'Label' => 'Music Videos|Singer/Songwriter|Alternative Folk', - ), - 1890 => array( - 'Id' => 1890, - 'Label' => 'Music Videos|Singer/Songwriter|Contemporary Folk', - ), - 1891 => array( - 'Id' => 1891, - 'Label' => 'Music Videos|Singer/Songwriter|Contemporary Singer/Songwriter', - ), - 1892 => array( - 'Id' => 1892, - 'Label' => 'Music Videos|Singer/Songwriter|Folk-Rock', - ), - 1893 => array( - 'Id' => 1893, - 'Label' => 'Music Videos|Singer/Songwriter|New Acoustic', - ), - 1894 => array( - 'Id' => 1894, - 'Label' => 'Music Videos|Singer/Songwriter|Traditional Folk', - ), - 1895 => array( - 'Id' => 1895, - 'Label' => 'Music Videos|Soundtrack|Foreign Cinema', - ), - 1896 => array( - 'Id' => 1896, - 'Label' => 'Music Videos|Soundtrack|Musicals', - ), - 1897 => array( - 'Id' => 1897, - 'Label' => 'Music Videos|Soundtrack|Original Score', - ), - 1898 => array( - 'Id' => 1898, - 'Label' => 'Music Videos|Soundtrack|Soundtrack', - ), - 1899 => array( - 'Id' => 1899, - 'Label' => 'Music Videos|Soundtrack|TV Soundtrack', - ), - 1900 => array( - 'Id' => 1900, - 'Label' => 'Music Videos|Vocal|Standards', - ), - 1901 => array( - 'Id' => 1901, - 'Label' => 'Music Videos|Vocal|Traditional Pop', - ), - 1902 => array( - 'Id' => 1902, - 'Label' => 'Music Videos|Jazz|Vocal Jazz', - ), - 1903 => array( - 'Id' => 1903, - 'Label' => 'Music Videos|Vocal|Vocal Pop', - ), - 1904 => array( - 'Id' => 1904, - 'Label' => 'Music Videos|World|Africa', - ), - 1905 => array( - 'Id' => 1905, - 'Label' => 'Music Videos|World|Afro-Beat', - ), - 1906 => array( - 'Id' => 1906, - 'Label' => 'Music Videos|World|Afro-Pop', - ), - 1907 => array( - 'Id' => 1907, - 'Label' => 'Music Videos|World|Asia', - ), - 1908 => array( - 'Id' => 1908, - 'Label' => 'Music Videos|World|Australia', - ), - 1909 => array( - 'Id' => 1909, - 'Label' => 'Music Videos|World|Cajun', - ), - 1910 => array( - 'Id' => 1910, - 'Label' => 'Music Videos|World|Caribbean', - ), - 1911 => array( - 'Id' => 1911, - 'Label' => 'Music Videos|World|Celtic', - ), - 1912 => array( - 'Id' => 1912, - 'Label' => 'Music Videos|World|Celtic Folk', - ), - 1913 => array( - 'Id' => 1913, - 'Label' => 'Music Videos|World|Contemporary Celtic', - ), - 1914 => array( - 'Id' => 1914, - 'Label' => 'Music Videos|World|Europe', - ), - 1915 => array( - 'Id' => 1915, - 'Label' => 'Music Videos|World|France', - ), - 1916 => array( - 'Id' => 1916, - 'Label' => 'Music Videos|World|Hawaii', - ), - 1917 => array( - 'Id' => 1917, - 'Label' => 'Music Videos|World|Japan', - ), - 1918 => array( - 'Id' => 1918, - 'Label' => 'Music Videos|World|Klezmer', - ), - 1919 => array( - 'Id' => 1919, - 'Label' => 'Music Videos|World|North America', - ), - 1920 => array( - 'Id' => 1920, - 'Label' => 'Music Videos|World|Polka', - ), - 1921 => array( - 'Id' => 1921, - 'Label' => 'Music Videos|World|South Africa', - ), - 1922 => array( - 'Id' => 1922, - 'Label' => 'Music Videos|World|South America', - ), - 1923 => array( - 'Id' => 1923, - 'Label' => 'Music Videos|World|Traditional Celtic', - ), - 1924 => array( - 'Id' => 1924, - 'Label' => 'Music Videos|World|Worldbeat', - ), - 1925 => array( - 'Id' => 1925, - 'Label' => 'Music Videos|World|Zydeco', - ), - 1926 => array( - 'Id' => 1926, - 'Label' => 'Music Videos|Christian & Gospel', - ), - 4000 => array( - 'Id' => 4000, - 'Label' => 'TV Shows|Comedy', - ), - 4001 => array( - 'Id' => 4001, - 'Label' => 'TV Shows|Drama', - ), - 4002 => array( - 'Id' => 4002, - 'Label' => 'TV Shows|Animation', - ), - 4003 => array( - 'Id' => 4003, - 'Label' => 'TV Shows|Action & Adventure', - ), - 4004 => array( - 'Id' => 4004, - 'Label' => 'TV Shows|Classic', - ), - 4005 => array( - 'Id' => 4005, - 'Label' => 'TV Shows|Kids', - ), - 4006 => array( - 'Id' => 4006, - 'Label' => 'TV Shows|Nonfiction', - ), - 4007 => array( - 'Id' => 4007, - 'Label' => 'TV Shows|Reality TV', - ), - 4008 => array( - 'Id' => 4008, - 'Label' => 'TV Shows|Sci-Fi & Fantasy', - ), - 4009 => array( - 'Id' => 4009, - 'Label' => 'TV Shows|Sports', - ), - 4010 => array( - 'Id' => 4010, - 'Label' => 'TV Shows|Teens', - ), - 4011 => array( - 'Id' => 4011, - 'Label' => 'TV Shows|Latino TV', - ), - 4401 => array( - 'Id' => 4401, - 'Label' => 'Movies|Action & Adventure', - ), - 4402 => array( - 'Id' => 4402, - 'Label' => 'Movies|Anime', - ), - 4403 => array( - 'Id' => 4403, - 'Label' => 'Movies|Classics', - ), - 4404 => array( - 'Id' => 4404, - 'Label' => 'Movies|Comedy', - ), - 4405 => array( - 'Id' => 4405, - 'Label' => 'Movies|Documentary', - ), - 4406 => array( - 'Id' => 4406, - 'Label' => 'Movies|Drama', - ), - 4407 => array( - 'Id' => 4407, - 'Label' => 'Movies|Foreign', - ), - 4408 => array( - 'Id' => 4408, - 'Label' => 'Movies|Horror', - ), - 4409 => array( - 'Id' => 4409, - 'Label' => 'Movies|Independent', - ), - 4410 => array( - 'Id' => 4410, - 'Label' => 'Movies|Kids & Family', - ), - 4411 => array( - 'Id' => 4411, - 'Label' => 'Movies|Musicals', - ), - 4412 => array( - 'Id' => 4412, - 'Label' => 'Movies|Romance', - ), - 4413 => array( - 'Id' => 4413, - 'Label' => 'Movies|Sci-Fi & Fantasy', - ), - 4414 => array( - 'Id' => 4414, - 'Label' => 'Movies|Short Films', - ), - 4415 => array( - 'Id' => 4415, - 'Label' => 'Movies|Special Interest', - ), - 4416 => array( - 'Id' => 4416, - 'Label' => 'Movies|Thriller', - ), - 4417 => array( - 'Id' => 4417, - 'Label' => 'Movies|Sports', - ), - 4418 => array( - 'Id' => 4418, - 'Label' => 'Movies|Western', - ), - 4419 => array( - 'Id' => 4419, - 'Label' => 'Movies|Urban', - ), - 4420 => array( - 'Id' => 4420, - 'Label' => 'Movies|Holiday', - ), - 4421 => array( - 'Id' => 4421, - 'Label' => 'Movies|Made for TV', - ), - 4422 => array( - 'Id' => 4422, - 'Label' => 'Movies|Concert Films', - ), - 4423 => array( - 'Id' => 4423, - 'Label' => 'Movies|Music Documentaries', - ), - 4424 => array( - 'Id' => 4424, - 'Label' => 'Movies|Music Feature Films', - ), - 4425 => array( - 'Id' => 4425, - 'Label' => 'Movies|Japanese Cinema', - ), - 4426 => array( - 'Id' => 4426, - 'Label' => 'Movies|Jidaigeki', - ), - 4427 => array( - 'Id' => 4427, - 'Label' => 'Movies|Tokusatsu', - ), - 4428 => array( - 'Id' => 4428, - 'Label' => 'Movies|Korean Cinema', - ), - 4429 => array( - 'Id' => 4429, - 'Label' => 'Movies|Russian', - ), - 4430 => array( - 'Id' => 4430, - 'Label' => 'Movies|Turkish', - ), - 4431 => array( - 'Id' => 4431, - 'Label' => 'Movies|Bollywood', - ), - 4432 => array( - 'Id' => 4432, - 'Label' => 'Movies|Regional Indian', - ), - 4433 => array( - 'Id' => 4433, - 'Label' => 'Movies|MiddleEastern', - ), - 4434 => array( - 'Id' => 4434, - 'Label' => 'Movies|African', - ), - 6000 => array( - 'Id' => 6000, - 'Label' => 'App Store|Business', - ), - 6001 => array( - 'Id' => 6001, - 'Label' => 'App Store|Weather', - ), - 6002 => array( - 'Id' => 6002, - 'Label' => 'App Store|Utilities', - ), - 6003 => array( - 'Id' => 6003, - 'Label' => 'App Store|Travel', - ), - 6004 => array( - 'Id' => 6004, - 'Label' => 'App Store|Sports', - ), - 6005 => array( - 'Id' => 6005, - 'Label' => 'App Store|Social Networking', - ), - 6006 => array( - 'Id' => 6006, - 'Label' => 'App Store|Reference', - ), - 6007 => array( - 'Id' => 6007, - 'Label' => 'App Store|Productivity', - ), - 6008 => array( - 'Id' => 6008, - 'Label' => 'App Store|Photo & Video', - ), - 6009 => array( - 'Id' => 6009, - 'Label' => 'App Store|News', - ), - 6010 => array( - 'Id' => 6010, - 'Label' => 'App Store|Navigation', - ), - 6011 => array( - 'Id' => 6011, - 'Label' => 'App Store|Music', - ), - 6012 => array( - 'Id' => 6012, - 'Label' => 'App Store|Lifestyle', - ), - 6013 => array( - 'Id' => 6013, - 'Label' => 'App Store|Health & Fitness', - ), - 6014 => array( - 'Id' => 6014, - 'Label' => 'App Store|Games', - ), - 6015 => array( - 'Id' => 6015, - 'Label' => 'App Store|Finance', - ), - 6016 => array( - 'Id' => 6016, - 'Label' => 'App Store|Entertainment', - ), - 6017 => array( - 'Id' => 6017, - 'Label' => 'App Store|Education', - ), - 6018 => array( - 'Id' => 6018, - 'Label' => 'App Store|Books', - ), - 6020 => array( - 'Id' => 6020, - 'Label' => 'App Store|Medical', - ), - 6021 => array( - 'Id' => 6021, - 'Label' => 'App Store|Newsstand', - ), - 6022 => array( - 'Id' => 6022, - 'Label' => 'App Store|Catalogs', - ), - 6023 => array( - 'Id' => 6023, - 'Label' => 'App Store|Food & Drink', - ), - 7001 => array( - 'Id' => 7001, - 'Label' => 'App Store|Games|Action', - ), - 7002 => array( - 'Id' => 7002, - 'Label' => 'App Store|Games|Adventure', - ), - 7003 => array( - 'Id' => 7003, - 'Label' => 'App Store|Games|Arcade', - ), - 7004 => array( - 'Id' => 7004, - 'Label' => 'App Store|Games|Board', - ), - 7005 => array( - 'Id' => 7005, - 'Label' => 'App Store|Games|Card', - ), - 7006 => array( - 'Id' => 7006, - 'Label' => 'App Store|Games|Casino', - ), - 7007 => array( - 'Id' => 7007, - 'Label' => 'App Store|Games|Dice', - ), - 7008 => array( - 'Id' => 7008, - 'Label' => 'App Store|Games|Educational', - ), - 7009 => array( - 'Id' => 7009, - 'Label' => 'App Store|Games|Family', - ), - 7011 => array( - 'Id' => 7011, - 'Label' => 'App Store|Games|Music', - ), - 7012 => array( - 'Id' => 7012, - 'Label' => 'App Store|Games|Puzzle', - ), - 7013 => array( - 'Id' => 7013, - 'Label' => 'App Store|Games|Racing', - ), - 7014 => array( - 'Id' => 7014, - 'Label' => 'App Store|Games|Role Playing', - ), - 7015 => array( - 'Id' => 7015, - 'Label' => 'App Store|Games|Simulation', - ), - 7016 => array( - 'Id' => 7016, - 'Label' => 'App Store|Games|Sports', - ), - 7017 => array( - 'Id' => 7017, - 'Label' => 'App Store|Games|Strategy', - ), - 7018 => array( - 'Id' => 7018, - 'Label' => 'App Store|Games|Trivia', - ), - 7019 => array( - 'Id' => 7019, - 'Label' => 'App Store|Games|Word', - ), - 8001 => array( - 'Id' => 8001, - 'Label' => 'Tones|Ringtones|Alternative', - ), - 8002 => array( - 'Id' => 8002, - 'Label' => 'Tones|Ringtones|Blues', - ), - 8003 => array( - 'Id' => 8003, - 'Label' => 'Tones|Ringtones|Children\'s Music', - ), - 8004 => array( - 'Id' => 8004, - 'Label' => 'Tones|Ringtones|Classical', - ), - 8005 => array( - 'Id' => 8005, - 'Label' => 'Tones|Ringtones|Comedy', - ), - 8006 => array( - 'Id' => 8006, - 'Label' => 'Tones|Ringtones|Country', - ), - 8007 => array( - 'Id' => 8007, - 'Label' => 'Tones|Ringtones|Dance', - ), - 8008 => array( - 'Id' => 8008, - 'Label' => 'Tones|Ringtones|Electronic', - ), - 8009 => array( - 'Id' => 8009, - 'Label' => 'Tones|Ringtones|Enka', - ), - 8010 => array( - 'Id' => 8010, - 'Label' => 'Tones|Ringtones|French Pop', - ), - 8011 => array( - 'Id' => 8011, - 'Label' => 'Tones|Ringtones|German Folk', - ), - 8012 => array( - 'Id' => 8012, - 'Label' => 'Tones|Ringtones|German Pop', - ), - 8013 => array( - 'Id' => 8013, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap', - ), - 8014 => array( - 'Id' => 8014, - 'Label' => 'Tones|Ringtones|Holiday', - ), - 8015 => array( - 'Id' => 8015, - 'Label' => 'Tones|Ringtones|Inspirational', - ), - 8016 => array( - 'Id' => 8016, - 'Label' => 'Tones|Ringtones|J-Pop', - ), - 8017 => array( - 'Id' => 8017, - 'Label' => 'Tones|Ringtones|Jazz', - ), - 8018 => array( - 'Id' => 8018, - 'Label' => 'Tones|Ringtones|Kayokyoku', - ), - 8019 => array( - 'Id' => 8019, - 'Label' => 'Tones|Ringtones|Latin', - ), - 8020 => array( - 'Id' => 8020, - 'Label' => 'Tones|Ringtones|New Age', - ), - 8021 => array( - 'Id' => 8021, - 'Label' => 'Tones|Ringtones|Opera', - ), - 8022 => array( - 'Id' => 8022, - 'Label' => 'Tones|Ringtones|Pop', - ), - 8023 => array( - 'Id' => 8023, - 'Label' => 'Tones|Ringtones|R&B/Soul', - ), - 8024 => array( - 'Id' => 8024, - 'Label' => 'Tones|Ringtones|Reggae', - ), - 8025 => array( - 'Id' => 8025, - 'Label' => 'Tones|Ringtones|Rock', - ), - 8026 => array( - 'Id' => 8026, - 'Label' => 'Tones|Ringtones|Singer/Songwriter', - ), - 8027 => array( - 'Id' => 8027, - 'Label' => 'Tones|Ringtones|Soundtrack', - ), - 8028 => array( - 'Id' => 8028, - 'Label' => 'Tones|Ringtones|Spoken Word', - ), - 8029 => array( - 'Id' => 8029, - 'Label' => 'Tones|Ringtones|Vocal', - ), - 8030 => array( - 'Id' => 8030, - 'Label' => 'Tones|Ringtones|World', - ), - 8050 => array( - 'Id' => 8050, - 'Label' => 'Tones|Alert Tones|Sound Effects', - ), - 8051 => array( - 'Id' => 8051, - 'Label' => 'Tones|Alert Tones|Dialogue', - ), - 8052 => array( - 'Id' => 8052, - 'Label' => 'Tones|Alert Tones|Music', - ), - 8053 => array( - 'Id' => 8053, - 'Label' => 'Tones|Ringtones', - ), - 8054 => array( - 'Id' => 8054, - 'Label' => 'Tones|Alert Tones', - ), - 8055 => array( - 'Id' => 8055, - 'Label' => 'Tones|Ringtones|Alternative|Chinese Alt', - ), - 8056 => array( - 'Id' => 8056, - 'Label' => 'Tones|Ringtones|Alternative|College Rock', - ), - 8057 => array( - 'Id' => 8057, - 'Label' => 'Tones|Ringtones|Alternative|Goth Rock', - ), - 8058 => array( - 'Id' => 8058, - 'Label' => 'Tones|Ringtones|Alternative|Grunge', - ), - 8059 => array( - 'Id' => 8059, - 'Label' => 'Tones|Ringtones|Alternative|Indie Rock', - ), - 8060 => array( - 'Id' => 8060, - 'Label' => 'Tones|Ringtones|Alternative|Korean Indie', - ), - 8061 => array( - 'Id' => 8061, - 'Label' => 'Tones|Ringtones|Alternative|New Wave', - ), - 8062 => array( - 'Id' => 8062, - 'Label' => 'Tones|Ringtones|Alternative|Punk', - ), - 8063 => array( - 'Id' => 8063, - 'Label' => 'Tones|Ringtones|Anime', - ), - 8064 => array( - 'Id' => 8064, - 'Label' => 'Tones|Ringtones|Arabic', - ), - 8065 => array( - 'Id' => 8065, - 'Label' => 'Tones|Ringtones|Arabic|Arabic Pop', - ), - 8066 => array( - 'Id' => 8066, - 'Label' => 'Tones|Ringtones|Arabic|Islamic', - ), - 8067 => array( - 'Id' => 8067, - 'Label' => 'Tones|Ringtones|Arabic|Khaleeji', - ), - 8068 => array( - 'Id' => 8068, - 'Label' => 'Tones|Ringtones|Arabic|North African', - ), - 8069 => array( - 'Id' => 8069, - 'Label' => 'Tones|Ringtones|Blues|Acoustic Blues', - ), - 8070 => array( - 'Id' => 8070, - 'Label' => 'Tones|Ringtones|Blues|Chicago Blues', - ), - 8071 => array( - 'Id' => 8071, - 'Label' => 'Tones|Ringtones|Blues|Classic Blues', - ), - 8072 => array( - 'Id' => 8072, - 'Label' => 'Tones|Ringtones|Blues|Contemporary Blues', - ), - 8073 => array( - 'Id' => 8073, - 'Label' => 'Tones|Ringtones|Blues|Country Blues', - ), - 8074 => array( - 'Id' => 8074, - 'Label' => 'Tones|Ringtones|Blues|Delta Blues', - ), - 8075 => array( - 'Id' => 8075, - 'Label' => 'Tones|Ringtones|Blues|Electric Blues', - ), - 8076 => array( - 'Id' => 8076, - 'Label' => 'Tones|Ringtones|Brazilian', - ), - 8077 => array( - 'Id' => 8077, - 'Label' => 'Tones|Ringtones|Brazilian|Axe', - ), - 8078 => array( - 'Id' => 8078, - 'Label' => 'Tones|Ringtones|Brazilian|Baile Funk', - ), - 8079 => array( - 'Id' => 8079, - 'Label' => 'Tones|Ringtones|Brazilian|Bossa Nova', - ), - 8080 => array( - 'Id' => 8080, - 'Label' => 'Tones|Ringtones|Brazilian|Choro', - ), - 8081 => array( - 'Id' => 8081, - 'Label' => 'Tones|Ringtones|Brazilian|Forro', - ), - 8082 => array( - 'Id' => 8082, - 'Label' => 'Tones|Ringtones|Brazilian|Frevo', - ), - 8083 => array( - 'Id' => 8083, - 'Label' => 'Tones|Ringtones|Brazilian|MPB', - ), - 8084 => array( - 'Id' => 8084, - 'Label' => 'Tones|Ringtones|Brazilian|Pagode', - ), - 8085 => array( - 'Id' => 8085, - 'Label' => 'Tones|Ringtones|Brazilian|Samba', - ), - 8086 => array( - 'Id' => 8086, - 'Label' => 'Tones|Ringtones|Brazilian|Sertanejo', - ), - 8087 => array( - 'Id' => 8087, - 'Label' => 'Tones|Ringtones|Children\'s Music|Lullabies', - ), - 8088 => array( - 'Id' => 8088, - 'Label' => 'Tones|Ringtones|Children\'s Music|Sing-Along', - ), - 8089 => array( - 'Id' => 8089, - 'Label' => 'Tones|Ringtones|Children\'s Music|Stories', - ), - 8090 => array( - 'Id' => 8090, - 'Label' => 'Tones|Ringtones|Chinese', - ), - 8091 => array( - 'Id' => 8091, - 'Label' => 'Tones|Ringtones|Chinese|Chinese Classical', - ), - 8092 => array( - 'Id' => 8092, - 'Label' => 'Tones|Ringtones|Chinese|Chinese Flute', - ), - 8093 => array( - 'Id' => 8093, - 'Label' => 'Tones|Ringtones|Chinese|Chinese Opera', - ), - 8094 => array( - 'Id' => 8094, - 'Label' => 'Tones|Ringtones|Chinese|Chinese Orchestral', - ), - 8095 => array( - 'Id' => 8095, - 'Label' => 'Tones|Ringtones|Chinese|Chinese Regional Folk', - ), - 8096 => array( - 'Id' => 8096, - 'Label' => 'Tones|Ringtones|Chinese|Chinese Strings', - ), - 8097 => array( - 'Id' => 8097, - 'Label' => 'Tones|Ringtones|Chinese|Taiwanese Folk', - ), - 8098 => array( - 'Id' => 8098, - 'Label' => 'Tones|Ringtones|Chinese|Tibetan Native Music', - ), - 8099 => array( - 'Id' => 8099, - 'Label' => 'Tones|Ringtones|Christian & Gospel', - ), - 8100 => array( - 'Id' => 8100, - 'Label' => 'Tones|Ringtones|Christian & Gospel|CCM', - ), - 8101 => array( - 'Id' => 8101, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Christian Metal', - ), - 8102 => array( - 'Id' => 8102, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Christian Pop', - ), - 8103 => array( - 'Id' => 8103, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Christian Rap', - ), - 8104 => array( - 'Id' => 8104, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Christian Rock', - ), - 8105 => array( - 'Id' => 8105, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Classic Christian', - ), - 8106 => array( - 'Id' => 8106, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Contemporary Gospel', - ), - 8107 => array( - 'Id' => 8107, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Gospel', - ), - 8108 => array( - 'Id' => 8108, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Praise & Worship', - ), - 8109 => array( - 'Id' => 8109, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Southern Gospel', - ), - 8110 => array( - 'Id' => 8110, - 'Label' => 'Tones|Ringtones|Christian & Gospel|Traditional Gospel', - ), - 8111 => array( - 'Id' => 8111, - 'Label' => 'Tones|Ringtones|Classical|Avant-Garde', - ), - 8112 => array( - 'Id' => 8112, - 'Label' => 'Tones|Ringtones|Classical|Baroque', - ), - 8113 => array( - 'Id' => 8113, - 'Label' => 'Tones|Ringtones|Classical|Chamber Music', - ), - 8114 => array( - 'Id' => 8114, - 'Label' => 'Tones|Ringtones|Classical|Chant', - ), - 8115 => array( - 'Id' => 8115, - 'Label' => 'Tones|Ringtones|Classical|Choral', - ), - 8116 => array( - 'Id' => 8116, - 'Label' => 'Tones|Ringtones|Classical|Classical Crossover', - ), - 8117 => array( - 'Id' => 8117, - 'Label' => 'Tones|Ringtones|Classical|Early Music', - ), - 8118 => array( - 'Id' => 8118, - 'Label' => 'Tones|Ringtones|Classical|High Classical', - ), - 8119 => array( - 'Id' => 8119, - 'Label' => 'Tones|Ringtones|Classical|Impressionist', - ), - 8120 => array( - 'Id' => 8120, - 'Label' => 'Tones|Ringtones|Classical|Medieval', - ), - 8121 => array( - 'Id' => 8121, - 'Label' => 'Tones|Ringtones|Classical|Minimalism', - ), - 8122 => array( - 'Id' => 8122, - 'Label' => 'Tones|Ringtones|Classical|Modern Composition', - ), - 8123 => array( - 'Id' => 8123, - 'Label' => 'Tones|Ringtones|Classical|Orchestral', - ), - 8124 => array( - 'Id' => 8124, - 'Label' => 'Tones|Ringtones|Classical|Renaissance', - ), - 8125 => array( - 'Id' => 8125, - 'Label' => 'Tones|Ringtones|Classical|Romantic', - ), - 8126 => array( - 'Id' => 8126, - 'Label' => 'Tones|Ringtones|Classical|Wedding Music', - ), - 8127 => array( - 'Id' => 8127, - 'Label' => 'Tones|Ringtones|Comedy|Novelty', - ), - 8128 => array( - 'Id' => 8128, - 'Label' => 'Tones|Ringtones|Comedy|Standup Comedy', - ), - 8129 => array( - 'Id' => 8129, - 'Label' => 'Tones|Ringtones|Country|Alternative Country', - ), - 8130 => array( - 'Id' => 8130, - 'Label' => 'Tones|Ringtones|Country|Americana', - ), - 8131 => array( - 'Id' => 8131, - 'Label' => 'Tones|Ringtones|Country|Bluegrass', - ), - 8132 => array( - 'Id' => 8132, - 'Label' => 'Tones|Ringtones|Country|Contemporary Bluegrass', - ), - 8133 => array( - 'Id' => 8133, - 'Label' => 'Tones|Ringtones|Country|Contemporary Country', - ), - 8134 => array( - 'Id' => 8134, - 'Label' => 'Tones|Ringtones|Country|Country Gospel', - ), - 8135 => array( - 'Id' => 8135, - 'Label' => 'Tones|Ringtones|Country|Honky Tonk', - ), - 8136 => array( - 'Id' => 8136, - 'Label' => 'Tones|Ringtones|Country|Outlaw Country', - ), - 8137 => array( - 'Id' => 8137, - 'Label' => 'Tones|Ringtones|Country|Thai Country', - ), - 8138 => array( - 'Id' => 8138, - 'Label' => 'Tones|Ringtones|Country|Traditional Bluegrass', - ), - 8139 => array( - 'Id' => 8139, - 'Label' => 'Tones|Ringtones|Country|Traditional Country', - ), - 8140 => array( - 'Id' => 8140, - 'Label' => 'Tones|Ringtones|Country|Urban Cowboy', - ), - 8141 => array( - 'Id' => 8141, - 'Label' => 'Tones|Ringtones|Dance|Breakbeat', - ), - 8142 => array( - 'Id' => 8142, - 'Label' => 'Tones|Ringtones|Dance|Exercise', - ), - 8143 => array( - 'Id' => 8143, - 'Label' => 'Tones|Ringtones|Dance|Garage', - ), - 8144 => array( - 'Id' => 8144, - 'Label' => 'Tones|Ringtones|Dance|Hardcore', - ), - 8145 => array( - 'Id' => 8145, - 'Label' => 'Tones|Ringtones|Dance|House', - ), - 8146 => array( - 'Id' => 8146, - 'Label' => 'Tones|Ringtones|Dance|Jungle/Drum\'n\'bass', - ), - 8147 => array( - 'Id' => 8147, - 'Label' => 'Tones|Ringtones|Dance|Techno', - ), - 8148 => array( - 'Id' => 8148, - 'Label' => 'Tones|Ringtones|Dance|Trance', - ), - 8149 => array( - 'Id' => 8149, - 'Label' => 'Tones|Ringtones|Disney', - ), - 8150 => array( - 'Id' => 8150, - 'Label' => 'Tones|Ringtones|Easy Listening', - ), - 8151 => array( - 'Id' => 8151, - 'Label' => 'Tones|Ringtones|Easy Listening|Lounge', - ), - 8152 => array( - 'Id' => 8152, - 'Label' => 'Tones|Ringtones|Easy Listening|Swing', - ), - 8153 => array( - 'Id' => 8153, - 'Label' => 'Tones|Ringtones|Electronic|Ambient', - ), - 8154 => array( - 'Id' => 8154, - 'Label' => 'Tones|Ringtones|Electronic|Downtempo', - ), - 8155 => array( - 'Id' => 8155, - 'Label' => 'Tones|Ringtones|Electronic|Electronica', - ), - 8156 => array( - 'Id' => 8156, - 'Label' => 'Tones|Ringtones|Electronic|IDM/Experimental', - ), - 8157 => array( - 'Id' => 8157, - 'Label' => 'Tones|Ringtones|Electronic|Industrial', - ), - 8158 => array( - 'Id' => 8158, - 'Label' => 'Tones|Ringtones|Fitness & Workout', - ), - 8159 => array( - 'Id' => 8159, - 'Label' => 'Tones|Ringtones|Folk', - ), - 8160 => array( - 'Id' => 8160, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Alternative Rap', - ), - 8161 => array( - 'Id' => 8161, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Chinese Hip-Hop', - ), - 8162 => array( - 'Id' => 8162, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Dirty South', - ), - 8163 => array( - 'Id' => 8163, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|East Coast Rap', - ), - 8164 => array( - 'Id' => 8164, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Gangsta Rap', - ), - 8165 => array( - 'Id' => 8165, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Hardcore Rap', - ), - 8166 => array( - 'Id' => 8166, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Hip-Hop', - ), - 8167 => array( - 'Id' => 8167, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Korean Hip-Hop', - ), - 8168 => array( - 'Id' => 8168, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Latin Rap', - ), - 8169 => array( - 'Id' => 8169, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Old School Rap', - ), - 8170 => array( - 'Id' => 8170, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Rap', - ), - 8171 => array( - 'Id' => 8171, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|Underground Rap', - ), - 8172 => array( - 'Id' => 8172, - 'Label' => 'Tones|Ringtones|Hip-Hop/Rap|West Coast Rap', - ), - 8173 => array( - 'Id' => 8173, - 'Label' => 'Tones|Ringtones|Holiday|Chanukah', - ), - 8174 => array( - 'Id' => 8174, - 'Label' => 'Tones|Ringtones|Holiday|Christmas', - ), - 8175 => array( - 'Id' => 8175, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Children\'s', - ), - 8176 => array( - 'Id' => 8176, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Classic', - ), - 8177 => array( - 'Id' => 8177, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Classical', - ), - 8178 => array( - 'Id' => 8178, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Jazz', - ), - 8179 => array( - 'Id' => 8179, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Modern', - ), - 8180 => array( - 'Id' => 8180, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Pop', - ), - 8181 => array( - 'Id' => 8181, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: R&B', - ), - 8182 => array( - 'Id' => 8182, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Religious', - ), - 8183 => array( - 'Id' => 8183, - 'Label' => 'Tones|Ringtones|Holiday|Christmas: Rock', - ), - 8184 => array( - 'Id' => 8184, - 'Label' => 'Tones|Ringtones|Holiday|Easter', - ), - 8185 => array( - 'Id' => 8185, - 'Label' => 'Tones|Ringtones|Holiday|Halloween', - ), - 8186 => array( - 'Id' => 8186, - 'Label' => 'Tones|Ringtones|Holiday|Thanksgiving', - ), - 8187 => array( - 'Id' => 8187, - 'Label' => 'Tones|Ringtones|Indian', - ), - 8188 => array( - 'Id' => 8188, - 'Label' => 'Tones|Ringtones|Indian|Bollywood', - ), - 8189 => array( - 'Id' => 8189, - 'Label' => 'Tones|Ringtones|Indian|Devotional & Spiritual', - ), - 8190 => array( - 'Id' => 8190, - 'Label' => 'Tones|Ringtones|Indian|Ghazals', - ), - 8191 => array( - 'Id' => 8191, - 'Label' => 'Tones|Ringtones|Indian|Indian Classical', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'Tones|Ringtones|Indian|Indian Folk', - ), - 8193 => array( - 'Id' => 8193, - 'Label' => 'Tones|Ringtones|Indian|Indian Pop', - ), - 8194 => array( - 'Id' => 8194, - 'Label' => 'Tones|Ringtones|Indian|Regional Indian', - ), - 8195 => array( - 'Id' => 8195, - 'Label' => 'Tones|Ringtones|Indian|Sufi', - ), - 8196 => array( - 'Id' => 8196, - 'Label' => 'Tones|Ringtones|Indian|Tamil', - ), - 8197 => array( - 'Id' => 8197, - 'Label' => 'Tones|Ringtones|Indian|Telugu', - ), - 8198 => array( - 'Id' => 8198, - 'Label' => 'Tones|Ringtones|Instrumental', - ), - 8199 => array( - 'Id' => 8199, - 'Label' => 'Tones|Ringtones|Jazz|Avant-Garde Jazz', - ), - 8201 => array( - 'Id' => 8201, - 'Label' => 'Tones|Ringtones|Jazz|Big Band', - ), - 8202 => array( - 'Id' => 8202, - 'Label' => 'Tones|Ringtones|Jazz|Bop', - ), - 8203 => array( - 'Id' => 8203, - 'Label' => 'Tones|Ringtones|Jazz|Contemporary Jazz', - ), - 8204 => array( - 'Id' => 8204, - 'Label' => 'Tones|Ringtones|Jazz|Cool', - ), - 8205 => array( - 'Id' => 8205, - 'Label' => 'Tones|Ringtones|Jazz|Crossover Jazz', - ), - 8206 => array( - 'Id' => 8206, - 'Label' => 'Tones|Ringtones|Jazz|Dixieland', - ), - 8207 => array( - 'Id' => 8207, - 'Label' => 'Tones|Ringtones|Jazz|Fusion', - ), - 8208 => array( - 'Id' => 8208, - 'Label' => 'Tones|Ringtones|Jazz|Hard Bop', - ), - 8209 => array( - 'Id' => 8209, - 'Label' => 'Tones|Ringtones|Jazz|Latin Jazz', - ), - 8210 => array( - 'Id' => 8210, - 'Label' => 'Tones|Ringtones|Jazz|Mainstream Jazz', - ), - 8211 => array( - 'Id' => 8211, - 'Label' => 'Tones|Ringtones|Jazz|Ragtime', - ), - 8212 => array( - 'Id' => 8212, - 'Label' => 'Tones|Ringtones|Jazz|Smooth Jazz', - ), - 8213 => array( - 'Id' => 8213, - 'Label' => 'Tones|Ringtones|Jazz|Trad Jazz', - ), - 8214 => array( - 'Id' => 8214, - 'Label' => 'Tones|Ringtones|K-Pop', - ), - 8215 => array( - 'Id' => 8215, - 'Label' => 'Tones|Ringtones|Karaoke', - ), - 8216 => array( - 'Id' => 8216, - 'Label' => 'Tones|Ringtones|Korean', - ), - 8217 => array( - 'Id' => 8217, - 'Label' => 'Tones|Ringtones|Korean|Korean Classical', - ), - 8218 => array( - 'Id' => 8218, - 'Label' => 'Tones|Ringtones|Korean|Korean Trad Instrumental', - ), - 8219 => array( - 'Id' => 8219, - 'Label' => 'Tones|Ringtones|Korean|Korean Trad Song', - ), - 8220 => array( - 'Id' => 8220, - 'Label' => 'Tones|Ringtones|Korean|Korean Trad Theater', - ), - 8221 => array( - 'Id' => 8221, - 'Label' => 'Tones|Ringtones|Latin|Alternativo & Rock Latino', - ), - 8222 => array( - 'Id' => 8222, - 'Label' => 'Tones|Ringtones|Latin|Baladas y Boleros', - ), - 8223 => array( - 'Id' => 8223, - 'Label' => 'Tones|Ringtones|Latin|Contemporary Latin', - ), - 8224 => array( - 'Id' => 8224, - 'Label' => 'Tones|Ringtones|Latin|Latin Jazz', - ), - 8225 => array( - 'Id' => 8225, - 'Label' => 'Tones|Ringtones|Latin|Latin Urban', - ), - 8226 => array( - 'Id' => 8226, - 'Label' => 'Tones|Ringtones|Latin|Pop Latino', - ), - 8227 => array( - 'Id' => 8227, - 'Label' => 'Tones|Ringtones|Latin|Raices', - ), - 8228 => array( - 'Id' => 8228, - 'Label' => 'Tones|Ringtones|Latin|Regional Mexicano', - ), - 8229 => array( - 'Id' => 8229, - 'Label' => 'Tones|Ringtones|Latin|Salsa y Tropical', - ), - 8230 => array( - 'Id' => 8230, - 'Label' => 'Tones|Ringtones|Marching Bands', - ), - 8231 => array( - 'Id' => 8231, - 'Label' => 'Tones|Ringtones|New Age|Healing', - ), - 8232 => array( - 'Id' => 8232, - 'Label' => 'Tones|Ringtones|New Age|Meditation', - ), - 8233 => array( - 'Id' => 8233, - 'Label' => 'Tones|Ringtones|New Age|Nature', - ), - 8234 => array( - 'Id' => 8234, - 'Label' => 'Tones|Ringtones|New Age|Relaxation', - ), - 8235 => array( - 'Id' => 8235, - 'Label' => 'Tones|Ringtones|New Age|Travel', - ), - 8236 => array( - 'Id' => 8236, - 'Label' => 'Tones|Ringtones|Orchestral', - ), - 8237 => array( - 'Id' => 8237, - 'Label' => 'Tones|Ringtones|Pop|Adult Contemporary', - ), - 8238 => array( - 'Id' => 8238, - 'Label' => 'Tones|Ringtones|Pop|Britpop', - ), - 8239 => array( - 'Id' => 8239, - 'Label' => 'Tones|Ringtones|Pop|C-Pop', - ), - 8240 => array( - 'Id' => 8240, - 'Label' => 'Tones|Ringtones|Pop|Cantopop/HK-Pop', - ), - 8241 => array( - 'Id' => 8241, - 'Label' => 'Tones|Ringtones|Pop|Indo Pop', - ), - 8242 => array( - 'Id' => 8242, - 'Label' => 'Tones|Ringtones|Pop|Korean Folk-Pop', - ), - 8243 => array( - 'Id' => 8243, - 'Label' => 'Tones|Ringtones|Pop|Malaysian Pop', - ), - 8244 => array( - 'Id' => 8244, - 'Label' => 'Tones|Ringtones|Pop|Mandopop', - ), - 8245 => array( - 'Id' => 8245, - 'Label' => 'Tones|Ringtones|Pop|Manilla Sound', - ), - 8246 => array( - 'Id' => 8246, - 'Label' => 'Tones|Ringtones|Pop|Oldies', - ), - 8247 => array( - 'Id' => 8247, - 'Label' => 'Tones|Ringtones|Pop|Original Pilipino Music', - ), - 8248 => array( - 'Id' => 8248, - 'Label' => 'Tones|Ringtones|Pop|Pinoy Pop', - ), - 8249 => array( - 'Id' => 8249, - 'Label' => 'Tones|Ringtones|Pop|Pop/Rock', - ), - 8250 => array( - 'Id' => 8250, - 'Label' => 'Tones|Ringtones|Pop|Soft Rock', - ), - 8251 => array( - 'Id' => 8251, - 'Label' => 'Tones|Ringtones|Pop|Tai-Pop', - ), - 8252 => array( - 'Id' => 8252, - 'Label' => 'Tones|Ringtones|Pop|Teen Pop', - ), - 8253 => array( - 'Id' => 8253, - 'Label' => 'Tones|Ringtones|Pop|Thai Pop', - ), - 8254 => array( - 'Id' => 8254, - 'Label' => 'Tones|Ringtones|R&B/Soul|Contemporary R&B', - ), - 8255 => array( - 'Id' => 8255, - 'Label' => 'Tones|Ringtones|R&B/Soul|Disco', - ), - 8256 => array( - 'Id' => 8256, - 'Label' => 'Tones|Ringtones|R&B/Soul|Doo Wop', - ), - 8257 => array( - 'Id' => 8257, - 'Label' => 'Tones|Ringtones|R&B/Soul|Funk', - ), - 8258 => array( - 'Id' => 8258, - 'Label' => 'Tones|Ringtones|R&B/Soul|Motown', - ), - 8259 => array( - 'Id' => 8259, - 'Label' => 'Tones|Ringtones|R&B/Soul|Neo-Soul', - ), - 8260 => array( - 'Id' => 8260, - 'Label' => 'Tones|Ringtones|R&B/Soul|Soul', - ), - 8261 => array( - 'Id' => 8261, - 'Label' => 'Tones|Ringtones|Reggae|Dancehall', - ), - 8262 => array( - 'Id' => 8262, - 'Label' => 'Tones|Ringtones|Reggae|Dub', - ), - 8263 => array( - 'Id' => 8263, - 'Label' => 'Tones|Ringtones|Reggae|Roots Reggae', - ), - 8264 => array( - 'Id' => 8264, - 'Label' => 'Tones|Ringtones|Reggae|Ska', - ), - 8265 => array( - 'Id' => 8265, - 'Label' => 'Tones|Ringtones|Rock|Adult Alternative', - ), - 8266 => array( - 'Id' => 8266, - 'Label' => 'Tones|Ringtones|Rock|American Trad Rock', - ), - 8267 => array( - 'Id' => 8267, - 'Label' => 'Tones|Ringtones|Rock|Arena Rock', - ), - 8268 => array( - 'Id' => 8268, - 'Label' => 'Tones|Ringtones|Rock|Blues-Rock', - ), - 8269 => array( - 'Id' => 8269, - 'Label' => 'Tones|Ringtones|Rock|British Invasion', - ), - 8270 => array( - 'Id' => 8270, - 'Label' => 'Tones|Ringtones|Rock|Chinese Rock', - ), - 8271 => array( - 'Id' => 8271, - 'Label' => 'Tones|Ringtones|Rock|Death Metal/Black Metal', - ), - 8272 => array( - 'Id' => 8272, - 'Label' => 'Tones|Ringtones|Rock|Glam Rock', - ), - 8273 => array( - 'Id' => 8273, - 'Label' => 'Tones|Ringtones|Rock|Hair Metal', - ), - 8274 => array( - 'Id' => 8274, - 'Label' => 'Tones|Ringtones|Rock|Hard Rock', - ), - 8275 => array( - 'Id' => 8275, - 'Label' => 'Tones|Ringtones|Rock|Metal', - ), - 8276 => array( - 'Id' => 8276, - 'Label' => 'Tones|Ringtones|Rock|Jam Bands', - ), - 8277 => array( - 'Id' => 8277, - 'Label' => 'Tones|Ringtones|Rock|Korean Rock', - ), - 8278 => array( - 'Id' => 8278, - 'Label' => 'Tones|Ringtones|Rock|Prog-Rock/Art Rock', - ), - 8279 => array( - 'Id' => 8279, - 'Label' => 'Tones|Ringtones|Rock|Psychedelic', - ), - 8280 => array( - 'Id' => 8280, - 'Label' => 'Tones|Ringtones|Rock|Rock & Roll', - ), - 8281 => array( - 'Id' => 8281, - 'Label' => 'Tones|Ringtones|Rock|Rockabilly', - ), - 8282 => array( - 'Id' => 8282, - 'Label' => 'Tones|Ringtones|Rock|Roots Rock', - ), - 8283 => array( - 'Id' => 8283, - 'Label' => 'Tones|Ringtones|Rock|Singer/Songwriter', - ), - 8284 => array( - 'Id' => 8284, - 'Label' => 'Tones|Ringtones|Rock|Southern Rock', - ), - 8285 => array( - 'Id' => 8285, - 'Label' => 'Tones|Ringtones|Rock|Surf', - ), - 8286 => array( - 'Id' => 8286, - 'Label' => 'Tones|Ringtones|Rock|Tex-Mex', - ), - 8287 => array( - 'Id' => 8287, - 'Label' => 'Tones|Ringtones|Singer/Songwriter|Alternative Folk', - ), - 8288 => array( - 'Id' => 8288, - 'Label' => 'Tones|Ringtones|Singer/Songwriter|Contemporary Folk', - ), - 8289 => array( - 'Id' => 8289, - 'Label' => 'Tones|Ringtones|Singer/Songwriter|Contemporary Singer/Songwriter', - ), - 8290 => array( - 'Id' => 8290, - 'Label' => 'Tones|Ringtones|Singer/Songwriter|Folk-Rock', - ), - 8291 => array( - 'Id' => 8291, - 'Label' => 'Tones|Ringtones|Singer/Songwriter|New Acoustic', - ), - 8292 => array( - 'Id' => 8292, - 'Label' => 'Tones|Ringtones|Singer/Songwriter|Traditional Folk', - ), - 8293 => array( - 'Id' => 8293, - 'Label' => 'Tones|Ringtones|Soundtrack|Foreign Cinema', - ), - 8294 => array( - 'Id' => 8294, - 'Label' => 'Tones|Ringtones|Soundtrack|Musicals', - ), - 8295 => array( - 'Id' => 8295, - 'Label' => 'Tones|Ringtones|Soundtrack|Original Score', - ), - 8296 => array( - 'Id' => 8296, - 'Label' => 'Tones|Ringtones|Soundtrack|Sound Effects', - ), - 8297 => array( - 'Id' => 8297, - 'Label' => 'Tones|Ringtones|Soundtrack|Soundtrack', - ), - 8298 => array( - 'Id' => 8298, - 'Label' => 'Tones|Ringtones|Soundtrack|TV Soundtrack', - ), - 8299 => array( - 'Id' => 8299, - 'Label' => 'Tones|Ringtones|Vocal|Standards', - ), - 8300 => array( - 'Id' => 8300, - 'Label' => 'Tones|Ringtones|Vocal|Traditional Pop', - ), - 8301 => array( - 'Id' => 8301, - 'Label' => 'Tones|Ringtones|Vocal|Trot', - ), - 8302 => array( - 'Id' => 8302, - 'Label' => 'Tones|Ringtones|Jazz|Vocal Jazz', - ), - 8303 => array( - 'Id' => 8303, - 'Label' => 'Tones|Ringtones|Vocal|Vocal Pop', - ), - 8304 => array( - 'Id' => 8304, - 'Label' => 'Tones|Ringtones|World|Africa', - ), - 8305 => array( - 'Id' => 8305, - 'Label' => 'Tones|Ringtones|World|Afrikaans', - ), - 8306 => array( - 'Id' => 8306, - 'Label' => 'Tones|Ringtones|World|Afro-Beat', - ), - 8307 => array( - 'Id' => 8307, - 'Label' => 'Tones|Ringtones|World|Afro-Pop', - ), - 8308 => array( - 'Id' => 8308, - 'Label' => 'Tones|Ringtones|World|Arabesque', - ), - 8309 => array( - 'Id' => 8309, - 'Label' => 'Tones|Ringtones|World|Asia', - ), - 8310 => array( - 'Id' => 8310, - 'Label' => 'Tones|Ringtones|World|Australia', - ), - 8311 => array( - 'Id' => 8311, - 'Label' => 'Tones|Ringtones|World|Cajun', - ), - 8312 => array( - 'Id' => 8312, - 'Label' => 'Tones|Ringtones|World|Calypso', - ), - 8313 => array( - 'Id' => 8313, - 'Label' => 'Tones|Ringtones|World|Caribbean', - ), - 8314 => array( - 'Id' => 8314, - 'Label' => 'Tones|Ringtones|World|Celtic', - ), - 8315 => array( - 'Id' => 8315, - 'Label' => 'Tones|Ringtones|World|Celtic Folk', - ), - 8316 => array( - 'Id' => 8316, - 'Label' => 'Tones|Ringtones|World|Contemporary Celtic', - ), - 8317 => array( - 'Id' => 8317, - 'Label' => 'Tones|Ringtones|World|Dangdut', - ), - 8318 => array( - 'Id' => 8318, - 'Label' => 'Tones|Ringtones|World|Dini', - ), - 8319 => array( - 'Id' => 8319, - 'Label' => 'Tones|Ringtones|World|Europe', - ), - 8320 => array( - 'Id' => 8320, - 'Label' => 'Tones|Ringtones|World|Fado', - ), - 8321 => array( - 'Id' => 8321, - 'Label' => 'Tones|Ringtones|World|Farsi', - ), - 8322 => array( - 'Id' => 8322, - 'Label' => 'Tones|Ringtones|World|Flamenco', - ), - 8323 => array( - 'Id' => 8323, - 'Label' => 'Tones|Ringtones|World|France', - ), - 8324 => array( - 'Id' => 8324, - 'Label' => 'Tones|Ringtones|World|Halk', - ), - 8325 => array( - 'Id' => 8325, - 'Label' => 'Tones|Ringtones|World|Hawaii', - ), - 8326 => array( - 'Id' => 8326, - 'Label' => 'Tones|Ringtones|World|Iberia', - ), - 8327 => array( - 'Id' => 8327, - 'Label' => 'Tones|Ringtones|World|Indonesian Religious', - ), - 8328 => array( - 'Id' => 8328, - 'Label' => 'Tones|Ringtones|World|Israeli', - ), - 8329 => array( - 'Id' => 8329, - 'Label' => 'Tones|Ringtones|World|Japan', - ), - 8330 => array( - 'Id' => 8330, - 'Label' => 'Tones|Ringtones|World|Klezmer', - ), - 8331 => array( - 'Id' => 8331, - 'Label' => 'Tones|Ringtones|World|North America', - ), - 8332 => array( - 'Id' => 8332, - 'Label' => 'Tones|Ringtones|World|Polka', - ), - 8333 => array( - 'Id' => 8333, - 'Label' => 'Tones|Ringtones|World|Russian', - ), - 8334 => array( - 'Id' => 8334, - 'Label' => 'Tones|Ringtones|World|Russian Chanson', - ), - 8335 => array( - 'Id' => 8335, - 'Label' => 'Tones|Ringtones|World|Sanat', - ), - 8336 => array( - 'Id' => 8336, - 'Label' => 'Tones|Ringtones|World|Soca', - ), - 8337 => array( - 'Id' => 8337, - 'Label' => 'Tones|Ringtones|World|South Africa', - ), - 8338 => array( - 'Id' => 8338, - 'Label' => 'Tones|Ringtones|World|South America', - ), - 8339 => array( - 'Id' => 8339, - 'Label' => 'Tones|Ringtones|World|Tango', - ), - 8340 => array( - 'Id' => 8340, - 'Label' => 'Tones|Ringtones|World|Traditional Celtic', - ), - 8341 => array( - 'Id' => 8341, - 'Label' => 'Tones|Ringtones|World|Turkish', - ), - 8342 => array( - 'Id' => 8342, - 'Label' => 'Tones|Ringtones|World|Worldbeat', - ), - 8343 => array( - 'Id' => 8343, - 'Label' => 'Tones|Ringtones|World|Zydeco', - ), - 9002 => array( - 'Id' => 9002, - 'Label' => 'Books|Nonfiction', - ), - 9003 => array( - 'Id' => 9003, - 'Label' => 'Books|Romance', - ), - 9004 => array( - 'Id' => 9004, - 'Label' => 'Books|Travel & Adventure', - ), - 9007 => array( - 'Id' => 9007, - 'Label' => 'Books|Arts & Entertainment', - ), - 9008 => array( - 'Id' => 9008, - 'Label' => 'Books|Biographies & Memoirs', - ), - 9009 => array( - 'Id' => 9009, - 'Label' => 'Books|Business & Personal Finance', - ), - 9010 => array( - 'Id' => 9010, - 'Label' => 'Books|Children & Teens', - ), - 9012 => array( - 'Id' => 9012, - 'Label' => 'Books|Humor', - ), - 9015 => array( - 'Id' => 9015, - 'Label' => 'Books|History', - ), - 9018 => array( - 'Id' => 9018, - 'Label' => 'Books|Religion & Spirituality', - ), - 9019 => array( - 'Id' => 9019, - 'Label' => 'Books|Science & Nature', - ), - 9020 => array( - 'Id' => 9020, - 'Label' => 'Books|Sci-Fi & Fantasy', - ), - 9024 => array( - 'Id' => 9024, - 'Label' => 'Books|Lifestyle & Home', - ), - 9025 => array( - 'Id' => 9025, - 'Label' => 'Books|Health, Mind & Body', - ), - 9026 => array( - 'Id' => 9026, - 'Label' => 'Books|Comics & Graphic Novels', - ), - 9027 => array( - 'Id' => 9027, - 'Label' => 'Books|Computers & Internet', - ), - 9028 => array( - 'Id' => 9028, - 'Label' => 'Books|Cookbooks, Food & Wine', - ), - 9029 => array( - 'Id' => 9029, - 'Label' => 'Books|Professional & Technical', - ), - 9030 => array( - 'Id' => 9030, - 'Label' => 'Books|Parenting', - ), - 9031 => array( - 'Id' => 9031, - 'Label' => 'Books|Fiction & Literature', - ), - 9032 => array( - 'Id' => 9032, - 'Label' => 'Books|Mysteries & Thrillers', - ), - 9033 => array( - 'Id' => 9033, - 'Label' => 'Books|Reference', - ), - 9034 => array( - 'Id' => 9034, - 'Label' => 'Books|Politics & Current Events', - ), - 9035 => array( - 'Id' => 9035, - 'Label' => 'Books|Sports & Outdoors', - ), - 10001 => array( - 'Id' => 10001, - 'Label' => 'Books|Lifestyle & Home|Antiques & Collectibles', - ), - 10002 => array( - 'Id' => 10002, - 'Label' => 'Books|Arts & Entertainment|Art & Architecture', - ), - 10003 => array( - 'Id' => 10003, - 'Label' => 'Books|Religion & Spirituality|Bibles', - ), - 10004 => array( - 'Id' => 10004, - 'Label' => 'Books|Health, Mind & Body|Spirituality', - ), - 10005 => array( - 'Id' => 10005, - 'Label' => 'Books|Business & Personal Finance|Industries & Professions', - ), - 10006 => array( - 'Id' => 10006, - 'Label' => 'Books|Business & Personal Finance|Marketing & Sales', - ), - 10007 => array( - 'Id' => 10007, - 'Label' => 'Books|Business & Personal Finance|Small Business & Entrepreneurship', - ), - 10008 => array( - 'Id' => 10008, - 'Label' => 'Books|Business & Personal Finance|Personal Finance', - ), - 10009 => array( - 'Id' => 10009, - 'Label' => 'Books|Business & Personal Finance|Reference', - ), - 10010 => array( - 'Id' => 10010, - 'Label' => 'Books|Business & Personal Finance|Careers', - ), - 10011 => array( - 'Id' => 10011, - 'Label' => 'Books|Business & Personal Finance|Economics', - ), - 10012 => array( - 'Id' => 10012, - 'Label' => 'Books|Business & Personal Finance|Investing', - ), - 10013 => array( - 'Id' => 10013, - 'Label' => 'Books|Business & Personal Finance|Finance', - ), - 10014 => array( - 'Id' => 10014, - 'Label' => 'Books|Business & Personal Finance|Management & Leadership', - ), - 10015 => array( - 'Id' => 10015, - 'Label' => 'Books|Comics & Graphic Novels|Graphic Novels', - ), - 10016 => array( - 'Id' => 10016, - 'Label' => 'Books|Comics & Graphic Novels|Manga', - ), - 10017 => array( - 'Id' => 10017, - 'Label' => 'Books|Computers & Internet|Computers', - ), - 10018 => array( - 'Id' => 10018, - 'Label' => 'Books|Computers & Internet|Databases', - ), - 10019 => array( - 'Id' => 10019, - 'Label' => 'Books|Computers & Internet|Digital Media', - ), - 10020 => array( - 'Id' => 10020, - 'Label' => 'Books|Computers & Internet|Internet', - ), - 10021 => array( - 'Id' => 10021, - 'Label' => 'Books|Computers & Internet|Network', - ), - 10022 => array( - 'Id' => 10022, - 'Label' => 'Books|Computers & Internet|Operating Systems', - ), - 10023 => array( - 'Id' => 10023, - 'Label' => 'Books|Computers & Internet|Programming', - ), - 10024 => array( - 'Id' => 10024, - 'Label' => 'Books|Computers & Internet|Software', - ), - 10025 => array( - 'Id' => 10025, - 'Label' => 'Books|Computers & Internet|System Administration', - ), - 10026 => array( - 'Id' => 10026, - 'Label' => 'Books|Cookbooks, Food & Wine|Beverages', - ), - 10027 => array( - 'Id' => 10027, - 'Label' => 'Books|Cookbooks, Food & Wine|Courses & Dishes', - ), - 10028 => array( - 'Id' => 10028, - 'Label' => 'Books|Cookbooks, Food & Wine|Special Diet', - ), - 10029 => array( - 'Id' => 10029, - 'Label' => 'Books|Cookbooks, Food & Wine|Special Occasions', - ), - 10030 => array( - 'Id' => 10030, - 'Label' => 'Books|Cookbooks, Food & Wine|Methods', - ), - 10031 => array( - 'Id' => 10031, - 'Label' => 'Books|Cookbooks, Food & Wine|Reference', - ), - 10032 => array( - 'Id' => 10032, - 'Label' => 'Books|Cookbooks, Food & Wine|Regional & Ethnic', - ), - 10033 => array( - 'Id' => 10033, - 'Label' => 'Books|Cookbooks, Food & Wine|Specific Ingredients', - ), - 10034 => array( - 'Id' => 10034, - 'Label' => 'Books|Lifestyle & Home|Crafts & Hobbies', - ), - 10035 => array( - 'Id' => 10035, - 'Label' => 'Books|Professional & Technical|Design', - ), - 10036 => array( - 'Id' => 10036, - 'Label' => 'Books|Arts & Entertainment|Theater', - ), - 10037 => array( - 'Id' => 10037, - 'Label' => 'Books|Professional & Technical|Education', - ), - 10038 => array( - 'Id' => 10038, - 'Label' => 'Books|Nonfiction|Family & Relationships', - ), - 10039 => array( - 'Id' => 10039, - 'Label' => 'Books|Fiction & Literature|Action & Adventure', - ), - 10040 => array( - 'Id' => 10040, - 'Label' => 'Books|Fiction & Literature|African American', - ), - 10041 => array( - 'Id' => 10041, - 'Label' => 'Books|Fiction & Literature|Religious', - ), - 10042 => array( - 'Id' => 10042, - 'Label' => 'Books|Fiction & Literature|Classics', - ), - 10043 => array( - 'Id' => 10043, - 'Label' => 'Books|Fiction & Literature|Erotica', - ), - 10044 => array( - 'Id' => 10044, - 'Label' => 'Books|Sci-Fi & Fantasy|Fantasy', - ), - 10045 => array( - 'Id' => 10045, - 'Label' => 'Books|Fiction & Literature|Gay', - ), - 10046 => array( - 'Id' => 10046, - 'Label' => 'Books|Fiction & Literature|Ghost', - ), - 10047 => array( - 'Id' => 10047, - 'Label' => 'Books|Fiction & Literature|Historical', - ), - 10048 => array( - 'Id' => 10048, - 'Label' => 'Books|Fiction & Literature|Horror', - ), - 10049 => array( - 'Id' => 10049, - 'Label' => 'Books|Fiction & Literature|Literary', - ), - 10050 => array( - 'Id' => 10050, - 'Label' => 'Books|Mysteries & Thrillers|Hard-Boiled', - ), - 10051 => array( - 'Id' => 10051, - 'Label' => 'Books|Mysteries & Thrillers|Historical', - ), - 10052 => array( - 'Id' => 10052, - 'Label' => 'Books|Mysteries & Thrillers|Police Procedural', - ), - 10053 => array( - 'Id' => 10053, - 'Label' => 'Books|Mysteries & Thrillers|Short Stories', - ), - 10054 => array( - 'Id' => 10054, - 'Label' => 'Books|Mysteries & Thrillers|British Detectives', - ), - 10055 => array( - 'Id' => 10055, - 'Label' => 'Books|Mysteries & Thrillers|Women Sleuths', - ), - 10056 => array( - 'Id' => 10056, - 'Label' => 'Books|Romance|Erotica', - ), - 10057 => array( - 'Id' => 10057, - 'Label' => 'Books|Romance|Contemporary', - ), - 10058 => array( - 'Id' => 10058, - 'Label' => 'Books|Romance|Fantasy, Futuristic & Ghost', - ), - 10059 => array( - 'Id' => 10059, - 'Label' => 'Books|Romance|Historical', - ), - 10060 => array( - 'Id' => 10060, - 'Label' => 'Books|Romance|Short Stories', - ), - 10061 => array( - 'Id' => 10061, - 'Label' => 'Books|Romance|Suspense', - ), - 10062 => array( - 'Id' => 10062, - 'Label' => 'Books|Romance|Western', - ), - 10063 => array( - 'Id' => 10063, - 'Label' => 'Books|Sci-Fi & Fantasy|Science Fiction', - ), - 10064 => array( - 'Id' => 10064, - 'Label' => 'Books|Sci-Fi & Fantasy|Science Fiction & Literature', - ), - 10065 => array( - 'Id' => 10065, - 'Label' => 'Books|Fiction & Literature|Short Stories', - ), - 10066 => array( - 'Id' => 10066, - 'Label' => 'Books|Reference|Foreign Languages', - ), - 10067 => array( - 'Id' => 10067, - 'Label' => 'Books|Arts & Entertainment|Games', - ), - 10068 => array( - 'Id' => 10068, - 'Label' => 'Books|Lifestyle & Home|Gardening', - ), - 10069 => array( - 'Id' => 10069, - 'Label' => 'Books|Health, Mind & Body|Health & Fitness', - ), - 10070 => array( - 'Id' => 10070, - 'Label' => 'Books|History|Africa', - ), - 10071 => array( - 'Id' => 10071, - 'Label' => 'Books|History|Americas', - ), - 10072 => array( - 'Id' => 10072, - 'Label' => 'Books|History|Ancient', - ), - 10073 => array( - 'Id' => 10073, - 'Label' => 'Books|History|Asia', - ), - 10074 => array( - 'Id' => 10074, - 'Label' => 'Books|History|Australia & Oceania', - ), - 10075 => array( - 'Id' => 10075, - 'Label' => 'Books|History|Europe', - ), - 10076 => array( - 'Id' => 10076, - 'Label' => 'Books|History|Latin America', - ), - 10077 => array( - 'Id' => 10077, - 'Label' => 'Books|History|Middle East', - ), - 10078 => array( - 'Id' => 10078, - 'Label' => 'Books|History|Military', - ), - 10079 => array( - 'Id' => 10079, - 'Label' => 'Books|History|United States', - ), - 10080 => array( - 'Id' => 10080, - 'Label' => 'Books|History|World', - ), - 10081 => array( - 'Id' => 10081, - 'Label' => 'Books|Children & Teens|Children\'s Fiction', - ), - 10082 => array( - 'Id' => 10082, - 'Label' => 'Books|Children & Teens|Children\'s Nonfiction', - ), - 10083 => array( - 'Id' => 10083, - 'Label' => 'Books|Professional & Technical|Law', - ), - 10084 => array( - 'Id' => 10084, - 'Label' => 'Books|Fiction & Literature|Literary Criticism', - ), - 10085 => array( - 'Id' => 10085, - 'Label' => 'Books|Science & Nature|Mathematics', - ), - 10086 => array( - 'Id' => 10086, - 'Label' => 'Books|Professional & Technical|Medical', - ), - 10087 => array( - 'Id' => 10087, - 'Label' => 'Books|Arts & Entertainment|Music', - ), - 10088 => array( - 'Id' => 10088, - 'Label' => 'Books|Science & Nature|Nature', - ), - 10089 => array( - 'Id' => 10089, - 'Label' => 'Books|Arts & Entertainment|Performing Arts', - ), - 10090 => array( - 'Id' => 10090, - 'Label' => 'Books|Lifestyle & Home|Pets', - ), - 10091 => array( - 'Id' => 10091, - 'Label' => 'Books|Nonfiction|Philosophy', - ), - 10092 => array( - 'Id' => 10092, - 'Label' => 'Books|Arts & Entertainment|Photography', - ), - 10093 => array( - 'Id' => 10093, - 'Label' => 'Books|Fiction & Literature|Poetry', - ), - 10094 => array( - 'Id' => 10094, - 'Label' => 'Books|Health, Mind & Body|Psychology', - ), - 10095 => array( - 'Id' => 10095, - 'Label' => 'Books|Reference|Almanacs & Yearbooks', - ), - 10096 => array( - 'Id' => 10096, - 'Label' => 'Books|Reference|Atlases & Maps', - ), - 10097 => array( - 'Id' => 10097, - 'Label' => 'Books|Reference|Catalogs & Directories', - ), - 10098 => array( - 'Id' => 10098, - 'Label' => 'Books|Reference|Consumer Guides', - ), - 10099 => array( - 'Id' => 10099, - 'Label' => 'Books|Reference|Dictionaries & Thesauruses', - ), - 10100 => array( - 'Id' => 10100, - 'Label' => 'Books|Reference|Encyclopedias', - ), - 10101 => array( - 'Id' => 10101, - 'Label' => 'Books|Reference|Etiquette', - ), - 10102 => array( - 'Id' => 10102, - 'Label' => 'Books|Reference|Quotations', - ), - 10103 => array( - 'Id' => 10103, - 'Label' => 'Books|Reference|Words & Language', - ), - 10104 => array( - 'Id' => 10104, - 'Label' => 'Books|Reference|Writing', - ), - 10105 => array( - 'Id' => 10105, - 'Label' => 'Books|Religion & Spirituality|Bible Studies', - ), - 10106 => array( - 'Id' => 10106, - 'Label' => 'Books|Religion & Spirituality|Buddhism', - ), - 10107 => array( - 'Id' => 10107, - 'Label' => 'Books|Religion & Spirituality|Christianity', - ), - 10108 => array( - 'Id' => 10108, - 'Label' => 'Books|Religion & Spirituality|Hinduism', - ), - 10109 => array( - 'Id' => 10109, - 'Label' => 'Books|Religion & Spirituality|Islam', - ), - 10110 => array( - 'Id' => 10110, - 'Label' => 'Books|Religion & Spirituality|Judaism', - ), - 10111 => array( - 'Id' => 10111, - 'Label' => 'Books|Science & Nature|Astronomy', - ), - 10112 => array( - 'Id' => 10112, - 'Label' => 'Books|Science & Nature|Chemistry', - ), - 10113 => array( - 'Id' => 10113, - 'Label' => 'Books|Science & Nature|Earth Sciences', - ), - 10114 => array( - 'Id' => 10114, - 'Label' => 'Books|Science & Nature|Essays', - ), - 10115 => array( - 'Id' => 10115, - 'Label' => 'Books|Science & Nature|History', - ), - 10116 => array( - 'Id' => 10116, - 'Label' => 'Books|Science & Nature|Life Sciences', - ), - 10117 => array( - 'Id' => 10117, - 'Label' => 'Books|Science & Nature|Physics', - ), - 10118 => array( - 'Id' => 10118, - 'Label' => 'Books|Science & Nature|Reference', - ), - 10119 => array( - 'Id' => 10119, - 'Label' => 'Books|Health, Mind & Body|Self-Improvement', - ), - 10120 => array( - 'Id' => 10120, - 'Label' => 'Books|Nonfiction|Social Science', - ), - 10121 => array( - 'Id' => 10121, - 'Label' => 'Books|Sports & Outdoors|Baseball', - ), - 10122 => array( - 'Id' => 10122, - 'Label' => 'Books|Sports & Outdoors|Basketball', - ), - 10123 => array( - 'Id' => 10123, - 'Label' => 'Books|Sports & Outdoors|Coaching', - ), - 10124 => array( - 'Id' => 10124, - 'Label' => 'Books|Sports & Outdoors|Extreme Sports', - ), - 10125 => array( - 'Id' => 10125, - 'Label' => 'Books|Sports & Outdoors|Football', - ), - 10126 => array( - 'Id' => 10126, - 'Label' => 'Books|Sports & Outdoors|Golf', - ), - 10127 => array( - 'Id' => 10127, - 'Label' => 'Books|Sports & Outdoors|Hockey', - ), - 10128 => array( - 'Id' => 10128, - 'Label' => 'Books|Sports & Outdoors|Mountaineering', - ), - 10129 => array( - 'Id' => 10129, - 'Label' => 'Books|Sports & Outdoors|Outdoors', - ), - 10130 => array( - 'Id' => 10130, - 'Label' => 'Books|Sports & Outdoors|Racket Sports', - ), - 10131 => array( - 'Id' => 10131, - 'Label' => 'Books|Sports & Outdoors|Reference', - ), - 10132 => array( - 'Id' => 10132, - 'Label' => 'Books|Sports & Outdoors|Soccer', - ), - 10133 => array( - 'Id' => 10133, - 'Label' => 'Books|Sports & Outdoors|Training', - ), - 10134 => array( - 'Id' => 10134, - 'Label' => 'Books|Sports & Outdoors|Water Sports', - ), - 10135 => array( - 'Id' => 10135, - 'Label' => 'Books|Sports & Outdoors|Winter Sports', - ), - 10136 => array( - 'Id' => 10136, - 'Label' => 'Books|Reference|Study Aids', - ), - 10137 => array( - 'Id' => 10137, - 'Label' => 'Books|Professional & Technical|Engineering', - ), - 10138 => array( - 'Id' => 10138, - 'Label' => 'Books|Nonfiction|Transportation', - ), - 10139 => array( - 'Id' => 10139, - 'Label' => 'Books|Travel & Adventure|Africa', - ), - 10140 => array( - 'Id' => 10140, - 'Label' => 'Books|Travel & Adventure|Asia', - ), - 10141 => array( - 'Id' => 10141, - 'Label' => 'Books|Travel & Adventure|Specialty Travel', - ), - 10142 => array( - 'Id' => 10142, - 'Label' => 'Books|Travel & Adventure|Canada', - ), - 10143 => array( - 'Id' => 10143, - 'Label' => 'Books|Travel & Adventure|Caribbean', - ), - 10144 => array( - 'Id' => 10144, - 'Label' => 'Books|Travel & Adventure|Latin America', - ), - 10145 => array( - 'Id' => 10145, - 'Label' => 'Books|Travel & Adventure|Essays & Memoirs', - ), - 10146 => array( - 'Id' => 10146, - 'Label' => 'Books|Travel & Adventure|Europe', - ), - 10147 => array( - 'Id' => 10147, - 'Label' => 'Books|Travel & Adventure|Middle East', - ), - 10148 => array( - 'Id' => 10148, - 'Label' => 'Books|Travel & Adventure|United States', - ), - 10149 => array( - 'Id' => 10149, - 'Label' => 'Books|Nonfiction|True Crime', - ), - 11001 => array( - 'Id' => 11001, - 'Label' => 'Books|Sci-Fi & Fantasy|Fantasy|Contemporary', - ), - 11002 => array( - 'Id' => 11002, - 'Label' => 'Books|Sci-Fi & Fantasy|Fantasy|Epic', - ), - 11003 => array( - 'Id' => 11003, - 'Label' => 'Books|Sci-Fi & Fantasy|Fantasy|Historical', - ), - 11004 => array( - 'Id' => 11004, - 'Label' => 'Books|Sci-Fi & Fantasy|Fantasy|Paranormal', - ), - 11005 => array( - 'Id' => 11005, - 'Label' => 'Books|Sci-Fi & Fantasy|Fantasy|Short Stories', - ), - 11006 => array( - 'Id' => 11006, - 'Label' => 'Books|Sci-Fi & Fantasy|Science Fiction & Literature|Adventure', - ), - 11007 => array( - 'Id' => 11007, - 'Label' => 'Books|Sci-Fi & Fantasy|Science Fiction & Literature|High Tech', - ), - 11008 => array( - 'Id' => 11008, - 'Label' => 'Books|Sci-Fi & Fantasy|Science Fiction & Literature|Short Stories', - ), - 11009 => array( - 'Id' => 11009, - 'Label' => 'Books|Professional & Technical|Education|Language Arts & Disciplines', - ), - 12001 => array( - 'Id' => 12001, - 'Label' => 'Mac App Store|Business', - ), - 12002 => array( - 'Id' => 12002, - 'Label' => 'Mac App Store|Developer Tools', - ), - 12003 => array( - 'Id' => 12003, - 'Label' => 'Mac App Store|Education', - ), - 12004 => array( - 'Id' => 12004, - 'Label' => 'Mac App Store|Entertainment', - ), - 12005 => array( - 'Id' => 12005, - 'Label' => 'Mac App Store|Finance', - ), - 12006 => array( - 'Id' => 12006, - 'Label' => 'Mac App Store|Games', - ), - 12007 => array( - 'Id' => 12007, - 'Label' => 'Mac App Store|Health & Fitness', - ), - 12008 => array( - 'Id' => 12008, - 'Label' => 'Mac App Store|Lifestyle', - ), - 12010 => array( - 'Id' => 12010, - 'Label' => 'Mac App Store|Medical', - ), - 12011 => array( - 'Id' => 12011, - 'Label' => 'Mac App Store|Music', - ), - 12012 => array( - 'Id' => 12012, - 'Label' => 'Mac App Store|News', - ), - 12013 => array( - 'Id' => 12013, - 'Label' => 'Mac App Store|Photography', - ), - 12014 => array( - 'Id' => 12014, - 'Label' => 'Mac App Store|Productivity', - ), - 12015 => array( - 'Id' => 12015, - 'Label' => 'Mac App Store|Reference', - ), - 12016 => array( - 'Id' => 12016, - 'Label' => 'Mac App Store|Social Networking', - ), - 12017 => array( - 'Id' => 12017, - 'Label' => 'Mac App Store|Sports', - ), - 12018 => array( - 'Id' => 12018, - 'Label' => 'Mac App Store|Travel', - ), - 12019 => array( - 'Id' => 12019, - 'Label' => 'Mac App Store|Utilities', - ), - 12020 => array( - 'Id' => 12020, - 'Label' => 'Mac App Store|Video', - ), - 12021 => array( - 'Id' => 12021, - 'Label' => 'Mac App Store|Weather', - ), - 12022 => array( - 'Id' => 12022, - 'Label' => 'Mac App Store|Graphics & Design', - ), - 12201 => array( - 'Id' => 12201, - 'Label' => 'Mac App Store|Games|Action', - ), - 12202 => array( - 'Id' => 12202, - 'Label' => 'Mac App Store|Games|Adventure', - ), - 12203 => array( - 'Id' => 12203, - 'Label' => 'Mac App Store|Games|Arcade', - ), - 12204 => array( - 'Id' => 12204, - 'Label' => 'Mac App Store|Games|Board', - ), - 12205 => array( - 'Id' => 12205, - 'Label' => 'Mac App Store|Games|Card', - ), - 12206 => array( - 'Id' => 12206, - 'Label' => 'Mac App Store|Games|Casino', - ), - 12207 => array( - 'Id' => 12207, - 'Label' => 'Mac App Store|Games|Dice', - ), - 12208 => array( - 'Id' => 12208, - 'Label' => 'Mac App Store|Games|Educational', - ), - 12209 => array( - 'Id' => 12209, - 'Label' => 'Mac App Store|Games|Family', - ), - 12210 => array( - 'Id' => 12210, - 'Label' => 'Mac App Store|Games|Kids', - ), - 12211 => array( - 'Id' => 12211, - 'Label' => 'Mac App Store|Games|Music', - ), - 12212 => array( - 'Id' => 12212, - 'Label' => 'Mac App Store|Games|Puzzle', - ), - 12213 => array( - 'Id' => 12213, - 'Label' => 'Mac App Store|Games|Racing', - ), - 12214 => array( - 'Id' => 12214, - 'Label' => 'Mac App Store|Games|Role Playing', - ), - 12215 => array( - 'Id' => 12215, - 'Label' => 'Mac App Store|Games|Simulation', - ), - 12216 => array( - 'Id' => 12216, - 'Label' => 'Mac App Store|Games|Sports', - ), - 12217 => array( - 'Id' => 12217, - 'Label' => 'Mac App Store|Games|Strategy', - ), - 12218 => array( - 'Id' => 12218, - 'Label' => 'Mac App Store|Games|Trivia', - ), - 12219 => array( - 'Id' => 12219, - 'Label' => 'Mac App Store|Games|Word', - ), - 13001 => array( - 'Id' => 13001, - 'Label' => 'App Store|Newsstand|News & Politics', - ), - 13002 => array( - 'Id' => 13002, - 'Label' => 'App Store|Newsstand|Fashion & Style', - ), - 13003 => array( - 'Id' => 13003, - 'Label' => 'App Store|Newsstand|Home & Garden', - ), - 13004 => array( - 'Id' => 13004, - 'Label' => 'App Store|Newsstand|Outdoors & Nature', - ), - 13005 => array( - 'Id' => 13005, - 'Label' => 'App Store|Newsstand|Sports & Leisure', - ), - 13006 => array( - 'Id' => 13006, - 'Label' => 'App Store|Newsstand|Automotive', - ), - 13007 => array( - 'Id' => 13007, - 'Label' => 'App Store|Newsstand|Arts & Photography', - ), - 13008 => array( - 'Id' => 13008, - 'Label' => 'App Store|Newsstand|Brides & Weddings', - ), - 13009 => array( - 'Id' => 13009, - 'Label' => 'App Store|Newsstand|Business & Investing', - ), - 13010 => array( - 'Id' => 13010, - 'Label' => 'App Store|Newsstand|Children\'s Magazines', - ), - 13011 => array( - 'Id' => 13011, - 'Label' => 'App Store|Newsstand|Computers & Internet', - ), - 13012 => array( - 'Id' => 13012, - 'Label' => 'App Store|Newsstand|Cooking, Food & Drink', - ), - 13013 => array( - 'Id' => 13013, - 'Label' => 'App Store|Newsstand|Crafts & Hobbies', - ), - 13014 => array( - 'Id' => 13014, - 'Label' => 'App Store|Newsstand|Electronics & Audio', - ), - 13015 => array( - 'Id' => 13015, - 'Label' => 'App Store|Newsstand|Entertainment', - ), - 13017 => array( - 'Id' => 13017, - 'Label' => 'App Store|Newsstand|Health, Mind & Body', - ), - 13018 => array( - 'Id' => 13018, - 'Label' => 'App Store|Newsstand|History', - ), - 13019 => array( - 'Id' => 13019, - 'Label' => 'App Store|Newsstand|Literary Magazines & Journals', - ), - 13020 => array( - 'Id' => 13020, - 'Label' => 'App Store|Newsstand|Men\'s Interest', - ), - 13021 => array( - 'Id' => 13021, - 'Label' => 'App Store|Newsstand|Movies & Music', - ), - 13023 => array( - 'Id' => 13023, - 'Label' => 'App Store|Newsstand|Parenting & Family', - ), - 13024 => array( - 'Id' => 13024, - 'Label' => 'App Store|Newsstand|Pets', - ), - 13025 => array( - 'Id' => 13025, - 'Label' => 'App Store|Newsstand|Professional & Trade', - ), - 13026 => array( - 'Id' => 13026, - 'Label' => 'App Store|Newsstand|Regional News', - ), - 13027 => array( - 'Id' => 13027, - 'Label' => 'App Store|Newsstand|Science', - ), - 13028 => array( - 'Id' => 13028, - 'Label' => 'App Store|Newsstand|Teens', - ), - 13029 => array( - 'Id' => 13029, - 'Label' => 'App Store|Newsstand|Travel & Regional', - ), - 13030 => array( - 'Id' => 13030, - 'Label' => 'App Store|Newsstand|Women\'s Interest', - ), - 15000 => array( - 'Id' => 15000, - 'Label' => 'Textbooks|Arts & Entertainment', - ), - 15001 => array( - 'Id' => 15001, - 'Label' => 'Textbooks|Arts & Entertainment|Art & Architecture', - ), - 15002 => array( - 'Id' => 15002, - 'Label' => 'Textbooks|Arts & Entertainment|Art & Architecture|Urban Planning', - ), - 15003 => array( - 'Id' => 15003, - 'Label' => 'Textbooks|Arts & Entertainment|Art History', - ), - 15004 => array( - 'Id' => 15004, - 'Label' => 'Textbooks|Arts & Entertainment|Dance', - ), - 15005 => array( - 'Id' => 15005, - 'Label' => 'Textbooks|Arts & Entertainment|Design', - ), - 15006 => array( - 'Id' => 15006, - 'Label' => 'Textbooks|Arts & Entertainment|Fashion', - ), - 15007 => array( - 'Id' => 15007, - 'Label' => 'Textbooks|Arts & Entertainment|Film', - ), - 15008 => array( - 'Id' => 15008, - 'Label' => 'Textbooks|Arts & Entertainment|Games', - ), - 15009 => array( - 'Id' => 15009, - 'Label' => 'Textbooks|Arts & Entertainment|Interior Design', - ), - 15010 => array( - 'Id' => 15010, - 'Label' => 'Textbooks|Arts & Entertainment|Media Arts', - ), - 15011 => array( - 'Id' => 15011, - 'Label' => 'Textbooks|Arts & Entertainment|Music', - ), - 15012 => array( - 'Id' => 15012, - 'Label' => 'Textbooks|Arts & Entertainment|Performing Arts', - ), - 15013 => array( - 'Id' => 15013, - 'Label' => 'Textbooks|Arts & Entertainment|Photography', - ), - 15014 => array( - 'Id' => 15014, - 'Label' => 'Textbooks|Arts & Entertainment|Theater', - ), - 15015 => array( - 'Id' => 15015, - 'Label' => 'Textbooks|Arts & Entertainment|TV', - ), - 15016 => array( - 'Id' => 15016, - 'Label' => 'Textbooks|Arts & Entertainment|Visual Arts', - ), - 15017 => array( - 'Id' => 15017, - 'Label' => 'Textbooks|Biographies & Memoirs', - ), - 15018 => array( - 'Id' => 15018, - 'Label' => 'Textbooks|Business & Personal Finance', - ), - 15019 => array( - 'Id' => 15019, - 'Label' => 'Textbooks|Business & Personal Finance|Accounting', - ), - 15020 => array( - 'Id' => 15020, - 'Label' => 'Textbooks|Business & Personal Finance|Careers', - ), - 15021 => array( - 'Id' => 15021, - 'Label' => 'Textbooks|Business & Personal Finance|Economics', - ), - 15022 => array( - 'Id' => 15022, - 'Label' => 'Textbooks|Business & Personal Finance|Finance', - ), - 15023 => array( - 'Id' => 15023, - 'Label' => 'Textbooks|Business & Personal Finance|Hospitality', - ), - 15024 => array( - 'Id' => 15024, - 'Label' => 'Textbooks|Business & Personal Finance|Industries & Professions', - ), - 15025 => array( - 'Id' => 15025, - 'Label' => 'Textbooks|Business & Personal Finance|Investing', - ), - 15026 => array( - 'Id' => 15026, - 'Label' => 'Textbooks|Business & Personal Finance|Management & Leadership', - ), - 15027 => array( - 'Id' => 15027, - 'Label' => 'Textbooks|Business & Personal Finance|Marketing & Sales', - ), - 15028 => array( - 'Id' => 15028, - 'Label' => 'Textbooks|Business & Personal Finance|Personal Finance', - ), - 15029 => array( - 'Id' => 15029, - 'Label' => 'Textbooks|Business & Personal Finance|Real Estate', - ), - 15030 => array( - 'Id' => 15030, - 'Label' => 'Textbooks|Business & Personal Finance|Reference', - ), - 15031 => array( - 'Id' => 15031, - 'Label' => 'Textbooks|Business & Personal Finance|Small Business & Entrepreneurship', - ), - 15032 => array( - 'Id' => 15032, - 'Label' => 'Textbooks|Children & Teens', - ), - 15033 => array( - 'Id' => 15033, - 'Label' => 'Textbooks|Children & Teens|Fiction', - ), - 15034 => array( - 'Id' => 15034, - 'Label' => 'Textbooks|Children & Teens|Nonfiction', - ), - 15035 => array( - 'Id' => 15035, - 'Label' => 'Textbooks|Comics & Graphic Novels', - ), - 15036 => array( - 'Id' => 15036, - 'Label' => 'Textbooks|Comics & Graphic Novels|Graphic Novels', - ), - 15037 => array( - 'Id' => 15037, - 'Label' => 'Textbooks|Comics & Graphic Novels|Manga', - ), - 15038 => array( - 'Id' => 15038, - 'Label' => 'Textbooks|Communications & Media', - ), - 15039 => array( - 'Id' => 15039, - 'Label' => 'Textbooks|Communications & Media|Broadcasting', - ), - 15040 => array( - 'Id' => 15040, - 'Label' => 'Textbooks|Communications & Media|Digital Media', - ), - 15041 => array( - 'Id' => 15041, - 'Label' => 'Textbooks|Communications & Media|Journalism', - ), - 15042 => array( - 'Id' => 15042, - 'Label' => 'Textbooks|Communications & Media|Photojournalism', - ), - 15043 => array( - 'Id' => 15043, - 'Label' => 'Textbooks|Communications & Media|Print', - ), - 15044 => array( - 'Id' => 15044, - 'Label' => 'Textbooks|Communications & Media|Speech', - ), - 15045 => array( - 'Id' => 15045, - 'Label' => 'Textbooks|Communications & Media|Writing', - ), - 15046 => array( - 'Id' => 15046, - 'Label' => 'Textbooks|Computers & Internet', - ), - 15047 => array( - 'Id' => 15047, - 'Label' => 'Textbooks|Computers & Internet|Computers', - ), - 15048 => array( - 'Id' => 15048, - 'Label' => 'Textbooks|Computers & Internet|Databases', - ), - 15049 => array( - 'Id' => 15049, - 'Label' => 'Textbooks|Computers & Internet|Digital Media', - ), - 15050 => array( - 'Id' => 15050, - 'Label' => 'Textbooks|Computers & Internet|Internet', - ), - 15051 => array( - 'Id' => 15051, - 'Label' => 'Textbooks|Computers & Internet|Network', - ), - 15052 => array( - 'Id' => 15052, - 'Label' => 'Textbooks|Computers & Internet|Operating Systems', - ), - 15053 => array( - 'Id' => 15053, - 'Label' => 'Textbooks|Computers & Internet|Programming', - ), - 15054 => array( - 'Id' => 15054, - 'Label' => 'Textbooks|Computers & Internet|Software', - ), - 15055 => array( - 'Id' => 15055, - 'Label' => 'Textbooks|Computers & Internet|System Administration', - ), - 15056 => array( - 'Id' => 15056, - 'Label' => 'Textbooks|Cookbooks, Food & Wine', - ), - 15057 => array( - 'Id' => 15057, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Beverages', - ), - 15058 => array( - 'Id' => 15058, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Courses & Dishes', - ), - 15059 => array( - 'Id' => 15059, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Culinary Arts', - ), - 15060 => array( - 'Id' => 15060, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Methods', - ), - 15061 => array( - 'Id' => 15061, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Reference', - ), - 15062 => array( - 'Id' => 15062, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Regional & Ethnic', - ), - 15063 => array( - 'Id' => 15063, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Special Diet', - ), - 15064 => array( - 'Id' => 15064, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Special Occasions', - ), - 15065 => array( - 'Id' => 15065, - 'Label' => 'Textbooks|Cookbooks, Food & Wine|Specific Ingredients', - ), - 15066 => array( - 'Id' => 15066, - 'Label' => 'Textbooks|Engineering', - ), - 15067 => array( - 'Id' => 15067, - 'Label' => 'Textbooks|Engineering|Aeronautics', - ), - 15068 => array( - 'Id' => 15068, - 'Label' => 'Textbooks|Engineering|Chemical & Petroleum Engineering', - ), - 15069 => array( - 'Id' => 15069, - 'Label' => 'Textbooks|Engineering|Civil Engineering', - ), - 15070 => array( - 'Id' => 15070, - 'Label' => 'Textbooks|Engineering|Computer Science', - ), - 15071 => array( - 'Id' => 15071, - 'Label' => 'Textbooks|Engineering|Electrical Engineering', - ), - 15072 => array( - 'Id' => 15072, - 'Label' => 'Textbooks|Engineering|Environmental Engineering', - ), - 15073 => array( - 'Id' => 15073, - 'Label' => 'Textbooks|Engineering|Mechanical Engineering', - ), - 15074 => array( - 'Id' => 15074, - 'Label' => 'Textbooks|Engineering|Power Resources', - ), - 15075 => array( - 'Id' => 15075, - 'Label' => 'Textbooks|Fiction & Literature', - ), - 15076 => array( - 'Id' => 15076, - 'Label' => 'Textbooks|Fiction & Literature|Latino', - ), - 15077 => array( - 'Id' => 15077, - 'Label' => 'Textbooks|Fiction & Literature|Action & Adventure', - ), - 15078 => array( - 'Id' => 15078, - 'Label' => 'Textbooks|Fiction & Literature|African American', - ), - 15079 => array( - 'Id' => 15079, - 'Label' => 'Textbooks|Fiction & Literature|Anthologies', - ), - 15080 => array( - 'Id' => 15080, - 'Label' => 'Textbooks|Fiction & Literature|Classics', - ), - 15081 => array( - 'Id' => 15081, - 'Label' => 'Textbooks|Fiction & Literature|Comparative Literature', - ), - 15082 => array( - 'Id' => 15082, - 'Label' => 'Textbooks|Fiction & Literature|Erotica', - ), - 15083 => array( - 'Id' => 15083, - 'Label' => 'Textbooks|Fiction & Literature|Gay', - ), - 15084 => array( - 'Id' => 15084, - 'Label' => 'Textbooks|Fiction & Literature|Ghost', - ), - 15085 => array( - 'Id' => 15085, - 'Label' => 'Textbooks|Fiction & Literature|Historical', - ), - 15086 => array( - 'Id' => 15086, - 'Label' => 'Textbooks|Fiction & Literature|Horror', - ), - 15087 => array( - 'Id' => 15087, - 'Label' => 'Textbooks|Fiction & Literature|Literary', - ), - 15088 => array( - 'Id' => 15088, - 'Label' => 'Textbooks|Fiction & Literature|Literary Criticism', - ), - 15089 => array( - 'Id' => 15089, - 'Label' => 'Textbooks|Fiction & Literature|Poetry', - ), - 15090 => array( - 'Id' => 15090, - 'Label' => 'Textbooks|Fiction & Literature|Religious', - ), - 15091 => array( - 'Id' => 15091, - 'Label' => 'Textbooks|Fiction & Literature|Short Stories', - ), - 15092 => array( - 'Id' => 15092, - 'Label' => 'Textbooks|Health, Mind & Body', - ), - 15093 => array( - 'Id' => 15093, - 'Label' => 'Textbooks|Health, Mind & Body|Fitness', - ), - 15094 => array( - 'Id' => 15094, - 'Label' => 'Textbooks|Health, Mind & Body|Self-Improvement', - ), - 15095 => array( - 'Id' => 15095, - 'Label' => 'Textbooks|History', - ), - 15096 => array( - 'Id' => 15096, - 'Label' => 'Textbooks|History|Africa', - ), - 15097 => array( - 'Id' => 15097, - 'Label' => 'Textbooks|History|Americas', - ), - 15098 => array( - 'Id' => 15098, - 'Label' => 'Textbooks|History|Americas|Canada', - ), - 15099 => array( - 'Id' => 15099, - 'Label' => 'Textbooks|History|Americas|Latin America', - ), - 15100 => array( - 'Id' => 15100, - 'Label' => 'Textbooks|History|Americas|United States', - ), - 15101 => array( - 'Id' => 15101, - 'Label' => 'Textbooks|History|Ancient', - ), - 15102 => array( - 'Id' => 15102, - 'Label' => 'Textbooks|History|Asia', - ), - 15103 => array( - 'Id' => 15103, - 'Label' => 'Textbooks|History|Australia & Oceania', - ), - 15104 => array( - 'Id' => 15104, - 'Label' => 'Textbooks|History|Europe', - ), - 15105 => array( - 'Id' => 15105, - 'Label' => 'Textbooks|History|Middle East', - ), - 15106 => array( - 'Id' => 15106, - 'Label' => 'Textbooks|History|Military', - ), - 15107 => array( - 'Id' => 15107, - 'Label' => 'Textbooks|History|World', - ), - 15108 => array( - 'Id' => 15108, - 'Label' => 'Textbooks|Humor', - ), - 15109 => array( - 'Id' => 15109, - 'Label' => 'Textbooks|Language Studies', - ), - 15110 => array( - 'Id' => 15110, - 'Label' => 'Textbooks|Language Studies|African Languages', - ), - 15111 => array( - 'Id' => 15111, - 'Label' => 'Textbooks|Language Studies|Ancient Languages', - ), - 15112 => array( - 'Id' => 15112, - 'Label' => 'Textbooks|Language Studies|Arabic', - ), - 15113 => array( - 'Id' => 15113, - 'Label' => 'Textbooks|Language Studies|Bilingual Editions', - ), - 15114 => array( - 'Id' => 15114, - 'Label' => 'Textbooks|Language Studies|Chinese', - ), - 15115 => array( - 'Id' => 15115, - 'Label' => 'Textbooks|Language Studies|English', - ), - 15116 => array( - 'Id' => 15116, - 'Label' => 'Textbooks|Language Studies|French', - ), - 15117 => array( - 'Id' => 15117, - 'Label' => 'Textbooks|Language Studies|German', - ), - 15118 => array( - 'Id' => 15118, - 'Label' => 'Textbooks|Language Studies|Hebrew', - ), - 15119 => array( - 'Id' => 15119, - 'Label' => 'Textbooks|Language Studies|Hindi', - ), - 15120 => array( - 'Id' => 15120, - 'Label' => 'Textbooks|Language Studies|Indigenous Languages', - ), - 15121 => array( - 'Id' => 15121, - 'Label' => 'Textbooks|Language Studies|Italian', - ), - 15122 => array( - 'Id' => 15122, - 'Label' => 'Textbooks|Language Studies|Japanese', - ), - 15123 => array( - 'Id' => 15123, - 'Label' => 'Textbooks|Language Studies|Korean', - ), - 15124 => array( - 'Id' => 15124, - 'Label' => 'Textbooks|Language Studies|Linguistics', - ), - 15125 => array( - 'Id' => 15125, - 'Label' => 'Textbooks|Language Studies|Other Language', - ), - 15126 => array( - 'Id' => 15126, - 'Label' => 'Textbooks|Language Studies|Portuguese', - ), - 15127 => array( - 'Id' => 15127, - 'Label' => 'Textbooks|Language Studies|Russian', - ), - 15128 => array( - 'Id' => 15128, - 'Label' => 'Textbooks|Language Studies|Spanish', - ), - 15129 => array( - 'Id' => 15129, - 'Label' => 'Textbooks|Language Studies|Speech Pathology', - ), - 15130 => array( - 'Id' => 15130, - 'Label' => 'Textbooks|Lifestyle & Home', - ), - 15131 => array( - 'Id' => 15131, - 'Label' => 'Textbooks|Lifestyle & Home|Antiques & Collectibles', - ), - 15132 => array( - 'Id' => 15132, - 'Label' => 'Textbooks|Lifestyle & Home|Crafts & Hobbies', - ), - 15133 => array( - 'Id' => 15133, - 'Label' => 'Textbooks|Lifestyle & Home|Gardening', - ), - 15134 => array( - 'Id' => 15134, - 'Label' => 'Textbooks|Lifestyle & Home|Pets', - ), - 15135 => array( - 'Id' => 15135, - 'Label' => 'Textbooks|Mathematics', - ), - 15136 => array( - 'Id' => 15136, - 'Label' => 'Textbooks|Mathematics|Advanced Mathematics', - ), - 15137 => array( - 'Id' => 15137, - 'Label' => 'Textbooks|Mathematics|Algebra', - ), - 15138 => array( - 'Id' => 15138, - 'Label' => 'Textbooks|Mathematics|Arithmetic', - ), - 15139 => array( - 'Id' => 15139, - 'Label' => 'Textbooks|Mathematics|Calculus', - ), - 15140 => array( - 'Id' => 15140, - 'Label' => 'Textbooks|Mathematics|Geometry', - ), - 15141 => array( - 'Id' => 15141, - 'Label' => 'Textbooks|Mathematics|Statistics', - ), - 15142 => array( - 'Id' => 15142, - 'Label' => 'Textbooks|Medicine', - ), - 15143 => array( - 'Id' => 15143, - 'Label' => 'Textbooks|Medicine|Anatomy & Physiology', - ), - 15144 => array( - 'Id' => 15144, - 'Label' => 'Textbooks|Medicine|Dentistry', - ), - 15145 => array( - 'Id' => 15145, - 'Label' => 'Textbooks|Medicine|Emergency Medicine', - ), - 15146 => array( - 'Id' => 15146, - 'Label' => 'Textbooks|Medicine|Genetics', - ), - 15147 => array( - 'Id' => 15147, - 'Label' => 'Textbooks|Medicine|Immunology', - ), - 15148 => array( - 'Id' => 15148, - 'Label' => 'Textbooks|Medicine|Neuroscience', - ), - 15149 => array( - 'Id' => 15149, - 'Label' => 'Textbooks|Medicine|Nursing', - ), - 15150 => array( - 'Id' => 15150, - 'Label' => 'Textbooks|Medicine|Pharmacology & Toxicology', - ), - 15151 => array( - 'Id' => 15151, - 'Label' => 'Textbooks|Medicine|Psychiatry', - ), - 15152 => array( - 'Id' => 15152, - 'Label' => 'Textbooks|Medicine|Psychology', - ), - 15153 => array( - 'Id' => 15153, - 'Label' => 'Textbooks|Medicine|Radiology', - ), - 15154 => array( - 'Id' => 15154, - 'Label' => 'Textbooks|Medicine|Veterinary', - ), - 15155 => array( - 'Id' => 15155, - 'Label' => 'Textbooks|Mysteries & Thrillers', - ), - 15156 => array( - 'Id' => 15156, - 'Label' => 'Textbooks|Mysteries & Thrillers|British Detectives', - ), - 15157 => array( - 'Id' => 15157, - 'Label' => 'Textbooks|Mysteries & Thrillers|Hard-Boiled', - ), - 15158 => array( - 'Id' => 15158, - 'Label' => 'Textbooks|Mysteries & Thrillers|Historical', - ), - 15159 => array( - 'Id' => 15159, - 'Label' => 'Textbooks|Mysteries & Thrillers|Police Procedural', - ), - 15160 => array( - 'Id' => 15160, - 'Label' => 'Textbooks|Mysteries & Thrillers|Short Stories', - ), - 15161 => array( - 'Id' => 15161, - 'Label' => 'Textbooks|Mysteries & Thrillers|Women Sleuths', - ), - 15162 => array( - 'Id' => 15162, - 'Label' => 'Textbooks|Nonfiction', - ), - 15163 => array( - 'Id' => 15163, - 'Label' => 'Textbooks|Nonfiction|Family & Relationships', - ), - 15164 => array( - 'Id' => 15164, - 'Label' => 'Textbooks|Nonfiction|Transportation', - ), - 15165 => array( - 'Id' => 15165, - 'Label' => 'Textbooks|Nonfiction|True Crime', - ), - 15166 => array( - 'Id' => 15166, - 'Label' => 'Textbooks|Parenting', - ), - 15167 => array( - 'Id' => 15167, - 'Label' => 'Textbooks|Philosophy', - ), - 15168 => array( - 'Id' => 15168, - 'Label' => 'Textbooks|Philosophy|Aesthetics', - ), - 15169 => array( - 'Id' => 15169, - 'Label' => 'Textbooks|Philosophy|Epistemology', - ), - 15170 => array( - 'Id' => 15170, - 'Label' => 'Textbooks|Philosophy|Ethics', - ), - 15171 => array( - 'Id' => 15171, - 'Label' => 'Textbooks|Philosophy|Philosophy of Language', - ), - 15172 => array( - 'Id' => 15172, - 'Label' => 'Textbooks|Philosophy|Logic', - ), - 15173 => array( - 'Id' => 15173, - 'Label' => 'Textbooks|Philosophy|Metaphysics', - ), - 15174 => array( - 'Id' => 15174, - 'Label' => 'Textbooks|Philosophy|Political Philosophy', - ), - 15175 => array( - 'Id' => 15175, - 'Label' => 'Textbooks|Philosophy|Philosophy of Religion', - ), - 15176 => array( - 'Id' => 15176, - 'Label' => 'Textbooks|Politics & Current Events', - ), - 15177 => array( - 'Id' => 15177, - 'Label' => 'Textbooks|Politics & Current Events|Current Events', - ), - 15178 => array( - 'Id' => 15178, - 'Label' => 'Textbooks|Politics & Current Events|Foreign Policy & International Relations', - ), - 15179 => array( - 'Id' => 15179, - 'Label' => 'Textbooks|Politics & Current Events|Local Governments', - ), - 15180 => array( - 'Id' => 15180, - 'Label' => 'Textbooks|Politics & Current Events|National Governments', - ), - 15181 => array( - 'Id' => 15181, - 'Label' => 'Textbooks|Politics & Current Events|Political Science', - ), - 15182 => array( - 'Id' => 15182, - 'Label' => 'Textbooks|Politics & Current Events|Public Administration', - ), - 15183 => array( - 'Id' => 15183, - 'Label' => 'Textbooks|Politics & Current Events|World Affairs', - ), - 15184 => array( - 'Id' => 15184, - 'Label' => 'Textbooks|Professional & Technical', - ), - 15185 => array( - 'Id' => 15185, - 'Label' => 'Textbooks|Professional & Technical|Design', - ), - 15186 => array( - 'Id' => 15186, - 'Label' => 'Textbooks|Professional & Technical|Language Arts & Disciplines', - ), - 15187 => array( - 'Id' => 15187, - 'Label' => 'Textbooks|Professional & Technical|Engineering', - ), - 15188 => array( - 'Id' => 15188, - 'Label' => 'Textbooks|Professional & Technical|Law', - ), - 15189 => array( - 'Id' => 15189, - 'Label' => 'Textbooks|Professional & Technical|Medical', - ), - 15190 => array( - 'Id' => 15190, - 'Label' => 'Textbooks|Reference', - ), - 15191 => array( - 'Id' => 15191, - 'Label' => 'Textbooks|Reference|Almanacs & Yearbooks', - ), - 15192 => array( - 'Id' => 15192, - 'Label' => 'Textbooks|Reference|Atlases & Maps', - ), - 15193 => array( - 'Id' => 15193, - 'Label' => 'Textbooks|Reference|Catalogs & Directories', - ), - 15194 => array( - 'Id' => 15194, - 'Label' => 'Textbooks|Reference|Consumer Guides', - ), - 15195 => array( - 'Id' => 15195, - 'Label' => 'Textbooks|Reference|Dictionaries & Thesauruses', - ), - 15196 => array( - 'Id' => 15196, - 'Label' => 'Textbooks|Reference|Encyclopedias', - ), - 15197 => array( - 'Id' => 15197, - 'Label' => 'Textbooks|Reference|Etiquette', - ), - 15198 => array( - 'Id' => 15198, - 'Label' => 'Textbooks|Reference|Quotations', - ), - 15199 => array( - 'Id' => 15199, - 'Label' => 'Textbooks|Reference|Study Aids', - ), - 15200 => array( - 'Id' => 15200, - 'Label' => 'Textbooks|Reference|Words & Language', - ), - 15201 => array( - 'Id' => 15201, - 'Label' => 'Textbooks|Reference|Writing', - ), - 15202 => array( - 'Id' => 15202, - 'Label' => 'Textbooks|Religion & Spirituality', - ), - 15203 => array( - 'Id' => 15203, - 'Label' => 'Textbooks|Religion & Spirituality|Bible Studies', - ), - 15204 => array( - 'Id' => 15204, - 'Label' => 'Textbooks|Religion & Spirituality|Bibles', - ), - 15205 => array( - 'Id' => 15205, - 'Label' => 'Textbooks|Religion & Spirituality|Buddhism', - ), - 15206 => array( - 'Id' => 15206, - 'Label' => 'Textbooks|Religion & Spirituality|Christianity', - ), - 15207 => array( - 'Id' => 15207, - 'Label' => 'Textbooks|Religion & Spirituality|Comparative Religion', - ), - 15208 => array( - 'Id' => 15208, - 'Label' => 'Textbooks|Religion & Spirituality|Hinduism', - ), - 15209 => array( - 'Id' => 15209, - 'Label' => 'Textbooks|Religion & Spirituality|Islam', - ), - 15210 => array( - 'Id' => 15210, - 'Label' => 'Textbooks|Religion & Spirituality|Judaism', - ), - 15211 => array( - 'Id' => 15211, - 'Label' => 'Textbooks|Religion & Spirituality|Spirituality', - ), - 15212 => array( - 'Id' => 15212, - 'Label' => 'Textbooks|Romance', - ), - 15213 => array( - 'Id' => 15213, - 'Label' => 'Textbooks|Romance|Contemporary', - ), - 15214 => array( - 'Id' => 15214, - 'Label' => 'Textbooks|Romance|Erotica', - ), - 15215 => array( - 'Id' => 15215, - 'Label' => 'Textbooks|Romance|Fantasy, Futuristic & Ghost', - ), - 15216 => array( - 'Id' => 15216, - 'Label' => 'Textbooks|Romance|Historical', - ), - 15217 => array( - 'Id' => 15217, - 'Label' => 'Textbooks|Romance|Short Stories', - ), - 15218 => array( - 'Id' => 15218, - 'Label' => 'Textbooks|Romance|Suspense', - ), - 15219 => array( - 'Id' => 15219, - 'Label' => 'Textbooks|Romance|Western', - ), - 15220 => array( - 'Id' => 15220, - 'Label' => 'Textbooks|Sci-Fi & Fantasy', - ), - 15221 => array( - 'Id' => 15221, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Fantasy', - ), - 15222 => array( - 'Id' => 15222, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Fantasy|Contemporary', - ), - 15223 => array( - 'Id' => 15223, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Fantasy|Epic', - ), - 15224 => array( - 'Id' => 15224, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Fantasy|Historical', - ), - 15225 => array( - 'Id' => 15225, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Fantasy|Paranormal', - ), - 15226 => array( - 'Id' => 15226, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Fantasy|Short Stories', - ), - 15227 => array( - 'Id' => 15227, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Science Fiction', - ), - 15228 => array( - 'Id' => 15228, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Science Fiction & Literature', - ), - 15229 => array( - 'Id' => 15229, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Science Fiction & Literature|Adventure', - ), - 15230 => array( - 'Id' => 15230, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Science Fiction & Literature|High Tech', - ), - 15231 => array( - 'Id' => 15231, - 'Label' => 'Textbooks|Sci-Fi & Fantasy|Science Fiction & Literature|Short Stories', - ), - 15232 => array( - 'Id' => 15232, - 'Label' => 'Textbooks|Science & Nature', - ), - 15233 => array( - 'Id' => 15233, - 'Label' => 'Textbooks|Science & Nature|Agriculture', - ), - 15234 => array( - 'Id' => 15234, - 'Label' => 'Textbooks|Science & Nature|Astronomy', - ), - 15235 => array( - 'Id' => 15235, - 'Label' => 'Textbooks|Science & Nature|Atmosphere', - ), - 15236 => array( - 'Id' => 15236, - 'Label' => 'Textbooks|Science & Nature|Biology', - ), - 15237 => array( - 'Id' => 15237, - 'Label' => 'Textbooks|Science & Nature|Chemistry', - ), - 15238 => array( - 'Id' => 15238, - 'Label' => 'Textbooks|Science & Nature|Earth Sciences', - ), - 15239 => array( - 'Id' => 15239, - 'Label' => 'Textbooks|Science & Nature|Ecology', - ), - 15240 => array( - 'Id' => 15240, - 'Label' => 'Textbooks|Science & Nature|Environment', - ), - 15241 => array( - 'Id' => 15241, - 'Label' => 'Textbooks|Science & Nature|Essays', - ), - 15242 => array( - 'Id' => 15242, - 'Label' => 'Textbooks|Science & Nature|Geography', - ), - 15243 => array( - 'Id' => 15243, - 'Label' => 'Textbooks|Science & Nature|Geology', - ), - 15244 => array( - 'Id' => 15244, - 'Label' => 'Textbooks|Science & Nature|History', - ), - 15245 => array( - 'Id' => 15245, - 'Label' => 'Textbooks|Science & Nature|Life Sciences', - ), - 15246 => array( - 'Id' => 15246, - 'Label' => 'Textbooks|Science & Nature|Nature', - ), - 15247 => array( - 'Id' => 15247, - 'Label' => 'Textbooks|Science & Nature|Physics', - ), - 15248 => array( - 'Id' => 15248, - 'Label' => 'Textbooks|Science & Nature|Reference', - ), - 15249 => array( - 'Id' => 15249, - 'Label' => 'Textbooks|Social Science', - ), - 15250 => array( - 'Id' => 15250, - 'Label' => 'Textbooks|Social Science|Anthropology', - ), - 15251 => array( - 'Id' => 15251, - 'Label' => 'Textbooks|Social Science|Archaeology', - ), - 15252 => array( - 'Id' => 15252, - 'Label' => 'Textbooks|Social Science|Civics', - ), - 15253 => array( - 'Id' => 15253, - 'Label' => 'Textbooks|Social Science|Government', - ), - 15254 => array( - 'Id' => 15254, - 'Label' => 'Textbooks|Social Science|Social Studies', - ), - 15255 => array( - 'Id' => 15255, - 'Label' => 'Textbooks|Social Science|Social Welfare', - ), - 15256 => array( - 'Id' => 15256, - 'Label' => 'Textbooks|Social Science|Society', - ), - 15257 => array( - 'Id' => 15257, - 'Label' => 'Textbooks|Social Science|Society|African Studies', - ), - 15258 => array( - 'Id' => 15258, - 'Label' => 'Textbooks|Social Science|Society|American Studies', - ), - 15259 => array( - 'Id' => 15259, - 'Label' => 'Textbooks|Social Science|Society|Asia Pacific Studies', - ), - 15260 => array( - 'Id' => 15260, - 'Label' => 'Textbooks|Social Science|Society|Cross-Cultural Studies', - ), - 15261 => array( - 'Id' => 15261, - 'Label' => 'Textbooks|Social Science|Society|European Studies', - ), - 15262 => array( - 'Id' => 15262, - 'Label' => 'Textbooks|Social Science|Society|Immigration & Emigration', - ), - 15263 => array( - 'Id' => 15263, - 'Label' => 'Textbooks|Social Science|Society|Indigenous Studies', - ), - 15264 => array( - 'Id' => 15264, - 'Label' => 'Textbooks|Social Science|Society|Latin & Caribbean Studies', - ), - 15265 => array( - 'Id' => 15265, - 'Label' => 'Textbooks|Social Science|Society|Middle Eastern Studies', - ), - 15266 => array( - 'Id' => 15266, - 'Label' => 'Textbooks|Social Science|Society|Race & Ethnicity Studies', - ), - 15267 => array( - 'Id' => 15267, - 'Label' => 'Textbooks|Social Science|Society|Sexuality Studies', - ), - 15268 => array( - 'Id' => 15268, - 'Label' => 'Textbooks|Social Science|Society|Women\'s Studies', - ), - 15269 => array( - 'Id' => 15269, - 'Label' => 'Textbooks|Social Science|Sociology', - ), - 15270 => array( - 'Id' => 15270, - 'Label' => 'Textbooks|Sports & Outdoors', - ), - 15271 => array( - 'Id' => 15271, - 'Label' => 'Textbooks|Sports & Outdoors|Baseball', - ), - 15272 => array( - 'Id' => 15272, - 'Label' => 'Textbooks|Sports & Outdoors|Basketball', - ), - 15273 => array( - 'Id' => 15273, - 'Label' => 'Textbooks|Sports & Outdoors|Coaching', - ), - 15274 => array( - 'Id' => 15274, - 'Label' => 'Textbooks|Sports & Outdoors|Equestrian', - ), - 15275 => array( - 'Id' => 15275, - 'Label' => 'Textbooks|Sports & Outdoors|Extreme Sports', - ), - 15276 => array( - 'Id' => 15276, - 'Label' => 'Textbooks|Sports & Outdoors|Football', - ), - 15277 => array( - 'Id' => 15277, - 'Label' => 'Textbooks|Sports & Outdoors|Golf', - ), - 15278 => array( - 'Id' => 15278, - 'Label' => 'Textbooks|Sports & Outdoors|Hockey', - ), - 15279 => array( - 'Id' => 15279, - 'Label' => 'Textbooks|Sports & Outdoors|Motor Sports', - ), - 15280 => array( - 'Id' => 15280, - 'Label' => 'Textbooks|Sports & Outdoors|Mountaineering', - ), - 15281 => array( - 'Id' => 15281, - 'Label' => 'Textbooks|Sports & Outdoors|Outdoors', - ), - 15282 => array( - 'Id' => 15282, - 'Label' => 'Textbooks|Sports & Outdoors|Racket Sports', - ), - 15283 => array( - 'Id' => 15283, - 'Label' => 'Textbooks|Sports & Outdoors|Reference', - ), - 15284 => array( - 'Id' => 15284, - 'Label' => 'Textbooks|Sports & Outdoors|Soccer', - ), - 15285 => array( - 'Id' => 15285, - 'Label' => 'Textbooks|Sports & Outdoors|Training', - ), - 15286 => array( - 'Id' => 15286, - 'Label' => 'Textbooks|Sports & Outdoors|Water Sports', - ), - 15287 => array( - 'Id' => 15287, - 'Label' => 'Textbooks|Sports & Outdoors|Winter Sports', - ), - 15288 => array( - 'Id' => 15288, - 'Label' => 'Textbooks|Teaching & Learning', - ), - 15289 => array( - 'Id' => 15289, - 'Label' => 'Textbooks|Teaching & Learning|Adult Education', - ), - 15290 => array( - 'Id' => 15290, - 'Label' => 'Textbooks|Teaching & Learning|Curriculum & Teaching', - ), - 15291 => array( - 'Id' => 15291, - 'Label' => 'Textbooks|Teaching & Learning|Educational Leadership', - ), - 15292 => array( - 'Id' => 15292, - 'Label' => 'Textbooks|Teaching & Learning|Educational Technology', - ), - 15293 => array( - 'Id' => 15293, - 'Label' => 'Textbooks|Teaching & Learning|Family & Childcare', - ), - 15294 => array( - 'Id' => 15294, - 'Label' => 'Textbooks|Teaching & Learning|Information & Library Science', - ), - 15295 => array( - 'Id' => 15295, - 'Label' => 'Textbooks|Teaching & Learning|Learning Resources', - ), - 15296 => array( - 'Id' => 15296, - 'Label' => 'Textbooks|Teaching & Learning|Psychology & Research', - ), - 15297 => array( - 'Id' => 15297, - 'Label' => 'Textbooks|Teaching & Learning|Special Education', - ), - 15298 => array( - 'Id' => 15298, - 'Label' => 'Textbooks|Travel & Adventure', - ), - 15299 => array( - 'Id' => 15299, - 'Label' => 'Textbooks|Travel & Adventure|Africa', - ), - 15300 => array( - 'Id' => 15300, - 'Label' => 'Textbooks|Travel & Adventure|Americas', - ), - 15301 => array( - 'Id' => 15301, - 'Label' => 'Textbooks|Travel & Adventure|Americas|Canada', - ), - 15302 => array( - 'Id' => 15302, - 'Label' => 'Textbooks|Travel & Adventure|Americas|Latin America', - ), - 15303 => array( - 'Id' => 15303, - 'Label' => 'Textbooks|Travel & Adventure|Americas|United States', - ), - 15304 => array( - 'Id' => 15304, - 'Label' => 'Textbooks|Travel & Adventure|Asia', - ), - 15305 => array( - 'Id' => 15305, - 'Label' => 'Textbooks|Travel & Adventure|Caribbean', - ), - 15306 => array( - 'Id' => 15306, - 'Label' => 'Textbooks|Travel & Adventure|Essays & Memoirs', - ), - 15307 => array( - 'Id' => 15307, - 'Label' => 'Textbooks|Travel & Adventure|Europe', - ), - 15308 => array( - 'Id' => 15308, - 'Label' => 'Textbooks|Travel & Adventure|Middle East', - ), - 15309 => array( - 'Id' => 15309, - 'Label' => 'Textbooks|Travel & Adventure|Oceania', - ), - 15310 => array( - 'Id' => 15310, - 'Label' => 'Textbooks|Travel & Adventure|Specialty Travel', - ), - 15311 => array( - 'Id' => 15311, - 'Label' => 'Textbooks|Comics & Graphic Novels|Comics', - ), - 15312 => array( - 'Id' => 15312, - 'Label' => 'Textbooks|Reference|Manuals', - ), - 100000 => array( - 'Id' => 100000, - 'Label' => 'Music|Christian & Gospel', - ), - 40000000 => array( - 'Id' => 40000000, - 'Label' => 'iTunes U', - ), - 40000001 => array( - 'Id' => 40000001, - 'Label' => 'iTunes U|Business', - ), - 40000002 => array( - 'Id' => 40000002, - 'Label' => 'iTunes U|Business|Economics', - ), - 40000003 => array( - 'Id' => 40000003, - 'Label' => 'iTunes U|Business|Finance', - ), - 40000004 => array( - 'Id' => 40000004, - 'Label' => 'iTunes U|Business|Hospitality', - ), - 40000005 => array( - 'Id' => 40000005, - 'Label' => 'iTunes U|Business|Management', - ), - 40000006 => array( - 'Id' => 40000006, - 'Label' => 'iTunes U|Business|Marketing', - ), - 40000007 => array( - 'Id' => 40000007, - 'Label' => 'iTunes U|Business|Personal Finance', - ), - 40000008 => array( - 'Id' => 40000008, - 'Label' => 'iTunes U|Business|Real Estate', - ), - 40000009 => array( - 'Id' => 40000009, - 'Label' => 'iTunes U|Engineering', - ), - 40000010 => array( - 'Id' => 40000010, - 'Label' => 'iTunes U|Engineering|Chemical & Petroleum Engineering', - ), - 40000011 => array( - 'Id' => 40000011, - 'Label' => 'iTunes U|Engineering|Civil Engineering', - ), - 40000012 => array( - 'Id' => 40000012, - 'Label' => 'iTunes U|Engineering|Computer Science', - ), - 40000013 => array( - 'Id' => 40000013, - 'Label' => 'iTunes U|Engineering|Electrical Engineering', - ), - 40000014 => array( - 'Id' => 40000014, - 'Label' => 'iTunes U|Engineering|Environmental Engineering', - ), - 40000015 => array( - 'Id' => 40000015, - 'Label' => 'iTunes U|Engineering|Mechanical Engineering', - ), - 40000016 => array( - 'Id' => 40000016, - 'Label' => 'iTunes U|Art & Architecture', - ), - 40000017 => array( - 'Id' => 40000017, - 'Label' => 'iTunes U|Art & Architecture|Architecture', - ), - 40000019 => array( - 'Id' => 40000019, - 'Label' => 'iTunes U|Art & Architecture|Art History', - ), - 40000020 => array( - 'Id' => 40000020, - 'Label' => 'iTunes U|Art & Architecture|Dance', - ), - 40000021 => array( - 'Id' => 40000021, - 'Label' => 'iTunes U|Art & Architecture|Film', - ), - 40000022 => array( - 'Id' => 40000022, - 'Label' => 'iTunes U|Art & Architecture|Design', - ), - 40000023 => array( - 'Id' => 40000023, - 'Label' => 'iTunes U|Art & Architecture|Interior Design', - ), - 40000024 => array( - 'Id' => 40000024, - 'Label' => 'iTunes U|Art & Architecture|Music', - ), - 40000025 => array( - 'Id' => 40000025, - 'Label' => 'iTunes U|Art & Architecture|Theater', - ), - 40000026 => array( - 'Id' => 40000026, - 'Label' => 'iTunes U|Health & Medicine', - ), - 40000027 => array( - 'Id' => 40000027, - 'Label' => 'iTunes U|Health & Medicine|Anatomy & Physiology', - ), - 40000028 => array( - 'Id' => 40000028, - 'Label' => 'iTunes U|Health & Medicine|Behavioral Science', - ), - 40000029 => array( - 'Id' => 40000029, - 'Label' => 'iTunes U|Health & Medicine|Dentistry', - ), - 40000030 => array( - 'Id' => 40000030, - 'Label' => 'iTunes U|Health & Medicine|Diet & Nutrition', - ), - 40000031 => array( - 'Id' => 40000031, - 'Label' => 'iTunes U|Health & Medicine|Emergency Medicine', - ), - 40000032 => array( - 'Id' => 40000032, - 'Label' => 'iTunes U|Health & Medicine|Genetics', - ), - 40000033 => array( - 'Id' => 40000033, - 'Label' => 'iTunes U|Health & Medicine|Gerontology', - ), - 40000034 => array( - 'Id' => 40000034, - 'Label' => 'iTunes U|Health & Medicine|Health & Exercise Science', - ), - 40000035 => array( - 'Id' => 40000035, - 'Label' => 'iTunes U|Health & Medicine|Immunology', - ), - 40000036 => array( - 'Id' => 40000036, - 'Label' => 'iTunes U|Health & Medicine|Neuroscience', - ), - 40000037 => array( - 'Id' => 40000037, - 'Label' => 'iTunes U|Health & Medicine|Pharmacology & Toxicology', - ), - 40000038 => array( - 'Id' => 40000038, - 'Label' => 'iTunes U|Health & Medicine|Psychiatry', - ), - 40000039 => array( - 'Id' => 40000039, - 'Label' => 'iTunes U|Health & Medicine|Global Health', - ), - 40000040 => array( - 'Id' => 40000040, - 'Label' => 'iTunes U|Health & Medicine|Radiology', - ), - 40000041 => array( - 'Id' => 40000041, - 'Label' => 'iTunes U|History', - ), - 40000042 => array( - 'Id' => 40000042, - 'Label' => 'iTunes U|History|Ancient History', - ), - 40000043 => array( - 'Id' => 40000043, - 'Label' => 'iTunes U|History|Medieval History', - ), - 40000044 => array( - 'Id' => 40000044, - 'Label' => 'iTunes U|History|Military History', - ), - 40000045 => array( - 'Id' => 40000045, - 'Label' => 'iTunes U|History|Modern History', - ), - 40000046 => array( - 'Id' => 40000046, - 'Label' => 'iTunes U|History|African History', - ), - 40000047 => array( - 'Id' => 40000047, - 'Label' => 'iTunes U|History|Asia-Pacific History', - ), - 40000048 => array( - 'Id' => 40000048, - 'Label' => 'iTunes U|History|European History', - ), - 40000049 => array( - 'Id' => 40000049, - 'Label' => 'iTunes U|History|Middle Eastern History', - ), - 40000050 => array( - 'Id' => 40000050, - 'Label' => 'iTunes U|History|North American History', - ), - 40000051 => array( - 'Id' => 40000051, - 'Label' => 'iTunes U|History|South American History', - ), - 40000053 => array( - 'Id' => 40000053, - 'Label' => 'iTunes U|Communications & Media', - ), - 40000054 => array( - 'Id' => 40000054, - 'Label' => 'iTunes U|Philosophy', - ), - 40000055 => array( - 'Id' => 40000055, - 'Label' => 'iTunes U|Religion & Spirituality', - ), - 40000056 => array( - 'Id' => 40000056, - 'Label' => 'iTunes U|Language', - ), - 40000057 => array( - 'Id' => 40000057, - 'Label' => 'iTunes U|Language|African Languages', - ), - 40000058 => array( - 'Id' => 40000058, - 'Label' => 'iTunes U|Language|Ancient Languages', - ), - 40000061 => array( - 'Id' => 40000061, - 'Label' => 'iTunes U|Language|English', - ), - 40000063 => array( - 'Id' => 40000063, - 'Label' => 'iTunes U|Language|French', - ), - 40000064 => array( - 'Id' => 40000064, - 'Label' => 'iTunes U|Language|German', - ), - 40000065 => array( - 'Id' => 40000065, - 'Label' => 'iTunes U|Language|Italian', - ), - 40000066 => array( - 'Id' => 40000066, - 'Label' => 'iTunes U|Language|Linguistics', - ), - 40000068 => array( - 'Id' => 40000068, - 'Label' => 'iTunes U|Language|Spanish', - ), - 40000069 => array( - 'Id' => 40000069, - 'Label' => 'iTunes U|Language|Speech Pathology', - ), - 40000070 => array( - 'Id' => 40000070, - 'Label' => 'iTunes U|Literature', - ), - 40000071 => array( - 'Id' => 40000071, - 'Label' => 'iTunes U|Literature|Anthologies', - ), - 40000072 => array( - 'Id' => 40000072, - 'Label' => 'iTunes U|Literature|Biography', - ), - 40000073 => array( - 'Id' => 40000073, - 'Label' => 'iTunes U|Literature|Classics', - ), - 40000074 => array( - 'Id' => 40000074, - 'Label' => 'iTunes U|Literature|Literary Criticism', - ), - 40000075 => array( - 'Id' => 40000075, - 'Label' => 'iTunes U|Literature|Fiction', - ), - 40000076 => array( - 'Id' => 40000076, - 'Label' => 'iTunes U|Literature|Poetry', - ), - 40000077 => array( - 'Id' => 40000077, - 'Label' => 'iTunes U|Mathematics', - ), - 40000078 => array( - 'Id' => 40000078, - 'Label' => 'iTunes U|Mathematics|Advanced Mathematics', - ), - 40000079 => array( - 'Id' => 40000079, - 'Label' => 'iTunes U|Mathematics|Algebra', - ), - 40000080 => array( - 'Id' => 40000080, - 'Label' => 'iTunes U|Mathematics|Arithmetic', - ), - 40000081 => array( - 'Id' => 40000081, - 'Label' => 'iTunes U|Mathematics|Calculus', - ), - 40000082 => array( - 'Id' => 40000082, - 'Label' => 'iTunes U|Mathematics|Geometry', - ), - 40000083 => array( - 'Id' => 40000083, - 'Label' => 'iTunes U|Mathematics|Statistics', - ), - 40000084 => array( - 'Id' => 40000084, - 'Label' => 'iTunes U|Science', - ), - 40000085 => array( - 'Id' => 40000085, - 'Label' => 'iTunes U|Science|Agricultural', - ), - 40000086 => array( - 'Id' => 40000086, - 'Label' => 'iTunes U|Science|Astronomy', - ), - 40000087 => array( - 'Id' => 40000087, - 'Label' => 'iTunes U|Science|Atmosphere', - ), - 40000088 => array( - 'Id' => 40000088, - 'Label' => 'iTunes U|Science|Biology', - ), - 40000089 => array( - 'Id' => 40000089, - 'Label' => 'iTunes U|Science|Chemistry', - ), - 40000090 => array( - 'Id' => 40000090, - 'Label' => 'iTunes U|Science|Ecology', - ), - 40000091 => array( - 'Id' => 40000091, - 'Label' => 'iTunes U|Science|Geography', - ), - 40000092 => array( - 'Id' => 40000092, - 'Label' => 'iTunes U|Science|Geology', - ), - 40000093 => array( - 'Id' => 40000093, - 'Label' => 'iTunes U|Science|Physics', - ), - 40000094 => array( - 'Id' => 40000094, - 'Label' => 'iTunes U|Psychology & Social Science', - ), - 40000095 => array( - 'Id' => 40000095, - 'Label' => 'iTunes U|Law & Politics|Law', - ), - 40000096 => array( - 'Id' => 40000096, - 'Label' => 'iTunes U|Law & Politics|Political Science', - ), - 40000097 => array( - 'Id' => 40000097, - 'Label' => 'iTunes U|Law & Politics|Public Administration', - ), - 40000098 => array( - 'Id' => 40000098, - 'Label' => 'iTunes U|Psychology & Social Science|Psychology', - ), - 40000099 => array( - 'Id' => 40000099, - 'Label' => 'iTunes U|Psychology & Social Science|Social Welfare', - ), - 40000100 => array( - 'Id' => 40000100, - 'Label' => 'iTunes U|Psychology & Social Science|Sociology', - ), - 40000101 => array( - 'Id' => 40000101, - 'Label' => 'iTunes U|Society', - ), - 40000103 => array( - 'Id' => 40000103, - 'Label' => 'iTunes U|Society|Asia Pacific Studies', - ), - 40000104 => array( - 'Id' => 40000104, - 'Label' => 'iTunes U|Society|European Studies', - ), - 40000105 => array( - 'Id' => 40000105, - 'Label' => 'iTunes U|Society|Indigenous Studies', - ), - 40000106 => array( - 'Id' => 40000106, - 'Label' => 'iTunes U|Society|Latin & Caribbean Studies', - ), - 40000107 => array( - 'Id' => 40000107, - 'Label' => 'iTunes U|Society|Middle Eastern Studies', - ), - 40000108 => array( - 'Id' => 40000108, - 'Label' => 'iTunes U|Society|Women\'s Studies', - ), - 40000109 => array( - 'Id' => 40000109, - 'Label' => 'iTunes U|Teaching & Learning', - ), - 40000110 => array( - 'Id' => 40000110, - 'Label' => 'iTunes U|Teaching & Learning|Curriculum & Teaching', - ), - 40000111 => array( - 'Id' => 40000111, - 'Label' => 'iTunes U|Teaching & Learning|Educational Leadership', - ), - 40000112 => array( - 'Id' => 40000112, - 'Label' => 'iTunes U|Teaching & Learning|Family & Childcare', - ), - 40000113 => array( - 'Id' => 40000113, - 'Label' => 'iTunes U|Teaching & Learning|Learning Resources', - ), - 40000114 => array( - 'Id' => 40000114, - 'Label' => 'iTunes U|Teaching & Learning|Psychology & Research', - ), - 40000115 => array( - 'Id' => 40000115, - 'Label' => 'iTunes U|Teaching & Learning|Special Education', - ), - 40000116 => array( - 'Id' => 40000116, - 'Label' => 'iTunes U|Art & Architecture|Culinary Arts', - ), - 40000117 => array( - 'Id' => 40000117, - 'Label' => 'iTunes U|Art & Architecture|Fashion', - ), - 40000118 => array( - 'Id' => 40000118, - 'Label' => 'iTunes U|Art & Architecture|Media Arts', - ), - 40000119 => array( - 'Id' => 40000119, - 'Label' => 'iTunes U|Art & Architecture|Photography', - ), - 40000120 => array( - 'Id' => 40000120, - 'Label' => 'iTunes U|Art & Architecture|Visual Art', - ), - 40000121 => array( - 'Id' => 40000121, - 'Label' => 'iTunes U|Business|Entrepreneurship', - ), - 40000122 => array( - 'Id' => 40000122, - 'Label' => 'iTunes U|Communications & Media|Broadcasting', - ), - 40000123 => array( - 'Id' => 40000123, - 'Label' => 'iTunes U|Communications & Media|Digital Media', - ), - 40000124 => array( - 'Id' => 40000124, - 'Label' => 'iTunes U|Communications & Media|Journalism', - ), - 40000125 => array( - 'Id' => 40000125, - 'Label' => 'iTunes U|Communications & Media|Photojournalism', - ), - 40000126 => array( - 'Id' => 40000126, - 'Label' => 'iTunes U|Communications & Media|Print', - ), - 40000127 => array( - 'Id' => 40000127, - 'Label' => 'iTunes U|Communications & Media|Speech', - ), - 40000128 => array( - 'Id' => 40000128, - 'Label' => 'iTunes U|Communications & Media|Writing', - ), - 40000129 => array( - 'Id' => 40000129, - 'Label' => 'iTunes U|Health & Medicine|Nursing', - ), - 40000130 => array( - 'Id' => 40000130, - 'Label' => 'iTunes U|Language|Arabic', - ), - 40000131 => array( - 'Id' => 40000131, - 'Label' => 'iTunes U|Language|Chinese', - ), - 40000132 => array( - 'Id' => 40000132, - 'Label' => 'iTunes U|Language|Hebrew', - ), - 40000133 => array( - 'Id' => 40000133, - 'Label' => 'iTunes U|Language|Hindi', - ), - 40000134 => array( - 'Id' => 40000134, - 'Label' => 'iTunes U|Language|Indigenous Languages', - ), - 40000135 => array( - 'Id' => 40000135, - 'Label' => 'iTunes U|Language|Japanese', - ), - 40000136 => array( - 'Id' => 40000136, - 'Label' => 'iTunes U|Language|Korean', - ), - 40000137 => array( - 'Id' => 40000137, - 'Label' => 'iTunes U|Language|Other Languages', - ), - 40000138 => array( - 'Id' => 40000138, - 'Label' => 'iTunes U|Language|Portuguese', - ), - 40000139 => array( - 'Id' => 40000139, - 'Label' => 'iTunes U|Language|Russian', - ), - 40000140 => array( - 'Id' => 40000140, - 'Label' => 'iTunes U|Law & Politics', - ), - 40000141 => array( - 'Id' => 40000141, - 'Label' => 'iTunes U|Law & Politics|Foreign Policy & International Relations', - ), - 40000142 => array( - 'Id' => 40000142, - 'Label' => 'iTunes U|Law & Politics|Local Governments', - ), - 40000143 => array( - 'Id' => 40000143, - 'Label' => 'iTunes U|Law & Politics|National Governments', - ), - 40000144 => array( - 'Id' => 40000144, - 'Label' => 'iTunes U|Law & Politics|World Affairs', - ), - 40000145 => array( - 'Id' => 40000145, - 'Label' => 'iTunes U|Literature|Comparative Literature', - ), - 40000146 => array( - 'Id' => 40000146, - 'Label' => 'iTunes U|Philosophy|Aesthetics', - ), - 40000147 => array( - 'Id' => 40000147, - 'Label' => 'iTunes U|Philosophy|Epistemology', - ), - 40000148 => array( - 'Id' => 40000148, - 'Label' => 'iTunes U|Philosophy|Ethics', - ), - 40000149 => array( - 'Id' => 40000149, - 'Label' => 'iTunes U|Philosophy|Metaphysics', - ), - 40000150 => array( - 'Id' => 40000150, - 'Label' => 'iTunes U|Philosophy|Political Philosophy', - ), - 40000151 => array( - 'Id' => 40000151, - 'Label' => 'iTunes U|Philosophy|Logic', - ), - 40000152 => array( - 'Id' => 40000152, - 'Label' => 'iTunes U|Philosophy|Philosophy of Language', - ), - 40000153 => array( - 'Id' => 40000153, - 'Label' => 'iTunes U|Philosophy|Philosophy of Religion', - ), - 40000154 => array( - 'Id' => 40000154, - 'Label' => 'iTunes U|Psychology & Social Science|Archaeology', - ), - 40000155 => array( - 'Id' => 40000155, - 'Label' => 'iTunes U|Psychology & Social Science|Anthropology', - ), - 40000156 => array( - 'Id' => 40000156, - 'Label' => 'iTunes U|Religion & Spirituality|Buddhism', - ), - 40000157 => array( - 'Id' => 40000157, - 'Label' => 'iTunes U|Religion & Spirituality|Christianity', - ), - 40000158 => array( - 'Id' => 40000158, - 'Label' => 'iTunes U|Religion & Spirituality|Comparative Religion', - ), - 40000159 => array( - 'Id' => 40000159, - 'Label' => 'iTunes U|Religion & Spirituality|Hinduism', - ), - 40000160 => array( - 'Id' => 40000160, - 'Label' => 'iTunes U|Religion & Spirituality|Islam', - ), - 40000161 => array( - 'Id' => 40000161, - 'Label' => 'iTunes U|Religion & Spirituality|Judaism', - ), - 40000162 => array( - 'Id' => 40000162, - 'Label' => 'iTunes U|Religion & Spirituality|Other Religions', - ), - 40000163 => array( - 'Id' => 40000163, - 'Label' => 'iTunes U|Religion & Spirituality|Spirituality', - ), - 40000164 => array( - 'Id' => 40000164, - 'Label' => 'iTunes U|Science|Environment', - ), - 40000165 => array( - 'Id' => 40000165, - 'Label' => 'iTunes U|Society|African Studies', - ), - 40000166 => array( - 'Id' => 40000166, - 'Label' => 'iTunes U|Society|American Studies', - ), - 40000167 => array( - 'Id' => 40000167, - 'Label' => 'iTunes U|Society|Cross-cultural Studies', - ), - 40000168 => array( - 'Id' => 40000168, - 'Label' => 'iTunes U|Society|Immigration & Emigration', - ), - 40000169 => array( - 'Id' => 40000169, - 'Label' => 'iTunes U|Society|Race & Ethnicity Studies', - ), - 40000170 => array( - 'Id' => 40000170, - 'Label' => 'iTunes U|Society|Sexuality Studies', - ), - 40000171 => array( - 'Id' => 40000171, - 'Label' => 'iTunes U|Teaching & Learning|Educational Technology', - ), - 40000172 => array( - 'Id' => 40000172, - 'Label' => 'iTunes U|Teaching & Learning|Information/Library Science', - ), - 40000173 => array( - 'Id' => 40000173, - 'Label' => 'iTunes U|Language|Dutch', - ), - 40000174 => array( - 'Id' => 40000174, - 'Label' => 'iTunes U|Language|Luxembourgish', - ), - 40000175 => array( - 'Id' => 40000175, - 'Label' => 'iTunes U|Language|Swedish', - ), - 40000176 => array( - 'Id' => 40000176, - 'Label' => 'iTunes U|Language|Norwegian', - ), - 40000177 => array( - 'Id' => 40000177, - 'Label' => 'iTunes U|Language|Finnish', - ), - 40000178 => array( - 'Id' => 40000178, - 'Label' => 'iTunes U|Language|Danish', - ), - 40000179 => array( - 'Id' => 40000179, - 'Label' => 'iTunes U|Language|Polish', - ), - 40000180 => array( - 'Id' => 40000180, - 'Label' => 'iTunes U|Language|Turkish', - ), - 40000181 => array( - 'Id' => 40000181, - 'Label' => 'iTunes U|Language|Flemish', - ), - 50000024 => array( - 'Id' => 50000024, - 'Label' => 'Audiobooks', - ), - 50000040 => array( - 'Id' => 50000040, - 'Label' => 'Audiobooks|Fiction', - ), - 50000041 => array( - 'Id' => 50000041, - 'Label' => 'Audiobooks|Arts & Entertainment', - ), - 50000042 => array( - 'Id' => 50000042, - 'Label' => 'Audiobooks|Biography & Memoir', - ), - 50000043 => array( - 'Id' => 50000043, - 'Label' => 'Audiobooks|Business', - ), - 50000044 => array( - 'Id' => 50000044, - 'Label' => 'Audiobooks|Kids & Young Adults', - ), - 50000045 => array( - 'Id' => 50000045, - 'Label' => 'Audiobooks|Classics', - ), - 50000046 => array( - 'Id' => 50000046, - 'Label' => 'Audiobooks|Comedy', - ), - 50000047 => array( - 'Id' => 50000047, - 'Label' => 'Audiobooks|Drama & Poetry', - ), - 50000048 => array( - 'Id' => 50000048, - 'Label' => 'Audiobooks|Speakers & Storytellers', - ), - 50000049 => array( - 'Id' => 50000049, - 'Label' => 'Audiobooks|History', - ), - 50000050 => array( - 'Id' => 50000050, - 'Label' => 'Audiobooks|Languages', - ), - 50000051 => array( - 'Id' => 50000051, - 'Label' => 'Audiobooks|Mystery', - ), - 50000052 => array( - 'Id' => 50000052, - 'Label' => 'Audiobooks|Nonfiction', - ), - 50000053 => array( - 'Id' => 50000053, - 'Label' => 'Audiobooks|Religion & Spirituality', - ), - 50000054 => array( - 'Id' => 50000054, - 'Label' => 'Audiobooks|Science', - ), - 50000055 => array( - 'Id' => 50000055, - 'Label' => 'Audiobooks|Sci Fi & Fantasy', - ), - 50000056 => array( - 'Id' => 50000056, - 'Label' => 'Audiobooks|Self Development', - ), - 50000057 => array( - 'Id' => 50000057, - 'Label' => 'Audiobooks|Sports', - ), - 50000058 => array( - 'Id' => 50000058, - 'Label' => 'Audiobooks|Technology', - ), - 50000059 => array( - 'Id' => 50000059, - 'Label' => 'Audiobooks|Travel & Adventure', - ), - 50000061 => array( - 'Id' => 50000061, - 'Label' => 'Music|Spoken Word', - ), - 50000063 => array( - 'Id' => 50000063, - 'Label' => 'Music|Disney', - ), - 50000064 => array( - 'Id' => 50000064, - 'Label' => 'Music|French Pop', - ), - 50000066 => array( - 'Id' => 50000066, - 'Label' => 'Music|German Pop', - ), - 50000068 => array( - 'Id' => 50000068, - 'Label' => 'Music|German Folk', - ), - 50000069 => array( - 'Id' => 50000069, - 'Label' => 'Audiobooks|Romance', - ), - 50000070 => array( - 'Id' => 50000070, - 'Label' => 'Audiobooks|Audiobooks Latino', - ), - 50000071 => array( - 'Id' => 50000071, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Action', - ), - 50000072 => array( - 'Id' => 50000072, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Comedy', - ), - 50000073 => array( - 'Id' => 50000073, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Erotica', - ), - 50000074 => array( - 'Id' => 50000074, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Fantasy', - ), - 50000075 => array( - 'Id' => 50000075, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Four Cell Manga', - ), - 50000076 => array( - 'Id' => 50000076, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Gay & Lesbian', - ), - 50000077 => array( - 'Id' => 50000077, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Hard-Boiled', - ), - 50000078 => array( - 'Id' => 50000078, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Heroes', - ), - 50000079 => array( - 'Id' => 50000079, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Historical Fiction', - ), - 50000080 => array( - 'Id' => 50000080, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Mecha', - ), - 50000081 => array( - 'Id' => 50000081, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Mystery', - ), - 50000082 => array( - 'Id' => 50000082, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Nonfiction', - ), - 50000083 => array( - 'Id' => 50000083, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Religious', - ), - 50000084 => array( - 'Id' => 50000084, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Romance', - ), - 50000085 => array( - 'Id' => 50000085, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Romantic Comedy', - ), - 50000086 => array( - 'Id' => 50000086, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Science Fiction', - ), - 50000087 => array( - 'Id' => 50000087, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Sports', - ), - 50000088 => array( - 'Id' => 50000088, - 'Label' => 'Books|Fiction & Literature|Light Novels', - ), - 50000089 => array( - 'Id' => 50000089, - 'Label' => 'Books|Comics & Graphic Novels|Manga|Horror', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GoProType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GoProType.php deleted file mode 100644 index da5840d39..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GoProType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GoProType extends AbstractTag -{ - - protected $Id = 'GoPr'; - - protected $Name = 'GoProType'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Go Pro Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleHostHeader.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleHostHeader.php deleted file mode 100644 index 5f9feb0c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleHostHeader.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GoogleHostHeader extends AbstractTag -{ - - protected $Id = 'gshh'; - - protected $Name = 'GoogleHostHeader'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Google Host Header'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GooglePingMessage.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GooglePingMessage.php deleted file mode 100644 index 4de9cde8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GooglePingMessage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GooglePingMessage extends AbstractTag -{ - - protected $Id = 'gspm'; - - protected $Name = 'GooglePingMessage'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Google Ping Message'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GooglePingURL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GooglePingURL.php deleted file mode 100644 index 51cb6a37a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GooglePingURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GooglePingURL extends AbstractTag -{ - - protected $Id = 'gspu'; - - protected $Name = 'GooglePingURL'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Google Ping URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleSourceData.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleSourceData.php deleted file mode 100644 index 050c4899c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleSourceData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GoogleSourceData extends AbstractTag -{ - - protected $Id = 'gssd'; - - protected $Name = 'GoogleSourceData'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Google Source Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleStartTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleStartTime.php deleted file mode 100644 index d9fcfb170..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GoogleStartTime extends AbstractTag -{ - - protected $Id = 'gsst'; - - protected $Name = 'GoogleStartTime'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Google Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleTrackDuration.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleTrackDuration.php deleted file mode 100644 index bb70d47a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GoogleTrackDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GoogleTrackDuration extends AbstractTag -{ - - protected $Id = 'gstd'; - - protected $Name = 'GoogleTrackDuration'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Google Track Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/GraphicsMode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/GraphicsMode.php deleted file mode 100644 index 87e205292..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/GraphicsMode.php +++ /dev/null @@ -1,170 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GraphicsMode extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'GraphicsMode'; - - protected $FullName = 'QuickTime::VideoHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Graphics Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'srcCopy', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'srcOr', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'srcXor', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'srcBic', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'notSrcCopy', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'notSrcOr', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'notSrcXor', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'notSrcBic', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'patCopy', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'patOr', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'patXor', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'patBic', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'notPatCopy', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'notPatOr', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'notPatXor', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'notPatBic', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'blend', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'addPin', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'addOver', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'subPin', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'transparent', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'addMax', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'subOver', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'addMin', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'grayishTextOr', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'hilite', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'ditherCopy', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Alpha', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'White Alpha', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Pre-multiplied Black Alpha', - ), - 272 => array( - 'Id' => 272, - 'Label' => 'Component Alpha', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Grouping.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Grouping.php deleted file mode 100644 index ff64b2a72..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Grouping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Grouping extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Grouping'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Grouping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HDVideo.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HDVideo.php deleted file mode 100644 index b7e010b81..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HDVideo.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDVideo extends AbstractTag -{ - - protected $Id = 'hdvd'; - - protected $Name = 'HDVideo'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'HD Video'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerClass.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerClass.php deleted file mode 100644 index 481583bdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerClass.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HandlerClass extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'HandlerClass'; - - protected $FullName = 'QuickTime::Handler'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Handler Class'; - - protected $MaxLength = 4; - - protected $Values = array( - 'dhlr' => array( - 'Id' => 'dhlr', - 'Label' => 'Data Handler', - ), - 'mhlr' => array( - 'Id' => 'mhlr', - 'Label' => 'Media Handler', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerDescription.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerDescription.php deleted file mode 100644 index b57e63fc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HandlerDescription extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'HandlerDescription'; - - protected $FullName = 'QuickTime::Handler'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Handler Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerType.php deleted file mode 100644 index d9f07ba42..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerType.php +++ /dev/null @@ -1,128 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HandlerType extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'HandlerType'; - - protected $FullName = 'QuickTime::Handler'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Handler Type'; - - protected $MaxLength = 4; - - protected $Values = array( - 'alis' => array( - 'Id' => 'alis', - 'Label' => 'Alias Data', - ), - 'crsm' => array( - 'Id' => 'crsm', - 'Label' => 'Clock Reference', - ), - 'hint' => array( - 'Id' => 'hint', - 'Label' => 'Hint Track', - ), - 'ipsm' => array( - 'Id' => 'ipsm', - 'Label' => 'IPMP', - ), - 'm7sm' => array( - 'Id' => 'm7sm', - 'Label' => 'MPEG-7 Stream', - ), - 'mdir' => array( - 'Id' => 'mdir', - 'Label' => 'Metadata', - ), - 'mdta' => array( - 'Id' => 'mdta', - 'Label' => 'Metadata Tags', - ), - 'meta' => array( - 'Id' => 'meta', - 'Label' => 'NRT Metadata', - ), - 'mjsm' => array( - 'Id' => 'mjsm', - 'Label' => 'MPEG-J', - ), - 'nrtm' => array( - 'Id' => 'nrtm', - 'Label' => 'Non-Real Time Metadata', - ), - 'ocsm' => array( - 'Id' => 'ocsm', - 'Label' => 'Object Content', - ), - 'odsm' => array( - 'Id' => 'odsm', - 'Label' => 'Object Descriptor', - ), - 'priv' => array( - 'Id' => 'priv', - 'Label' => 'Private', - ), - 'sdsm' => array( - 'Id' => 'sdsm', - 'Label' => 'Scene Description', - ), - 'soun' => array( - 'Id' => 'soun', - 'Label' => 'Audio Track', - ), - 'subp' => array( - 'Id' => 'subp', - 'Label' => 'Subpicture', - ), - 'text' => array( - 'Id' => 'text', - 'Label' => 'Text', - ), - 'tmcd' => array( - 'Id' => 'tmcd', - 'Label' => 'Time Code', - ), - 'url ' => array( - 'Id' => 'url ', - 'Label' => 'URL', - ), - 'vide' => array( - 'Id' => 'vide', - 'Label' => 'Video Track', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerVendorID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerVendorID.php deleted file mode 100644 index 1286a61a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HandlerVendorID.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HandlerVendorID extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'HandlerVendorID'; - - protected $FullName = 'QuickTime::Handler'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Handler Vendor ID'; - - protected $MaxLength = 4; - - protected $Values = array( - 'AR.D' => array( - 'Id' => 'AR.D', - 'Label' => 'Parrot AR.Drone', - ), - 'FFMP' => array( - 'Id' => 'FFMP', - 'Label' => 'FFmpeg', - ), - 'GIC ' => array( - 'Id' => 'GIC ', - 'Label' => 'General Imaging Co.', - ), - 'KMPI' => array( - 'Id' => 'KMPI', - 'Label' => 'Konica-Minolta', - ), - 'NIKO' => array( - 'Id' => 'NIKO', - 'Label' => 'Nikon', - ), - 'SMI ' => array( - 'Id' => 'SMI ', - 'Label' => 'Sorenson Media Inc.', - ), - 'ZORA' => array( - 'Id' => 'ZORA', - 'Label' => 'Zoran Corporation', - ), - 'appl' => array( - 'Id' => 'appl', - 'Label' => 'Apple', - ), - 'fe20' => array( - 'Id' => 'fe20', - 'Label' => 'Olympus (fe20)', - ), - 'kdak' => array( - 'Id' => 'kdak', - 'Label' => 'Kodak', - ), - 'leic' => array( - 'Id' => 'leic', - 'Label' => 'Leica', - ), - 'mino' => array( - 'Id' => 'mino', - 'Label' => 'Minolta', - ), - 'niko' => array( - 'Id' => 'niko', - 'Label' => 'Nikon', - ), - 'olym' => array( - 'Id' => 'olym', - 'Label' => 'Olympus', - ), - 'pana' => array( - 'Id' => 'pana', - 'Label' => 'Panasonic', - ), - 'pent' => array( - 'Id' => 'pent', - 'Label' => 'Pentax', - ), - 'pr01' => array( - 'Id' => 'pr01', - 'Label' => 'Olympus (pr01)', - ), - 'sany' => array( - 'Id' => 'sany', - 'Label' => 'Sanyo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HintFormat.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HintFormat.php deleted file mode 100644 index 0da9c8d78..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HintFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HintFormat extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'HintFormat'; - - protected $FullName = 'QuickTime::HintSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Hint Format'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HintTrackVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HintTrackVersion.php deleted file mode 100644 index 53f08cc0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HintTrackVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HintTrackVersion extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'HintTrackVersion'; - - protected $FullName = 'QuickTime::HintSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Hint Track Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/HintVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/HintVersion.php deleted file mode 100644 index e7af1fa2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/HintVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HintVersion extends AbstractTag -{ - - protected $Id = 'hinv'; - - protected $Name = 'HintVersion'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hint Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/IPMPControl.php b/lib/PHPExiftool/Driver/Tag/QuickTime/IPMPControl.php deleted file mode 100644 index 8d787c033..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/IPMPControl.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPMPControl extends AbstractTag -{ - - protected $Id = 'ipmc'; - - protected $Name = 'IPMPControl'; - - protected $FullName = 'QuickTime::Meta'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'IPMP Control'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ISRCCode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ISRCCode.php deleted file mode 100644 index ad47bbd6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ISRCCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRCCode extends AbstractTag -{ - - protected $Id = '\\xa9isr'; - - protected $Name = 'ISRCCode'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRC Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ITunSMPB.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ITunSMPB.php deleted file mode 100644 index 7ef82f292..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ITunSMPB.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ITunSMPB extends AbstractTag -{ - - protected $Id = 'iTunSMPB'; - - protected $Name = 'iTunSMPB'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'iTunSMPB'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ITunTool.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ITunTool.php deleted file mode 100644 index f0ed2169a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ITunTool.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ITunTool extends AbstractTag -{ - - protected $Id = 'tool'; - - protected $Name = 'iTunTool'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'iTunTool'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ITunesU.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ITunesU.php deleted file mode 100644 index 8041e8749..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ITunesU.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ITunesU extends AbstractTag -{ - - protected $Id = 'itnu'; - - protected $Name = 'iTunesU'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'iTunes U'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/IconURI.php b/lib/PHPExiftool/Driver/Tag/QuickTime/IconURI.php deleted file mode 100644 index 112062fb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/IconURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IconURI extends AbstractTag -{ - - protected $Id = 'icnu'; - - protected $Name = 'IconURI'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Icon URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/IdependentAndDisposableSamples.php b/lib/PHPExiftool/Driver/Tag/QuickTime/IdependentAndDisposableSamples.php deleted file mode 100644 index ae6b983cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/IdependentAndDisposableSamples.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdependentAndDisposableSamples extends AbstractTag -{ - - protected $Id = 'sdtp'; - - protected $Name = 'IdependentAndDisposableSamples'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Idependent And Disposable Samples'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ImageData.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ImageData.php deleted file mode 100644 index 6250f2f97..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ImageData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageData extends AbstractTag -{ - - protected $Id = 'idat'; - - protected $Name = 'ImageData'; - - protected $FullName = 'QuickTime::ImageFile'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ImmediateDataBytes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ImmediateDataBytes.php deleted file mode 100644 index 85ae7ef05..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ImmediateDataBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImmediateDataBytes extends AbstractTag -{ - - protected $Id = 'dimm'; - - protected $Name = 'ImmediateDataBytes'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Immediate Data Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/InfoURL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/InfoURL.php deleted file mode 100644 index 7a35ac7dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/InfoURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InfoURL extends AbstractTag -{ - - protected $Id = 'infu'; - - protected $Name = 'InfoURL'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Info URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Information.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Information.php deleted file mode 100644 index 8ad1609f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Information.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Information extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Information'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/InitialObjectDescriptor.php b/lib/PHPExiftool/Driver/Tag/QuickTime/InitialObjectDescriptor.php deleted file mode 100644 index 809809d87..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/InitialObjectDescriptor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialObjectDescriptor extends AbstractTag -{ - - protected $Id = 'iods'; - - protected $Name = 'InitialObjectDescriptor'; - - protected $FullName = 'QuickTime::Movie'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Object Descriptor'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/InitializationVector.php b/lib/PHPExiftool/Driver/Tag/QuickTime/InitializationVector.php deleted file mode 100644 index c5218c3e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/InitializationVector.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitializationVector extends AbstractTag -{ - - protected $Id = 'iviv'; - - protected $Name = 'InitializationVector'; - - protected $FullName = 'QuickTime::SchemeInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initialization Vector'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ItemID.php deleted file mode 100644 index 4437e3131..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemID extends AbstractTag -{ - - protected $Id = 'song'; - - protected $Name = 'ItemID'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Item ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemInformation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ItemInformation.php deleted file mode 100644 index b32693d87..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemInformation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemInformation extends AbstractTag -{ - - protected $Id = 'iinf'; - - protected $Name = 'ItemInformation'; - - protected $FullName = 'QuickTime::Meta'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Item Information'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemLocation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ItemLocation.php deleted file mode 100644 index ba5e8e893..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemLocation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemLocation extends AbstractTag -{ - - protected $Id = 'iloc'; - - protected $Name = 'ItemLocation'; - - protected $FullName = 'QuickTime::Meta'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Item Location'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemProtection.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ItemProtection.php deleted file mode 100644 index c987d8aa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemProtection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemProtection extends AbstractTag -{ - - protected $Id = 'ipro'; - - protected $Name = 'ItemProtection'; - - protected $FullName = 'QuickTime::Meta'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Item Protection'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemTool.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ItemTool.php deleted file mode 100644 index ce28031fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemTool.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemTool extends AbstractTag -{ - - protected $Id = 'tool'; - - protected $Name = 'ItemTool'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Item Tool'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemVendorID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ItemVendorID.php deleted file mode 100644 index 6e75508f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ItemVendorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ItemVendorID extends AbstractTag -{ - - protected $Id = 'veID'; - - protected $Name = 'ItemVendorID'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Item Vendor ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Junk.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Junk.php deleted file mode 100644 index 12c2b2e7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Junk.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Junk extends AbstractTag -{ - - protected $Id = 'junk'; - - protected $Name = 'Junk'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Junk'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/KeyID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/KeyID.php deleted file mode 100644 index 2d4705a0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/KeyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeyID extends AbstractTag -{ - - protected $Id = 'key '; - - protected $Name = 'KeyID'; - - protected $FullName = 'QuickTime::SchemeInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Key ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Keyword.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Keyword.php deleted file mode 100644 index 053ff72b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Keyword.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keyword extends AbstractTag -{ - - protected $Id = 'keyw'; - - protected $Name = 'Keyword'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keyword'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Keywords.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Keywords.php deleted file mode 100644 index 58c6042b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Keywords'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LargestPacketDuration.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LargestPacketDuration.php deleted file mode 100644 index da4ada49f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LargestPacketDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestPacketDuration extends AbstractTag -{ - - protected $Id = 'dmax'; - - protected $Name = 'LargestPacketDuration'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Largest Packet Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LargestPacketSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LargestPacketSize.php deleted file mode 100644 index 24b95a784..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LargestPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestPacketSize extends AbstractTag -{ - - protected $Id = 'pmax'; - - protected $Name = 'LargestPacketSize'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Largest Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationBody.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LocationBody.php deleted file mode 100644 index 51e420b25..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationBody.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationBody extends AbstractTag -{ - - protected $Id = 'location.body'; - - protected $Name = 'LocationBody'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location Body'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LocationDate.php deleted file mode 100644 index a83cbdb9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationDate extends AbstractTag -{ - - protected $Id = 'location.date'; - - protected $Name = 'LocationDate'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationInformation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LocationInformation.php deleted file mode 100644 index c5fcac7db..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationInformation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationInformation extends AbstractTag -{ - - protected $Id = 'loci'; - - protected $Name = 'LocationInformation'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location Information'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LocationName.php deleted file mode 100644 index 89aad61b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationName extends AbstractTag -{ - - protected $Id = 'location.name'; - - protected $Name = 'LocationName'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location Name'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationNote.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LocationNote.php deleted file mode 100644 index 2099df6f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationNote.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationNote extends AbstractTag -{ - - protected $Id = 'location.note'; - - protected $Name = 'LocationNote'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location Note'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationRole.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LocationRole.php deleted file mode 100644 index dbab17d35..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LocationRole.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationRole extends AbstractTag -{ - - protected $Id = 'location.role'; - - protected $Name = 'LocationRole'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location Role'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Shooting Location', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Real Location', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fictional Location', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LongDescription.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LongDescription.php deleted file mode 100644 index 2c39f68f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LongDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LongDescription extends AbstractTag -{ - - protected $Id = 'ldes'; - - protected $Name = 'LongDescription'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Long Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LoopStyle.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LoopStyle.php deleted file mode 100644 index 4c6564d6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LoopStyle.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LoopStyle extends AbstractTag -{ - - protected $Id = 'LOOP'; - - protected $Name = 'LoopStyle'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Loop Style'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Palindromic', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Lyrics.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Lyrics.php deleted file mode 100644 index 65d069e8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Lyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyrics extends AbstractTag -{ - - protected $Id = '\\xa9lyr'; - - protected $Name = 'Lyrics'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/LyricsURI.php b/lib/PHPExiftool/Driver/Tag/QuickTime/LyricsURI.php deleted file mode 100644 index 3653b5646..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/LyricsURI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LyricsURI extends AbstractTag -{ - - protected $Id = 'lrcu'; - - protected $Name = 'LyricsURI'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lyrics URI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MajorBrand.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MajorBrand.php deleted file mode 100644 index 150bd4a1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MajorBrand.php +++ /dev/null @@ -1,388 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MajorBrand extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MajorBrand'; - - protected $FullName = 'QuickTime::FileType'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Major Brand'; - - protected $MaxLength = 4; - - protected $Values = array( - '3g2a' => array( - 'Id' => '3g2a', - 'Label' => '3GPP2 Media (.3G2) compliant with 3GPP2 C.S0050-0 V1.0', - ), - '3g2b' => array( - 'Id' => '3g2b', - 'Label' => '3GPP2 Media (.3G2) compliant with 3GPP2 C.S0050-A V1.0.0', - ), - '3g2c' => array( - 'Id' => '3g2c', - 'Label' => '3GPP2 Media (.3G2) compliant with 3GPP2 C.S0050-B v1.0', - ), - '3ge6' => array( - 'Id' => '3ge6', - 'Label' => '3GPP (.3GP) Release 6 MBMS Extended Presentations', - ), - '3ge7' => array( - 'Id' => '3ge7', - 'Label' => '3GPP (.3GP) Release 7 MBMS Extended Presentations', - ), - '3gg6' => array( - 'Id' => '3gg6', - 'Label' => '3GPP Release 6 General Profile', - ), - '3gp1' => array( - 'Id' => '3gp1', - 'Label' => '3GPP Media (.3GP) Release 1 (probably non-existent)', - ), - '3gp2' => array( - 'Id' => '3gp2', - 'Label' => '3GPP Media (.3GP) Release 2 (probably non-existent)', - ), - '3gp3' => array( - 'Id' => '3gp3', - 'Label' => '3GPP Media (.3GP) Release 3 (probably non-existent)', - ), - '3gp4' => array( - 'Id' => '3gp4', - 'Label' => '3GPP Media (.3GP) Release 4', - ), - '3gp5' => array( - 'Id' => '3gp5', - 'Label' => '3GPP Media (.3GP) Release 5', - ), - '3gp6' => array( - 'Id' => '3gp6', - 'Label' => '3GPP Media (.3GP) Release 6 Streaming Servers', - ), - '3gs7' => array( - 'Id' => '3gs7', - 'Label' => '3GPP Media (.3GP) Release 7 Streaming Servers', - ), - 'CAEP' => array( - 'Id' => 'CAEP', - 'Label' => 'Canon Digital Camera', - ), - 'CDes' => array( - 'Id' => 'CDes', - 'Label' => 'Convergent Design', - ), - 'F4A ' => array( - 'Id' => 'F4A ', - 'Label' => 'Audio for Adobe Flash Player 9+ (.F4A)', - ), - 'F4B ' => array( - 'Id' => 'F4B ', - 'Label' => 'Audio Book for Adobe Flash Player 9+ (.F4B)', - ), - 'F4P ' => array( - 'Id' => 'F4P ', - 'Label' => 'Protected Video for Adobe Flash Player 9+ (.F4P)', - ), - 'F4V ' => array( - 'Id' => 'F4V ', - 'Label' => 'Video for Adobe Flash Player 9+ (.F4V)', - ), - 'JP2 ' => array( - 'Id' => 'JP2 ', - 'Label' => 'JPEG 2000 Image (.JP2) [ISO 15444-1 ?]', - ), - 'JP20' => array( - 'Id' => 'JP20', - 'Label' => 'Unknown, from GPAC samples (prob non-existent)', - ), - 'KDDI' => array( - 'Id' => 'KDDI', - 'Label' => '3GPP2 EZmovie for KDDI 3G cellphones', - ), - 'M4A ' => array( - 'Id' => 'M4A ', - 'Label' => 'Apple iTunes AAC-LC (.M4A) Audio', - ), - 'M4B ' => array( - 'Id' => 'M4B ', - 'Label' => 'Apple iTunes AAC-LC (.M4B) Audio Book', - ), - 'M4P ' => array( - 'Id' => 'M4P ', - 'Label' => 'Apple iTunes AAC-LC (.M4P) AES Protected Audio', - ), - 'M4V ' => array( - 'Id' => 'M4V ', - 'Label' => 'Apple iTunes Video (.M4V) Video', - ), - 'M4VH' => array( - 'Id' => 'M4VH', - 'Label' => 'Apple TV (.M4V)', - ), - 'M4VP' => array( - 'Id' => 'M4VP', - 'Label' => 'Apple iPhone (.M4V)', - ), - 'MPPI' => array( - 'Id' => 'MPPI', - 'Label' => 'Photo Player, MAF [ISO/IEC 23000-3]', - ), - 'MSNV' => array( - 'Id' => 'MSNV', - 'Label' => 'MPEG-4 (.MP4) for SonyPSP', - ), - 'NDAS' => array( - 'Id' => 'NDAS', - 'Label' => 'MP4 v2 [ISO 14496-14] Nero Digital AAC Audio', - ), - 'NDSC' => array( - 'Id' => 'NDSC', - 'Label' => 'MPEG-4 (.MP4) Nero Cinema Profile', - ), - 'NDSH' => array( - 'Id' => 'NDSH', - 'Label' => 'MPEG-4 (.MP4) Nero HDTV Profile', - ), - 'NDSM' => array( - 'Id' => 'NDSM', - 'Label' => 'MPEG-4 (.MP4) Nero Mobile Profile', - ), - 'NDSP' => array( - 'Id' => 'NDSP', - 'Label' => 'MPEG-4 (.MP4) Nero Portable Profile', - ), - 'NDSS' => array( - 'Id' => 'NDSS', - 'Label' => 'MPEG-4 (.MP4) Nero Standard Profile', - ), - 'NDXC' => array( - 'Id' => 'NDXC', - 'Label' => 'H.264/MPEG-4 AVC (.MP4) Nero Cinema Profile', - ), - 'NDXH' => array( - 'Id' => 'NDXH', - 'Label' => 'H.264/MPEG-4 AVC (.MP4) Nero HDTV Profile', - ), - 'NDXM' => array( - 'Id' => 'NDXM', - 'Label' => 'H.264/MPEG-4 AVC (.MP4) Nero Mobile Profile', - ), - 'NDXP' => array( - 'Id' => 'NDXP', - 'Label' => 'H.264/MPEG-4 AVC (.MP4) Nero Portable Profile', - ), - 'NDXS' => array( - 'Id' => 'NDXS', - 'Label' => 'H.264/MPEG-4 AVC (.MP4) Nero Standard Profile', - ), - 'ROSS' => array( - 'Id' => 'ROSS', - 'Label' => 'Ross Video', - ), - 'XAVC' => array( - 'Id' => 'XAVC', - 'Label' => 'Sony XAVC', - ), - 'avc1' => array( - 'Id' => 'avc1', - 'Label' => 'MP4 Base w/ AVC ext [ISO 14496-12:2005]', - ), - 'caqv' => array( - 'Id' => 'caqv', - 'Label' => 'Casio Digital Camera', - ), - 'da0a' => array( - 'Id' => 'da0a', - 'Label' => 'DMB MAF w/ MPEG Layer II aud, MOT slides, DLS, JPG/PNG/MNG images', - ), - 'da0b' => array( - 'Id' => 'da0b', - 'Label' => 'DMB MAF, extending DA0A, with 3GPP timed text, DID, TVA, REL, IPMP', - ), - 'da1a' => array( - 'Id' => 'da1a', - 'Label' => 'DMB MAF audio with ER-BSAC audio, JPG/PNG/MNG images', - ), - 'da1b' => array( - 'Id' => 'da1b', - 'Label' => 'DMB MAF, extending da1a, with 3GPP timed text, DID, TVA, REL, IPMP', - ), - 'da2a' => array( - 'Id' => 'da2a', - 'Label' => 'DMB MAF aud w/ HE-AAC v2 aud, MOT slides, DLS, JPG/PNG/MNG images', - ), - 'da2b' => array( - 'Id' => 'da2b', - 'Label' => 'DMB MAF, extending da2a, with 3GPP timed text, DID, TVA, REL, IPMP', - ), - 'da3a' => array( - 'Id' => 'da3a', - 'Label' => 'DMB MAF aud with HE-AAC aud, JPG/PNG/MNG images', - ), - 'da3b' => array( - 'Id' => 'da3b', - 'Label' => 'DMB MAF, extending da3a w/ BIFS, 3GPP timed text, DID, TVA, REL, IPMP', - ), - 'dmb1' => array( - 'Id' => 'dmb1', - 'Label' => 'DMB MAF supporting all the components defined in the specification', - ), - 'dmpf' => array( - 'Id' => 'dmpf', - 'Label' => 'Digital Media Project', - ), - 'drc1' => array( - 'Id' => 'drc1', - 'Label' => 'Dirac (wavelet compression), encapsulated in ISO base media (MP4)', - ), - 'dv1a' => array( - 'Id' => 'dv1a', - 'Label' => 'DMB MAF vid w/ AVC vid, ER-BSAC aud, BIFS, JPG/PNG/MNG images, TS', - ), - 'dv1b' => array( - 'Id' => 'dv1b', - 'Label' => 'DMB MAF, extending dv1a, with 3GPP timed text, DID, TVA, REL, IPMP', - ), - 'dv2a' => array( - 'Id' => 'dv2a', - 'Label' => 'DMB MAF vid w/ AVC vid, HE-AAC v2 aud, BIFS, JPG/PNG/MNG images, TS', - ), - 'dv2b' => array( - 'Id' => 'dv2b', - 'Label' => 'DMB MAF, extending dv2a, with 3GPP timed text, DID, TVA, REL, IPMP', - ), - 'dv3a' => array( - 'Id' => 'dv3a', - 'Label' => 'DMB MAF vid w/ AVC vid, HE-AAC aud, BIFS, JPG/PNG/MNG images, TS', - ), - 'dv3b' => array( - 'Id' => 'dv3b', - 'Label' => 'DMB MAF, extending dv3a, with 3GPP timed text, DID, TVA, REL, IPMP', - ), - 'dvr1' => array( - 'Id' => 'dvr1', - 'Label' => 'DVB (.DVB) over RTP', - ), - 'dvt1' => array( - 'Id' => 'dvt1', - 'Label' => 'DVB (.DVB) over MPEG-2 Transport Stream', - ), - 'isc2' => array( - 'Id' => 'isc2', - 'Label' => 'ISMACryp 2.0 Encrypted File', - ), - 'iso2' => array( - 'Id' => 'iso2', - 'Label' => 'MP4 Base Media v2 [ISO 14496-12:2005]', - ), - 'isom' => array( - 'Id' => 'isom', - 'Label' => 'MP4 Base Media v1 [IS0 14496-12:2003]', - ), - 'jpm ' => array( - 'Id' => 'jpm ', - 'Label' => 'JPEG 2000 Compound Image (.JPM) [ISO 15444-6]', - ), - 'jpx ' => array( - 'Id' => 'jpx ', - 'Label' => 'JPEG 2000 with extensions (.JPX) [ISO 15444-2]', - ), - 'mj2s' => array( - 'Id' => 'mj2s', - 'Label' => 'Motion JPEG 2000 [ISO 15444-3] Simple Profile', - ), - 'mjp2' => array( - 'Id' => 'mjp2', - 'Label' => 'Motion JPEG 2000 [ISO 15444-3] General Profile', - ), - 'mmp4' => array( - 'Id' => 'mmp4', - 'Label' => 'MPEG-4/3GPP Mobile Profile (.MP4/3GP) (for NTT)', - ), - 'mp21' => array( - 'Id' => 'mp21', - 'Label' => 'MPEG-21 [ISO/IEC 21000-9]', - ), - 'mp41' => array( - 'Id' => 'mp41', - 'Label' => 'MP4 v1 [ISO 14496-1:ch13]', - ), - 'mp42' => array( - 'Id' => 'mp42', - 'Label' => 'MP4 v2 [ISO 14496-14]', - ), - 'mp71' => array( - 'Id' => 'mp71', - 'Label' => 'MP4 w/ MPEG-7 Metadata [per ISO 14496-12]', - ), - 'mqt ' => array( - 'Id' => 'mqt ', - 'Label' => 'Sony / Mobile QuickTime (.MQV) US Patent 7,477,830 (Sony Corp)', - ), - 'odcf' => array( - 'Id' => 'odcf', - 'Label' => 'OMA DCF DRM Format 2.0 (OMA-TS-DRM-DCF-V2_0-20060303-A)', - ), - 'opf2' => array( - 'Id' => 'opf2', - 'Label' => 'OMA PDCF DRM Format 2.1 (OMA-TS-DRM-DCF-V2_1-20070724-C)', - ), - 'opx2' => array( - 'Id' => 'opx2', - 'Label' => 'OMA PDCF DRM + XBS extensions (OMA-TS-DRM_XBS-V1_0-20070529-C)', - ), - 'pana' => array( - 'Id' => 'pana', - 'Label' => 'Panasonic Digital Camera', - ), - 'qt ' => array( - 'Id' => 'qt ', - 'Label' => 'Apple QuickTime (.MOV/QT)', - ), - 'sdv ' => array( - 'Id' => 'sdv ', - 'Label' => 'SD Memory Card Video', - ), - 'ssc1' => array( - 'Id' => 'ssc1', - 'Label' => 'Samsung stereoscopic, single stream', - ), - 'ssc2' => array( - 'Id' => 'ssc2', - 'Label' => 'Samsung stereoscopic, dual stream', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Make.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Make.php deleted file mode 100644 index 791e20279..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Make.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Make'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MakerNotePentaxUnknown.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MakerNotePentaxUnknown.php deleted file mode 100644 index a06966907..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MakerNotePentaxUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotePentaxUnknown extends AbstractTag -{ - - protected $Id = 'PXMN'; - - protected $Name = 'MakerNotePentaxUnknown'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maker Note Pentax Unknown'; - - protected $flag_Binary = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MakerURL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MakerURL.php deleted file mode 100644 index 61deb685d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MakerURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerURL extends AbstractTag -{ - - protected $Id = '\\xa9mal'; - - protected $Name = 'MakerURL'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maker URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MatrixStructure.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MatrixStructure.php deleted file mode 100644 index 4d7aa7217..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MatrixStructure.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MatrixStructure extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'MatrixStructure'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed32s'; - - protected $Writable = false; - - protected $Description = 'Matrix Structure'; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxBitrate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MaxBitrate.php deleted file mode 100644 index 7245a1b8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxBitrate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxBitrate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxDataRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MaxDataRate.php deleted file mode 100644 index 401d0ad9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxDataRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxDataRate extends AbstractTag -{ - - protected $Id = 'maxr'; - - protected $Name = 'MaxDataRate'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Data Rate'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxPDUSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MaxPDUSize.php deleted file mode 100644 index 0083ac9c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxPDUSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPDUSize extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'MaxPDUSize'; - - protected $FullName = 'QuickTime::HintHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Max PDU Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxPacketSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MaxPacketSize.php deleted file mode 100644 index c68c760e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPacketSize extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'MaxPacketSize'; - - protected $FullName = 'QuickTime::HintSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxTransmissionTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MaxTransmissionTime.php deleted file mode 100644 index 2fa9f1c2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MaxTransmissionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxTransmissionTime extends AbstractTag -{ - - protected $Id = 'tmax'; - - protected $Name = 'MaxTransmissionTime'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Transmission Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Mean.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Mean.php deleted file mode 100644 index 80667fad1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Mean.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Mean extends AbstractTag -{ - - protected $Id = 'mean'; - - protected $Name = 'Mean'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mean'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MediaFlags.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MediaFlags.php deleted file mode 100644 index b91404f62..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MediaFlags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaFlags extends AbstractTag -{ - - protected $Id = 'medi'; - - protected $Name = 'MediaFlags'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MediaTrackBytes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MediaTrackBytes.php deleted file mode 100644 index 4da95e9cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MediaTrackBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaTrackBytes extends AbstractTag -{ - - protected $Id = 'dmed'; - - protected $Name = 'MediaTrackBytes'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Media Track Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MediaType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MediaType.php deleted file mode 100644 index 38654bf1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MediaType.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaType extends AbstractTag -{ - - protected $Id = 'stik'; - - protected $Name = 'MediaType'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Media Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Movie', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal (Music)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Audiobook', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Whacked Bookmark', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Music Video', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Short Film', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'TV Show', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Booklet', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Ringtone', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Podcast', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MinTransmissionTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MinTransmissionTime.php deleted file mode 100644 index b2ab72691..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MinTransmissionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinTransmissionTime extends AbstractTag -{ - - protected $Id = 'tmin'; - - protected $Name = 'MinTransmissionTime'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Min Transmission Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MinorVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MinorVersion.php deleted file mode 100644 index c293b4901..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MinorVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinorVersion extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MinorVersion'; - - protected $FullName = 'QuickTime::FileType'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Minor Version'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ModeFlags.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ModeFlags.php deleted file mode 100644 index 888d403cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ModeFlags.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModeFlags extends AbstractTag -{ - - protected $Id = 'mode'; - - protected $Name = 'ModeFlags'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mode Flags'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Model.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Model.php deleted file mode 100644 index 731caec5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Model.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Model'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'mixed'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ModifyDate.php deleted file mode 100644 index 31062a40a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ModifyDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieData.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MovieData.php deleted file mode 100644 index 227645af4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MovieData extends AbstractTag -{ - - protected $Id = 'mdat'; - - protected $Name = 'MovieData'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Movie Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieDataOffset.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MovieDataOffset.php deleted file mode 100644 index a42e44f2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieDataOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MovieDataOffset extends AbstractTag -{ - - protected $Id = 'mdat-offset'; - - protected $Name = 'MovieDataOffset'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Movie Data Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieDataSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MovieDataSize.php deleted file mode 100644 index 0450bfb48..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieDataSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MovieDataSize extends AbstractTag -{ - - protected $Id = 'mdat-size'; - - protected $Name = 'MovieDataSize'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Movie Data Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieHeaderVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/MovieHeaderVersion.php deleted file mode 100644 index 4c8d29c82..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/MovieHeaderVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MovieHeaderVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MovieHeaderVersion'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Movie Header Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Mute.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Mute.php deleted file mode 100644 index 9c79aaabc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Mute.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Mute extends AbstractTag -{ - - protected $Id = 'player.movie.audio.mute'; - - protected $Name = 'Mute'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Mute'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Name.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Name.php deleted file mode 100644 index f9f529f62..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Name.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Name extends AbstractTag -{ - - protected $Id = 'name'; - - protected $Name = 'Name'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/NextTrackID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/NextTrackID.php deleted file mode 100644 index 5a2bed7a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/NextTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NextTrackID extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'NextTrackID'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Next Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/NumPackets.php b/lib/PHPExiftool/Driver/Tag/QuickTime/NumPackets.php deleted file mode 100644 index 845dd97ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/NumPackets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumPackets extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NumPackets'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Num Packets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/OpColor.php b/lib/PHPExiftool/Driver/Tag/QuickTime/OpColor.php deleted file mode 100644 index bfa545e15..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/OpColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpColor extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'OpColor'; - - protected $FullName = 'QuickTime::VideoHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Op Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/OriginalFormat.php b/lib/PHPExiftool/Driver/Tag/QuickTime/OriginalFormat.php deleted file mode 100644 index 5f8ef52c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/OriginalFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFormat extends AbstractTag -{ - - protected $Id = 'frma'; - - protected $Name = 'OriginalFormat'; - - protected $FullName = 'QuickTime::ProtectionInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/OtherFormat.php b/lib/PHPExiftool/Driver/Tag/QuickTime/OtherFormat.php deleted file mode 100644 index d7b37bfa9..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/OtherFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherFormat extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'OtherFormat'; - - protected $FullName = 'QuickTime::OtherSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Other Format'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PartialSyncSamples.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PartialSyncSamples.php deleted file mode 100644 index 098608d3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PartialSyncSamples.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartialSyncSamples extends AbstractTag -{ - - protected $Id = 'stps'; - - protected $Name = 'PartialSyncSamples'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Partial Sync Samples'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PayloadType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PayloadType.php deleted file mode 100644 index f25b12964..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PayloadType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PayloadType extends AbstractTag -{ - - protected $Id = 'payt'; - - protected $Name = 'PayloadType'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Payload Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Performer.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Performer.php deleted file mode 100644 index 2a573ed0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Performer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Performer extends AbstractTag -{ - - protected $Id = 'perf'; - - protected $Name = 'Performer'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PerformerKeywords.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PerformerKeywords.php deleted file mode 100644 index 458a571b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PerformerKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformerKeywords extends AbstractTag -{ - - protected $Id = '\\xa9prk'; - - protected $Name = 'PerformerKeywords'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performer Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PerformerURL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PerformerURL.php deleted file mode 100644 index 910e906f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PerformerURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerformerURL extends AbstractTag -{ - - protected $Id = '\\xa9prl'; - - protected $Name = 'PerformerURL'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performer URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Performers.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Performers.php deleted file mode 100644 index 45b4566fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Performers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Performers extends AbstractTag -{ - - protected $Id = '\\xa9prf'; - - protected $Name = 'Performers'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PitchShift.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PitchShift.php deleted file mode 100644 index c9b9c1dc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PitchShift.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PitchShift extends AbstractTag -{ - - protected $Id = 'player.movie.audio.pitchshift'; - - protected $Name = 'PitchShift'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pitch Shift'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PixelAspectRatio.php deleted file mode 100644 index 4f5076c40..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PixelAspectRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatio extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PixelAspectRatio'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio'; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Platform.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Platform.php deleted file mode 100644 index cd740224a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Platform.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Platform extends AbstractTag -{ - - protected $Id = 'plat'; - - protected $Name = 'Platform'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Platform'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayAllFrames.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PlayAllFrames.php deleted file mode 100644 index 8171cf3c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayAllFrames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayAllFrames extends AbstractTag -{ - - protected $Id = 'AllF'; - - protected $Name = 'PlayAllFrames'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Play All Frames'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayGap.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PlayGap.php deleted file mode 100644 index 281f64053..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayGap.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayGap extends AbstractTag -{ - - protected $Id = 'pgap'; - - protected $Name = 'PlayGap'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Play Gap'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Insert Gap', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'No Gap', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayListID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PlayListID.php deleted file mode 100644 index 605399d27..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayListID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayListID extends AbstractTag -{ - - protected $Id = 'plID'; - - protected $Name = 'PlayListID'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Play List ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayMode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PlayMode.php deleted file mode 100644 index 661e9d27b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayMode extends AbstractTag -{ - - protected $Id = 'SDLN'; - - protected $Name = 'PlayMode'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Play Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PlaySelection.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PlaySelection.php deleted file mode 100644 index 32efd7861..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PlaySelection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlaySelection extends AbstractTag -{ - - protected $Id = 'SelO'; - - protected $Name = 'PlaySelection'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Play Selection'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayerVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PlayerVersion.php deleted file mode 100644 index c64d824ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PlayerVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlayerVersion extends AbstractTag -{ - - protected $Id = 'player.version'; - - protected $Name = 'PlayerVersion'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Player Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Podcast.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Podcast.php deleted file mode 100644 index 5d62cd7c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Podcast.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Podcast extends AbstractTag -{ - - protected $Id = 'pcst'; - - protected $Name = 'Podcast'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Podcast'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PodcastURL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PodcastURL.php deleted file mode 100644 index ba532b11c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PodcastURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PodcastURL extends AbstractTag -{ - - protected $Id = 'purl'; - - protected $Name = 'PodcastURL'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Podcast URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PosterTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PosterTime.php deleted file mode 100644 index 8079ce1be..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PosterTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PosterTime extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'PosterTime'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Poster Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreferredRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreferredRate.php deleted file mode 100644 index 1f2925c9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreferredRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreferredRate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PreferredRate'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preferred Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreferredVolume.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreferredVolume.php deleted file mode 100644 index c97cebaad..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreferredVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreferredVolume extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PreferredVolume'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preferred Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewAtomIndex.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewAtomIndex.php deleted file mode 100644 index 5f128e29e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewAtomIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewAtomIndex extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PreviewAtomIndex'; - - protected $FullName = 'QuickTime::Preview'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preview Atom Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewAtomType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewAtomType.php deleted file mode 100644 index 5f3414741..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewAtomType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewAtomType extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PreviewAtomType'; - - protected $FullName = 'QuickTime::Preview'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Preview Atom Type'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewDate.php deleted file mode 100644 index 5a8ed06cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewDate extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PreviewDate'; - - protected $FullName = 'QuickTime::Preview'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewDuration.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewDuration.php deleted file mode 100644 index 8cf65e870..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewDuration extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'PreviewDuration'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preview Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewImage.php deleted file mode 100644 index f5fe14b61..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'RTHU'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewPICT.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewPICT.php deleted file mode 100644 index b837a5ced..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewPICT.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewPICT extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewPICT'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview PICT'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewTime.php deleted file mode 100644 index 1957dcd70..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewTime extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'PreviewTime'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preview Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewVersion.php deleted file mode 100644 index a16e4ed31..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PreviewVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewVersion extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewVersion'; - - protected $FullName = 'QuickTime::Preview'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Preview Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PrimaryItemReference.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PrimaryItemReference.php deleted file mode 100644 index 9c30103d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PrimaryItemReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryItemReference extends AbstractTag -{ - - protected $Id = 'pitm'; - - protected $Name = 'PrimaryItemReference'; - - protected $FullName = 'QuickTime::Meta'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Primary Item Reference'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Producer.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Producer.php deleted file mode 100644 index 389364da4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Producer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = '\\xa9prd'; - - protected $Name = 'Producer'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ProducerKeywords.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ProducerKeywords.php deleted file mode 100644 index dbffe4482..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ProducerKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProducerKeywords extends AbstractTag -{ - - protected $Id = '\\xa9pdk'; - - protected $Name = 'ProducerKeywords'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Product.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Product.php deleted file mode 100644 index 6805af0ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Product.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Product extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Product'; - - protected $FullName = 'QuickTime::MetaData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ProductionDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ProductionDate.php deleted file mode 100644 index bce7aebcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ProductionDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionDate extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ProductionDate'; - - protected $FullName = 'QuickTime::MetaData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Production Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Publisher.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Publisher.php deleted file mode 100644 index 070815148..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'publisher'; - - protected $Name = 'Publisher'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PurchaseDate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PurchaseDate.php deleted file mode 100644 index df7a7f08b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PurchaseDate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchaseDate extends AbstractTag -{ - - protected $Id = 'purd'; - - protected $Name = 'PurchaseDate'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Purchase Date'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/PurchaseFileFormat.php b/lib/PHPExiftool/Driver/Tag/QuickTime/PurchaseFileFormat.php deleted file mode 100644 index 312ae7536..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/PurchaseFileFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PurchaseFileFormat extends AbstractTag -{ - - protected $Id = 'frma'; - - protected $Name = 'PurchaseFileFormat'; - - protected $FullName = 'QuickTime::Wave'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Purchase File Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/RTPTimeScale.php b/lib/PHPExiftool/Driver/Tag/QuickTime/RTPTimeScale.php deleted file mode 100644 index 485fecf22..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/RTPTimeScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RTPTimeScale extends AbstractTag -{ - - protected $Id = 'tims'; - - protected $Name = 'RTPTimeScale'; - - protected $FullName = 'QuickTime::HintSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'RTP Time Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Rating.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Rating.php deleted file mode 100644 index fad16097d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Rating.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 'rtng'; - - protected $Name = 'Rating'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rating'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'none', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Explicit', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Clean', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Explicit (old)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/RealtimeStreamingProtocol.php b/lib/PHPExiftool/Driver/Tag/QuickTime/RealtimeStreamingProtocol.php deleted file mode 100644 index f391362ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/RealtimeStreamingProtocol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RealtimeStreamingProtocol extends AbstractTag -{ - - protected $Id = 'rtp '; - - protected $Name = 'RealtimeStreamingProtocol'; - - protected $FullName = 'QuickTime::HintInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Realtime Streaming Protocol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/RecordLabelName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/RecordLabelName.php deleted file mode 100644 index 81dfc5163..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/RecordLabelName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordLabelName extends AbstractTag -{ - - protected $Id = '\\xa9lab'; - - protected $Name = 'RecordLabelName'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Record Label Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/RecordLabelURL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/RecordLabelURL.php deleted file mode 100644 index 410efd536..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/RecordLabelURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordLabelURL extends AbstractTag -{ - - protected $Id = '\\xa9lal'; - - protected $Name = 'RecordLabelURL'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Record Label URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/RecordingCopyright.php b/lib/PHPExiftool/Driver/Tag/QuickTime/RecordingCopyright.php deleted file mode 100644 index 09c9ce4c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/RecordingCopyright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingCopyright extends AbstractTag -{ - - protected $Id = '\\xa9phg'; - - protected $Name = 'RecordingCopyright'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recording Copyright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ReelName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ReelName.php deleted file mode 100644 index d4d96687b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ReelName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReelName extends AbstractTag -{ - - protected $Id = 'reel'; - - protected $Name = 'ReelName'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Reel Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/RepeatedDataBytes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/RepeatedDataBytes.php deleted file mode 100644 index 8bd8fc5d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/RepeatedDataBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepeatedDataBytes extends AbstractTag -{ - - protected $Id = 'drep'; - - protected $Name = 'RepeatedDataBytes'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int64u'; - - protected $Writable = false; - - protected $Description = 'Repeated Data Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Requirements.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Requirements.php deleted file mode 100644 index a365acd47..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Requirements.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Requirements extends AbstractTag -{ - - protected $Id = '\\xa9req'; - - protected $Name = 'Requirements'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Requirements'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleDegradationPriority.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SampleDegradationPriority.php deleted file mode 100644 index aefb9bce2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleDegradationPriority.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleDegradationPriority extends AbstractTag -{ - - protected $Id = 'stdp'; - - protected $Name = 'SampleDegradationPriority'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Degradation Priority'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleGroupDescription.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SampleGroupDescription.php deleted file mode 100644 index 67c432dc2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleGroupDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleGroupDescription extends AbstractTag -{ - - protected $Id = 'sgpd'; - - protected $Name = 'SampleGroupDescription'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Group Description'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SamplePaddingBits.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SamplePaddingBits.php deleted file mode 100644 index 9f5f7eeb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SamplePaddingBits.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamplePaddingBits extends AbstractTag -{ - - protected $Id = 'padb'; - - protected $Name = 'SamplePaddingBits'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Padding Bits'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleSizes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SampleSizes.php deleted file mode 100644 index 19e640cf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleSizes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleSizes extends AbstractTag -{ - - protected $Id = 'stsz'; - - protected $Name = 'SampleSizes'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample Sizes'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleToChunk.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SampleToChunk.php deleted file mode 100644 index 7b7e6c622..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleToChunk.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleToChunk extends AbstractTag -{ - - protected $Id = 'stsc'; - - protected $Name = 'SampleToChunk'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample To Chunk'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleToGroup.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SampleToGroup.php deleted file mode 100644 index 92de90423..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SampleToGroup.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleToGroup extends AbstractTag -{ - - protected $Id = 'sbgp'; - - protected $Name = 'SampleToGroup'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sample To Group'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Scene.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Scene.php deleted file mode 100644 index f7c3e3829..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Scene.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Scene extends AbstractTag -{ - - protected $Id = 'scen'; - - protected $Name = 'Scene'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scene'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeType.php deleted file mode 100644 index 7f96f3ea5..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SchemeType extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'SchemeType'; - - protected $FullName = 'QuickTime::SchemeType'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Scheme Type'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeURL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeURL.php deleted file mode 100644 index 8dda04a2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SchemeURL extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'SchemeURL'; - - protected $FullName = 'QuickTime::SchemeType'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Scheme URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeVersion.php deleted file mode 100644 index 6104a971d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SchemeVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SchemeVersion extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'SchemeVersion'; - - protected $FullName = 'QuickTime::SchemeType'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Scheme Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SelectionDuration.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SelectionDuration.php deleted file mode 100644 index 31763e805..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SelectionDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectionDuration extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'SelectionDuration'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Selection Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SelectionTime.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SelectionTime.php deleted file mode 100644 index dcbbf6274..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SelectionTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelectionTime extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'SelectionTime'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Selection Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SequenceNumberRandomOffset.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SequenceNumberRandomOffset.php deleted file mode 100644 index 12b780601..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SequenceNumberRandomOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumberRandomOffset extends AbstractTag -{ - - protected $Id = 'snro'; - - protected $Name = 'SequenceNumberRandomOffset'; - - protected $FullName = 'QuickTime::HintSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sequence Number Random Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SerialNumber.php deleted file mode 100644 index dfe8e5b24..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'slno'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ShadowSyncSampleTable.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ShadowSyncSampleTable.php deleted file mode 100644 index 3207a323f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ShadowSyncSampleTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadowSyncSampleTable extends AbstractTag -{ - - protected $Id = 'stsh'; - - protected $Name = 'ShadowSyncSampleTable'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shadow Sync Sample Table'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ShotName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ShotName.php deleted file mode 100644 index b55773516..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ShotName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotName extends AbstractTag -{ - - protected $Id = 'shot'; - - protected $Name = 'ShotName'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Shot Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Skip.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Skip.php deleted file mode 100644 index e1eb421db..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Skip.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Skip extends AbstractTag -{ - - protected $Id = 'skip'; - - protected $Name = 'Skip'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Skip'; - - protected $flag_Binary = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SlideShow.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SlideShow.php deleted file mode 100644 index 92a546fea..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SlideShow.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SlideShow extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'SlideShow'; - - protected $FullName = 'QuickTime::Video'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Slide Show'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Software.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Software.php deleted file mode 100644 index 6e994fba6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Software'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SoftwareVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SoftwareVersion.php deleted file mode 100644 index 52cc06a9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SoftwareVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftwareVersion extends AbstractTag -{ - - protected $Id = '\\xa9swr'; - - protected $Name = 'SoftwareVersion'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SongWriter.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SongWriter.php deleted file mode 100644 index 1ca3d80cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SongWriter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SongWriter extends AbstractTag -{ - - protected $Id = '\\xa9swf'; - - protected $Name = 'SongWriter'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Song Writer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SongWriterKeywords.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SongWriterKeywords.php deleted file mode 100644 index 3486f6b1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SongWriterKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SongWriterKeywords extends AbstractTag -{ - - protected $Id = '\\xa9swk'; - - protected $Name = 'SongWriterKeywords'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Song Writer Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SortAlbum.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SortAlbum.php deleted file mode 100644 index 4c08805a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SortAlbum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortAlbum extends AbstractTag -{ - - protected $Id = 'soal'; - - protected $Name = 'SortAlbum'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sort Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SortAlbumArtist.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SortAlbumArtist.php deleted file mode 100644 index 84ae14635..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SortAlbumArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortAlbumArtist extends AbstractTag -{ - - protected $Id = 'soaa'; - - protected $Name = 'SortAlbumArtist'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sort Album Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SortArtist.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SortArtist.php deleted file mode 100644 index 50b562b14..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SortArtist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortArtist extends AbstractTag -{ - - protected $Id = 'soar'; - - protected $Name = 'SortArtist'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sort Artist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SortComposer.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SortComposer.php deleted file mode 100644 index 2347ebd5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SortComposer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortComposer extends AbstractTag -{ - - protected $Id = 'soco'; - - protected $Name = 'SortComposer'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sort Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SortName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SortName.php deleted file mode 100644 index 5d82a49dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SortName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortName extends AbstractTag -{ - - protected $Id = 'sonm'; - - protected $Name = 'SortName'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sort Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SortShow.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SortShow.php deleted file mode 100644 index 42c66d852..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SortShow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SortShow extends AbstractTag -{ - - protected $Id = 'sosn'; - - protected $Name = 'SortShow'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sort Show'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SourceCredits.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SourceCredits.php deleted file mode 100644 index aaffedd76..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SourceCredits.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceCredits extends AbstractTag -{ - - protected $Id = '\\xa9src'; - - protected $Name = 'SourceCredits'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Credits'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SourceImageHeight.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SourceImageHeight.php deleted file mode 100644 index 6d803898c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SourceImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageHeight extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'SourceImageHeight'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Source Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SourceImageWidth.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SourceImageWidth.php deleted file mode 100644 index 21964c056..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SourceImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceImageWidth extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'SourceImageWidth'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Source Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/StreamingDataProtocol.php b/lib/PHPExiftool/Driver/Tag/QuickTime/StreamingDataProtocol.php deleted file mode 100644 index 5adfd924a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/StreamingDataProtocol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamingDataProtocol extends AbstractTag -{ - - protected $Id = 'sdp '; - - protected $Name = 'StreamingDataProtocol'; - - protected $FullName = 'QuickTime::HintInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Streaming Data Protocol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SubSampleInformation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SubSampleInformation.php deleted file mode 100644 index e311bfbce..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SubSampleInformation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubSampleInformation extends AbstractTag -{ - - protected $Id = 'subs'; - - protected $Name = 'Sub-sampleInformation'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sub-sample Information'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Subtitle.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Subtitle.php deleted file mode 100644 index 3b0bf7dc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Subtitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subtitle extends AbstractTag -{ - - protected $Id = '\\xa9snm'; - - protected $Name = 'Subtitle'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtitle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SubtitleKeywords.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SubtitleKeywords.php deleted file mode 100644 index 7d3dbc77e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SubtitleKeywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubtitleKeywords extends AbstractTag -{ - - protected $Id = '\\xa9snk'; - - protected $Name = 'SubtitleKeywords'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subtitle Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/SyncSampleTable.php b/lib/PHPExiftool/Driver/Tag/QuickTime/SyncSampleTable.php deleted file mode 100644 index ec1efbc11..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/SyncSampleTable.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SyncSampleTable extends AbstractTag -{ - - protected $Id = 'stss'; - - protected $Name = 'SyncSampleTable'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sync Sample Table'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TVEpisode.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TVEpisode.php deleted file mode 100644 index 0a8492741..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TVEpisode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TVEpisode extends AbstractTag -{ - - protected $Id = 'tves'; - - protected $Name = 'TVEpisode'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'TV Episode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TVEpisodeID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TVEpisodeID.php deleted file mode 100644 index ffaab7ab1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TVEpisodeID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TVEpisodeID extends AbstractTag -{ - - protected $Id = 'tven'; - - protected $Name = 'TVEpisodeID'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TV Episode ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TVNetworkName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TVNetworkName.php deleted file mode 100644 index 48f7de27b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TVNetworkName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TVNetworkName extends AbstractTag -{ - - protected $Id = 'tvnn'; - - protected $Name = 'TVNetworkName'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TV Network Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TVSeason.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TVSeason.php deleted file mode 100644 index 98242040c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TVSeason.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TVSeason extends AbstractTag -{ - - protected $Id = 'tvsn'; - - protected $Name = 'TVSeason'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'TV Season'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TVShow.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TVShow.php deleted file mode 100644 index 2af884fa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TVShow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TVShow extends AbstractTag -{ - - protected $Id = 'tvsh'; - - protected $Name = 'TVShow'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'TV Show'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Text.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Text.php deleted file mode 100644 index 543088723..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Text.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Text extends AbstractTag -{ - - protected $Id = 'text'; - - protected $Name = 'Text'; - - protected $FullName = 'QuickTime::GenMediaHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TextColor.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TextColor.php deleted file mode 100644 index d97d2a6bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TextColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextColor extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'TextColor'; - - protected $FullName = 'QuickTime::TCMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Text Color'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TextFace.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TextFace.php deleted file mode 100644 index f359b1c53..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TextFace.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextFace extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'TextFace'; - - protected $FullName = 'QuickTime::TCMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Text Face'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Plain', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Bold', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Italic', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Underline', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Outline', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Shadow', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Condense', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Extend', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TextFont.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TextFont.php deleted file mode 100644 index befc910cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TextFont.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextFont extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'TextFont'; - - protected $FullName = 'QuickTime::TCMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Text Font'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'System', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TextSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TextSize.php deleted file mode 100644 index 2c5428f4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TextSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextSize extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'TextSize'; - - protected $FullName = 'QuickTime::TCMediaInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Text Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ThumbnailImage.php deleted file mode 100644 index 99e5dd35d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ThumbnailImage.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $local_g2 = 'Image'; - - protected $flag_Binary = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/ThumbnailPNG.php b/lib/PHPExiftool/Driver/Tag/QuickTime/ThumbnailPNG.php deleted file mode 100644 index 3f4a9c3fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/ThumbnailPNG.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailPNG extends AbstractTag -{ - - protected $Id = 'thmb'; - - protected $Name = 'ThumbnailPNG'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail PNG'; - - protected $Index = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TimeScale.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TimeScale.php deleted file mode 100644 index 8ed22d3a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TimeScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeScale extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'TimeScale'; - - protected $FullName = 'QuickTime::MovieHeader'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Time Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TimeToSampleTable.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TimeToSampleTable.php deleted file mode 100644 index e6dbb7df9..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TimeToSampleTable.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeToSampleTable extends AbstractTag -{ - - protected $Id = 'stts'; - - protected $Name = 'TimeToSampleTable'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time To Sample Table'; - - protected $flag_Binary = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TimeZone.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TimeZone.php deleted file mode 100644 index 187de483a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TimeZone.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeZone extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'TimeZone'; - - protected $FullName = 'QuickTime::MetaData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Zone'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TimestampRandomOffset.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TimestampRandomOffset.php deleted file mode 100644 index bad202257..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TimestampRandomOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimestampRandomOffset extends AbstractTag -{ - - protected $Id = 'tsro'; - - protected $Name = 'TimestampRandomOffset'; - - protected $FullName = 'QuickTime::HintSampleDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Timestamp Random Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Tint.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Tint.php deleted file mode 100644 index 4fddfc0c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Tint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tint extends AbstractTag -{ - - protected $Id = 'player.movie.visual.tint'; - - protected $Name = 'Tint'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Title.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Title.php deleted file mode 100644 index 90a6747a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Title'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TotalBytes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TotalBytes.php deleted file mode 100644 index 3e0b8998c..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TotalBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalBytes extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TotalBytes'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Total Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TotalBytesNoRTPHeaders.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TotalBytesNoRTPHeaders.php deleted file mode 100644 index 022070181..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TotalBytesNoRTPHeaders.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalBytesNoRTPHeaders extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'TotalBytesNoRTPHeaders'; - - protected $FullName = 'QuickTime::HintTrackInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Total Bytes No RTP Headers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Track.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Track.php deleted file mode 100644 index d0d9940ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Track.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Track extends AbstractTag -{ - - protected $Id = '\\xa9trk'; - - protected $Name = 'Track'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TrackNumber.php deleted file mode 100644 index 7ad02763f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = 'trkn'; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'QuickTime::ItemList'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TrackProperty.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TrackProperty.php deleted file mode 100644 index 2f682c420..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TrackProperty.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackProperty extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'TrackProperty'; - - protected $FullName = 'QuickTime::MetaData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Property'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No presentation', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Main track', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TrackType.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TrackType.php deleted file mode 100644 index da18fc490..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TrackType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackType extends AbstractTag -{ - - protected $Id = 'kgtt'; - - protected $Name = 'TrackType'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/TransactionID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/TransactionID.php deleted file mode 100644 index 32adc5921..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/TransactionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransactionID extends AbstractTag -{ - - protected $Id = 'tran'; - - protected $Name = 'TransactionID'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Transaction ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Trebel.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Trebel.php deleted file mode 100644 index ab2ce34ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Trebel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Trebel extends AbstractTag -{ - - protected $Id = 'player.movie.audio.treble'; - - protected $Name = 'Trebel'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Trebel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/URL.php b/lib/PHPExiftool/Driver/Tag/QuickTime/URL.php deleted file mode 100644 index 4700e48eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'url '; - - protected $Name = 'URL'; - - protected $FullName = 'QuickTime::DataRef'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/URN.php b/lib/PHPExiftool/Driver/Tag/QuickTime/URN.php deleted file mode 100644 index a1334359e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/URN.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URN extends AbstractTag -{ - - protected $Id = 'urn '; - - protected $Name = 'URN'; - - protected $FullName = 'QuickTime::DataRef'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'URN'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UUIDUnknown.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UUIDUnknown.php deleted file mode 100644 index 27dc18a86..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UUIDUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UUIDUnknown extends AbstractTag -{ - - protected $Id = 'uuid'; - - protected $Name = 'UUID-Unknown'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UUID-Unknown'; - - protected $flag_Binary = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdzc.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdzc.php deleted file mode 100644 index 4479c0465..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdzc.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownAdzc extends AbstractTag -{ - - protected $Id = 'adzc'; - - protected $Name = 'Unknown_adzc'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown adzc'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdze.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdze.php deleted file mode 100644 index 8ec254e56..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdze.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownAdze extends AbstractTag -{ - - protected $Id = 'adze'; - - protected $Name = 'Unknown_adze'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown adze'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdzm.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdzm.php deleted file mode 100644 index 2da8c9742..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownAdzm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownAdzm extends AbstractTag -{ - - protected $Id = 'adzm'; - - protected $Name = 'Unknown_adzm'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown adzm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownSlmt.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownSlmt.php deleted file mode 100644 index 7d3baa551..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownSlmt.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownSlmt extends AbstractTag -{ - - protected $Id = 'slmt'; - - protected $Name = 'Unknown_slmt'; - - protected $FullName = 'QuickTime::HTCInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Unknown slmt'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownTags.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownTags.php deleted file mode 100644 index 0673c21b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownTags.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownTags extends AbstractTag -{ - - protected $Id = 'TAGS'; - - protected $Name = 'UnknownTags'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown Tags'; - - protected $flag_Binary = true; - - protected $Index = 13; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownThumbnail.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownThumbnail.php deleted file mode 100644 index 51fee2f6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UnknownThumbnail.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownThumbnail extends AbstractTag -{ - - protected $Id = 'thmb'; - - protected $Name = 'UnknownThumbnail'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown Thumbnail'; - - protected $flag_Binary = true; - - protected $Index = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UserID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UserID.php deleted file mode 100644 index 0a5928e10..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UserID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserID extends AbstractTag -{ - - protected $Id = 'user'; - - protected $Name = 'UserID'; - - protected $FullName = 'QuickTime::SchemeInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User ID'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UserName.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UserName.php deleted file mode 100644 index cebaa1968..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UserName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserName extends AbstractTag -{ - - protected $Id = 'name'; - - protected $Name = 'UserName'; - - protected $FullName = 'QuickTime::SchemeInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Name'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/UserRating.php b/lib/PHPExiftool/Driver/Tag/QuickTime/UserRating.php deleted file mode 100644 index 563ff9eed..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/UserRating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserRating extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'UserRating'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Vendor.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Vendor.php deleted file mode 100644 index 2877bdc6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Vendor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Vendor extends AbstractTag -{ - - protected $Id = 'vndr'; - - protected $Name = 'Vendor'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vendor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VendorID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VendorID.php deleted file mode 100644 index 5998b4f0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VendorID.php +++ /dev/null @@ -1,120 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VendorID extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'VendorID'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Vendor ID'; - - protected $MaxLength = 4; - - protected $Values = array( - 'AR.D' => array( - 'Id' => 'AR.D', - 'Label' => 'Parrot AR.Drone', - ), - 'FFMP' => array( - 'Id' => 'FFMP', - 'Label' => 'FFmpeg', - ), - 'GIC ' => array( - 'Id' => 'GIC ', - 'Label' => 'General Imaging Co.', - ), - 'KMPI' => array( - 'Id' => 'KMPI', - 'Label' => 'Konica-Minolta', - ), - 'NIKO' => array( - 'Id' => 'NIKO', - 'Label' => 'Nikon', - ), - 'SMI ' => array( - 'Id' => 'SMI ', - 'Label' => 'Sorenson Media Inc.', - ), - 'ZORA' => array( - 'Id' => 'ZORA', - 'Label' => 'Zoran Corporation', - ), - 'appl' => array( - 'Id' => 'appl', - 'Label' => 'Apple', - ), - 'fe20' => array( - 'Id' => 'fe20', - 'Label' => 'Olympus (fe20)', - ), - 'kdak' => array( - 'Id' => 'kdak', - 'Label' => 'Kodak', - ), - 'leic' => array( - 'Id' => 'leic', - 'Label' => 'Leica', - ), - 'mino' => array( - 'Id' => 'mino', - 'Label' => 'Minolta', - ), - 'niko' => array( - 'Id' => 'niko', - 'Label' => 'Nikon', - ), - 'olym' => array( - 'Id' => 'olym', - 'Label' => 'Olympus', - ), - 'pana' => array( - 'Id' => 'pana', - 'Label' => 'Panasonic', - ), - 'pent' => array( - 'Id' => 'pent', - 'Label' => 'Pentax', - ), - 'pr01' => array( - 'Id' => 'pr01', - 'Label' => 'Olympus (pr01)', - ), - 'sany' => array( - 'Id' => 'sany', - 'Label' => 'Sanyo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Version.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Version.php deleted file mode 100644 index 01c133c97..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Version.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 'version'; - - protected $Name = 'Version'; - - protected $FullName = 'QuickTime::Keys'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VersionRestrictions.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VersionRestrictions.php deleted file mode 100644 index f70a8d2b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VersionRestrictions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionRestrictions extends AbstractTag -{ - - protected $Id = 'aver'; - - protected $Name = 'VersionRestrictions'; - - protected $FullName = 'QuickTime::Rights'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version Restrictions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAttributes.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAttributes.php deleted file mode 100644 index 766342fbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAttributes.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAttributes extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'VideoAttributes'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Attributes'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Encrypted', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Variable bitrate', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Variable frame rate', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Interlaced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAvgBitrate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAvgBitrate.php deleted file mode 100644 index ea662ac1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAvgBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAvgBitrate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'VideoAvgBitrate'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Avg Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAvgFrameRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAvgFrameRate.php deleted file mode 100644 index 4895ec9fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoAvgFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAvgFrameRate extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'VideoAvgFrameRate'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Video Avg Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoCodec.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoCodec.php deleted file mode 100644 index 5b507cd42..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoCodec.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodec extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'VideoCodec'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Video Codec'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoCodecInfo.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoCodecInfo.php deleted file mode 100644 index 2abd129a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoCodecInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodecInfo extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'VideoCodecInfo'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Codec Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoFieldOrder.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoFieldOrder.php deleted file mode 100644 index 7c3304f5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoFieldOrder.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFieldOrder extends AbstractTag -{ - - protected $Id = 'fiel'; - - protected $Name = 'VideoFieldOrder'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Video Field Order'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Progressive', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2:1 Interlaced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoFrameRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoFrameRate.php deleted file mode 100644 index 001937e32..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameRate extends AbstractTag -{ - - protected $Id = 'stts'; - - protected $Name = 'VideoFrameRate'; - - protected $FullName = 'QuickTime::SampleTable'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Video Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoMaxBitrate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoMaxBitrate.php deleted file mode 100644 index b41ee8cff..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoMaxBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoMaxBitrate extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'VideoMaxBitrate'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Max Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoMaxFrameRate.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoMaxFrameRate.php deleted file mode 100644 index 884f9928b..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoMaxFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoMaxFrameRate extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'VideoMaxFrameRate'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Video Max Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoProfileVersion.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoProfileVersion.php deleted file mode 100644 index e3bed1b70..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoProfileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoProfileVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'VideoProfileVersion'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Profile Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoSize.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoSize.php deleted file mode 100644 index ad84a9295..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoSize.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoSize extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'VideoSize'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Video Size'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoTrackID.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VideoTrackID.php deleted file mode 100644 index e16e892b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VideoTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoTrackID extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'VideoTrackID'; - - protected $FullName = 'QuickTime::VideoProf'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/VolumeNormalization.php b/lib/PHPExiftool/Driver/Tag/QuickTime/VolumeNormalization.php deleted file mode 100644 index 92ed16976..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/VolumeNormalization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VolumeNormalization extends AbstractTag -{ - - protected $Id = 'iTunNORM'; - - protected $Name = 'VolumeNormalization'; - - protected $FullName = 'QuickTime::iTunesInfo'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Volume Normalization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Wide.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Wide.php deleted file mode 100644 index 2acad5100..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Wide.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Wide extends AbstractTag -{ - - protected $Id = 'wide'; - - protected $Name = 'Wide'; - - protected $FullName = 'QuickTime::Main'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Wide'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/WindowLocation.php b/lib/PHPExiftool/Driver/Tag/QuickTime/WindowLocation.php deleted file mode 100644 index d9e6c7df6..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/WindowLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WindowLocation extends AbstractTag -{ - - protected $Id = 'WLOC'; - - protected $Name = 'WindowLocation'; - - protected $FullName = 'QuickTime::UserData'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Window Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/XResolution.php b/lib/PHPExiftool/Driver/Tag/QuickTime/XResolution.php deleted file mode 100644 index 94299bfbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'XResolution'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/YResolution.php b/lib/PHPExiftool/Driver/Tag/QuickTime/YResolution.php deleted file mode 100644 index e11f888ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/YResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'YResolution'; - - protected $FullName = 'QuickTime::ImageDesc'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'Image'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/QuickTime/Year.php b/lib/PHPExiftool/Driver/Tag/QuickTime/Year.php deleted file mode 100644 index f576baa3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/QuickTime/Year.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\QuickTime; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Year'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'QuickTime'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'QuickTime'; - - protected $g2 = 'mixed'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/FujiLayout.php b/lib/PHPExiftool/Driver/Tag/RAF/FujiLayout.php deleted file mode 100644 index 74b361c03..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/FujiLayout.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FujiLayout extends AbstractTag -{ - - protected $Id = 304; - - protected $Name = 'FujiLayout'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Fuji Layout'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/RawImageSize.php b/lib/PHPExiftool/Driver/Tag/RAF/RawImageSize.php deleted file mode 100644 index 38b2ecc70..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/RawImageSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageSize extends AbstractTag -{ - - protected $Id = 289; - - protected $Name = 'RawImageSize'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Image Size'; - - protected $MaxLength = 2; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevels.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevels.php deleted file mode 100644 index 26cfda8af..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevels extends AbstractTag -{ - - protected $Id = 12272; - - protected $Name = 'WB_GRGBLevels'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsAuto.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsAuto.php deleted file mode 100644 index 6e7941d96..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsAuto.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsAuto extends AbstractTag -{ - - protected $Id = 8192; - - protected $Name = 'WB_GRGBLevelsAuto'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Auto'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsCloudy.php deleted file mode 100644 index 861b83c6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsCloudy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsCloudy extends AbstractTag -{ - - protected $Id = 8704; - - protected $Name = 'WB_GRGBLevelsCloudy'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Cloudy'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDayWhiteFluor.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDayWhiteFluor.php deleted file mode 100644 index a2991bd97..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDayWhiteFluor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsDayWhiteFluor extends AbstractTag -{ - - protected $Id = 8961; - - protected $Name = 'WB_GRGBLevelsDayWhiteFluor'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Day White Fluor'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDaylight.php deleted file mode 100644 index 9136db19f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDaylight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsDaylight extends AbstractTag -{ - - protected $Id = 8448; - - protected $Name = 'WB_GRGBLevelsDaylight'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Daylight'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDaylightFluor.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDaylightFluor.php deleted file mode 100644 index fcfc17d6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsDaylightFluor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsDaylightFluor extends AbstractTag -{ - - protected $Id = 8960; - - protected $Name = 'WB_GRGBLevelsDaylightFluor'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Daylight Fluor'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsLivingRoomWarmWhiteFluor.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsLivingRoomWarmWhiteFluor.php deleted file mode 100644 index 749f79985..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsLivingRoomWarmWhiteFluor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsLivingRoomWarmWhiteFluor extends AbstractTag -{ - - protected $Id = 8977; - - protected $Name = 'WB_GRGBLevelsLivingRoomWarmWhiteFluor'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Living Room Warm White Fluor'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsTungsten.php deleted file mode 100644 index cdf32ed68..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsTungsten.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsTungsten extends AbstractTag -{ - - protected $Id = 9216; - - protected $Name = 'WB_GRGBLevelsTungsten'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Tungsten'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsWarmWhiteFluor.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsWarmWhiteFluor.php deleted file mode 100644 index d6546e781..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsWarmWhiteFluor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsWarmWhiteFluor extends AbstractTag -{ - - protected $Id = 8976; - - protected $Name = 'WB_GRGBLevelsWarmWhiteFluor'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels Warm White Fluor'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsWhiteFluorescent.php b/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsWhiteFluorescent.php deleted file mode 100644 index c88e314aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF/WBGRGBLevelsWhiteFluorescent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRGBLevelsWhiteFluorescent extends AbstractTag -{ - - protected $Id = 8962; - - protected $Name = 'WB_GRGBLevelsWhiteFluorescent'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'WB GRGB Levels White Fluorescent'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RAF2/RawImageFullSize.php b/lib/PHPExiftool/Driver/Tag/RAF2/RawImageFullSize.php deleted file mode 100644 index e8a9b74cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/RAF2/RawImageFullSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RAF2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawImageFullSize extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'RawImageFullSize'; - - protected $FullName = 'FujiFilm::RAF'; - - protected $GroupName = 'RAF2'; - - protected $g0 = 'RAF'; - - protected $g1 = 'RAF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Raw Image Full Size'; - - protected $local_g1 = 'RAF2'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AlphaCompression.php b/lib/PHPExiftool/Driver/Tag/RIFF/AlphaCompression.php deleted file mode 100644 index af8752857..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AlphaCompression.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaCompression extends AbstractTag -{ - - protected $Id = '0.2'; - - protected $Name = 'AlphaCompression'; - - protected $FullName = 'RIFF::ALPH'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'none', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Lossless', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AlphaFiltering.php b/lib/PHPExiftool/Driver/Tag/RIFF/AlphaFiltering.php deleted file mode 100644 index 5972a652c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AlphaFiltering.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaFiltering extends AbstractTag -{ - - protected $Id = '0.1'; - - protected $Name = 'AlphaFiltering'; - - protected $FullName = 'RIFF::ALPH'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Filtering'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'none', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Vertical', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Gradient', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AlphaPreprocessing.php b/lib/PHPExiftool/Driver/Tag/RIFF/AlphaPreprocessing.php deleted file mode 100644 index 3d020618f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AlphaPreprocessing.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlphaPreprocessing extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AlphaPreprocessing'; - - protected $FullName = 'RIFF::ALPH'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Alpha Preprocessing'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'none', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Level Reduction', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AnimationLoopCount.php b/lib/PHPExiftool/Driver/Tag/RIFF/AnimationLoopCount.php deleted file mode 100644 index 81328d16b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AnimationLoopCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnimationLoopCount extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AnimationLoopCount'; - - protected $FullName = 'RIFF::ANIM'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Animation Loop Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ArchivalLocation.php b/lib/PHPExiftool/Driver/Tag/RIFF/ArchivalLocation.php deleted file mode 100644 index b5e4a46ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ArchivalLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArchivalLocation extends AbstractTag -{ - - protected $Id = 'IARL'; - - protected $Name = 'ArchivalLocation'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Archival Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Artist.php b/lib/PHPExiftool/Driver/Tag/RIFF/Artist.php deleted file mode 100644 index b2c70bb67..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'IART'; - - protected $Name = 'Artist'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AudioCodec.php b/lib/PHPExiftool/Driver/Tag/RIFF/AudioCodec.php deleted file mode 100644 index b3dea3bc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AudioCodec.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCodec extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AudioCodec'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Audio Codec'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AudioSampleCount.php b/lib/PHPExiftool/Driver/Tag/RIFF/AudioSampleCount.php deleted file mode 100644 index ffe0408ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AudioSampleCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleCount extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'AudioSampleCount'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/RIFF/AudioSampleRate.php deleted file mode 100644 index 66a3ac9b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AudioSampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Audio Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/AvgBytesPerSec.php b/lib/PHPExiftool/Driver/Tag/RIFF/AvgBytesPerSec.php deleted file mode 100644 index ac97dd0c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/AvgBytesPerSec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgBytesPerSec extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AvgBytesPerSec'; - - protected $FullName = 'RIFF::AudioFormat'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Avg Bytes Per Sec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/BWFVersion.php b/lib/PHPExiftool/Driver/Tag/RIFF/BWFVersion.php deleted file mode 100644 index 31f609da4..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/BWFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BWFVersion extends AbstractTag -{ - - protected $Id = 346; - - protected $Name = 'BWFVersion'; - - protected $FullName = 'RIFF::BroadcastExt'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'BWF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/BackgroundColor.php b/lib/PHPExiftool/Driver/Tag/RIFF/BackgroundColor.php deleted file mode 100644 index 6ee4faab9..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/BackgroundColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundColor extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'BackgroundColor'; - - protected $FullName = 'RIFF::ANIM'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Background Color'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/BaseURL.php b/lib/PHPExiftool/Driver/Tag/RIFF/BaseURL.php deleted file mode 100644 index 06a929cee..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/BaseURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseURL extends AbstractTag -{ - - protected $Id = 'IBSU'; - - protected $Name = 'BaseURL'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Base URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/RIFF/BitsPerSample.php deleted file mode 100644 index 22cce2494..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'RIFF::AudioFormat'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Cinematographer.php b/lib/PHPExiftool/Driver/Tag/RIFF/Cinematographer.php deleted file mode 100644 index 4e36c6a08..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Cinematographer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Cinematographer extends AbstractTag -{ - - protected $Id = 'ICNM'; - - protected $Name = 'Cinematographer'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cinematographer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Codec.php b/lib/PHPExiftool/Driver/Tag/RIFF/Codec.php deleted file mode 100644 index c240a8b90..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Codec.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Codec extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Codec'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Codec'; - - protected $MaxLength = 4; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/CodingHistory.php b/lib/PHPExiftool/Driver/Tag/RIFF/CodingHistory.php deleted file mode 100644 index da797da81..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/CodingHistory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodingHistory extends AbstractTag -{ - - protected $Id = 602; - - protected $Name = 'CodingHistory'; - - protected $FullName = 'RIFF::BroadcastExt'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Coding History'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Comment.php b/lib/PHPExiftool/Driver/Tag/RIFF/Comment.php deleted file mode 100644 index e750ca6c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Comment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Comment'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Comments.php b/lib/PHPExiftool/Driver/Tag/RIFF/Comments.php deleted file mode 100644 index d3c718233..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Comments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comments extends AbstractTag -{ - - protected $Id = 'COMM'; - - protected $Name = 'Comments'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Commissioned.php b/lib/PHPExiftool/Driver/Tag/RIFF/Commissioned.php deleted file mode 100644 index 1aaa1581a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Commissioned.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Commissioned extends AbstractTag -{ - - protected $Id = 'ICMS'; - - protected $Name = 'Commissioned'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Commissioned'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Copyright.php b/lib/PHPExiftool/Driver/Tag/RIFF/Copyright.php deleted file mode 100644 index 68c3b2719..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'ICOP'; - - protected $Name = 'Copyright'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/CostumeDesigner.php b/lib/PHPExiftool/Driver/Tag/RIFF/CostumeDesigner.php deleted file mode 100644 index a55490ca4..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/CostumeDesigner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CostumeDesigner extends AbstractTag -{ - - protected $Id = 'ICDS'; - - protected $Name = 'CostumeDesigner'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Costume Designer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Country.php b/lib/PHPExiftool/Driver/Tag/RIFF/Country.php deleted file mode 100644 index 34c1f0e59..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Country.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Country extends AbstractTag -{ - - protected $Id = 'ICNT'; - - protected $Name = 'Country'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Country'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Cropped.php b/lib/PHPExiftool/Driver/Tag/RIFF/Cropped.php deleted file mode 100644 index f1c8bc83a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Cropped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Cropped extends AbstractTag -{ - - protected $Id = 'ICRP'; - - protected $Name = 'Cropped'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cropped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/DateCreated.php b/lib/PHPExiftool/Driver/Tag/RIFF/DateCreated.php deleted file mode 100644 index b6a4345eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/DateCreated.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateCreated extends AbstractTag -{ - - protected $Id = 'ICRD'; - - protected $Name = 'DateCreated'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date Created'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/RIFF/DateTimeOriginal.php deleted file mode 100644 index cdb9998a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/DateTimeOriginal.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $MaxLength = 18; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/DefaultAudioStream.php b/lib/PHPExiftool/Driver/Tag/RIFF/DefaultAudioStream.php deleted file mode 100644 index f5c9806ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/DefaultAudioStream.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultAudioStream extends AbstractTag -{ - - protected $Id = 'ICAS'; - - protected $Name = 'DefaultAudioStream'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Default Audio Stream'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Description.php b/lib/PHPExiftool/Driver/Tag/RIFF/Description.php deleted file mode 100644 index 990830ab6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Description'; - - protected $FullName = 'RIFF::BroadcastExt'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Description'; - - protected $MaxLength = 256; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Dimensions.php b/lib/PHPExiftool/Driver/Tag/RIFF/Dimensions.php deleted file mode 100644 index 967d3a36d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Dimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Dimensions extends AbstractTag -{ - - protected $Id = 'IDIM'; - - protected $Name = 'Dimensions'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Directory.php b/lib/PHPExiftool/Driver/Tag/RIFF/Directory.php deleted file mode 100644 index 49da1fcc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Directory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Directory extends AbstractTag -{ - - protected $Id = 'DIRC'; - - protected $Name = 'Directory'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Directory'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/DistributedBy.php b/lib/PHPExiftool/Driver/Tag/RIFF/DistributedBy.php deleted file mode 100644 index 9e3e14ac9..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/DistributedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistributedBy extends AbstractTag -{ - - protected $Id = 'IDST'; - - protected $Name = 'DistributedBy'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Distributed By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/DotsPerInch.php b/lib/PHPExiftool/Driver/Tag/RIFF/DotsPerInch.php deleted file mode 100644 index 56ce4d7c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/DotsPerInch.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DotsPerInch extends AbstractTag -{ - - protected $Id = 'IDPI'; - - protected $Name = 'DotsPerInch'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Dots Per Inch'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Duration.php b/lib/PHPExiftool/Driver/Tag/RIFF/Duration.php deleted file mode 100644 index 2d0e9c103..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'Duration'; - - protected $FullName = 'RIFF::ANMF'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/EditedBy.php b/lib/PHPExiftool/Driver/Tag/RIFF/EditedBy.php deleted file mode 100644 index 0a4f839c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/EditedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditedBy extends AbstractTag -{ - - protected $Id = 'IEDT'; - - protected $Name = 'EditedBy'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Edited By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/EighthLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/EighthLanguage.php deleted file mode 100644 index 634133f9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/EighthLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EighthLanguage extends AbstractTag -{ - - protected $Id = 'IAS8'; - - protected $Name = 'EighthLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Eighth Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/RIFF/EncodedBy.php deleted file mode 100644 index b5835b8d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Encoding.php b/lib/PHPExiftool/Driver/Tag/RIFF/Encoding.php deleted file mode 100644 index a8d24ca33..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Encoding.php +++ /dev/null @@ -1,1018 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Encoding extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Encoding'; - - protected $FullName = 'RIFF::AudioFormat'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Encoding'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Microsoft PCM', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Microsoft ADPCM', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Microsoft IEEE float', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Compaq VSELP', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'IBM CVSD', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Microsoft a-Law', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Microsoft u-Law', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Microsoft DTS', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'DRM', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'WMA 9 Speech', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Microsoft Windows Media RT Voice', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'OKI-ADPCM', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Intel IMA/DVI-ADPCM', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Videologic Mediaspace ADPCM', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Sierra ADPCM', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Antex G.723 ADPCM', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'DSP Solutions DIGISTD', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'DSP Solutions DIGIFIX', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Dialoic OKI ADPCM', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Media Vision ADPCM', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'HP CU', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'HP Dynamic Voice', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Yamaha ADPCM', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'SONARC Speech Compression', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'DSP Group True Speech', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Echo Speech Corp.', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Virtual Music Audiofile AF36', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Audio Processing Tech.', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Virtual Music Audiofile AF10', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Aculab Prosody 1612', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Merging Tech. LRC', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Dolby AC2', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Microsoft GSM610', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'MSN Audio', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Antex ADPCME', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Control Resources VQLPC', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'DSP Solutions DIGIREAL', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'DSP Solutions DIGIADPCM', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Control Resources CR10', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Natural MicroSystems VBX ADPCM', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Crystal Semiconductor IMA ADPCM', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Echo Speech ECHOSC3', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Rockwell ADPCM', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Rockwell DIGITALK', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Xebec Multimedia', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Antex G.721 ADPCM', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Antex G.728 CELP', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Microsoft MSG723', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'IBM AVC ADPCM', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'ITU-T G.726', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Microsoft MPEG', - ), - 81 => array( - 'Id' => 81, - 'Label' => 'RT23 or PAC', - ), - 82 => array( - 'Id' => 82, - 'Label' => 'InSoft RT24', - ), - 83 => array( - 'Id' => 83, - 'Label' => 'InSoft PAC', - ), - 85 => array( - 'Id' => 85, - 'Label' => 'MP3', - ), - 89 => array( - 'Id' => 89, - 'Label' => 'Cirrus', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Cirrus Logic', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'ESS Tech. PCM', - ), - 98 => array( - 'Id' => 98, - 'Label' => 'Voxware Inc.', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'Canopus ATRAC', - ), - 100 => array( - 'Id' => 100, - 'Label' => 'APICOM G.726 ADPCM', - ), - 101 => array( - 'Id' => 101, - 'Label' => 'APICOM G.722 ADPCM', - ), - 102 => array( - 'Id' => 102, - 'Label' => 'Microsoft DSAT', - ), - 103 => array( - 'Id' => 103, - 'Label' => 'Micorsoft DSAT DISPLAY', - ), - 105 => array( - 'Id' => 105, - 'Label' => 'Voxware Byte Aligned', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Voxware AC8', - ), - 113 => array( - 'Id' => 113, - 'Label' => 'Voxware AC10', - ), - 114 => array( - 'Id' => 114, - 'Label' => 'Voxware AC16', - ), - 115 => array( - 'Id' => 115, - 'Label' => 'Voxware AC20', - ), - 116 => array( - 'Id' => 116, - 'Label' => 'Voxware MetaVoice', - ), - 117 => array( - 'Id' => 117, - 'Label' => 'Voxware MetaSound', - ), - 118 => array( - 'Id' => 118, - 'Label' => 'Voxware RT29HW', - ), - 119 => array( - 'Id' => 119, - 'Label' => 'Voxware VR12', - ), - 120 => array( - 'Id' => 120, - 'Label' => 'Voxware VR18', - ), - 121 => array( - 'Id' => 121, - 'Label' => 'Voxware TQ40', - ), - 122 => array( - 'Id' => 122, - 'Label' => 'Voxware SC3', - ), - 123 => array( - 'Id' => 123, - 'Label' => 'Voxware SC3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Soundsoft', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Voxware TQ60', - ), - 130 => array( - 'Id' => 130, - 'Label' => 'Microsoft MSRT24', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'AT&T G.729A', - ), - 132 => array( - 'Id' => 132, - 'Label' => 'Motion Pixels MVI MV12', - ), - 133 => array( - 'Id' => 133, - 'Label' => 'DataFusion G.726', - ), - 134 => array( - 'Id' => 134, - 'Label' => 'DataFusion GSM610', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Iterated Systems Audio', - ), - 137 => array( - 'Id' => 137, - 'Label' => 'Onlive', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'Multitude, Inc. FT SX20', - ), - 139 => array( - 'Id' => 139, - 'Label' => 'Infocom ITS A/S G.721 ADPCM', - ), - 140 => array( - 'Id' => 140, - 'Label' => 'Convedia G729', - ), - 141 => array( - 'Id' => 141, - 'Label' => 'Not specified congruency, Inc.', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'Siemens SBC24', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'Sonic Foundry Dolby AC3 APDIF', - ), - 147 => array( - 'Id' => 147, - 'Label' => 'MediaSonic G.723', - ), - 148 => array( - 'Id' => 148, - 'Label' => 'Aculab Prosody 8kbps', - ), - 151 => array( - 'Id' => 151, - 'Label' => 'ZyXEL ADPCM', - ), - 152 => array( - 'Id' => 152, - 'Label' => 'Philips LPCBB', - ), - 153 => array( - 'Id' => 153, - 'Label' => 'Studer Professional Audio Packed', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Malden PhonyTalk', - ), - 161 => array( - 'Id' => 161, - 'Label' => 'Racal Recorder GSM', - ), - 162 => array( - 'Id' => 162, - 'Label' => 'Racal Recorder G720.a', - ), - 163 => array( - 'Id' => 163, - 'Label' => 'Racal G723.1', - ), - 164 => array( - 'Id' => 164, - 'Label' => 'Racal Tetra ACELP', - ), - 176 => array( - 'Id' => 176, - 'Label' => 'NEC AAC NEC Corporation', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'AAC', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Rhetorex ADPCM', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'IBM u-Law', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'IBM a-Law', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'IBM ADPCM', - ), - 273 => array( - 'Id' => 273, - 'Label' => 'Vivo G.723', - ), - 274 => array( - 'Id' => 274, - 'Label' => 'Vivo Siren', - ), - 288 => array( - 'Id' => 288, - 'Label' => 'Philips Speech Processing CELP', - ), - 289 => array( - 'Id' => 289, - 'Label' => 'Philips Speech Processing GRUNDIG', - ), - 291 => array( - 'Id' => 291, - 'Label' => 'Digital G.723', - ), - 293 => array( - 'Id' => 293, - 'Label' => 'Sanyo LD ADPCM', - ), - 304 => array( - 'Id' => 304, - 'Label' => 'Sipro Lab ACEPLNET', - ), - 305 => array( - 'Id' => 305, - 'Label' => 'Sipro Lab ACELP4800', - ), - 306 => array( - 'Id' => 306, - 'Label' => 'Sipro Lab ACELP8V3', - ), - 307 => array( - 'Id' => 307, - 'Label' => 'Sipro Lab G.729', - ), - 308 => array( - 'Id' => 308, - 'Label' => 'Sipro Lab G.729A', - ), - 309 => array( - 'Id' => 309, - 'Label' => 'Sipro Lab Kelvin', - ), - 310 => array( - 'Id' => 310, - 'Label' => 'VoiceAge AMR', - ), - 320 => array( - 'Id' => 320, - 'Label' => 'Dictaphone G.726 ADPCM', - ), - 336 => array( - 'Id' => 336, - 'Label' => 'Qualcomm PureVoice', - ), - 337 => array( - 'Id' => 337, - 'Label' => 'Qualcomm HalfRate', - ), - 341 => array( - 'Id' => 341, - 'Label' => 'Ring Zero Systems TUBGSM', - ), - 352 => array( - 'Id' => 352, - 'Label' => 'Microsoft Audio1', - ), - 353 => array( - 'Id' => 353, - 'Label' => 'Windows Media Audio V2 V7 V8 V9 / DivX audio (WMA) / Alex AC3 Audio', - ), - 354 => array( - 'Id' => 354, - 'Label' => 'Windows Media Audio Professional V9', - ), - 355 => array( - 'Id' => 355, - 'Label' => 'Windows Media Audio Lossless V9', - ), - 356 => array( - 'Id' => 356, - 'Label' => 'WMA Pro over S/PDIF', - ), - 368 => array( - 'Id' => 368, - 'Label' => 'UNISYS NAP ADPCM', - ), - 369 => array( - 'Id' => 369, - 'Label' => 'UNISYS NAP ULAW', - ), - 370 => array( - 'Id' => 370, - 'Label' => 'UNISYS NAP ALAW', - ), - 371 => array( - 'Id' => 371, - 'Label' => 'UNISYS NAP 16K', - ), - 372 => array( - 'Id' => 372, - 'Label' => 'MM SYCOM ACM SYC008 SyCom Technologies', - ), - 373 => array( - 'Id' => 373, - 'Label' => 'MM SYCOM ACM SYC701 G726L SyCom Technologies', - ), - 374 => array( - 'Id' => 374, - 'Label' => 'MM SYCOM ACM SYC701 CELP54 SyCom Technologies', - ), - 375 => array( - 'Id' => 375, - 'Label' => 'MM SYCOM ACM SYC701 CELP68 SyCom Technologies', - ), - 376 => array( - 'Id' => 376, - 'Label' => 'Knowledge Adventure ADPCM', - ), - 384 => array( - 'Id' => 384, - 'Label' => 'Fraunhofer IIS MPEG2AAC', - ), - 400 => array( - 'Id' => 400, - 'Label' => 'Digital Theater Systems DTS DS', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Creative Labs ADPCM', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'Creative Labs FASTSPEECH8', - ), - 515 => array( - 'Id' => 515, - 'Label' => 'Creative Labs FASTSPEECH10', - ), - 528 => array( - 'Id' => 528, - 'Label' => 'UHER ADPCM', - ), - 533 => array( - 'Id' => 533, - 'Label' => 'Ulead DV ACM', - ), - 534 => array( - 'Id' => 534, - 'Label' => 'Ulead DV ACM', - ), - 544 => array( - 'Id' => 544, - 'Label' => 'Quarterdeck Corp.', - ), - 560 => array( - 'Id' => 560, - 'Label' => 'I-Link VC', - ), - 576 => array( - 'Id' => 576, - 'Label' => 'Aureal Semiconductor Raw Sport', - ), - 577 => array( - 'Id' => 577, - 'Label' => 'ESST AC3', - ), - 592 => array( - 'Id' => 592, - 'Label' => 'Interactive Products HSX', - ), - 593 => array( - 'Id' => 593, - 'Label' => 'Interactive Products RPELP', - ), - 608 => array( - 'Id' => 608, - 'Label' => 'Consistent CS2', - ), - 624 => array( - 'Id' => 624, - 'Label' => 'Sony SCX', - ), - 625 => array( - 'Id' => 625, - 'Label' => 'Sony SCY', - ), - 626 => array( - 'Id' => 626, - 'Label' => 'Sony ATRAC3', - ), - 627 => array( - 'Id' => 627, - 'Label' => 'Sony SPC', - ), - 640 => array( - 'Id' => 640, - 'Label' => 'TELUM Telum Inc.', - ), - 641 => array( - 'Id' => 641, - 'Label' => 'TELUMIA Telum Inc.', - ), - 645 => array( - 'Id' => 645, - 'Label' => 'Norcom Voice Systems ADPCM', - ), - 768 => array( - 'Id' => 768, - 'Label' => 'Fujitsu FM TOWNS SND', - ), - 769 => array( - 'Id' => 769, - 'Label' => 'Fujitsu (not specified)', - ), - 770 => array( - 'Id' => 770, - 'Label' => 'Fujitsu (not specified)', - ), - 771 => array( - 'Id' => 771, - 'Label' => 'Fujitsu (not specified)', - ), - 772 => array( - 'Id' => 772, - 'Label' => 'Fujitsu (not specified)', - ), - 773 => array( - 'Id' => 773, - 'Label' => 'Fujitsu (not specified)', - ), - 774 => array( - 'Id' => 774, - 'Label' => 'Fujitsu (not specified)', - ), - 775 => array( - 'Id' => 775, - 'Label' => 'Fujitsu (not specified)', - ), - 776 => array( - 'Id' => 776, - 'Label' => 'Fujitsu (not specified)', - ), - 848 => array( - 'Id' => 848, - 'Label' => 'Micronas Semiconductors, Inc. Development', - ), - 849 => array( - 'Id' => 849, - 'Label' => 'Micronas Semiconductors, Inc. CELP833', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Brooktree Digital', - ), - 1025 => array( - 'Id' => 1025, - 'Label' => 'Intel Music Coder (IMC)', - ), - 1026 => array( - 'Id' => 1026, - 'Label' => 'Ligos Indeo Audio', - ), - 1104 => array( - 'Id' => 1104, - 'Label' => 'QDesign Music', - ), - 1280 => array( - 'Id' => 1280, - 'Label' => 'On2 VP7 On2 Technologies', - ), - 1281 => array( - 'Id' => 1281, - 'Label' => 'On2 VP6 On2 Technologies', - ), - 1664 => array( - 'Id' => 1664, - 'Label' => 'AT&T VME VMPCM', - ), - 1665 => array( - 'Id' => 1665, - 'Label' => 'AT&T TCP', - ), - 1792 => array( - 'Id' => 1792, - 'Label' => 'YMPEG Alpha (dummy for MPEG-2 compressor)', - ), - 2222 => array( - 'Id' => 2222, - 'Label' => 'ClearJump LiteWave (lossless)', - ), - 4096 => array( - 'Id' => 4096, - 'Label' => 'Olivetti GSM', - ), - 4097 => array( - 'Id' => 4097, - 'Label' => 'Olivetti ADPCM', - ), - 4098 => array( - 'Id' => 4098, - 'Label' => 'Olivetti CELP', - ), - 4099 => array( - 'Id' => 4099, - 'Label' => 'Olivetti SBC', - ), - 4100 => array( - 'Id' => 4100, - 'Label' => 'Olivetti OPR', - ), - 4352 => array( - 'Id' => 4352, - 'Label' => 'Lernout & Hauspie', - ), - 4353 => array( - 'Id' => 4353, - 'Label' => 'Lernout & Hauspie CELP codec', - ), - 4354 => array( - 'Id' => 4354, - 'Label' => 'Lernout & Hauspie SBC codec', - ), - 4355 => array( - 'Id' => 4355, - 'Label' => 'Lernout & Hauspie SBC codec', - ), - 4356 => array( - 'Id' => 4356, - 'Label' => 'Lernout & Hauspie SBC codec', - ), - 5120 => array( - 'Id' => 5120, - 'Label' => 'Norris Comm. Inc.', - ), - 5121 => array( - 'Id' => 5121, - 'Label' => 'ISIAudio', - ), - 5376 => array( - 'Id' => 5376, - 'Label' => 'AT&T Soundspace Music Compression', - ), - 6172 => array( - 'Id' => 6172, - 'Label' => 'VoxWare RT24 speech codec', - ), - 6174 => array( - 'Id' => 6174, - 'Label' => 'Lucent elemedia AX24000P Music codec', - ), - 6513 => array( - 'Id' => 6513, - 'Label' => 'Sonic Foundry LOSSLESS', - ), - 6521 => array( - 'Id' => 6521, - 'Label' => 'Innings Telecom Inc. ADPCM', - ), - 7175 => array( - 'Id' => 7175, - 'Label' => 'Lucent SX8300P speech codec', - ), - 7180 => array( - 'Id' => 7180, - 'Label' => 'Lucent SX5363S G.723 compliant codec', - ), - 7939 => array( - 'Id' => 7939, - 'Label' => 'CUseeMe DigiTalk (ex-Rocwell)', - ), - 8132 => array( - 'Id' => 8132, - 'Label' => 'NCT Soft ALF2CD ACM', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'FAST Multimedia DVM', - ), - 8193 => array( - 'Id' => 8193, - 'Label' => 'Dolby DTS (Digital Theater System)', - ), - 8194 => array( - 'Id' => 8194, - 'Label' => 'RealAudio 1 / 2 14.4', - ), - 8195 => array( - 'Id' => 8195, - 'Label' => 'RealAudio 1 / 2 28.8', - ), - 8196 => array( - 'Id' => 8196, - 'Label' => 'RealAudio G2 / 8 Cook (low bitrate)', - ), - 8197 => array( - 'Id' => 8197, - 'Label' => 'RealAudio 3 / 4 / 5 Music (DNET)', - ), - 8198 => array( - 'Id' => 8198, - 'Label' => 'RealAudio 10 AAC (RAAC)', - ), - 8199 => array( - 'Id' => 8199, - 'Label' => 'RealAudio 10 AAC+ (RACP)', - ), - 9472 => array( - 'Id' => 9472, - 'Label' => 'Reserved range to 0x2600 Microsoft', - ), - 13075 => array( - 'Id' => 13075, - 'Label' => 'makeAVIS (ffvfw fake AVI sound from AviSynth scripts)', - ), - 16707 => array( - 'Id' => 16707, - 'Label' => 'Divio MPEG-4 AAC audio', - ), - 16897 => array( - 'Id' => 16897, - 'Label' => 'Nokia adaptive multirate', - ), - 16963 => array( - 'Id' => 16963, - 'Label' => 'Divio G726 Divio, Inc.', - ), - 17228 => array( - 'Id' => 17228, - 'Label' => 'LEAD Speech', - ), - 22092 => array( - 'Id' => 22092, - 'Label' => 'LEAD Vorbis', - ), - 22358 => array( - 'Id' => 22358, - 'Label' => 'WavPack Audio', - ), - 26447 => array( - 'Id' => 26447, - 'Label' => 'Ogg Vorbis (mode 1)', - ), - 26448 => array( - 'Id' => 26448, - 'Label' => 'Ogg Vorbis (mode 2)', - ), - 26449 => array( - 'Id' => 26449, - 'Label' => 'Ogg Vorbis (mode 3)', - ), - 26479 => array( - 'Id' => 26479, - 'Label' => 'Ogg Vorbis (mode 1+)', - ), - 26480 => array( - 'Id' => 26480, - 'Label' => 'Ogg Vorbis (mode 2+)', - ), - 26481 => array( - 'Id' => 26481, - 'Label' => 'Ogg Vorbis (mode 3+)', - ), - 28672 => array( - 'Id' => 28672, - 'Label' => '3COM NBX 3Com Corporation', - ), - 28781 => array( - 'Id' => 28781, - 'Label' => 'FAAD AAC', - ), - 31265 => array( - 'Id' => 31265, - 'Label' => 'GSM-AMR (CBR, no SID)', - ), - 31266 => array( - 'Id' => 31266, - 'Label' => 'GSM-AMR (VBR, including SID)', - ), - 41216 => array( - 'Id' => 41216, - 'Label' => 'Comverse Infosys Ltd. G723 1', - ), - 41217 => array( - 'Id' => 41217, - 'Label' => 'Comverse Infosys Ltd. AVQSBC', - ), - 41218 => array( - 'Id' => 41218, - 'Label' => 'Comverse Infosys Ltd. OLDSBC', - ), - 41219 => array( - 'Id' => 41219, - 'Label' => 'Symbol Technologies G729A', - ), - 41220 => array( - 'Id' => 41220, - 'Label' => 'VoiceAge AMR WB VoiceAge Corporation', - ), - 41221 => array( - 'Id' => 41221, - 'Label' => 'Ingenient Technologies Inc. G726', - ), - 41222 => array( - 'Id' => 41222, - 'Label' => 'ISO/MPEG-4 advanced audio Coding', - ), - 41223 => array( - 'Id' => 41223, - 'Label' => 'Encore Software Ltd G726', - ), - 41225 => array( - 'Id' => 41225, - 'Label' => 'Speex ACM Codec xiph.org', - ), - 57260 => array( - 'Id' => 57260, - 'Label' => 'DebugMode SonicFoundry Vegas FrameServer ACM Codec', - ), - 59144 => array( - 'Id' => 59144, - 'Label' => 'Unknown -', - ), - 61868 => array( - 'Id' => 61868, - 'Label' => 'Free Lossless Audio Codec FLAC', - ), - 65534 => array( - 'Id' => 65534, - 'Label' => 'Extensible', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Development', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/EndTimecode.php b/lib/PHPExiftool/Driver/Tag/RIFF/EndTimecode.php deleted file mode 100644 index 3f9fc8283..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/EndTimecode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndTimecode extends AbstractTag -{ - - protected $Id = 'TCDO'; - - protected $Name = 'EndTimecode'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'End Timecode'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Engineer.php b/lib/PHPExiftool/Driver/Tag/RIFF/Engineer.php deleted file mode 100644 index 5034d996c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Engineer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Engineer extends AbstractTag -{ - - protected $Id = 'IENG'; - - protected $Name = 'Engineer'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Engineer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ExifVersion.php b/lib/PHPExiftool/Driver/Tag/RIFF/ExifVersion.php deleted file mode 100644 index 6592c27b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ExifVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifVersion extends AbstractTag -{ - - protected $Id = 'ever'; - - protected $Name = 'ExifVersion'; - - protected $FullName = 'RIFF::Exif'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exif Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/FifthLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/FifthLanguage.php deleted file mode 100644 index b62b9f9a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/FifthLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FifthLanguage extends AbstractTag -{ - - protected $Id = 'IAS5'; - - protected $Name = 'FifthLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fifth Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/FirstLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/FirstLanguage.php deleted file mode 100644 index f5cddde92..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/FirstLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstLanguage extends AbstractTag -{ - - protected $Id = 'IAS1'; - - protected $Name = 'FirstLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'First Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/FourthLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/FourthLanguage.php deleted file mode 100644 index 41187d660..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/FourthLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourthLanguage extends AbstractTag -{ - - protected $Id = 'IAS4'; - - protected $Name = 'FourthLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Fourth Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/FrameCount.php b/lib/PHPExiftool/Driver/Tag/RIFF/FrameCount.php deleted file mode 100644 index 99298c163..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/FrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameCount extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'FrameCount'; - - protected $FullName = 'RIFF::AVIHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/FrameRate.php b/lib/PHPExiftool/Driver/Tag/RIFF/FrameRate.php deleted file mode 100644 index 18f151af7..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FrameRate'; - - protected $FullName = 'RIFF::AVIHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Genre.php b/lib/PHPExiftool/Driver/Tag/RIFF/Genre.php deleted file mode 100644 index 70b688d71..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Genre'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/HorizontalScale.php b/lib/PHPExiftool/Driver/Tag/RIFF/HorizontalScale.php deleted file mode 100644 index a95d0f6e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/HorizontalScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HorizontalScale extends AbstractTag -{ - - protected $Id = '6.1'; - - protected $Name = 'HorizontalScale'; - - protected $FullName = 'RIFF::VP8'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Horizontal Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/RIFF/ImageHeight.php deleted file mode 100644 index 13da10368..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/RIFF/ImageWidth.php deleted file mode 100644 index 0fcb92851..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Keywords.php b/lib/PHPExiftool/Driver/Tag/RIFF/Keywords.php deleted file mode 100644 index ea5ca9232..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'IKEY'; - - protected $Name = 'Keywords'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Language.php b/lib/PHPExiftool/Driver/Tag/RIFF/Language.php deleted file mode 100644 index cb0498dd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Language'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Length.php b/lib/PHPExiftool/Driver/Tag/RIFF/Length.php deleted file mode 100644 index b8799dfbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Length.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Length extends AbstractTag -{ - - protected $Id = 'TLEN'; - - protected $Name = 'Length'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Lightness.php b/lib/PHPExiftool/Driver/Tag/RIFF/Lightness.php deleted file mode 100644 index e0257d3b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Lightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lightness extends AbstractTag -{ - - protected $Id = 'ILGT'; - - protected $Name = 'Lightness'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Location.php b/lib/PHPExiftool/Driver/Tag/RIFF/Location.php deleted file mode 100644 index c7bdbfe98..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Location.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 'LOCA'; - - protected $Name = 'Location'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/LogoIconURL.php b/lib/PHPExiftool/Driver/Tag/RIFF/LogoIconURL.php deleted file mode 100644 index 204792f07..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/LogoIconURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LogoIconURL extends AbstractTag -{ - - protected $Id = 'ILIU'; - - protected $Name = 'LogoIconURL'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Logo Icon URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/LogoURL.php b/lib/PHPExiftool/Driver/Tag/RIFF/LogoURL.php deleted file mode 100644 index a56e5e561..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/LogoURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LogoURL extends AbstractTag -{ - - protected $Id = 'ILGU'; - - protected $Name = 'LogoURL'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Logo URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Make.php b/lib/PHPExiftool/Driver/Tag/RIFF/Make.php deleted file mode 100644 index 70413663d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Make.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'ecor'; - - protected $Name = 'Make'; - - protected $FullName = 'RIFF::Exif'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/MakerNotes.php b/lib/PHPExiftool/Driver/Tag/RIFF/MakerNotes.php deleted file mode 100644 index bcb49b7e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/MakerNotes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNotes extends AbstractTag -{ - - protected $Id = 'emnt'; - - protected $Name = 'MakerNotes'; - - protected $FullName = 'RIFF::Exif'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Maker Notes'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/MaxDataRate.php b/lib/PHPExiftool/Driver/Tag/RIFF/MaxDataRate.php deleted file mode 100644 index b08851718..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/MaxDataRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxDataRate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MaxDataRate'; - - protected $FullName = 'RIFF::AVIHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Data Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Medium.php b/lib/PHPExiftool/Driver/Tag/RIFF/Medium.php deleted file mode 100644 index 4dc51c80d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Medium.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Medium extends AbstractTag -{ - - protected $Id = 'IMED'; - - protected $Name = 'Medium'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Medium'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Model.php b/lib/PHPExiftool/Driver/Tag/RIFF/Model.php deleted file mode 100644 index 63362721e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Model.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'emdl'; - - protected $Name = 'Model'; - - protected $FullName = 'RIFF::Exif'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Model'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoBannerImage.php b/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoBannerImage.php deleted file mode 100644 index b478225ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoBannerImage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoreInfoBannerImage extends AbstractTag -{ - - protected $Id = 'IMBI'; - - protected $Name = 'MoreInfoBannerImage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'More Info Banner Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoBannerURL.php b/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoBannerURL.php deleted file mode 100644 index 4a02ca601..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoBannerURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoreInfoBannerURL extends AbstractTag -{ - - protected $Id = 'IMBU'; - - protected $Name = 'MoreInfoBannerURL'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'More Info Banner URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoText.php b/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoText.php deleted file mode 100644 index 11502e047..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoreInfoText extends AbstractTag -{ - - protected $Id = 'IMIT'; - - protected $Name = 'MoreInfoText'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'More Info Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoURL.php b/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoURL.php deleted file mode 100644 index 87d861853..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/MoreInfoURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoreInfoURL extends AbstractTag -{ - - protected $Id = 'IMIU'; - - protected $Name = 'MoreInfoURL'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'More Info URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/MusicBy.php b/lib/PHPExiftool/Driver/Tag/RIFF/MusicBy.php deleted file mode 100644 index c0c1db9c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/MusicBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MusicBy extends AbstractTag -{ - - protected $Id = 'IMUS'; - - protected $Name = 'MusicBy'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Music By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/NinthLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/NinthLanguage.php deleted file mode 100644 index b0eac9f06..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/NinthLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NinthLanguage extends AbstractTag -{ - - protected $Id = 'IAS9'; - - protected $Name = 'NinthLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ninth Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/NumChannels.php b/lib/PHPExiftool/Driver/Tag/RIFF/NumChannels.php deleted file mode 100644 index 9a2daf34a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/NumChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumChannels extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'NumChannels'; - - protected $FullName = 'RIFF::AudioFormat'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Num Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/NumColors.php b/lib/PHPExiftool/Driver/Tag/RIFF/NumColors.php deleted file mode 100644 index ea9e73ef5..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/NumColors.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumColors extends AbstractTag -{ - - protected $Id = 'IPLT'; - - protected $Name = 'NumColors'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Num Colors'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/NumberOfParts.php b/lib/PHPExiftool/Driver/Tag/RIFF/NumberOfParts.php deleted file mode 100644 index 32c522f37..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/NumberOfParts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfParts extends AbstractTag -{ - - protected $Id = 'PRT2'; - - protected $Name = 'NumberOfParts'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Number Of Parts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/OldXMP.php b/lib/PHPExiftool/Driver/Tag/RIFF/OldXMP.php deleted file mode 100644 index 2e00e91eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/OldXMP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OldXMP extends AbstractTag -{ - - protected $Id = 'JUNQ'; - - protected $Name = 'OldXMP'; - - protected $FullName = 'RIFF::Main'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Old XMP'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Organization.php b/lib/PHPExiftool/Driver/Tag/RIFF/Organization.php deleted file mode 100644 index ff4b8c5ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Organization.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Organization extends AbstractTag -{ - - protected $Id = 'TORG'; - - protected $Name = 'Organization'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organization'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Originator.php b/lib/PHPExiftool/Driver/Tag/RIFF/Originator.php deleted file mode 100644 index 35151ecf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Originator.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Originator extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'Originator'; - - protected $FullName = 'RIFF::BroadcastExt'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Originator'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/OriginatorReference.php b/lib/PHPExiftool/Driver/Tag/RIFF/OriginatorReference.php deleted file mode 100644 index 6a5f91fb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/OriginatorReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginatorReference extends AbstractTag -{ - - protected $Id = 288; - - protected $Name = 'OriginatorReference'; - - protected $FullName = 'RIFF::BroadcastExt'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Originator Reference'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Part.php b/lib/PHPExiftool/Driver/Tag/RIFF/Part.php deleted file mode 100644 index 5067faa86..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Part.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Part extends AbstractTag -{ - - protected $Id = 'PRT1'; - - protected $Name = 'Part'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Part'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ProducedBy.php b/lib/PHPExiftool/Driver/Tag/RIFF/ProducedBy.php deleted file mode 100644 index 0e36ecf97..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ProducedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProducedBy extends AbstractTag -{ - - protected $Id = 'IPRO'; - - protected $Name = 'ProducedBy'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Produced By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Product.php b/lib/PHPExiftool/Driver/Tag/RIFF/Product.php deleted file mode 100644 index 242a57973..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Product.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Product extends AbstractTag -{ - - protected $Id = 'IPRD'; - - protected $Name = 'Product'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Product'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ProductionDesigner.php b/lib/PHPExiftool/Driver/Tag/RIFF/ProductionDesigner.php deleted file mode 100644 index e5c85f169..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ProductionDesigner.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionDesigner extends AbstractTag -{ - - protected $Id = 'IPDS'; - - protected $Name = 'ProductionDesigner'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Production Designer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ProductionStudio.php b/lib/PHPExiftool/Driver/Tag/RIFF/ProductionStudio.php deleted file mode 100644 index ad22d5f78..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ProductionStudio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionStudio extends AbstractTag -{ - - protected $Id = 'ISTD'; - - protected $Name = 'ProductionStudio'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Production Studio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Quality.php b/lib/PHPExiftool/Driver/Tag/RIFF/Quality.php deleted file mode 100644 index 77d04feed..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Quality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Quality'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Rate.php b/lib/PHPExiftool/Driver/Tag/RIFF/Rate.php deleted file mode 100644 index 8b3a1d93a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Rate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rate extends AbstractTag -{ - - protected $Id = 'RATE'; - - protected $Name = 'Rate'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rate'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Rated.php b/lib/PHPExiftool/Driver/Tag/RIFF/Rated.php deleted file mode 100644 index e2ae8a3c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Rated.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rated extends AbstractTag -{ - - protected $Id = 'AGES'; - - protected $Name = 'Rated'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rated'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Rating.php b/lib/PHPExiftool/Driver/Tag/RIFF/Rating.php deleted file mode 100644 index 604ed2ce6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Rating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 'IRTD'; - - protected $Name = 'Rating'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/RelatedImageFile.php b/lib/PHPExiftool/Driver/Tag/RIFF/RelatedImageFile.php deleted file mode 100644 index d32ae7046..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/RelatedImageFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedImageFile extends AbstractTag -{ - - protected $Id = 'erel'; - - protected $Name = 'RelatedImageFile'; - - protected $FullName = 'RIFF::Exif'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Related Image File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/RippedBy.php b/lib/PHPExiftool/Driver/Tag/RIFF/RippedBy.php deleted file mode 100644 index 40e37043e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/RippedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RippedBy extends AbstractTag -{ - - protected $Id = 'IRIP'; - - protected $Name = 'RippedBy'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ripped By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SampleRate.php b/lib/PHPExiftool/Driver/Tag/RIFF/SampleRate.php deleted file mode 100644 index ef6402617..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SampleRate'; - - protected $FullName = 'RIFF::AudioFormat'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SampleSize.php b/lib/PHPExiftool/Driver/Tag/RIFF/SampleSize.php deleted file mode 100644 index deb88c601..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SampleSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleSize extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'SampleSize'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sample Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SecondLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/SecondLanguage.php deleted file mode 100644 index 9198b9cde..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SecondLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondLanguage extends AbstractTag -{ - - protected $Id = 'IAS2'; - - protected $Name = 'SecondLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Second Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SecondaryGenre.php b/lib/PHPExiftool/Driver/Tag/RIFF/SecondaryGenre.php deleted file mode 100644 index 2c43ebbc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SecondaryGenre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SecondaryGenre extends AbstractTag -{ - - protected $Id = 'ISGN'; - - protected $Name = 'SecondaryGenre'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Secondary Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SeventhLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/SeventhLanguage.php deleted file mode 100644 index 12d83c7aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SeventhLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeventhLanguage extends AbstractTag -{ - - protected $Id = 'IAS7'; - - protected $Name = 'SeventhLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Seventh Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Sharpness.php b/lib/PHPExiftool/Driver/Tag/RIFF/Sharpness.php deleted file mode 100644 index c2426b222..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Sharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'ISHP'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SixthLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/SixthLanguage.php deleted file mode 100644 index b8b1856d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SixthLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SixthLanguage extends AbstractTag -{ - - protected $Id = 'IAS6'; - - protected $Name = 'SixthLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sixth Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Software.php b/lib/PHPExiftool/Driver/Tag/RIFF/Software.php deleted file mode 100644 index a5b3bf7c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'ISFT'; - - protected $Name = 'Software'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SoundSchemeTitle.php b/lib/PHPExiftool/Driver/Tag/RIFF/SoundSchemeTitle.php deleted file mode 100644 index 5bd41d83c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SoundSchemeTitle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoundSchemeTitle extends AbstractTag -{ - - protected $Id = 'DISP'; - - protected $Name = 'SoundSchemeTitle'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sound Scheme Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Source.php b/lib/PHPExiftool/Driver/Tag/RIFF/Source.php deleted file mode 100644 index 5203668df..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Source.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 'ISRC'; - - protected $Name = 'Source'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/SourceForm.php b/lib/PHPExiftool/Driver/Tag/RIFF/SourceForm.php deleted file mode 100644 index 9ad354edd..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/SourceForm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourceForm extends AbstractTag -{ - - protected $Id = 'ISRF'; - - protected $Name = 'SourceForm'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source Form'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Starring.php b/lib/PHPExiftool/Driver/Tag/RIFF/Starring.php deleted file mode 100644 index 036f59656..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Starring.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Starring extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Starring'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Starring'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/StartTimecode.php b/lib/PHPExiftool/Driver/Tag/RIFF/StartTimecode.php deleted file mode 100644 index bcad42431..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/StartTimecode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimecode extends AbstractTag -{ - - protected $Id = 'TCOD'; - - protected $Name = 'StartTimecode'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Start Timecode'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Statistics.php b/lib/PHPExiftool/Driver/Tag/RIFF/Statistics.php deleted file mode 100644 index 18bd41b0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Statistics.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Statistics extends AbstractTag -{ - - protected $Id = 'STAT'; - - protected $Name = 'Statistics'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Statistics'; - - protected $local_g2 = 'Video'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bad', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'OK', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/StreamCount.php b/lib/PHPExiftool/Driver/Tag/RIFF/StreamCount.php deleted file mode 100644 index e5a1ba45b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/StreamCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamCount extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'StreamCount'; - - protected $FullName = 'RIFF::AVIHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/StreamName.php b/lib/PHPExiftool/Driver/Tag/RIFF/StreamName.php deleted file mode 100644 index 5bbbd7d9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/StreamName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamName extends AbstractTag -{ - - protected $Id = 'strn'; - - protected $Name = 'StreamName'; - - protected $FullName = 'RIFF::Stream'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stream Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/StreamSampleCount.php b/lib/PHPExiftool/Driver/Tag/RIFF/StreamSampleCount.php deleted file mode 100644 index bcde21ab2..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/StreamSampleCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamSampleCount extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'StreamSampleCount'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Sample Count'; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/StreamSampleRate.php b/lib/PHPExiftool/Driver/Tag/RIFF/StreamSampleRate.php deleted file mode 100644 index d8813e832..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/StreamSampleRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamSampleRate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'StreamSampleRate'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Stream Sample Rate'; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/StreamType.php b/lib/PHPExiftool/Driver/Tag/RIFF/StreamType.php deleted file mode 100644 index c3c1e2183..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/StreamType.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamType extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'StreamType'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Stream Type'; - - protected $MaxLength = 4; - - protected $Values = array( - 'auds' => array( - 'Id' => 'auds', - 'Label' => 'Audio', - ), - 'iavs' => array( - 'Id' => 'iavs', - 'Label' => 'Interleaved Audio+Video', - ), - 'mids' => array( - 'Id' => 'mids', - 'Label' => 'MIDI', - ), - 'txts' => array( - 'Id' => 'txts', - 'Label' => 'Text', - ), - 'vids' => array( - 'Id' => 'vids', - 'Label' => 'Video', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Subject.php b/lib/PHPExiftool/Driver/Tag/RIFF/Subject.php deleted file mode 100644 index 99a4ad2fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'ISBJ'; - - protected $Name = 'Subject'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/TapeName.php b/lib/PHPExiftool/Driver/Tag/RIFF/TapeName.php deleted file mode 100644 index 7dcc5cbf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/TapeName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeName extends AbstractTag -{ - - protected $Id = 'TAPE'; - - protected $Name = 'TapeName'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tape Name'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Technician.php b/lib/PHPExiftool/Driver/Tag/RIFF/Technician.php deleted file mode 100644 index e4c905068..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Technician.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Technician extends AbstractTag -{ - - protected $Id = 'ITCH'; - - protected $Name = 'Technician'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Technician'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/TextJunk.php b/lib/PHPExiftool/Driver/Tag/RIFF/TextJunk.php deleted file mode 100644 index 40b94ecf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/TextJunk.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextJunk extends AbstractTag -{ - - protected $Id = 'JUNK'; - - protected $Name = 'TextJunk'; - - protected $FullName = 'RIFF::Main'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text Junk'; - - protected $Index = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/ThirdLanguage.php b/lib/PHPExiftool/Driver/Tag/RIFF/ThirdLanguage.php deleted file mode 100644 index 037cfd29c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/ThirdLanguage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThirdLanguage extends AbstractTag -{ - - protected $Id = 'IAS3'; - - protected $Name = 'ThirdLanguage'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Third Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/TimeCreated.php b/lib/PHPExiftool/Driver/Tag/RIFF/TimeCreated.php deleted file mode 100644 index 6c4321360..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/TimeCreated.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeCreated extends AbstractTag -{ - - protected $Id = 'etim'; - - protected $Name = 'TimeCreated'; - - protected $FullName = 'RIFF::Exif'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Time Created'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/TimeReference.php b/lib/PHPExiftool/Driver/Tag/RIFF/TimeReference.php deleted file mode 100644 index ae06109fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/TimeReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeReference extends AbstractTag -{ - - protected $Id = 338; - - protected $Name = 'TimeReference'; - - protected $FullName = 'RIFF::BroadcastExt'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Time Reference'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Timecode.php b/lib/PHPExiftool/Driver/Tag/RIFF/Timecode.php deleted file mode 100644 index 2a8cb653f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Timecode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Timecode extends AbstractTag -{ - - protected $Id = 'ISMP'; - - protected $Name = 'Timecode'; - - protected $FullName = 'RIFF::Hdrl'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Timecode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Title.php b/lib/PHPExiftool/Driver/Tag/RIFF/Title.php deleted file mode 100644 index 6540ca817..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Title'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/TotalFrameCount.php b/lib/PHPExiftool/Driver/Tag/RIFF/TotalFrameCount.php deleted file mode 100644 index 6796d988c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/TotalFrameCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalFrameCount extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'TotalFrameCount'; - - protected $FullName = 'RIFF::ExtAVIHdr'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Total Frame Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/RIFF/TrackNumber.php deleted file mode 100644 index cecfb0407..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = 'TRCK'; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/URL.php b/lib/PHPExiftool/Driver/Tag/RIFF/URL.php deleted file mode 100644 index 33b5c96a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'TURL'; - - protected $Name = 'URL'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/UnknownData.php b/lib/PHPExiftool/Driver/Tag/RIFF/UnknownData.php deleted file mode 100644 index 8aa5ab0ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/UnknownData.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UnknownData extends AbstractTag -{ - - protected $Id = 'unknown'; - - protected $Name = 'UnknownData'; - - protected $FullName = 'RIFF::StreamData'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Unknown Data'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/UserComment.php b/lib/PHPExiftool/Driver/Tag/RIFF/UserComment.php deleted file mode 100644 index 5add08c1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/UserComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserComment extends AbstractTag -{ - - protected $Id = 'eucm'; - - protected $Name = 'UserComment'; - - protected $FullName = 'RIFF::Exif'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'User Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VP8Version.php b/lib/PHPExiftool/Driver/Tag/RIFF/VP8Version.php deleted file mode 100644 index dbd39465a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VP8Version.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VP8Version extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'VP8Version'; - - protected $FullName = 'RIFF::VP8'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'VP8 Version'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0 (bicubic reconstruction, normal loop)', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 (bilinear reconstruction, simple loop)', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 (bilinear reconstruction, no loop)', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3 (no reconstruction, no loop)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VegasVersionMajor.php b/lib/PHPExiftool/Driver/Tag/RIFF/VegasVersionMajor.php deleted file mode 100644 index c1abf11c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VegasVersionMajor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VegasVersionMajor extends AbstractTag -{ - - protected $Id = 'VMAJ'; - - protected $Name = 'VegasVersionMajor'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vegas Version Major'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VegasVersionMinor.php b/lib/PHPExiftool/Driver/Tag/RIFF/VegasVersionMinor.php deleted file mode 100644 index 79cb12eb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VegasVersionMinor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VegasVersionMinor extends AbstractTag -{ - - protected $Id = 'VMIN'; - - protected $Name = 'VegasVersionMinor'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vegas Version Minor'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VendorName.php b/lib/PHPExiftool/Driver/Tag/RIFF/VendorName.php deleted file mode 100644 index 0ab752830..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VendorName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VendorName extends AbstractTag -{ - - protected $Id = 'Zora'; - - protected $Name = 'VendorName'; - - protected $FullName = 'RIFF::StreamData'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vendor Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Version.php b/lib/PHPExiftool/Driver/Tag/RIFF/Version.php deleted file mode 100644 index 6366d82c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Version.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 'TVER'; - - protected $Name = 'Version'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VerticalScale.php b/lib/PHPExiftool/Driver/Tag/RIFF/VerticalScale.php deleted file mode 100644 index 6cda7f5f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VerticalScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VerticalScale extends AbstractTag -{ - - protected $Id = '8.1'; - - protected $Name = 'VerticalScale'; - - protected $FullName = 'RIFF::VP8'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Vertical Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VideoCodec.php b/lib/PHPExiftool/Driver/Tag/RIFF/VideoCodec.php deleted file mode 100644 index 5106578a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VideoCodec.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCodec extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'VideoCodec'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Video Codec'; - - protected $MaxLength = 4; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VideoFrameCount.php b/lib/PHPExiftool/Driver/Tag/RIFF/VideoFrameCount.php deleted file mode 100644 index 29c6bbe8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VideoFrameCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameCount extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'VideoFrameCount'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Video Frame Count'; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/VideoFrameRate.php b/lib/PHPExiftool/Driver/Tag/RIFF/VideoFrameRate.php deleted file mode 100644 index 3ca6b233f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/VideoFrameRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameRate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'VideoFrameRate'; - - protected $FullName = 'RIFF::StreamHeader'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Video Frame Rate'; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/WatermarkURL.php b/lib/PHPExiftool/Driver/Tag/RIFF/WatermarkURL.php deleted file mode 100644 index f9de332f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/WatermarkURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WatermarkURL extends AbstractTag -{ - - protected $Id = 'IWMU'; - - protected $Name = 'WatermarkURL'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Watermark URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/WrittenBy.php b/lib/PHPExiftool/Driver/Tag/RIFF/WrittenBy.php deleted file mode 100644 index 22cd01d84..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/WrittenBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WrittenBy extends AbstractTag -{ - - protected $Id = 'IWRI'; - - protected $Name = 'WrittenBy'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Written By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RIFF/Year.php b/lib/PHPExiftool/Driver/Tag/RIFF/Year.php deleted file mode 100644 index 2d67edca7..000000000 --- a/lib/PHPExiftool/Driver/Tag/RIFF/Year.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Year extends AbstractTag -{ - - protected $Id = 'YEAR'; - - protected $Name = 'Year'; - - protected $FullName = 'RIFF::Info'; - - protected $GroupName = 'RIFF'; - - protected $g0 = 'RIFF'; - - protected $g1 = 'RIFF'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Year'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RMETA/Azimuth.php b/lib/PHPExiftool/Driver/Tag/RMETA/Azimuth.php deleted file mode 100644 index f138b095e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RMETA/Azimuth.php +++ /dev/null @@ -1,110 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RMETA; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Azimuth extends AbstractTag -{ - - protected $Id = 'Azimuth'; - - protected $Name = 'Azimuth'; - - protected $FullName = 'Ricoh::RMETA'; - - protected $GroupName = 'RMETA'; - - protected $g0 = 'APP5'; - - protected $g1 = 'RMETA'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Azimuth'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'N', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'NNE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'NE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'ENE', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'E', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'ESE', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'SE', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'SSE', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'S', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'SSW', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'SW', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'WSW', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'W', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'WNW', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'NW', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'NNW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RMETA/Condition.php b/lib/PHPExiftool/Driver/Tag/RMETA/Condition.php deleted file mode 100644 index 4c9585a86..000000000 --- a/lib/PHPExiftool/Driver/Tag/RMETA/Condition.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RMETA; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Condition extends AbstractTag -{ - - protected $Id = 'Condition'; - - protected $Name = 'Condition'; - - protected $FullName = 'Ricoh::RMETA'; - - protected $GroupName = 'RMETA'; - - protected $g0 = 'APP5'; - - protected $g1 = 'RMETA'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Condition'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Good', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fair', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Poor', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Damaged', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RMETA/Lit.php b/lib/PHPExiftool/Driver/Tag/RMETA/Lit.php deleted file mode 100644 index e47225ff7..000000000 --- a/lib/PHPExiftool/Driver/Tag/RMETA/Lit.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RMETA; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lit extends AbstractTag -{ - - protected $Id = 'Lit'; - - protected $Name = 'Lit'; - - protected $FullName = 'Ricoh::RMETA'; - - protected $GroupName = 'RMETA'; - - protected $g0 = 'APP5'; - - protected $g1 = 'RMETA'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lit'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'No', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RMETA/Location.php b/lib/PHPExiftool/Driver/Tag/RMETA/Location.php deleted file mode 100644 index e863e1611..000000000 --- a/lib/PHPExiftool/Driver/Tag/RMETA/Location.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RMETA; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 'Location'; - - protected $Name = 'Location'; - - protected $FullName = 'Ricoh::RMETA'; - - protected $GroupName = 'RMETA'; - - protected $g0 = 'APP5'; - - protected $g1 = 'RMETA'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Verge', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Gantry', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Central reservation', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Roundabout', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RMETA/SignType.php b/lib/PHPExiftool/Driver/Tag/RMETA/SignType.php deleted file mode 100644 index 40b80e51e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RMETA/SignType.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RMETA; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SignType extends AbstractTag -{ - - protected $Id = 'Sign type'; - - protected $Name = 'SignType'; - - protected $FullName = 'Ricoh::RMETA'; - - protected $GroupName = 'RMETA'; - - protected $g0 = 'APP5'; - - protected $g1 = 'RMETA'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sign Type'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Directional', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Warning', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Information', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RMETA/SoundFile.php b/lib/PHPExiftool/Driver/Tag/RMETA/SoundFile.php deleted file mode 100644 index 33fed6548..000000000 --- a/lib/PHPExiftool/Driver/Tag/RMETA/SoundFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RMETA; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoundFile extends AbstractTag -{ - - protected $Id = '_audio'; - - protected $Name = 'SoundFile'; - - protected $FullName = 'Ricoh::RMETA'; - - protected $GroupName = 'RMETA'; - - protected $g0 = 'APP5'; - - protected $g1 = 'RMETA'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sound File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RSRC/ApplicationMissingMsg.php b/lib/PHPExiftool/Driver/Tag/RSRC/ApplicationMissingMsg.php deleted file mode 100644 index a28a9ea5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RSRC/ApplicationMissingMsg.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RSRC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationMissingMsg extends AbstractTag -{ - - protected $Id = 'STR _0xbff3'; - - protected $Name = 'ApplicationMissingMsg'; - - protected $FullName = 'RSRC::Main'; - - protected $GroupName = 'RSRC'; - - protected $g0 = 'RSRC'; - - protected $g1 = 'RSRC'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Missing Msg'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RSRC/ApplicationVersion.php b/lib/PHPExiftool/Driver/Tag/RSRC/ApplicationVersion.php deleted file mode 100644 index d0d22a728..000000000 --- a/lib/PHPExiftool/Driver/Tag/RSRC/ApplicationVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RSRC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationVersion extends AbstractTag -{ - - protected $Id = 'vers_0x0001'; - - protected $Name = 'ApplicationVersion'; - - protected $FullName = 'RSRC::Main'; - - protected $GroupName = 'RSRC'; - - protected $g0 = 'RSRC'; - - protected $g1 = 'RSRC'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RSRC/CreatorApplication.php b/lib/PHPExiftool/Driver/Tag/RSRC/CreatorApplication.php deleted file mode 100644 index d2a700a0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RSRC/CreatorApplication.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RSRC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorApplication extends AbstractTag -{ - - protected $Id = 'STR _0xbff4'; - - protected $Name = 'CreatorApplication'; - - protected $FullName = 'RSRC::Main'; - - protected $GroupName = 'RSRC'; - - protected $g0 = 'RSRC'; - - protected $g1 = 'RSRC'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creator Application'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RSRC/Description.php b/lib/PHPExiftool/Driver/Tag/RSRC/Description.php deleted file mode 100644 index b0657afb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RSRC/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RSRC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'TEXT_0x0080'; - - protected $Name = 'Description'; - - protected $FullName = 'RSRC::Main'; - - protected $GroupName = 'RSRC'; - - protected $g0 = 'RSRC'; - - protected $g1 = 'RSRC'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RSRC/Keywords.php b/lib/PHPExiftool/Driver/Tag/RSRC/Keywords.php deleted file mode 100644 index cdb7f6e2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RSRC/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RSRC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'STR#_0x0080'; - - protected $Name = 'Keywords'; - - protected $FullName = 'RSRC::Main'; - - protected $GroupName = 'RSRC'; - - protected $g0 = 'RSRC'; - - protected $g1 = 'RSRC'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RSRC/OpenWithApplication.php b/lib/PHPExiftool/Driver/Tag/RSRC/OpenWithApplication.php deleted file mode 100644 index c7c6b2c0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RSRC/OpenWithApplication.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RSRC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpenWithApplication extends AbstractTag -{ - - protected $Id = 'usro_0x0000'; - - protected $Name = 'OpenWithApplication'; - - protected $FullName = 'RSRC::Main'; - - protected $GroupName = 'RSRC'; - - protected $g0 = 'RSRC'; - - protected $g1 = 'RSRC'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Open With Application'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Author.php b/lib/PHPExiftool/Driver/Tag/RTF/Author.php deleted file mode 100644 index edb736777..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'author'; - - protected $Name = 'Author'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/BackupTime.php b/lib/PHPExiftool/Driver/Tag/RTF/BackupTime.php deleted file mode 100644 index 3b4b4075b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/BackupTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackupTime extends AbstractTag -{ - - protected $Id = 'buptim'; - - protected $Name = 'BackupTime'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Backup Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Category.php b/lib/PHPExiftool/Driver/Tag/RTF/Category.php deleted file mode 100644 index 1c90ef9c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 'category'; - - protected $Name = 'Category'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Characters.php b/lib/PHPExiftool/Driver/Tag/RTF/Characters.php deleted file mode 100644 index 67ec55d71..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Characters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Characters extends AbstractTag -{ - - protected $Id = 'nofchars'; - - protected $Name = 'Characters'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/CharactersWithSpaces.php b/lib/PHPExiftool/Driver/Tag/RTF/CharactersWithSpaces.php deleted file mode 100644 index e9ac95f01..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/CharactersWithSpaces.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharactersWithSpaces extends AbstractTag -{ - - protected $Id = 'nofcharsws'; - - protected $Name = 'CharactersWithSpaces'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters With Spaces'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Comment.php b/lib/PHPExiftool/Driver/Tag/RTF/Comment.php deleted file mode 100644 index 9e6fb5cec..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Comments.php b/lib/PHPExiftool/Driver/Tag/RTF/Comments.php deleted file mode 100644 index 2df24cedf..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Comments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comments extends AbstractTag -{ - - protected $Id = 'doccomm'; - - protected $Name = 'Comments'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Company.php b/lib/PHPExiftool/Driver/Tag/RTF/Company.php deleted file mode 100644 index 04c20290c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Company.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Company extends AbstractTag -{ - - protected $Id = 'company'; - - protected $Name = 'Company'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Company'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Copyright.php b/lib/PHPExiftool/Driver/Tag/RTF/Copyright.php deleted file mode 100644 index 648059c42..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/CreateDate.php b/lib/PHPExiftool/Driver/Tag/RTF/CreateDate.php deleted file mode 100644 index 423be70fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'creatim'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/HyperlinkBase.php b/lib/PHPExiftool/Driver/Tag/RTF/HyperlinkBase.php deleted file mode 100644 index a9c841f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/HyperlinkBase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HyperlinkBase extends AbstractTag -{ - - protected $Id = 'hlinkbase'; - - protected $Name = 'HyperlinkBase'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hyperlink Base'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/InternalIDNumber.php b/lib/PHPExiftool/Driver/Tag/RTF/InternalIDNumber.php deleted file mode 100644 index e02d7b71c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/InternalIDNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalIDNumber extends AbstractTag -{ - - protected $Id = 'id'; - - protected $Name = 'InternalIDNumber'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internal ID Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/InternalVersionNumber.php b/lib/PHPExiftool/Driver/Tag/RTF/InternalVersionNumber.php deleted file mode 100644 index 4088aeb95..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/InternalVersionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalVersionNumber extends AbstractTag -{ - - protected $Id = 'vern'; - - protected $Name = 'InternalVersionNumber'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Internal Version Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Keywords.php b/lib/PHPExiftool/Driver/Tag/RTF/Keywords.php deleted file mode 100644 index 4e638622a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/LastModifiedBy.php b/lib/PHPExiftool/Driver/Tag/RTF/LastModifiedBy.php deleted file mode 100644 index 63f908fc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/LastModifiedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastModifiedBy extends AbstractTag -{ - - protected $Id = 'operator'; - - protected $Name = 'LastModifiedBy'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Modified By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/LastPrinted.php b/lib/PHPExiftool/Driver/Tag/RTF/LastPrinted.php deleted file mode 100644 index 8e869aa7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/LastPrinted.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPrinted extends AbstractTag -{ - - protected $Id = 'printim'; - - protected $Name = 'LastPrinted'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Last Printed'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Manager.php b/lib/PHPExiftool/Driver/Tag/RTF/Manager.php deleted file mode 100644 index 5dfddc101..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Manager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manager extends AbstractTag -{ - - protected $Id = 'manager'; - - protected $Name = 'Manager'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/RTF/ModifyDate.php deleted file mode 100644 index e604704a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'revtim'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Pages.php b/lib/PHPExiftool/Driver/Tag/RTF/Pages.php deleted file mode 100644 index 53033ae44..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Pages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pages extends AbstractTag -{ - - protected $Id = 'nofpages'; - - protected $Name = 'Pages'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/RevisionNumber.php b/lib/PHPExiftool/Driver/Tag/RTF/RevisionNumber.php deleted file mode 100644 index 915a5230e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/RevisionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RevisionNumber extends AbstractTag -{ - - protected $Id = 'version'; - - protected $Name = 'RevisionNumber'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revision Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Subject.php b/lib/PHPExiftool/Driver/Tag/RTF/Subject.php deleted file mode 100644 index 347e5f3aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Subject.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Subject'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Title.php b/lib/PHPExiftool/Driver/Tag/RTF/Title.php deleted file mode 100644 index 3811c7c07..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'title'; - - protected $Name = 'Title'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/TotalEditTime.php b/lib/PHPExiftool/Driver/Tag/RTF/TotalEditTime.php deleted file mode 100644 index c5315c8b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/TotalEditTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalEditTime extends AbstractTag -{ - - protected $Id = 'edmins'; - - protected $Name = 'TotalEditTime'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Edit Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RTF/Words.php b/lib/PHPExiftool/Driver/Tag/RTF/Words.php deleted file mode 100644 index 238b7445b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RTF/Words.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RTF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Words extends AbstractTag -{ - - protected $Id = 'nofwords'; - - protected $Name = 'Words'; - - protected $FullName = 'RTF::Main'; - - protected $GroupName = 'RTF'; - - protected $g0 = 'RTF'; - - protected $g1 = 'RTF'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Words'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/ColorCorrection.php b/lib/PHPExiftool/Driver/Tag/Radiance/ColorCorrection.php deleted file mode 100644 index 596ead667..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/ColorCorrection.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCorrection extends AbstractTag -{ - - protected $Id = 'colorcorr'; - - protected $Name = 'ColorCorrection'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Correction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/ColorPrimaries.php b/lib/PHPExiftool/Driver/Tag/Radiance/ColorPrimaries.php deleted file mode 100644 index 084df2134..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/ColorPrimaries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorPrimaries extends AbstractTag -{ - - protected $Id = 'primaries'; - - protected $Name = 'ColorPrimaries'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Primaries'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/Command.php b/lib/PHPExiftool/Driver/Tag/Radiance/Command.php deleted file mode 100644 index 487ee59a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/Command.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Command extends AbstractTag -{ - - protected $Id = '_command'; - - protected $Name = 'Command'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Command'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/Exposure.php b/lib/PHPExiftool/Driver/Tag/Radiance/Exposure.php deleted file mode 100644 index e50979876..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/Exposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Exposure extends AbstractTag -{ - - protected $Id = 'exposure'; - - protected $Name = 'Exposure'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/Format.php b/lib/PHPExiftool/Driver/Tag/Radiance/Format.php deleted file mode 100644 index 6bfe38a2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/Format.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Format extends AbstractTag -{ - - protected $Id = 'format'; - - protected $Name = 'Format'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/Gamma.php b/lib/PHPExiftool/Driver/Tag/Radiance/Gamma.php deleted file mode 100644 index 84a8b0c84..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 'gamma'; - - protected $Name = 'Gamma'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/Orientation.php b/lib/PHPExiftool/Driver/Tag/Radiance/Orientation.php deleted file mode 100644 index 1d9e4d05e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/Orientation.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = '_orient'; - - protected $Name = 'Orientation'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $Values = array( - '+X +Y' => array( - 'Id' => '+X +Y', - 'Label' => 'Rotate 90 CW', - ), - '+X -Y' => array( - 'Id' => '+X -Y', - 'Label' => 'Mirror horizontal and rotate 270 CW', - ), - '+Y +X' => array( - 'Id' => '+Y +X', - 'Label' => 'Mirror vertical', - ), - '+Y -X' => array( - 'Id' => '+Y -X', - 'Label' => 'Rotate 180', - ), - '-X +Y' => array( - 'Id' => '-X +Y', - 'Label' => 'Mirror horizontal and rotate 90 CW', - ), - '-X -Y' => array( - 'Id' => '-X -Y', - 'Label' => 'Rotate 270 CW', - ), - '-Y +X' => array( - 'Id' => '-Y +X', - 'Label' => 'Horizontal (normal)', - ), - '-Y -X' => array( - 'Id' => '-Y -X', - 'Label' => 'Mirror horizontal', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/PixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/Radiance/PixelAspectRatio.php deleted file mode 100644 index 72dd061d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/PixelAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatio extends AbstractTag -{ - - protected $Id = 'pixaspect'; - - protected $Name = 'PixelAspectRatio'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/Software.php b/lib/PHPExiftool/Driver/Tag/Radiance/Software.php deleted file mode 100644 index b7f6dba00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'software'; - - protected $Name = 'Software'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Radiance/View.php b/lib/PHPExiftool/Driver/Tag/Radiance/View.php deleted file mode 100644 index 68c9056b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Radiance/View.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Radiance; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class View extends AbstractTag -{ - - protected $Id = 'view'; - - protected $Name = 'View'; - - protected $FullName = 'Radiance::Main'; - - protected $GroupName = 'Radiance'; - - protected $g0 = 'Radiance'; - - protected $g1 = 'Radiance'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Rawzor/CompressionFactor.php b/lib/PHPExiftool/Driver/Tag/Rawzor/CompressionFactor.php deleted file mode 100644 index 25aafb21f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Rawzor/CompressionFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Rawzor; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressionFactor extends AbstractTag -{ - - protected $Id = 'CompressionFactor'; - - protected $Name = 'CompressionFactor'; - - protected $FullName = 'Rawzor::Main'; - - protected $GroupName = 'Rawzor'; - - protected $g0 = 'Rawzor'; - - protected $g1 = 'Rawzor'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Compression Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Rawzor/OriginalFileSize.php b/lib/PHPExiftool/Driver/Tag/Rawzor/OriginalFileSize.php deleted file mode 100644 index e8a716b7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Rawzor/OriginalFileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Rawzor; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFileSize extends AbstractTag -{ - - protected $Id = 'OriginalFileSize'; - - protected $Name = 'OriginalFileSize'; - - protected $FullName = 'Rawzor::Main'; - - protected $GroupName = 'Rawzor'; - - protected $g0 = 'Rawzor'; - - protected $g1 = 'Rawzor'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Rawzor/OriginalFileType.php b/lib/PHPExiftool/Driver/Tag/Rawzor/OriginalFileType.php deleted file mode 100644 index ca3df304a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Rawzor/OriginalFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Rawzor; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFileType extends AbstractTag -{ - - protected $Id = 'OriginalFileType'; - - protected $Name = 'OriginalFileType'; - - protected $FullName = 'Rawzor::Main'; - - protected $GroupName = 'Rawzor'; - - protected $g0 = 'Rawzor'; - - protected $g1 = 'Rawzor'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Original File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Rawzor/RawzorCreatorVersion.php b/lib/PHPExiftool/Driver/Tag/Rawzor/RawzorCreatorVersion.php deleted file mode 100644 index 07a099249..000000000 --- a/lib/PHPExiftool/Driver/Tag/Rawzor/RawzorCreatorVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Rawzor; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawzorCreatorVersion extends AbstractTag -{ - - protected $Id = 'RawzorCreatorVersion'; - - protected $Name = 'RawzorCreatorVersion'; - - protected $FullName = 'Rawzor::Main'; - - protected $GroupName = 'Rawzor'; - - protected $g0 = 'Rawzor'; - - protected $g1 = 'Rawzor'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rawzor Creator Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Rawzor/RawzorRequiredVersion.php b/lib/PHPExiftool/Driver/Tag/Rawzor/RawzorRequiredVersion.php deleted file mode 100644 index ad8771769..000000000 --- a/lib/PHPExiftool/Driver/Tag/Rawzor/RawzorRequiredVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Rawzor; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawzorRequiredVersion extends AbstractTag -{ - - protected $Id = 'RawzorRequiredVersion'; - - protected $Name = 'RawzorRequiredVersion'; - - protected $FullName = 'Rawzor::Main'; - - protected $GroupName = 'Rawzor'; - - protected $g0 = 'Rawzor'; - - protected $g1 = 'Rawzor'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Rawzor Required Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Real/Text.php b/lib/PHPExiftool/Driver/Tag/Real/Text.php deleted file mode 100644 index 5290b099a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Real/Text.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Real; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Text extends AbstractTag -{ - - protected $Id = 'txt'; - - protected $Name = 'Text'; - - protected $FullName = 'Real::Metafile'; - - protected $GroupName = 'Real'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Real/URL.php b/lib/PHPExiftool/Driver/Tag/Real/URL.php deleted file mode 100644 index c42e7789a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Real/URL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Real; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'url'; - - protected $Name = 'URL'; - - protected $FullName = 'Real::Metafile'; - - protected $GroupName = 'Real'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/Author.php b/lib/PHPExiftool/Driver/Tag/RealCONT/Author.php deleted file mode 100644 index 61c90b55d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Author'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/AuthorLen.php b/lib/PHPExiftool/Driver/Tag/RealCONT/AuthorLen.php deleted file mode 100644 index 864dad299..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/AuthorLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthorLen extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AuthorLen'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Author Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/Comment.php b/lib/PHPExiftool/Driver/Tag/RealCONT/Comment.php deleted file mode 100644 index e1bd932a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Comment'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/CommentLen.php b/lib/PHPExiftool/Driver/Tag/RealCONT/CommentLen.php deleted file mode 100644 index d0ee17a44..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/CommentLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommentLen extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CommentLen'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Comment Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/Copyright.php b/lib/PHPExiftool/Driver/Tag/RealCONT/Copyright.php deleted file mode 100644 index d7576d0f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Copyright'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/CopyrightLen.php b/lib/PHPExiftool/Driver/Tag/RealCONT/CopyrightLen.php deleted file mode 100644 index 904145239..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/CopyrightLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightLen extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CopyrightLen'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Copyright Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/Title.php b/lib/PHPExiftool/Driver/Tag/RealCONT/Title.php deleted file mode 100644 index a06801642..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Title'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealCONT/TitleLen.php b/lib/PHPExiftool/Driver/Tag/RealCONT/TitleLen.php deleted file mode 100644 index b9499da99..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealCONT/TitleLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealCONT; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleLen extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'TitleLen'; - - protected $FullName = 'Real::ContentDescr'; - - protected $GroupName = 'Real-CONT'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-CONT'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Title Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/Audiences.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/Audiences.php deleted file mode 100644 index 724b15b8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/Audiences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Audiences extends AbstractTag -{ - - protected $Id = 'Audiences'; - - protected $Name = 'Audiences'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audiences'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/AudioFormat.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/AudioFormat.php deleted file mode 100644 index b4f512aa8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/AudioFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFormat extends AbstractTag -{ - - protected $Id = 'Audio Format'; - - protected $Name = 'AudioFormat'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/AudioMode.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/AudioMode.php deleted file mode 100644 index eb68b8796..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/AudioMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioMode extends AbstractTag -{ - - protected $Id = 'audioMode'; - - protected $Name = 'AudioMode'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Audio Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/ContentRating.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/ContentRating.php deleted file mode 100644 index 7f97562ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/ContentRating.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContentRating extends AbstractTag -{ - - protected $Id = 'Content Rating'; - - protected $Name = 'ContentRating'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Content Rating'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Rating', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'All Ages', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Older Children', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Younger Teens', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Older Teens', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Adult Supervision Recommended', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Adults Only', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/CreateDate.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/CreateDate.php deleted file mode 100644 index 5f2852e8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'Creation Date'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/DataOffsets.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/DataOffsets.php deleted file mode 100644 index 46618dece..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/DataOffsets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataOffsets extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'DataOffsets'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Data Offsets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/Description.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/Description.php deleted file mode 100644 index 49f632535..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'Description'; - - protected $Name = 'Description'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileID.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/FileID.php deleted file mode 100644 index d5a3b9cb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileID extends AbstractTag -{ - - protected $Id = 'File ID'; - - protected $Name = 'FileID'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoLen.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoLen.php deleted file mode 100644 index 21b957d3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileInfoLen extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'FileInfoLen'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Info Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoLen2.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoLen2.php deleted file mode 100644 index ed41181db..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoLen2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileInfoLen2 extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'FileInfoLen2'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Info Len 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoVersion.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoVersion.php deleted file mode 100644 index 7327be23c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/FileInfoVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileInfoVersion extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'FileInfoVersion'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'File Info Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/Indexable.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/Indexable.php deleted file mode 100644 index 087de236f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/Indexable.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Indexable extends AbstractTag -{ - - protected $Id = 'Indexable'; - - protected $Name = 'Indexable'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Indexable'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => False, - ), - 1 => array( - 'Id' => 1, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/Keywords.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/Keywords.php deleted file mode 100644 index 377ba0026..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/ModifyDate.php deleted file mode 100644 index ed81084e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'Modification Date'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/NumProperties.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/NumProperties.php deleted file mode 100644 index 2a7baf2ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/NumProperties.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumProperties extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'NumProperties'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Num Properties'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/NumRules.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/NumRules.php deleted file mode 100644 index e13985bcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/NumRules.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumRules extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'NumRules'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Num Rules'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreamNumberMap.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreamNumberMap.php deleted file mode 100644 index 0f32b1316..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreamNumberMap.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalStreamNumberMap extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'PhysicalStreamNumberMap'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Physical Stream Number Map'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreamNumbers.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreamNumbers.php deleted file mode 100644 index de35203ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreamNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalStreamNumbers extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'PhysicalStreamNumbers'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Physical Stream Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreams.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreams.php deleted file mode 100644 index 82ac29c29..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/PhysicalStreams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhysicalStreams extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'PhysicalStreams'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Physical Streams'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/Software.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/Software.php deleted file mode 100644 index 57bc7b6e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'Generated By'; - - protected $Name = 'Software'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamAvgBitrate.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamAvgBitrate.php deleted file mode 100644 index 531064657..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamAvgBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamAvgBitrate extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'StreamAvgBitrate'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Avg Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamAvgPacketSize.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamAvgPacketSize.php deleted file mode 100644 index dd30a5173..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamAvgPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamAvgPacketSize extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'StreamAvgPacketSize'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Avg Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamDuration.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamDuration.php deleted file mode 100644 index 2fb2c78da..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamDuration extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'StreamDuration'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMaxBitrate.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMaxBitrate.php deleted file mode 100644 index 69b04819f..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMaxBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamMaxBitrate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'StreamMaxBitrate'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Max Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMaxPacketSize.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMaxPacketSize.php deleted file mode 100644 index e34df3d5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMaxPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamMaxPacketSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'StreamMaxPacketSize'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Max Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMimeLen.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMimeLen.php deleted file mode 100644 index 4ff9b9ea8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMimeLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamMimeLen extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'StreamMimeLen'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Stream Mime Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMimeType.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMimeType.php deleted file mode 100644 index c3cc1777e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamMimeType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamMimeType extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'StreamMimeType'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Stream Mime Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamName.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamName.php deleted file mode 100644 index 89e3359d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamName extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'StreamName'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Stream Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamNameLen.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamNameLen.php deleted file mode 100644 index 645309788..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamNameLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamNameLen extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'StreamNameLen'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Stream Name Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamNumber.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamNumber.php deleted file mode 100644 index 6eafa6dce..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamNumber extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'StreamNumber'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Stream Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamPreroll.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamPreroll.php deleted file mode 100644 index e0d9a0b76..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamPreroll.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamPreroll extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'StreamPreroll'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Preroll'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamStartTime.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamStartTime.php deleted file mode 100644 index d837f6752..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/StreamStartTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StreamStartTime extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'StreamStartTime'; - - protected $FullName = 'Real::MediaProps'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Stream Start Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/TargetAudiences.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/TargetAudiences.php deleted file mode 100644 index 12fbfcdfc..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/TargetAudiences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TargetAudiences extends AbstractTag -{ - - protected $Id = 'Target Audiences'; - - protected $Name = 'TargetAudiences'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Target Audiences'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/VideoMode.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/VideoMode.php deleted file mode 100644 index 7f7abd37a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/VideoMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoMode extends AbstractTag -{ - - protected $Id = 'videoMode'; - - protected $Name = 'VideoMode'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealMDPR/VideoQuality.php b/lib/PHPExiftool/Driver/Tag/RealMDPR/VideoQuality.php deleted file mode 100644 index b6e35f3a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealMDPR/VideoQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealMDPR; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoQuality extends AbstractTag -{ - - protected $Id = 'Video Quality'; - - protected $Name = 'VideoQuality'; - - protected $FullName = 'Real::FileInfo'; - - protected $GroupName = 'Real-MDPR'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-MDPR'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Video Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/AvgBitrate.php b/lib/PHPExiftool/Driver/Tag/RealPROP/AvgBitrate.php deleted file mode 100644 index 7dbfdabc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/AvgBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgBitrate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AvgBitrate'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Avg Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/AvgPacketSize.php b/lib/PHPExiftool/Driver/Tag/RealPROP/AvgPacketSize.php deleted file mode 100644 index fd7e0d071..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/AvgPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AvgPacketSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'AvgPacketSize'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Avg Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/DataOffset.php b/lib/PHPExiftool/Driver/Tag/RealPROP/DataOffset.php deleted file mode 100644 index cf0029742..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/DataOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataOffset extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'DataOffset'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Data Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/Duration.php b/lib/PHPExiftool/Driver/Tag/RealPROP/Duration.php deleted file mode 100644 index 830b793c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Duration'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/Flags.php b/lib/PHPExiftool/Driver/Tag/RealPROP/Flags.php deleted file mode 100644 index c9d9701f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/Flags.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flags extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'Flags'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Flags'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Allow Recording', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Perfect Play', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Live', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Allow Download', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/IndexOffset.php b/lib/PHPExiftool/Driver/Tag/RealPROP/IndexOffset.php deleted file mode 100644 index e5f7b4d14..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/IndexOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IndexOffset extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'IndexOffset'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Index Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/MaxBitrate.php b/lib/PHPExiftool/Driver/Tag/RealPROP/MaxBitrate.php deleted file mode 100644 index 356303241..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/MaxBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxBitrate extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MaxBitrate'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/MaxPacketSize.php b/lib/PHPExiftool/Driver/Tag/RealPROP/MaxPacketSize.php deleted file mode 100644 index 520b0f294..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/MaxPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPacketSize extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'MaxPacketSize'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Max Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/NumPackets.php b/lib/PHPExiftool/Driver/Tag/RealPROP/NumPackets.php deleted file mode 100644 index 918e35453..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/NumPackets.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumPackets extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'NumPackets'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Num Packets'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/NumStreams.php b/lib/PHPExiftool/Driver/Tag/RealPROP/NumStreams.php deleted file mode 100644 index c4cf6bec6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/NumStreams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumStreams extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'NumStreams'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Num Streams'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealPROP/Preroll.php b/lib/PHPExiftool/Driver/Tag/RealPROP/Preroll.php deleted file mode 100644 index 1407b4581..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealPROP/Preroll.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealPROP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Preroll extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Preroll'; - - protected $FullName = 'Real::Properties'; - - protected $GroupName = 'Real-PROP'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-PROP'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Preroll'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/Artist.php b/lib/PHPExiftool/Driver/Tag/RealRA3/Artist.php deleted file mode 100644 index eca1b6f5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Artist'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/ArtistLen.php b/lib/PHPExiftool/Driver/Tag/RealRA3/ArtistLen.php deleted file mode 100644 index ffa1945be..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/ArtistLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtistLen extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ArtistLen'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Artist Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/AudioBytes.php b/lib/PHPExiftool/Driver/Tag/RealRA3/AudioBytes.php deleted file mode 100644 index 72d426e38..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/AudioBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBytes extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'AudioBytes'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/BytesPerMinute.php b/lib/PHPExiftool/Driver/Tag/RealRA3/BytesPerMinute.php deleted file mode 100644 index 49f666c7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/BytesPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BytesPerMinute extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'BytesPerMinute'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bytes Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/Channels.php b/lib/PHPExiftool/Driver/Tag/RealRA3/Channels.php deleted file mode 100644 index c9d2dcdf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Channels'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/Comment.php b/lib/PHPExiftool/Driver/Tag/RealRA3/Comment.php deleted file mode 100644 index fb7264332..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Comment'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/CommentLen.php b/lib/PHPExiftool/Driver/Tag/RealRA3/CommentLen.php deleted file mode 100644 index 379109fe1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/CommentLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommentLen extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'CommentLen'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Comment Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/Copyright.php b/lib/PHPExiftool/Driver/Tag/RealRA3/Copyright.php deleted file mode 100644 index 4eec2352c..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'Copyright'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/CopyrightLen.php b/lib/PHPExiftool/Driver/Tag/RealRA3/CopyrightLen.php deleted file mode 100644 index 4692b675e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/CopyrightLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightLen extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'CopyrightLen'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Copyright Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/Title.php b/lib/PHPExiftool/Driver/Tag/RealRA3/Title.php deleted file mode 100644 index 0e3a31acc..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Title'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/TitleLen.php b/lib/PHPExiftool/Driver/Tag/RealRA3/TitleLen.php deleted file mode 100644 index eab4ce0d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/TitleLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleLen extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'TitleLen'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Title Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA3/Unknown.php b/lib/PHPExiftool/Driver/Tag/RealRA3/Unknown.php deleted file mode 100644 index 1ba1ceb15..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA3/Unknown.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA3; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unknown extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'Unknown'; - - protected $FullName = 'Real::AudioV3'; - - protected $GroupName = 'Real-RA3'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA3'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Unknown'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/Artist.php b/lib/PHPExiftool/Driver/Tag/RealRA4/Artist.php deleted file mode 100644 index 632f75104..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'Artist'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/ArtistLen.php b/lib/PHPExiftool/Driver/Tag/RealRA4/ArtistLen.php deleted file mode 100644 index 5e1810116..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/ArtistLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtistLen extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'ArtistLen'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Artist Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/AudioBytes.php b/lib/PHPExiftool/Driver/Tag/RealRA4/AudioBytes.php deleted file mode 100644 index 4c1b0617a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/AudioBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBytes extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AudioBytes'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/AudioFileSize.php b/lib/PHPExiftool/Driver/Tag/RealRA4/AudioFileSize.php deleted file mode 100644 index 7fd622c08..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/AudioFileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFileSize extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AudioFileSize'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/AudioFrameSize.php b/lib/PHPExiftool/Driver/Tag/RealRA4/AudioFrameSize.php deleted file mode 100644 index 006c886f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/AudioFrameSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFrameSize extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'AudioFrameSize'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Audio Frame Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/RealRA4/BitsPerSample.php deleted file mode 100644 index 93f62ef12..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/BytesPerMinute.php b/lib/PHPExiftool/Driver/Tag/RealRA4/BytesPerMinute.php deleted file mode 100644 index fb1310ea7..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/BytesPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BytesPerMinute extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'BytesPerMinute'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Bytes Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/Channels.php b/lib/PHPExiftool/Driver/Tag/RealRA4/Channels.php deleted file mode 100644 index 74dc1c4c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Channels'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/CodecFlavorID.php b/lib/PHPExiftool/Driver/Tag/RealRA4/CodecFlavorID.php deleted file mode 100644 index 76d7c92e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/CodecFlavorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecFlavorID extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CodecFlavorID'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Codec Flavor ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/CodedFrameSize.php b/lib/PHPExiftool/Driver/Tag/RealRA4/CodedFrameSize.php deleted file mode 100644 index 20595a2e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/CodedFrameSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodedFrameSize extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'CodedFrameSize'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Coded Frame Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/Comment.php b/lib/PHPExiftool/Driver/Tag/RealRA4/Comment.php deleted file mode 100644 index 6ce073ed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'Comment'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/CommentLen.php b/lib/PHPExiftool/Driver/Tag/RealRA4/CommentLen.php deleted file mode 100644 index c30b51705..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/CommentLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CommentLen extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'CommentLen'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Comment Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/Copyright.php b/lib/PHPExiftool/Driver/Tag/RealRA4/Copyright.php deleted file mode 100644 index 6b0c5dde6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'Copyright'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/CopyrightLen.php b/lib/PHPExiftool/Driver/Tag/RealRA4/CopyrightLen.php deleted file mode 100644 index f61a469aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/CopyrightLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightLen extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'CopyrightLen'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Copyright Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC1.php b/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC1.php deleted file mode 100644 index aac3e9996..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC1 extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FourCC1'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Four CC1'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC2.php b/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC2.php deleted file mode 100644 index 30aa799f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC2 extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'FourCC2'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Four CC2'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC2Len.php b/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC2Len.php deleted file mode 100644 index 31bff2ca9..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC2Len.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC2Len extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'FourCC2Len'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Four CC2 Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC3.php b/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC3.php deleted file mode 100644 index 2adf0d1c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC3 extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'FourCC3'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Four CC3'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC3Len.php b/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC3Len.php deleted file mode 100644 index ed22be310..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/FourCC3Len.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC3Len extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'FourCC3Len'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Four CC3 Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/HeaderSize.php b/lib/PHPExiftool/Driver/Tag/RealRA4/HeaderSize.php deleted file mode 100644 index 5b1dfc94b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/HeaderSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeaderSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'HeaderSize'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Header Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/SampleRate.php b/lib/PHPExiftool/Driver/Tag/RealRA4/SampleRate.php deleted file mode 100644 index f001ea14e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'SampleRate'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/SubPacketH.php b/lib/PHPExiftool/Driver/Tag/RealRA4/SubPacketH.php deleted file mode 100644 index f0b9d17ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/SubPacketH.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubPacketH extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'SubPacketH'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sub Packet H'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/SubPacketSize.php b/lib/PHPExiftool/Driver/Tag/RealRA4/SubPacketSize.php deleted file mode 100644 index 02e393b3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/SubPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubPacketSize extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'SubPacketSize'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sub Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/Title.php b/lib/PHPExiftool/Driver/Tag/RealRA4/Title.php deleted file mode 100644 index 1734f5e63..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Title'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/TitleLen.php b/lib/PHPExiftool/Driver/Tag/RealRA4/TitleLen.php deleted file mode 100644 index f656f0d6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/TitleLen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitleLen extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'TitleLen'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Title Len'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/Unknown.php b/lib/PHPExiftool/Driver/Tag/RealRA4/Unknown.php deleted file mode 100644 index 834fbbbc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/Unknown.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unknown extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Unknown'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Unknown'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA4/Version2.php b/lib/PHPExiftool/Driver/Tag/RealRA4/Version2.php deleted file mode 100644 index 6a0fef9a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA4/Version2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA4; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version2 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Version2'; - - protected $FullName = 'Real::AudioV4'; - - protected $GroupName = 'Real-RA4'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA4'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Version 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/AudioBytes.php b/lib/PHPExiftool/Driver/Tag/RealRA5/AudioBytes.php deleted file mode 100644 index 226b5d105..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/AudioBytes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioBytes extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AudioBytes'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio Bytes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/AudioFileSize.php b/lib/PHPExiftool/Driver/Tag/RealRA5/AudioFileSize.php deleted file mode 100644 index 9c9359186..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/AudioFileSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioFileSize extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'AudioFileSize'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Audio File Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/RealRA5/BitsPerSample.php deleted file mode 100644 index 6b38c6855..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/BytesPerMinute.php b/lib/PHPExiftool/Driver/Tag/RealRA5/BytesPerMinute.php deleted file mode 100644 index 19d97ce4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/BytesPerMinute.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BytesPerMinute extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'BytesPerMinute'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Bytes Per Minute'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/Channels.php b/lib/PHPExiftool/Driver/Tag/RealRA5/Channels.php deleted file mode 100644 index c789a8c4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/Channels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channels extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'Channels'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/CodecFlavorID.php b/lib/PHPExiftool/Driver/Tag/RealRA5/CodecFlavorID.php deleted file mode 100644 index 21130a68b..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/CodecFlavorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodecFlavorID extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'CodecFlavorID'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Codec Flavor ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/CodedFrameSize.php b/lib/PHPExiftool/Driver/Tag/RealRA5/CodedFrameSize.php deleted file mode 100644 index 8c82c8409..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/CodedFrameSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CodedFrameSize extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'CodedFrameSize'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Coded Frame Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/FourCC1.php b/lib/PHPExiftool/Driver/Tag/RealRA5/FourCC1.php deleted file mode 100644 index 9e30584fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/FourCC1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC1 extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FourCC1'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Four CC1'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/FourCC3.php b/lib/PHPExiftool/Driver/Tag/RealRA5/FourCC3.php deleted file mode 100644 index f258b99b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/FourCC3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FourCC3 extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'FourCC3'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Four CC3'; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/FrameSize.php b/lib/PHPExiftool/Driver/Tag/RealRA5/FrameSize.php deleted file mode 100644 index 383117558..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/FrameSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameSize extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'FrameSize'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Frame Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/Genr.php b/lib/PHPExiftool/Driver/Tag/RealRA5/Genr.php deleted file mode 100644 index 1986a4467..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/Genr.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genr extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Genr'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Genr'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/HeaderSize.php b/lib/PHPExiftool/Driver/Tag/RealRA5/HeaderSize.php deleted file mode 100644 index a86d8748d..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/HeaderSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeaderSize extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'HeaderSize'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Header Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/SampleRate.php b/lib/PHPExiftool/Driver/Tag/RealRA5/SampleRate.php deleted file mode 100644 index d8adb2633..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'SampleRate'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/SampleRate2.php b/lib/PHPExiftool/Driver/Tag/RealRA5/SampleRate2.php deleted file mode 100644 index 4eab4f345..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/SampleRate2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate2 extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'SampleRate2'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sample Rate 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/SubPacketH.php b/lib/PHPExiftool/Driver/Tag/RealRA5/SubPacketH.php deleted file mode 100644 index 50902b420..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/SubPacketH.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubPacketH extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'SubPacketH'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sub Packet H'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/SubPacketSize.php b/lib/PHPExiftool/Driver/Tag/RealRA5/SubPacketSize.php deleted file mode 100644 index bdbfff84a..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/SubPacketSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubPacketSize extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'SubPacketSize'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sub Packet Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/Unknown.php b/lib/PHPExiftool/Driver/Tag/RealRA5/Unknown.php deleted file mode 100644 index c59e8d267..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/Unknown.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unknown extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'Unknown'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Unknown'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRA5/Version2.php b/lib/PHPExiftool/Driver/Tag/RealRA5/Version2.php deleted file mode 100644 index 894dbb0a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRA5/Version2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRA5; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version2 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Version2'; - - protected $FullName = 'Real::AudioV5'; - - protected $GroupName = 'Real-RA5'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RA5'; - - protected $g2 = 'Audio'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Version 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRJMD/AlbumName.php b/lib/PHPExiftool/Driver/Tag/RealRJMD/AlbumName.php deleted file mode 100644 index 75b3a5c23..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRJMD/AlbumName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRJMD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlbumName extends AbstractTag -{ - - protected $Id = 'Album/Name'; - - protected $Name = 'AlbumName'; - - protected $FullName = 'Real::Metadata'; - - protected $GroupName = 'Real-RJMD'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RJMD'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackCategory.php b/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackCategory.php deleted file mode 100644 index f2406e17e..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackCategory.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRJMD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackCategory extends AbstractTag -{ - - protected $Id = 'Track/Category'; - - protected $Name = 'TrackCategory'; - - protected $FullName = 'Real::Metadata'; - - protected $GroupName = 'Real-RJMD'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RJMD'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackComments.php b/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackComments.php deleted file mode 100644 index 92018c069..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackComments.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRJMD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackComments extends AbstractTag -{ - - protected $Id = 'Track/Comments'; - - protected $Name = 'TrackComments'; - - protected $FullName = 'Real::Metadata'; - - protected $GroupName = 'Real-RJMD'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RJMD'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Comments'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackLyrics.php b/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackLyrics.php deleted file mode 100644 index a21896292..000000000 --- a/lib/PHPExiftool/Driver/Tag/RealRJMD/TrackLyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\RealRJMD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackLyrics extends AbstractTag -{ - - protected $Id = 'Track/Lyrics'; - - protected $Name = 'TrackLyrics'; - - protected $FullName = 'Real::Metadata'; - - protected $GroupName = 'Real-RJMD'; - - protected $g0 = 'Real'; - - protected $g1 = 'Real-RJMD'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/AmbientTemperature.php b/lib/PHPExiftool/Driver/Tag/Reconyx/AmbientTemperature.php deleted file mode 100644 index edad9d354..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/AmbientTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AmbientTemperature extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'AmbientTemperature'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Ambient Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/AmbientTemperatureFahrenheit.php b/lib/PHPExiftool/Driver/Tag/Reconyx/AmbientTemperatureFahrenheit.php deleted file mode 100644 index 96c327d95..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/AmbientTemperatureFahrenheit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AmbientTemperatureFahrenheit extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'AmbientTemperatureFahrenheit'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Ambient Temperature Fahrenheit'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/BatteryVoltage.php b/lib/PHPExiftool/Driver/Tag/Reconyx/BatteryVoltage.php deleted file mode 100644 index 48eb4135d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/BatteryVoltage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryVoltage extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'BatteryVoltage'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Battery Voltage'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/Brightness.php b/lib/PHPExiftool/Driver/Tag/Reconyx/Brightness.php deleted file mode 100644 index 638f980f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/Brightness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 37; - - protected $Name = 'Brightness'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Brightness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/Contrast.php b/lib/PHPExiftool/Driver/Tag/Reconyx/Contrast.php deleted file mode 100644 index 0bb284f6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/Contrast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 36; - - protected $Name = 'Contrast'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Reconyx/DateTimeOriginal.php deleted file mode 100644 index de279f5de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/DateTimeOriginal.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/EventNumber.php b/lib/PHPExiftool/Driver/Tag/Reconyx/EventNumber.php deleted file mode 100644 index 608bd2e6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/EventNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventNumber extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'EventNumber'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Event Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/FirmwareDate.php b/lib/PHPExiftool/Driver/Tag/Reconyx/FirmwareDate.php deleted file mode 100644 index 731861c51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/FirmwareDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareDate extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'FirmwareDate'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Firmware Date'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Reconyx/FirmwareVersion.php deleted file mode 100644 index 0fb3a1104..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/FirmwareVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/InfraredIlluminator.php b/lib/PHPExiftool/Driver/Tag/Reconyx/InfraredIlluminator.php deleted file mode 100644 index e80b9ec34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/InfraredIlluminator.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InfraredIlluminator extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'InfraredIlluminator'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Infrared Illuminator'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Reconyx/MakerNoteVersion.php deleted file mode 100644 index 9119e1e2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/MakerNoteVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/MoonPhase.php b/lib/PHPExiftool/Driver/Tag/Reconyx/MoonPhase.php deleted file mode 100644 index 1bfd73563..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/MoonPhase.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoonPhase extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'MoonPhase'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Moon Phase'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'New', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'New Crescent', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'First Quarter', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Waxing Gibbous', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Full', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Waning Gibbous', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Last Quarter', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Old Crescent', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/MotionSensitivity.php b/lib/PHPExiftool/Driver/Tag/Reconyx/MotionSensitivity.php deleted file mode 100644 index 7adc8fc16..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/MotionSensitivity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MotionSensitivity extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'MotionSensitivity'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Motion Sensitivity'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/Saturation.php b/lib/PHPExiftool/Driver/Tag/Reconyx/Saturation.php deleted file mode 100644 index 7c535a6b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/Saturation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'Saturation'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/Sequence.php b/lib/PHPExiftool/Driver/Tag/Reconyx/Sequence.php deleted file mode 100644 index ae16ade4e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/Sequence.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sequence extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'Sequence'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sequence'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Reconyx/SerialNumber.php deleted file mode 100644 index 0e8c51735..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 30; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Reconyx/Sharpness.php deleted file mode 100644 index f55f03ad0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/Sharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'Sharpness'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/TriggerMode.php b/lib/PHPExiftool/Driver/Tag/Reconyx/TriggerMode.php deleted file mode 100644 index 0cafa8171..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/TriggerMode.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TriggerMode extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'TriggerMode'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Trigger Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 'C' => array( - 'Id' => 'C', - 'Label' => 'CodeLoc Not Entered', - ), - 'E' => array( - 'Id' => 'E', - 'Label' => 'External Sensor', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'Motion Detection', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'Time Lapse', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Reconyx/UserLabel.php b/lib/PHPExiftool/Driver/Tag/Reconyx/UserLabel.php deleted file mode 100644 index 86447cb09..000000000 --- a/lib/PHPExiftool/Driver/Tag/Reconyx/UserLabel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Reconyx; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserLabel extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'UserLabel'; - - protected $FullName = 'Reconyx::Main'; - - protected $GroupName = 'Reconyx'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Reconyx'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'User Label'; - - protected $flag_Permanent = true; - - protected $MaxLength = 22; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaMode.php b/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaMode.php deleted file mode 100644 index 2a423f448..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaMode extends AbstractTag -{ - - protected $Id = 4613; - - protected $Name = 'AFAreaMode'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Area Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaXPosition.php b/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaXPosition.php deleted file mode 100644 index 7fe8a2bad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaXPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaXPosition extends AbstractTag -{ - - protected $Id = 4611; - - protected $Name = 'AFAreaXPosition'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'AF Area X Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaXPosition1.php b/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaXPosition1.php deleted file mode 100644 index a2f37cb81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaXPosition1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaXPosition1 extends AbstractTag -{ - - protected $Id = 4609; - - protected $Name = 'AFAreaXPosition1'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'AF Area X Position 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaYPosition.php b/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaYPosition.php deleted file mode 100644 index 32fc020f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaYPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaYPosition extends AbstractTag -{ - - protected $Id = 4612; - - protected $Name = 'AFAreaYPosition'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'AF Area Y Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaYPosition1.php b/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaYPosition1.php deleted file mode 100644 index 0b05c593a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/AFAreaYPosition1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaYPosition1 extends AbstractTag -{ - - protected $Id = 4610; - - protected $Name = 'AFAreaYPosition1'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'AF Area Y Position 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/AFStatus.php b/lib/PHPExiftool/Driver/Tag/Ricoh/AFStatus.php deleted file mode 100644 index 9a66704ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/AFStatus.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatus extends AbstractTag -{ - - protected $Id = 4608; - - protected $Name = 'AFStatus'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Status'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Out of Focus', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Accelerometer.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Accelerometer.php deleted file mode 100644 index 12bd33759..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Accelerometer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Accelerometer extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Accelerometer'; - - protected $FullName = 'Ricoh::ThetaSubdir'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Accelerometer'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/AutoBracketing.php b/lib/PHPExiftool/Driver/Tag/Ricoh/AutoBracketing.php deleted file mode 100644 index a8289b04f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/AutoBracketing.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracketing extends AbstractTag -{ - - protected $Id = 4103; - - protected $Name = 'AutoBracketing'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto Bracketing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'AE', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'WB', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'DR', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Contrast', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'WB2', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Effect', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/BlueGain.php b/lib/PHPExiftool/Driver/Tag/Ricoh/BlueGain.php deleted file mode 100644 index 7d5853e17..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/BlueGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueGain extends AbstractTag -{ - - protected $Id = 'Bg'; - - protected $Name = 'BlueGain'; - - protected $FullName = 'Ricoh::Text'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Blue Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/BodyFirmware.php b/lib/PHPExiftool/Driver/Tag/Ricoh/BodyFirmware.php deleted file mode 100644 index 48fe1e1a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/BodyFirmware.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodyFirmware extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'BodyFirmware'; - - protected $FullName = 'Ricoh::SerialInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Body Firmware'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/BodySerialNumber.php b/lib/PHPExiftool/Driver/Tag/Ricoh/BodySerialNumber.php deleted file mode 100644 index 1775ce6de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/BodySerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BodySerialNumber extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'BodySerialNumber'; - - protected $FullName = 'Ricoh::SerialInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Body Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ColorTempKelvin.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ColorTempKelvin.php deleted file mode 100644 index 1cb712b42..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ColorTempKelvin.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTempKelvin extends AbstractTag -{ - - protected $Id = 4871; - - protected $Name = 'ColorTempKelvin'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Temp Kelvin'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ColorTemperature.php deleted file mode 100644 index 07af4e35e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 4872; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Comment.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Comment.php deleted file mode 100644 index 0c39ce2ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Comment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'ucmt'; - - protected $Name = 'Comment'; - - protected $FullName = 'Ricoh::AVI'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Compass.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Compass.php deleted file mode 100644 index 3ad0a5ebb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Compass.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compass extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Compass'; - - protected $FullName = 'Ricoh::ThetaSubdir'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Compass'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Contrast.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Contrast.php deleted file mode 100644 index da52ca6f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Contrast.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 4114; - - protected $Name = 'Contrast'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2147483647 => array( - 'Id' => 2147483647, - 'Label' => 'MAX', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/CropMode35mm.php b/lib/PHPExiftool/Driver/Tag/Ricoh/CropMode35mm.php deleted file mode 100644 index 274925e31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/CropMode35mm.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropMode35mm extends AbstractTag -{ - - protected $Id = 4120; - - protected $Name = 'CropMode35mm'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Crop Mode 35mm'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/CroppedImageHeight.php b/lib/PHPExiftool/Driver/Tag/Ricoh/CroppedImageHeight.php deleted file mode 100644 index 24a1ed5e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/CroppedImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedImageHeight extends AbstractTag -{ - - protected $Id = 5636; - - protected $Name = 'CroppedImageHeight'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Cropped Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/CroppedImageWidth.php b/lib/PHPExiftool/Driver/Tag/Ricoh/CroppedImageWidth.php deleted file mode 100644 index ac33d5c75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/CroppedImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedImageWidth extends AbstractTag -{ - - protected $Id = 5635; - - protected $Name = 'CroppedImageWidth'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Cropped Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Ricoh/DriveMode.php deleted file mode 100644 index e279af099..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/DriveMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 4098; - - protected $Name = 'DriveMode'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Drive Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single-frame', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'AF-priority Continuous', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/DynamicRangeExpansion.php b/lib/PHPExiftool/Driver/Tag/Ricoh/DynamicRangeExpansion.php deleted file mode 100644 index 80cc38e01..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/DynamicRangeExpansion.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeExpansion extends AbstractTag -{ - - protected $Id = 4110; - - protected $Name = 'DynamicRangeExpansion'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Expansion'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Weak', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Medium', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Strong', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ExposureProgram.php deleted file mode 100644 index 58e1df77d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ExposureProgram.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Program'; - - protected $flag_Permanent = true; - - protected $Index = 1; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Shutter/aperture priority AE', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Manual', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face1Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face1Position.php deleted file mode 100644 index e85e1bdb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Position extends AbstractTag -{ - - protected $Id = 188; - - protected $Name = 'Face1Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face2Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face2Position.php deleted file mode 100644 index 9c859cebc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Position extends AbstractTag -{ - - protected $Id = 200; - - protected $Name = 'Face2Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face3Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face3Position.php deleted file mode 100644 index b69dae806..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Position extends AbstractTag -{ - - protected $Id = 212; - - protected $Name = 'Face3Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face4Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face4Position.php deleted file mode 100644 index 106e1b5da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Position extends AbstractTag -{ - - protected $Id = 224; - - protected $Name = 'Face4Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face5Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face5Position.php deleted file mode 100644 index b4b3be0d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Position extends AbstractTag -{ - - protected $Id = 236; - - protected $Name = 'Face5Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face6Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face6Position.php deleted file mode 100644 index 76ac9ff6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face6Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Position extends AbstractTag -{ - - protected $Id = 248; - - protected $Name = 'Face6Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 6 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face7Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face7Position.php deleted file mode 100644 index ae59cbe58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face7Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Position extends AbstractTag -{ - - protected $Id = 260; - - protected $Name = 'Face7Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 7 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Face8Position.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Face8Position.php deleted file mode 100644 index 50b51091a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Face8Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Position extends AbstractTag -{ - - protected $Id = 272; - - protected $Name = 'Face8Position'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 8 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FaceDetectFrameSize.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FaceDetectFrameSize.php deleted file mode 100644 index b6273b24f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FaceDetectFrameSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetectFrameSize extends AbstractTag -{ - - protected $Id = 182; - - protected $Name = 'FaceDetectFrameSize'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Detect Frame Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FacesDetected.php deleted file mode 100644 index fb586d902..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 181; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'Ricoh::FaceInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareRevision.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareRevision.php deleted file mode 100644 index bfd53842f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareRevision.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareRevision extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FirmwareRevision'; - - protected $FullName = 'Ricoh::FirmwareInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Revision'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareRevision2.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareRevision2.php deleted file mode 100644 index 94d548868..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareRevision2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareRevision2 extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'FirmwareRevision2'; - - protected $FullName = 'Ricoh::FirmwareInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Revision 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareVersion.php deleted file mode 100644 index a6eb281b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FlashExposureComp.php deleted file mode 100644 index 48620ad43..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 4107; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FlashMode.php deleted file mode 100644 index 882828a4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FlashMode.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Auto, Fired', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 3, - 'Label' => 'Auto, Fired, Red-eye reduction', - ), - 7 => array( - 'Id' => 4, - 'Label' => 'Slow Sync', - ), - 8 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 9 => array( - 'Id' => 6, - 'Label' => 'On, Red-eye reduction', - ), - 10 => array( - 'Id' => 7, - 'Label' => 'Synchro, Red-eye reduction', - ), - 11 => array( - 'Id' => 8, - 'Label' => 'Auto, Did not fire', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FocalLength.php deleted file mode 100644 index 1a91bf65e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 5376; - - protected $Name = 'FocalLength'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FocusMode.php deleted file mode 100644 index 06217f4a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FocusMode.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 4102; - - protected $Name = 'FocusMode'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Multi AF', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot AF', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Snap', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Infinity', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Face Detect', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Subject Tracking', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Pinpoint AF', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Movie', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/FullPressSnap.php b/lib/PHPExiftool/Driver/Tag/Ricoh/FullPressSnap.php deleted file mode 100644 index df1c82419..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/FullPressSnap.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullPressSnap extends AbstractTag -{ - - protected $Id = 4109; - - protected $Name = 'FullPressSnap'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Full Press Snap'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/GreenGain.php b/lib/PHPExiftool/Driver/Tag/Ricoh/GreenGain.php deleted file mode 100644 index 2dc9afa6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/GreenGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenGain extends AbstractTag -{ - - protected $Id = 'Gg'; - - protected $Name = 'GreenGain'; - - protected $FullName = 'Ricoh::Text'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Green Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/HueAdjust.php b/lib/PHPExiftool/Driver/Tag/Ricoh/HueAdjust.php deleted file mode 100644 index da0b5dd8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/HueAdjust.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjust extends AbstractTag -{ - - protected $Id = 4118; - - protected $Name = 'HueAdjust'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Hue Adjust'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Basic', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Magenta', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Yellow', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Normal', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Warm', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Cool', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ISOSetting.php deleted file mode 100644 index f9b0a5305..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ISOSetting.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'Ricoh::ImageInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 64, - ), - 2 => array( - 'Id' => 2, - 'Label' => 100, - ), - 4 => array( - 'Id' => 4, - 'Label' => 200, - ), - 6 => array( - 'Id' => 6, - 'Label' => 400, - ), - 7 => array( - 'Id' => 7, - 'Label' => 800, - ), - 8 => array( - 'Id' => 8, - 'Label' => 1600, - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Auto', - ), - 10 => array( - 'Id' => 10, - 'Label' => 3200, - ), - 11 => array( - 'Id' => 11, - 'Label' => '100 (Low)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ImageEffects.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ImageEffects.php deleted file mode 100644 index 250a2bbfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ImageEffects.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageEffects extends AbstractTag -{ - - protected $Id = 4112; - - protected $Name = 'ImageEffects'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Effects'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Black & White', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'B&W Toning Effect', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Setting 1', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Setting 2', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'High-contrast B&W', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cross Process', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Positive Film', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Bleach Bypass', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Retro', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Miniature', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'High Key', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Ricoh/InternalSerialNumber.php deleted file mode 100644 index ceebc187e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/InternalSerialNumber.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/LensFirmware.php b/lib/PHPExiftool/Driver/Tag/Ricoh/LensFirmware.php deleted file mode 100644 index 3ad54832a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/LensFirmware.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFirmware extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'LensFirmware'; - - protected $FullName = 'Ricoh::SerialInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Firmware'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Ricoh/LensSerialNumber.php deleted file mode 100644 index d51b60a3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/LensSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'Ricoh::SerialInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Macro.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Macro.php deleted file mode 100644 index 3b75f3490..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Macro.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Macro extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'Macro'; - - protected $FullName = 'Ricoh::ImageInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/MacroMode.php b/lib/PHPExiftool/Driver/Tag/Ricoh/MacroMode.php deleted file mode 100644 index 24fb83aea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/MacroMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MacroMode extends AbstractTag -{ - - protected $Id = 4105; - - protected $Name = 'MacroMode'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/MakerNoteType.php b/lib/PHPExiftool/Driver/Tag/Ricoh/MakerNoteType.php deleted file mode 100644 index f89c07777..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/MakerNoteType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteType extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MakerNoteType'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Maker Note Type'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ManualFlashOutput.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ManualFlashOutput.php deleted file mode 100644 index 3badfa8b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ManualFlashOutput.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFlashOutput extends AbstractTag -{ - - protected $Id = 4108; - - protected $Name = 'ManualFlashOutput'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Manual Flash Output'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-288' => array( - 'Id' => '-288', - 'Label' => '1/64', - ), - '-240' => array( - 'Id' => '-240', - 'Label' => '1/32', - ), - '-216' => array( - 'Id' => '-216', - 'Label' => '1/22', - ), - '-192' => array( - 'Id' => '-192', - 'Label' => '1/16', - ), - '-168' => array( - 'Id' => '-168', - 'Label' => '1/11', - ), - '-144' => array( - 'Id' => '-144', - 'Label' => '1/8', - ), - '-120' => array( - 'Id' => '-120', - 'Label' => '1/5.6', - ), - '-96' => array( - 'Id' => '-96', - 'Label' => '1/4', - ), - '-72' => array( - 'Id' => '-72', - 'Label' => '1/2.8', - ), - '-48' => array( - 'Id' => '-48', - 'Label' => '1/2', - ), - '-24' => array( - 'Id' => '-24', - 'Label' => '1/1.4', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Full', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ManufactureDate1.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ManufactureDate1.php deleted file mode 100644 index 702709111..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ManufactureDate1.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufactureDate1 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ManufactureDate1'; - - protected $FullName = 'Ricoh::Subdir'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manufacture Date 1'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ManufactureDate2.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ManufactureDate2.php deleted file mode 100644 index 41ba56666..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ManufactureDate2.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManufactureDate2 extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ManufactureDate2'; - - protected $FullName = 'Ricoh::Subdir'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manufacture Date 2'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 20; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/NDFilter.php b/lib/PHPExiftool/Driver/Tag/Ricoh/NDFilter.php deleted file mode 100644 index d9e574e0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/NDFilter.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NDFilter extends AbstractTag -{ - - protected $Id = 4121; - - protected $Name = 'NDFilter'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'ND Filter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/NoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Ricoh/NoiseReduction.php deleted file mode 100644 index 2eb25d11c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/NoiseReduction.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'NoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Weak', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Medium', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Strong', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Weak', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Strong', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'Max', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Ricoh/PreviewImageLength.php deleted file mode 100644 index 221bacf6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/PreviewImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Ricoh::ImageInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Ricoh/PreviewImageStart.php deleted file mode 100644 index 21ab54065..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/PreviewImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 28; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Ricoh::ImageInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/RecordingFormat.php b/lib/PHPExiftool/Driver/Tag/Ricoh/RecordingFormat.php deleted file mode 100644 index 02964cbc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/RecordingFormat.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordingFormat extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'RecordingFormat'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Recording Format'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'JPEG', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'DNG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/RedGain.php b/lib/PHPExiftool/Driver/Tag/Ricoh/RedGain.php deleted file mode 100644 index 814778388..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/RedGain.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedGain extends AbstractTag -{ - - protected $Id = 'Rg'; - - protected $Name = 'RedGain'; - - protected $FullName = 'Ricoh::Text'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Red Gain'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohDate.php b/lib/PHPExiftool/Driver/Tag/Ricoh/RicohDate.php deleted file mode 100644 index b09d69564..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohDate.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RicohDate extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'RicohDate'; - - protected $FullName = 'Ricoh::ImageInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Ricoh Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohImageHeight.php b/lib/PHPExiftool/Driver/Tag/Ricoh/RicohImageHeight.php deleted file mode 100644 index 2585be2ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RicohImageHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'RicohImageHeight'; - - protected $FullName = 'Ricoh::ImageInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Ricoh Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohImageWidth.php b/lib/PHPExiftool/Driver/Tag/Ricoh/RicohImageWidth.php deleted file mode 100644 index 899d48663..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RicohImageWidth extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'RicohImageWidth'; - - protected $FullName = 'Ricoh::ImageInfo'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Ricoh Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohMake.php b/lib/PHPExiftool/Driver/Tag/Ricoh/RicohMake.php deleted file mode 100644 index 71ffbfe68..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohMake.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RicohMake extends AbstractTag -{ - - protected $Id = 768; - - protected $Name = 'RicohMake'; - - protected $FullName = 'Ricoh::Type2'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Ricoh Make'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohRDC2.php b/lib/PHPExiftool/Driver/Tag/Ricoh/RicohRDC2.php deleted file mode 100644 index 19a4bc470..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/RicohRDC2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RicohRDC2 extends AbstractTag -{ - - protected $Id = 'rdc2'; - - protected $Name = 'RicohRDC2'; - - protected $FullName = 'Ricoh::AVI'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Ricoh RDC2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Saturation.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Saturation.php deleted file mode 100644 index d842c5f40..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Saturation.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'High', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'B&W', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Toning Effect', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Vivid', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Natural', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/SensorHeight.php b/lib/PHPExiftool/Driver/Tag/Ricoh/SensorHeight.php deleted file mode 100644 index fe16b1587..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/SensorHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorHeight extends AbstractTag -{ - - protected $Id = 5634; - - protected $Name = 'SensorHeight'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sensor Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/SensorWidth.php b/lib/PHPExiftool/Driver/Tag/Ricoh/SensorWidth.php deleted file mode 100644 index d12d9b42e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/SensorWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorWidth extends AbstractTag -{ - - protected $Id = 5633; - - protected $Name = 'SensorWidth'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sensor Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Ricoh/SerialNumber.php deleted file mode 100644 index 0acbdeddc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/SerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Sharpness.php deleted file mode 100644 index 93c2c6cbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Sharpness.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Sharp', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Soft', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ThumbnailImage.php deleted file mode 100644 index dada133bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ThumbnailImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'thum'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'Ricoh::AVI'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/ToningEffect.php b/lib/PHPExiftool/Driver/Tag/Ricoh/ToningEffect.php deleted file mode 100644 index 8304e6d92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/ToningEffect.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToningEffect extends AbstractTag -{ - - protected $Id = 4117; - - protected $Name = 'ToningEffect'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Toning Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Red', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Green', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Blue', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Purple', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'B&W', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Color', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/Vignetting.php b/lib/PHPExiftool/Driver/Tag/Ricoh/Vignetting.php deleted file mode 100644 index d0ca73d9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/Vignetting.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Vignetting extends AbstractTag -{ - - protected $Id = 4113; - - protected $Name = 'Vignetting'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Vignetting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Medium', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/WBBracketShotNumber.php b/lib/PHPExiftool/Driver/Tag/Ricoh/WBBracketShotNumber.php deleted file mode 100644 index 127a763b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/WBBracketShotNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBBracketShotNumber extends AbstractTag -{ - - protected $Id = 4122; - - protected $Name = 'WBBracketShotNumber'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB Bracket Shot Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Ricoh/WhiteBalance.php deleted file mode 100644 index 276fed1cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/WhiteBalance.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cloudy', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Fluorescent', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - 6 => array( - 'Id' => 7, - 'Label' => 'Detail', - ), - 7 => array( - 'Id' => 9, - 'Label' => 'Multi-pattern Auto', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 9 => array( - 'Id' => 1, - 'Label' => 'Multi-P Auto', - ), - 10 => array( - 'Id' => 2, - 'Label' => 'Daylight', - ), - 11 => array( - 'Id' => 3, - 'Label' => 'Cloudy', - ), - 12 => array( - 'Id' => 4, - 'Label' => 'Incandescent 1', - ), - 13 => array( - 'Id' => 5, - 'Label' => 'Incandescent 2', - ), - 14 => array( - 'Id' => 6, - 'Label' => 'Daylight Fluorescent', - ), - 15 => array( - 'Id' => 7, - 'Label' => 'Neutral White Fluorescent', - ), - 16 => array( - 'Id' => 8, - 'Label' => 'Cool White Fluorescent', - ), - 17 => array( - 'Id' => 9, - 'Label' => 'Warm White Fluorescent', - ), - 18 => array( - 'Id' => 10, - 'Label' => 'Manual', - ), - 19 => array( - 'Id' => 11, - 'Label' => 'Kelvin', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/WhiteBalanceFineTune.php b/lib/PHPExiftool/Driver/Tag/Ricoh/WhiteBalanceFineTune.php deleted file mode 100644 index 433d2d3ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/WhiteBalanceFineTune.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceFineTune extends AbstractTag -{ - - protected $Id = 4100; - - protected $Name = 'WhiteBalanceFineTune'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'White Balance Fine Tune'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Ricoh/WideAdapter.php b/lib/PHPExiftool/Driver/Tag/Ricoh/WideAdapter.php deleted file mode 100644 index 4bb2da593..000000000 --- a/lib/PHPExiftool/Driver/Tag/Ricoh/WideAdapter.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Ricoh; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WideAdapter extends AbstractTag -{ - - protected $Id = 4119; - - protected $Name = 'WideAdapter'; - - protected $FullName = 'Ricoh::Main'; - - protected $GroupName = 'Ricoh'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Ricoh'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Wide Adapter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Attached', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Attached', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/SPIFF/BitsPerSample.php deleted file mode 100644 index febe3711a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/BitsPerSample.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Bits Per Sample'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/ColorComponents.php b/lib/PHPExiftool/Driver/Tag/SPIFF/ColorComponents.php deleted file mode 100644 index 7ed94c104..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/ColorComponents.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorComponents extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ColorComponents'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Components'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/SPIFF/ColorSpace.php deleted file mode 100644 index 6c55c916c..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/ColorSpace.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Space'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bi-level', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'YCbCr, ITU-R BT 709, video', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'No color space specified', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'YCbCr, ITU-R BT 601-1, RGB', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'YCbCr, ITU-R BT 601-1, video', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Gray-scale', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'PhotoYCC', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'RGB', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'CMY', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'CMYK', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'YCCK', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'CIELab', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/Compression.php b/lib/PHPExiftool/Driver/Tag/SPIFF/Compression.php deleted file mode 100644 index 18d565c2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/Compression.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Compression'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Uncompressed, interleaved, 8 bits per sample', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Modified Huffman', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Modified READ', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Modified Modified READ', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'JBIG', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'JPEG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/SPIFF/ImageHeight.php deleted file mode 100644 index 58df6fa00..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/SPIFF/ImageWidth.php deleted file mode 100644 index 8aec822cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/ProfileID.php b/lib/PHPExiftool/Driver/Tag/SPIFF/ProfileID.php deleted file mode 100644 index 4a0f004d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/ProfileID.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProfileID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ProfileID'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Profile ID'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Specified', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous-tone Base', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous-tone Progressive', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Bi-level Facsimile', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Continuous-tone Facsimile', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/ResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/SPIFF/ResolutionUnit.php deleted file mode 100644 index 24815eb1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/ResolutionUnit.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResolutionUnit extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'ResolutionUnit'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Resolution Unit'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'inches', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/SPIFFVersion.php b/lib/PHPExiftool/Driver/Tag/SPIFF/SPIFFVersion.php deleted file mode 100644 index 0ee547e2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/SPIFFVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SPIFFVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SPIFFVersion'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'SPIFF Version'; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/XResolution.php b/lib/PHPExiftool/Driver/Tag/SPIFF/XResolution.php deleted file mode 100644 index bf3226b6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'XResolution'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SPIFF/YResolution.php b/lib/PHPExiftool/Driver/Tag/SPIFF/YResolution.php deleted file mode 100644 index 6891d85d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SPIFF/YResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SPIFF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'YResolution'; - - protected $FullName = 'JPEG::SPIFF'; - - protected $GroupName = 'SPIFF'; - - protected $g0 = 'APP8'; - - protected $g1 = 'SPIFF'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDKey.php b/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDKey.php deleted file mode 100644 index 60c9dfe6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDKey.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SR2SubIFDKey extends AbstractTag -{ - - protected $Id = 29217; - - protected $Name = 'SR2SubIFDKey'; - - protected $FullName = 'Sony::SR2Private'; - - protected $GroupName = 'SR2'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'SR2 Sub IFD Key'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDLength.php b/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDLength.php deleted file mode 100644 index 68396af8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SR2SubIFDLength extends AbstractTag -{ - - protected $Id = 29185; - - protected $Name = 'SR2SubIFDLength'; - - protected $FullName = 'Sony::SR2Private'; - - protected $GroupName = 'SR2'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SR2 Sub IFD Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDOffset.php b/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDOffset.php deleted file mode 100644 index ce1f82294..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2/SR2SubIFDOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SR2SubIFDOffset extends AbstractTag -{ - - protected $Id = 29184; - - protected $Name = 'SR2SubIFDOffset'; - - protected $FullName = 'Sony::SR2Private'; - - protected $GroupName = 'SR2'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SR2 Sub IFD Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2DataIFD/ColorMode.php b/lib/PHPExiftool/Driver/Tag/SR2DataIFD/ColorMode.php deleted file mode 100644 index 748229178..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2DataIFD/ColorMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2DataIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 30576; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Sony::SR2DataIFD'; - - protected $GroupName = 'SR2DataIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2DataIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/BlackLevel.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/BlackLevel.php deleted file mode 100644 index 84b403ea6..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/BlackLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel extends AbstractTag -{ - - protected $Id = 29456; - - protected $Name = 'BlackLevel'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Black Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/ColorMatrix.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/ColorMatrix.php deleted file mode 100644 index df2520a5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/ColorMatrix.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrix extends AbstractTag -{ - - protected $Id = 30720; - - protected $Name = 'ColorMatrix'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Matrix'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/MaxApertureAtMaxFocal.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/MaxApertureAtMaxFocal.php deleted file mode 100644 index 809cf8aa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/MaxApertureAtMaxFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMaxFocal extends AbstractTag -{ - - protected $Id = 29856; - - protected $Name = 'MaxApertureAtMaxFocal'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Aperture At Max Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/MaxApertureAtMinFocal.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/MaxApertureAtMinFocal.php deleted file mode 100644 index 52896a2ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/MaxApertureAtMinFocal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureAtMinFocal extends AbstractTag -{ - - protected $Id = 29857; - - protected $Name = 'MaxApertureAtMinFocal'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Max Aperture At Min Focal'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBGRBGLevels.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBGRBGLevels.php deleted file mode 100644 index ae013f26a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBGRBGLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBGRBGLevels extends AbstractTag -{ - - protected $Id = 29443; - - protected $Name = 'WB_GRBGLevels'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB GRBG Levels'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels2500K.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels2500K.php deleted file mode 100644 index e053cad56..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels2500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels2500K extends AbstractTag -{ - - protected $Id = 30765; - - protected $Name = 'WB_RGBLevels2500K'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels 2500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels3200K.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels3200K.php deleted file mode 100644 index 9af143e6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels3200K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels3200K extends AbstractTag -{ - - protected $Id = 30764; - - protected $Name = 'WB_RGBLevels3200K'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels 3200K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels4500K.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels4500K.php deleted file mode 100644 index 6b8db7576..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels4500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels4500K extends AbstractTag -{ - - protected $Id = 30756; - - protected $Name = 'WB_RGBLevels4500K'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels 4500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels6000K.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels6000K.php deleted file mode 100644 index a0548587f..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels6000K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels6000K extends AbstractTag -{ - - protected $Id = 30763; - - protected $Name = 'WB_RGBLevels6000K'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels 6000K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels8500K.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels8500K.php deleted file mode 100644 index 98b38c7c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevels8500K.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels8500K extends AbstractTag -{ - - protected $Id = 30762; - - protected $Name = 'WB_RGBLevels8500K'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels 8500K'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsCloudy.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsCloudy.php deleted file mode 100644 index bee19c3ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsCloudy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsCloudy extends AbstractTag -{ - - protected $Id = 30753; - - protected $Name = 'WB_RGBLevelsCloudy'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Cloudy'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsDaylight.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsDaylight.php deleted file mode 100644 index d3670d93d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsDaylight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsDaylight extends AbstractTag -{ - - protected $Id = 30752; - - protected $Name = 'WB_RGBLevelsDaylight'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Daylight'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFlash.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFlash.php deleted file mode 100644 index b963d342a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFlash.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsFlash extends AbstractTag -{ - - protected $Id = 30755; - - protected $Name = 'WB_RGBLevelsFlash'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Flash'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescent.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescent.php deleted file mode 100644 index 0dc904685..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsFluorescent extends AbstractTag -{ - - protected $Id = 30758; - - protected $Name = 'WB_RGBLevelsFluorescent'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Fluorescent'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentM1.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentM1.php deleted file mode 100644 index 65a807899..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentM1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsFluorescentM1 extends AbstractTag -{ - - protected $Id = 30761; - - protected $Name = 'WB_RGBLevelsFluorescentM1'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Fluorescent M1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentP1.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentP1.php deleted file mode 100644 index 7adfb8d37..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentP1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsFluorescentP1 extends AbstractTag -{ - - protected $Id = 30759; - - protected $Name = 'WB_RGBLevelsFluorescentP1'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Fluorescent P1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentP2.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentP2.php deleted file mode 100644 index 65f6bbaa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsFluorescentP2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsFluorescentP2 extends AbstractTag -{ - - protected $Id = 30760; - - protected $Name = 'WB_RGBLevelsFluorescentP2'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Fluorescent P2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsShade.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsShade.php deleted file mode 100644 index 4246fe2eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsShade.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsShade extends AbstractTag -{ - - protected $Id = 30757; - - protected $Name = 'WB_RGBLevelsShade'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Shade'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsTungsten.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsTungsten.php deleted file mode 100644 index 1d0001cca..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGBLevelsTungsten.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevelsTungsten extends AbstractTag -{ - - protected $Id = 30754; - - protected $Name = 'WB_RGBLevelsTungsten'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGB Levels Tungsten'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGGBLevels.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGGBLevels.php deleted file mode 100644 index bb8c19318..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WBRGGBLevels.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevels extends AbstractTag -{ - - protected $Id = 29459; - - protected $Name = 'WB_RGGBLevels'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'WB RGGB Levels'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WhiteLevel.php b/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WhiteLevel.php deleted file mode 100644 index f3cd5c06b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SR2SubIFD/WhiteLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SR2SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteLevel extends AbstractTag -{ - - protected $Id = 30847; - - protected $Name = 'WhiteLevel'; - - protected $FullName = 'Sony::SR2SubIFD'; - - protected $GroupName = 'SR2SubIFD'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SR2SubIFD'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'White Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SRF/DataKey.php b/lib/PHPExiftool/Driver/Tag/SRF/DataKey.php deleted file mode 100644 index 4092141a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/SRF/DataKey.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SRF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataKey extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'DataKey'; - - protected $FullName = 'Sony::SRF'; - - protected $GroupName = 'SRF#'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SRF#'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Data Key'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SRF/RawDataLength.php b/lib/PHPExiftool/Driver/Tag/SRF/RawDataLength.php deleted file mode 100644 index 08939ae81..000000000 --- a/lib/PHPExiftool/Driver/Tag/SRF/RawDataLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SRF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataLength extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'RawDataLength'; - - protected $FullName = 'Sony::SRF2'; - - protected $GroupName = 'SRF#'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SRF#'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SRF/RawDataOffset.php b/lib/PHPExiftool/Driver/Tag/SRF/RawDataOffset.php deleted file mode 100644 index c8a95274b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SRF/RawDataOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SRF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawDataOffset extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'RawDataOffset'; - - protected $FullName = 'Sony::SRF2'; - - protected $GroupName = 'SRF#'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SRF#'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Raw Data Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SRF/SRF2Key.php b/lib/PHPExiftool/Driver/Tag/SRF/SRF2Key.php deleted file mode 100644 index 453255f80..000000000 --- a/lib/PHPExiftool/Driver/Tag/SRF/SRF2Key.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SRF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRF2Key extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'SRF2Key'; - - protected $FullName = 'Sony::SRF'; - - protected $GroupName = 'SRF#'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SRF#'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SRF2 Key'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SRF/SRF6Offset.php b/lib/PHPExiftool/Driver/Tag/SRF/SRF6Offset.php deleted file mode 100644 index 33036442d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SRF/SRF6Offset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SRF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRF6Offset extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SRF6Offset'; - - protected $FullName = 'Sony::SRF2'; - - protected $GroupName = 'SRF#'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SRF#'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SRF6 Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SRF/SRFDataOffset.php b/lib/PHPExiftool/Driver/Tag/SRF/SRFDataOffset.php deleted file mode 100644 index db68643a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/SRF/SRFDataOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SRF; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SRFDataOffset extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'SRFDataOffset'; - - protected $FullName = 'Sony::SRF2'; - - protected $GroupName = 'SRF#'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SRF#'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SRF Data Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SVG/ID.php b/lib/PHPExiftool/Driver/Tag/SVG/ID.php deleted file mode 100644 index 560924772..000000000 --- a/lib/PHPExiftool/Driver/Tag/SVG/ID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SVG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ID extends AbstractTag -{ - - protected $Id = 'id'; - - protected $Name = 'ID'; - - protected $FullName = 'XMP::SVG'; - - protected $GroupName = 'SVG'; - - protected $g0 = 'SVG'; - - protected $g1 = 'SVG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SVG/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/SVG/ImageHeight.php deleted file mode 100644 index 612e262ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/SVG/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SVG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'height'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'XMP::SVG'; - - protected $GroupName = 'SVG'; - - protected $g0 = 'SVG'; - - protected $g1 = 'SVG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SVG/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/SVG/ImageWidth.php deleted file mode 100644 index ffdb58a84..000000000 --- a/lib/PHPExiftool/Driver/Tag/SVG/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SVG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'width'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'XMP::SVG'; - - protected $GroupName = 'SVG'; - - protected $g0 = 'SVG'; - - protected $g1 = 'SVG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SVG/MetadataID.php b/lib/PHPExiftool/Driver/Tag/SVG/MetadataID.php deleted file mode 100644 index b3b5a4c2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SVG/MetadataID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SVG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataID extends AbstractTag -{ - - protected $Id = 'metadataId'; - - protected $Name = 'MetadataID'; - - protected $FullName = 'XMP::SVG'; - - protected $GroupName = 'SVG'; - - protected $g0 = 'SVG'; - - protected $g1 = 'SVG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metadata ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SVG/SVGVersion.php b/lib/PHPExiftool/Driver/Tag/SVG/SVGVersion.php deleted file mode 100644 index c07113430..000000000 --- a/lib/PHPExiftool/Driver/Tag/SVG/SVGVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SVG; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SVGVersion extends AbstractTag -{ - - protected $Id = 'version'; - - protected $Name = 'SVGVersion'; - - protected $FullName = 'XMP::SVG'; - - protected $GroupName = 'SVG'; - - protected $g0 = 'SVG'; - - protected $g1 = 'SVG'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'SVG Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/CameraTemperature.php b/lib/PHPExiftool/Driver/Tag/Samsung/CameraTemperature.php deleted file mode 100644 index 2dae50f57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/CameraTemperature.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature extends AbstractTag -{ - - protected $Id = 67; - - protected $Name = 'CameraTemperature'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Camera Temperature'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrix.php b/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrix.php deleted file mode 100644 index cbf189ef8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrix.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrix extends AbstractTag -{ - - protected $Id = 41008; - - protected $Name = 'ColorMatrix'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Matrix'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrixAdobeRGB.php b/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrixAdobeRGB.php deleted file mode 100644 index 9f8dde13f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrixAdobeRGB.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrixAdobeRGB extends AbstractTag -{ - - protected $Id = 41010; - - protected $Name = 'ColorMatrixAdobeRGB'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Matrix Adobe RGB'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrixSRGB.php b/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrixSRGB.php deleted file mode 100644 index 248c149f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ColorMatrixSRGB.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMatrixSRGB extends AbstractTag -{ - - protected $Id = 41009; - - protected $Name = 'ColorMatrixSRGB'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Matrix SRGB'; - - protected $flag_Permanent = true; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Samsung/ColorSpace.php deleted file mode 100644 index b091b4ef3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ColorSpace.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 40977; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'sRGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adobe RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/Effect.php b/lib/PHPExiftool/Driver/Tag/Samsung/Effect.php deleted file mode 100644 index 56edca46f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/Effect.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Effect extends AbstractTag -{ - - protected $Id = 'EFCT'; - - protected $Name = 'Effect'; - - protected $FullName = 'Samsung::INFO'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Effect'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/EncryptionKey.php b/lib/PHPExiftool/Driver/Tag/Samsung/EncryptionKey.php deleted file mode 100644 index 1536fe971..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/EncryptionKey.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncryptionKey extends AbstractTag -{ - - protected $Id = 40992; - - protected $Name = 'EncryptionKey'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Encryption Key'; - - protected $flag_Permanent = true; - - protected $flag_Unsafe = true; - - protected $MaxLength = 11; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Samsung/ExposureCompensation.php deleted file mode 100644 index 19478a90f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'mixed'; - - protected $Type = 'rational64s'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Samsung/ExposureTime.php deleted file mode 100644 index 4dd1a8a81..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/FNumber.php b/lib/PHPExiftool/Driver/Tag/Samsung/FNumber.php deleted file mode 100644 index 983b869c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'mixed'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/FirmwareName.php b/lib/PHPExiftool/Driver/Tag/Samsung/FirmwareName.php deleted file mode 100644 index b8bcd67b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/FirmwareName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareName extends AbstractTag -{ - - protected $Id = 40961; - - protected $Name = 'FirmwareName'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware Name'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/FocalLengthIn35mmFormat.php b/lib/PHPExiftool/Driver/Tag/Samsung/FocalLengthIn35mmFormat.php deleted file mode 100644 index f644c7d8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/FocalLengthIn35mmFormat.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLengthIn35mmFormat extends AbstractTag -{ - - protected $Id = 40986; - - protected $Name = 'FocalLengthIn35mmFormat'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Focal Length In 35mm Format'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ISO.php b/lib/PHPExiftool/Driver/Tag/Samsung/ISO.php deleted file mode 100644 index 050673983..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'mixed'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/LensFirmware.php b/lib/PHPExiftool/Driver/Tag/Samsung/LensFirmware.php deleted file mode 100644 index fc04ce8fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/LensFirmware.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFirmware extends AbstractTag -{ - - protected $Id = 40964; - - protected $Name = 'LensFirmware'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Firmware'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/LensType.php b/lib/PHPExiftool/Driver/Tag/Samsung/LensType.php deleted file mode 100644 index 0c52da7c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/LensType.php +++ /dev/null @@ -1,106 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 40963; - - protected $Name = 'LensType'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Built-in or Manual Lens', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Samsung NX 30mm F2 Pancake', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Samsung NX 18-55mm F3.5-5.6 OIS', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Samsung NX 50-200mm F4-5.6 ED OIS', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Samsung NX 20-50mm F3.5-5.6 ED', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Samsung NX 20mm F2.8 Pancake', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Samsung NX 18-200mm F3.5-6.3 ED OIS', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Samsung NX 60mm F2.8 Macro ED OIS SSA', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Samsung NX 16mm F2.4 Pancake', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Samsung NX 85mm F1.4 ED SSA', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Samsung NX 45mm F1.8', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Samsung NX 45mm F1.8 2D/3D', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Samsung NX 12-24mm F4-5.6 ED', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Samsung NX 10mm F3.5 Fisheye', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/LocalLocationName.php b/lib/PHPExiftool/Driver/Tag/Samsung/LocalLocationName.php deleted file mode 100644 index 044009651..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/LocalLocationName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocalLocationName extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'LocalLocationName'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Local Location Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/LocationName.php b/lib/PHPExiftool/Driver/Tag/Samsung/LocationName.php deleted file mode 100644 index e9d822531..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/LocationName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationName extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'LocationName'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Name'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/Make.php b/lib/PHPExiftool/Driver/Tag/Samsung/Make.php deleted file mode 100644 index b3010b4e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Samsung/MakerNoteVersion.php deleted file mode 100644 index 01a57752d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/MakerNoteVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/Model.php b/lib/PHPExiftool/Driver/Tag/Samsung/Model.php deleted file mode 100644 index 8246c07e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/Model.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Model'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizard.php b/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizard.php deleted file mode 100644 index afeb5e231..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizard.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureWizard extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'PictureWizard'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Wizard'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardColor.php b/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardColor.php deleted file mode 100644 index c44fed925..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardColor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureWizardColor extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PictureWizardColor'; - - protected $FullName = 'Samsung::PictureWizard'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Wizard Color'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardContrast.php b/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardContrast.php deleted file mode 100644 index 94e94aa95..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardContrast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureWizardContrast extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PictureWizardContrast'; - - protected $FullName = 'Samsung::PictureWizard'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Wizard Contrast'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardMode.php b/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardMode.php deleted file mode 100644 index 98e2d58a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardMode.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureWizardMode extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'PictureWizardMode'; - - protected $FullName = 'Samsung::PictureWizard'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Wizard Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Landscape', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Forest', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Retro', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Cool', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Calm', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Classic', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Custom1', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Custom2', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Custom3', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardSaturation.php b/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardSaturation.php deleted file mode 100644 index 940ce6b5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardSaturation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureWizardSaturation extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PictureWizardSaturation'; - - protected $FullName = 'Samsung::PictureWizard'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Wizard Saturation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardSharpness.php b/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardSharpness.php deleted file mode 100644 index ba4c09fc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PictureWizardSharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureWizardSharpness extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PictureWizardSharpness'; - - protected $FullName = 'Samsung::PictureWizard'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Wizard Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Samsung/PreviewImageLength.php deleted file mode 100644 index 300c06ec0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PreviewImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Samsung::Main'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Samsung/PreviewImageStart.php deleted file mode 100644 index 0f3b37f93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/PreviewImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Samsung::Main'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/Quality.php b/lib/PHPExiftool/Driver/Tag/Samsung/Quality.php deleted file mode 100644 index 5640a18e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/Quality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'QLTY'; - - protected $Name = 'Quality'; - - protected $FullName = 'Samsung::INFO'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa033.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa033.php deleted file mode 100644 index 835c38ae9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa033.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa033 extends AbstractTag -{ - - protected $Id = 41011; - - protected $Name = 'Samsung_Type2_0xa033'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa033'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa034.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa034.php deleted file mode 100644 index 91c34ad37..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa034.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa034 extends AbstractTag -{ - - protected $Id = 41012; - - protected $Name = 'Samsung_Type2_0xa034'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa034'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa035.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa035.php deleted file mode 100644 index 618c80acc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa035.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa035 extends AbstractTag -{ - - protected $Id = 41013; - - protected $Name = 'Samsung_Type2_0xa035'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa035'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa036.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa036.php deleted file mode 100644 index 0ec26a5d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa036.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa036 extends AbstractTag -{ - - protected $Id = 41014; - - protected $Name = 'Samsung_Type2_0xa036'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa036'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa048.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa048.php deleted file mode 100644 index 9ff295167..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa048.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa048 extends AbstractTag -{ - - protected $Id = 41032; - - protected $Name = 'Samsung_Type2_0xa048'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa048'; - - protected $flag_Permanent = true; - - protected $MaxLength = 12; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa050.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa050.php deleted file mode 100644 index 757267b88..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa050.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa050 extends AbstractTag -{ - - protected $Id = 41040; - - protected $Name = 'Samsung_Type2_0xa050'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa050'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa051.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa051.php deleted file mode 100644 index f4007b0f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa051.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa051 extends AbstractTag -{ - - protected $Id = 41041; - - protected $Name = 'Samsung_Type2_0xa051'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa051'; - - protected $flag_Permanent = true; - - protected $MaxLength = 22; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa052.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa052.php deleted file mode 100644 index f8800b420..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa052.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa052 extends AbstractTag -{ - - protected $Id = 41042; - - protected $Name = 'Samsung_Type2_0xa052'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa052'; - - protected $flag_Permanent = true; - - protected $MaxLength = 15; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa053.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa053.php deleted file mode 100644 index fb2b53404..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa053.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa053 extends AbstractTag -{ - - protected $Id = 41043; - - protected $Name = 'Samsung_Type2_0xa053'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa053'; - - protected $flag_Permanent = true; - - protected $MaxLength = 15; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa054.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa054.php deleted file mode 100644 index c397e9a58..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa054.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa054 extends AbstractTag -{ - - protected $Id = 41044; - - protected $Name = 'Samsung_Type2_0xa054'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa054'; - - protected $flag_Permanent = true; - - protected $MaxLength = 15; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa055.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa055.php deleted file mode 100644 index edf662768..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa055.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa055 extends AbstractTag -{ - - protected $Id = 41045; - - protected $Name = 'Samsung_Type2_0xa055'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa055'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa056.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa056.php deleted file mode 100644 index 24ad721ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa056.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa056 extends AbstractTag -{ - - protected $Id = 41046; - - protected $Name = 'Samsung_Type2_0xa056'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa056'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa057.php b/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa057.php deleted file mode 100644 index 7a90395a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SamsungType20xa057.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamsungType20xa057 extends AbstractTag -{ - - protected $Id = 41047; - - protected $Name = 'Samsung_Type2_0xa057'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Samsung Type 2 0xa057'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SensorAreas.php b/lib/PHPExiftool/Driver/Tag/Samsung/SensorAreas.php deleted file mode 100644 index 7c87faa51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SensorAreas.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorAreas extends AbstractTag -{ - - protected $Id = 40976; - - protected $Name = 'SensorAreas'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sensor Areas'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/SmartRange.php b/lib/PHPExiftool/Driver/Tag/Samsung/SmartRange.php deleted file mode 100644 index 3790c4e96..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/SmartRange.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmartRange extends AbstractTag -{ - - protected $Id = 40978; - - protected $Name = 'SmartRange'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Smart Range'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/Software.php b/lib/PHPExiftool/Driver/Tag/Samsung/Software.php deleted file mode 100644 index 9ba71b52f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/Software.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 125; - - protected $Name = 'Software'; - - protected $FullName = 'Samsung::MP4'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Software'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailHeight.php b/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailHeight.php deleted file mode 100644 index ace7a774b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailImage.php deleted file mode 100644 index 7778104da..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 524; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'Samsung::sec'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailLength.php b/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailLength.php deleted file mode 100644 index 43ab56094..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailOffset.php b/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailOffset.php deleted file mode 100644 index 2b5a20ebe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailOffset extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ThumbnailOffset'; - - protected $FullName = 'Samsung::Thumbnail'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailWidth.php b/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailWidth.php deleted file mode 100644 index b9dd2e59c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ThumbnailWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ThumbnailWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve1.php b/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve1.php deleted file mode 100644 index d81924f28..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurve1 extends AbstractTag -{ - - protected $Id = 41024; - - protected $Name = 'ToneCurve1'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve 1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 23; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve2.php b/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve2.php deleted file mode 100644 index ce086f430..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurve2 extends AbstractTag -{ - - protected $Id = 41025; - - protected $Name = 'ToneCurve2'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 23; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve3.php b/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve3.php deleted file mode 100644 index c7da0c553..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurve3 extends AbstractTag -{ - - protected $Id = 41026; - - protected $Name = 'ToneCurve3'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve 3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 23; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve4.php b/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve4.php deleted file mode 100644 index 2114067ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/ToneCurve4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurve4 extends AbstractTag -{ - - protected $Id = 41027; - - protected $Name = 'ToneCurve4'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve 4'; - - protected $flag_Permanent = true; - - protected $MaxLength = 23; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsAuto.php b/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsAuto.php deleted file mode 100644 index 8340f9dcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsAuto.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsAuto extends AbstractTag -{ - - protected $Id = 40994; - - protected $Name = 'WB_RGGBLevelsAuto'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Auto'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsBlack.php b/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsBlack.php deleted file mode 100644 index 60568cefb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsBlack.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsBlack extends AbstractTag -{ - - protected $Id = 41000; - - protected $Name = 'WB_RGGBLevelsBlack'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Black'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsIlluminator1.php b/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsIlluminator1.php deleted file mode 100644 index 92ca3f72c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsIlluminator1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsIlluminator1 extends AbstractTag -{ - - protected $Id = 40995; - - protected $Name = 'WB_RGGBLevelsIlluminator1'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Illuminator 1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsIlluminator2.php b/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsIlluminator2.php deleted file mode 100644 index b18f3bf39..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsIlluminator2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsIlluminator2 extends AbstractTag -{ - - protected $Id = 40996; - - protected $Name = 'WB_RGGBLevelsIlluminator2'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Illuminator 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsUncorrected.php b/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsUncorrected.php deleted file mode 100644 index 7638cd28d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Samsung/WBRGGBLevelsUncorrected.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Samsung; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGGBLevelsUncorrected extends AbstractTag -{ - - protected $Id = 40993; - - protected $Name = 'WB_RGGBLevelsUncorrected'; - - protected $FullName = 'Samsung::Type2'; - - protected $GroupName = 'Samsung'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Samsung'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'WB RGGB Levels Uncorrected'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/CameraID.php b/lib/PHPExiftool/Driver/Tag/Sanyo/CameraID.php deleted file mode 100644 index 6f901d30f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/CameraID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraID extends AbstractTag -{ - - protected $Id = 521; - - protected $Name = 'CameraID'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Camera ID'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ColorAdjustmentMode.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ColorAdjustmentMode.php deleted file mode 100644 index 8aae9ffd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ColorAdjustmentMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorAdjustmentMode extends AbstractTag -{ - - protected $Id = 528; - - protected $Name = 'ColorAdjustmentMode'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Adjustment Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/DataDump.php b/lib/PHPExiftool/Driver/Tag/Sanyo/DataDump.php deleted file mode 100644 index c4b936523..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/DataDump.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataDump extends AbstractTag -{ - - protected $Id = 3840; - - protected $Name = 'DataDump'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Data Dump'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Sanyo/DigitalZoom.php deleted file mode 100644 index 675243162..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/DigitalZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 516; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/DigitalZoomOn.php b/lib/PHPExiftool/Driver/Tag/Sanyo/DigitalZoomOn.php deleted file mode 100644 index fb43f3ed9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/DigitalZoomOn.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoomOn extends AbstractTag -{ - - protected $Id = 539; - - protected $Name = 'DigitalZoomOn'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom On'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ExposureCompensation.php deleted file mode 100644 index ae745a8d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ExposureTime.php deleted file mode 100644 index 562539bba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 38; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'Sanyo::MOV'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/FNumber.php b/lib/PHPExiftool/Driver/Tag/Sanyo/FNumber.php deleted file mode 100644 index d6d860017..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/FacePosition.php b/lib/PHPExiftool/Driver/Tag/Sanyo/FacePosition.php deleted file mode 100644 index d261c5743..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/FacePosition.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacePosition extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'FacePosition'; - - protected $FullName = 'Sanyo::FaceInfo'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Face Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Sanyo/FacesDetected.php deleted file mode 100644 index 5ccf2ce77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/FacesDetected.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'Sanyo::FaceInfo'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Sanyo/FlashMode.php deleted file mode 100644 index 5212fad8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/FlashMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 549; - - protected $Name = 'FlashMode'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Force', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Disabled', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Red eye', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/FlickerReduce.php b/lib/PHPExiftool/Driver/Tag/Sanyo/FlickerReduce.php deleted file mode 100644 index e03546c6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/FlickerReduce.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlickerReduce extends AbstractTag -{ - - protected $Id = 536; - - protected $Name = 'FlickerReduce'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flicker Reduce'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Sanyo/FocalLength.php deleted file mode 100644 index c7f376bf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 72; - - protected $Name = 'FocalLength'; - - protected $FullName = 'Sanyo::MOV'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ISO.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ISO.php deleted file mode 100644 index 89ad9f268..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 106; - - protected $Name = 'ISO'; - - protected $FullName = 'Sanyo::MP4'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/LightSourceSpecial.php b/lib/PHPExiftool/Driver/Tag/Sanyo/LightSourceSpecial.php deleted file mode 100644 index 7ba0346bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/LightSourceSpecial.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSourceSpecial extends AbstractTag -{ - - protected $Id = 541; - - protected $Name = 'LightSourceSpecial'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Light Source Special'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/Macro.php b/lib/PHPExiftool/Driver/Tag/Sanyo/Macro.php deleted file mode 100644 index 61e01754d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/Macro.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Macro extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'Macro'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Macro', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'View', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/Make.php b/lib/PHPExiftool/Driver/Tag/Sanyo/Make.php deleted file mode 100644 index 4ef6c8821..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/Make.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Make'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Make'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/MakerNoteOffset.php b/lib/PHPExiftool/Driver/Tag/Sanyo/MakerNoteOffset.php deleted file mode 100644 index aa456cd07..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/MakerNoteOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteOffset extends AbstractTag -{ - - protected $Id = 255; - - protected $Name = 'MakerNoteOffset'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Maker Note Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ManualFocusDistance.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ManualFocusDistance.php deleted file mode 100644 index 93a77ed96..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ManualFocusDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManualFocusDistance extends AbstractTag -{ - - protected $Id = 547; - - protected $Name = 'ManualFocusDistance'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Manual Focus Distance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/Model.php b/lib/PHPExiftool/Driver/Tag/Sanyo/Model.php deleted file mode 100644 index 08b7d2aa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/Model.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Model'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Camera Model Name'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/OpticalZoomOn.php b/lib/PHPExiftool/Driver/Tag/Sanyo/OpticalZoomOn.php deleted file mode 100644 index c2c4b4eb3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/OpticalZoomOn.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OpticalZoomOn extends AbstractTag -{ - - protected $Id = 537; - - protected $Name = 'OpticalZoomOn'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Optical Zoom On'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/PictInfo.php b/lib/PHPExiftool/Driver/Tag/Sanyo/PictInfo.php deleted file mode 100644 index e799b34e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/PictInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictInfo extends AbstractTag -{ - - protected $Id = 520; - - protected $Name = 'PictInfo'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Pict Info'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/QuickShot.php b/lib/PHPExiftool/Driver/Tag/Sanyo/QuickShot.php deleted file mode 100644 index 32563b81b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/QuickShot.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class QuickShot extends AbstractTag -{ - - protected $Id = 531; - - protected $Name = 'QuickShot'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Quick Shot'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/RecordShutterRelease.php b/lib/PHPExiftool/Driver/Tag/Sanyo/RecordShutterRelease.php deleted file mode 100644 index a8bdd2307..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/RecordShutterRelease.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordShutterRelease extends AbstractTag -{ - - protected $Id = 535; - - protected $Name = 'RecordShutterRelease'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Record Shutter Release'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Record while down', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Press start, press stop', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/Resaved.php b/lib/PHPExiftool/Driver/Tag/Sanyo/Resaved.php deleted file mode 100644 index b56d6fe95..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/Resaved.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Resaved extends AbstractTag -{ - - protected $Id = 542; - - protected $Name = 'Resaved'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Resaved'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SanyoQuality.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SanyoQuality.php deleted file mode 100644 index 6d251e70c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SanyoQuality.php +++ /dev/null @@ -1,144 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SanyoQuality extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'SanyoQuality'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sanyo Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal/Very Low', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Normal/Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Normal/Medium Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Normal/Medium', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Normal/Medium High', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Normal/High', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Normal/Very High', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Normal/Super High', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Fine/Very Low', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'Fine/Low', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'Fine/Medium Low', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'Fine/Medium', - ), - 260 => array( - 'Id' => 260, - 'Label' => 'Fine/Medium High', - ), - 261 => array( - 'Id' => 261, - 'Label' => 'Fine/High', - ), - 262 => array( - 'Id' => 262, - 'Label' => 'Fine/Very High', - ), - 263 => array( - 'Id' => 263, - 'Label' => 'Fine/Super High', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Super Fine/Very Low', - ), - 513 => array( - 'Id' => 513, - 'Label' => 'Super Fine/Low', - ), - 514 => array( - 'Id' => 514, - 'Label' => 'Super Fine/Medium Low', - ), - 515 => array( - 'Id' => 515, - 'Label' => 'Super Fine/Medium', - ), - 516 => array( - 'Id' => 516, - 'Label' => 'Super Fine/Medium High', - ), - 517 => array( - 'Id' => 517, - 'Label' => 'Super Fine/High', - ), - 518 => array( - 'Id' => 518, - 'Label' => 'Super Fine/Very High', - ), - 519 => array( - 'Id' => 519, - 'Label' => 'Super Fine/Super High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SanyoThumbnail.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SanyoThumbnail.php deleted file mode 100644 index 4003dd758..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SanyoThumbnail.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SanyoThumbnail extends AbstractTag -{ - - protected $Id = 256; - - protected $Name = 'SanyoThumbnail'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Sanyo Thumbnail'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SceneSelect.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SceneSelect.php deleted file mode 100644 index b11f1a0dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SceneSelect.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneSelect extends AbstractTag -{ - - protected $Id = 543; - - protected $Name = 'SceneSelect'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Scene Select'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sport', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'TV', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'User 1', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'User 2', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Lamp', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SelfTimer.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SelfTimer.php deleted file mode 100644 index 24396873a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SelfTimer.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SelfTimer extends AbstractTag -{ - - protected $Id = 532; - - protected $Name = 'SelfTimer'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Self Timer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SequenceShotInterval.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SequenceShotInterval.php deleted file mode 100644 index 12a716bae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SequenceShotInterval.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceShotInterval extends AbstractTag -{ - - protected $Id = 548; - - protected $Name = 'SequenceShotInterval'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sequence Shot Interval'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '5 frames/s', - ), - 1 => array( - 'Id' => 1, - 'Label' => '10 frames/s', - ), - 2 => array( - 'Id' => 2, - 'Label' => '15 frames/s', - ), - 3 => array( - 'Id' => 3, - 'Label' => '20 frames/s', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SequentialShot.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SequentialShot.php deleted file mode 100644 index 8b9a37681..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SequentialShot.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequentialShot extends AbstractTag -{ - - protected $Id = 526; - - protected $Name = 'SequentialShot'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sequential Shot'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Best', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Adjust Exposure', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/Software.php b/lib/PHPExiftool/Driver/Tag/Sanyo/Software.php deleted file mode 100644 index f357835a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/Software.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Software'; - - protected $FullName = 'Sanyo::MP4'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Software'; - - protected $flag_Permanent = true; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SoftwareVersion.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SoftwareVersion.php deleted file mode 100644 index fc3a6d7a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SoftwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftwareVersion extends AbstractTag -{ - - protected $Id = 519; - - protected $Name = 'SoftwareVersion'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'Software Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/SpecialMode.php b/lib/PHPExiftool/Driver/Tag/Sanyo/SpecialMode.php deleted file mode 100644 index f0225595c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/SpecialMode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpecialMode extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'SpecialMode'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Special Mode'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailHeight.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailHeight.php deleted file mode 100644 index 433e7d28b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ThumbnailHeight'; - - protected $FullName = 'Sanyo::Thumbnail'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailLength.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailLength.php deleted file mode 100644 index d444ec042..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailLength extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ThumbnailLength'; - - protected $FullName = 'Sanyo::Thumbnail'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailOffset.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailOffset.php deleted file mode 100644 index 89927c156..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailOffset extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ThumbnailOffset'; - - protected $FullName = 'Sanyo::Thumbnail'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailWidth.php b/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailWidth.php deleted file mode 100644 index 8a86c42f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/ThumbnailWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ThumbnailWidth'; - - protected $FullName = 'Sanyo::Thumbnail'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Thumbnail Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/VoiceMemo.php b/lib/PHPExiftool/Driver/Tag/Sanyo/VoiceMemo.php deleted file mode 100644 index 06195046c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/VoiceMemo.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VoiceMemo extends AbstractTag -{ - - protected $Id = 534; - - protected $Name = 'VoiceMemo'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Voice Memo'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Sanyo/WhiteBalance.php deleted file mode 100644 index 783066401..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/WhiteBalance.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 68; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Sanyo::MOV'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Shade', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Fluorescent', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Tungsten', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sanyo/WideRange.php b/lib/PHPExiftool/Driver/Tag/Sanyo/WideRange.php deleted file mode 100644 index 6fdd2656a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sanyo/WideRange.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sanyo; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WideRange extends AbstractTag -{ - - protected $Id = 527; - - protected $Name = 'WideRange'; - - protected $FullName = 'Sanyo::Main'; - - protected $GroupName = 'Sanyo'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sanyo'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Wide Range'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Scalado/DataLength.php b/lib/PHPExiftool/Driver/Tag/Scalado/DataLength.php deleted file mode 100644 index f286b7219..000000000 --- a/lib/PHPExiftool/Driver/Tag/Scalado/DataLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Scalado; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DataLength extends AbstractTag -{ - - protected $Id = 'SPMO'; - - protected $Name = 'DataLength'; - - protected $FullName = 'Scalado::Main'; - - protected $GroupName = 'Scalado'; - - protected $g0 = 'APP4'; - - protected $g1 = 'Scalado'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Data Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Scalado/PreviewImageHeight.php b/lib/PHPExiftool/Driver/Tag/Scalado/PreviewImageHeight.php deleted file mode 100644 index fab28884b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Scalado/PreviewImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Scalado; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageHeight extends AbstractTag -{ - - protected $Id = 'HGHT'; - - protected $Name = 'PreviewImageHeight'; - - protected $FullName = 'Scalado::Main'; - - protected $GroupName = 'Scalado'; - - protected $g0 = 'APP4'; - - protected $g1 = 'Scalado'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Preview Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Scalado/PreviewImageWidth.php b/lib/PHPExiftool/Driver/Tag/Scalado/PreviewImageWidth.php deleted file mode 100644 index 6b2c558e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Scalado/PreviewImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Scalado; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageWidth extends AbstractTag -{ - - protected $Id = 'WDTH'; - - protected $Name = 'PreviewImageWidth'; - - protected $FullName = 'Scalado::Main'; - - protected $GroupName = 'Scalado'; - - protected $g0 = 'APP4'; - - protected $g1 = 'Scalado'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Preview Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Scalado/PreviewQuality.php b/lib/PHPExiftool/Driver/Tag/Scalado/PreviewQuality.php deleted file mode 100644 index 3753ed805..000000000 --- a/lib/PHPExiftool/Driver/Tag/Scalado/PreviewQuality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Scalado; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewQuality extends AbstractTag -{ - - protected $Id = 'QUAL'; - - protected $Name = 'PreviewQuality'; - - protected $FullName = 'Scalado::Main'; - - protected $GroupName = 'Scalado'; - - protected $g0 = 'APP4'; - - protected $g1 = 'Scalado'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Preview Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/AFMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/AFMode.php deleted file mode 100644 index fde00c14c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/AFMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMode extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'AFMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'AF Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/AFPoint.php b/lib/PHPExiftool/Driver/Tag/Sigma/AFPoint.php deleted file mode 100644 index 698aa4c02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/AFPoint.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoint extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'AFPoint'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'AF Point'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/AdjustmentMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/AdjustmentMode.php deleted file mode 100644 index 1f266881f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/AdjustmentMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdjustmentMode extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'AdjustmentMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Adjustment Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/AutoBracket.php b/lib/PHPExiftool/Driver/Tag/Sigma/AutoBracket.php deleted file mode 100644 index abb78d1e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/AutoBracket.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBracket extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'AutoBracket'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Auto Bracket'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/BurstShot.php b/lib/PHPExiftool/Driver/Tag/Sigma/BurstShot.php deleted file mode 100644 index aeaea0bdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/BurstShot.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BurstShot extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'BurstShot'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Burst Shot'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Calibration.php b/lib/PHPExiftool/Driver/Tag/Sigma/Calibration.php deleted file mode 100644 index 10c60d477..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Calibration.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Calibration extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Calibration'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Calibration'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ChrominanceNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Sigma/ChrominanceNoiseReduction.php deleted file mode 100644 index b66a28f82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ChrominanceNoiseReduction.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChrominanceNoiseReduction extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'ChrominanceNoiseReduction'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Chrominance Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ColorAdjustment.php b/lib/PHPExiftool/Driver/Tag/Sigma/ColorAdjustment.php deleted file mode 100644 index a4d2ef25e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ColorAdjustment.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorAdjustment extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ColorAdjustment'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Adjustment'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/ColorMode.php deleted file mode 100644 index cf8619cd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ColorMode.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sepia', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'B&W', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Standard', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Vivid', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Neutral', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Portrait', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Landscape', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'FOV Classic Blue', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Sigma/ColorSpace.php deleted file mode 100644 index 1eaf3e344..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ColorSpace.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Contrast.php b/lib/PHPExiftool/Driver/Tag/Sigma/Contrast.php deleted file mode 100644 index a2145b6d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Contrast.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'Contrast'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/DigitalFilter.php b/lib/PHPExiftool/Driver/Tag/Sigma/DigitalFilter.php deleted file mode 100644 index 4506120eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/DigitalFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalFilter extends AbstractTag -{ - - protected $Id = 89; - - protected $Name = 'DigitalFilter'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Digital Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/DriveMode.php deleted file mode 100644 index 55e01f86f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/DriveMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'DriveMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Drive Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureAdjust.php b/lib/PHPExiftool/Driver/Tag/Sigma/ExposureAdjust.php deleted file mode 100644 index 885fb9233..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureAdjust.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureAdjust extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'ExposureAdjust'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Exposure Adjust'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Sigma/ExposureCompensation.php deleted file mode 100644 index 7331f1403..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/ExposureMode.php deleted file mode 100644 index 091c75f8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 'A' => array( - 'Id' => 'A', - 'Label' => 'Aperture-priority AE', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'Manual', - ), - 'P' => array( - 'Id' => 'P', - 'Label' => 'Program AE', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'Shutter speed priority AE', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Sigma/ExposureTime.php deleted file mode 100644 index 750ede968..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureTime2.php b/lib/PHPExiftool/Driver/Tag/Sigma/ExposureTime2.php deleted file mode 100644 index ce15f2688..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ExposureTime2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime2'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Exposure Time 2'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/FNumber.php b/lib/PHPExiftool/Driver/Tag/Sigma/FNumber.php deleted file mode 100644 index 233a35b37..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/FileFormat.php b/lib/PHPExiftool/Driver/Tag/Sigma/FileFormat.php deleted file mode 100644 index 9a091bc1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/FileFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileFormat extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FileFormat'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'File Format'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Firmware.php b/lib/PHPExiftool/Driver/Tag/Sigma/Firmware.php deleted file mode 100644 index 484ff033c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Firmware.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Firmware extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Firmware'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Sigma/FlashExposureComp.php deleted file mode 100644 index d77f32499..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/FocusSetting.php b/lib/PHPExiftool/Driver/Tag/Sigma/FocusSetting.php deleted file mode 100644 index 37f0ccad9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/FocusSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusSetting extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'FocusSetting'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Focus Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Highlight.php b/lib/PHPExiftool/Driver/Tag/Sigma/Highlight.php deleted file mode 100644 index 0b599b02e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Highlight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Highlight extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'Highlight'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Highlight'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/LensApertureRange.php b/lib/PHPExiftool/Driver/Tag/Sigma/LensApertureRange.php deleted file mode 100644 index bdec830a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/LensApertureRange.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensApertureRange extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensApertureRange'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Aperture Range'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/LensFocalRange.php b/lib/PHPExiftool/Driver/Tag/Sigma/LensFocalRange.php deleted file mode 100644 index d8785c605..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/LensFocalRange.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFocalRange extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensFocalRange'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens Focal Range'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/LensMaxApertureRange.php b/lib/PHPExiftool/Driver/Tag/Sigma/LensMaxApertureRange.php deleted file mode 100644 index ef90f4c73..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/LensMaxApertureRange.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensMaxApertureRange extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'LensMaxApertureRange'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Lens Max Aperture Range'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/LensType.php b/lib/PHPExiftool/Driver/Tag/Sigma/LensType.php deleted file mode 100644 index a39fed8ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/LensType.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'LensType'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16 => array( - 'Id' => 16, - 'Label' => 'Sigma 18-50mm F3.5-5.6 DC', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Sigma 14mm F2.8 EX Aspherical', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Sigma 17-70mm F2.8-4.5 DC Macro', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'Sigma Lens (145)', - ), - '145.1' => array( - 'Id' => '145.1', - 'Label' => 'Sigma 15-30mm F3.5-4.5 EX DG Aspherical', - ), - '145.2' => array( - 'Id' => '145.2', - 'Label' => 'Sigma 18-50mm F2.8 EX DG', - ), - '145.3' => array( - 'Id' => '145.3', - 'Label' => 'Sigma 20-40mm F2.8 EX DG', - ), - 165 => array( - 'Id' => 165, - 'Label' => 'Sigma 70-200mm F2.8 EX', - ), - 169 => array( - 'Id' => 169, - 'Label' => 'Sigma 18-50mm F2.8 EX DC', - ), - 581 => array( - 'Id' => 581, - 'Label' => 'Sigma 18-50mm F2.8 EX DC Macro', - ), - 583 => array( - 'Id' => 583, - 'Label' => 'Sigma 17-50mm F2.8 EX DC OS', - ), - 1003 => array( - 'Id' => 1003, - 'Label' => 'Sigma 19mm F2.8', - ), - 1004 => array( - 'Id' => 1004, - 'Label' => 'Sigma 30mm F2.8', - ), - 1005 => array( - 'Id' => 1005, - 'Label' => 'Sigma 50mm F2.8 Macro', - ), - 1007 => array( - 'Id' => 1007, - 'Label' => 'Sigma 30mm F2.8', - ), - 8900 => array( - 'Id' => 8900, - 'Label' => 'Sigma 70-300mm F4-5.6 DG OS', - ), - 'A100' => array( - 'Id' => 'A100', - 'Label' => 'Sigma 24-70mm F2.8 DG Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/LuminanceNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Sigma/LuminanceNoiseReduction.php deleted file mode 100644 index 7361f6f22..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/LuminanceNoiseReduction.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceNoiseReduction extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'LuminanceNoiseReduction'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Luminance Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Sigma/MakerNoteVersion.php deleted file mode 100644 index 823dea618..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/MakerNoteVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/MeteringMode.php deleted file mode 100644 index 9aefb453c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/MeteringMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 8 => array( - 'Id' => 8, - 'Label' => 'Multi-segment', - ), - 'A' => array( - 'Id' => 'A', - 'Label' => 'Average', - ), - 'C' => array( - 'Id' => 'C', - 'Label' => 'Center-weighted average', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/PictureMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/PictureMode.php deleted file mode 100644 index 9f516cfc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/PictureMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureMode extends AbstractTag -{ - - protected $Id = 61; - - protected $Name = 'PictureMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Picture Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageLength.php deleted file mode 100644 index e3fdf8cb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageLength.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageSize.php b/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageSize.php deleted file mode 100644 index 98eaf324a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageSize'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageStart.php deleted file mode 100644 index 5b545c34d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/PreviewImageStart.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Quality.php b/lib/PHPExiftool/Driver/Tag/Sigma/Quality.php deleted file mode 100644 index 12cf62761..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Quality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'Quality'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/ResolutionMode.php b/lib/PHPExiftool/Driver/Tag/Sigma/ResolutionMode.php deleted file mode 100644 index 81289d292..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/ResolutionMode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResolutionMode extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ResolutionMode'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Resolution Mode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Saturation.php b/lib/PHPExiftool/Driver/Tag/Sigma/Saturation.php deleted file mode 100644 index f50ccb6b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Saturation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'Saturation'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/SensorTemperature.php b/lib/PHPExiftool/Driver/Tag/Sigma/SensorTemperature.php deleted file mode 100644 index 8e1fac15c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/SensorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SensorTemperature'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sensor Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/Sigma/SerialNumber.php deleted file mode 100644 index 4f326ac26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Shadow.php b/lib/PHPExiftool/Driver/Tag/Sigma/Shadow.php deleted file mode 100644 index 9edcf7f61..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Shadow.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Shadow extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'Shadow'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Shadow'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Sigma/Sharpness.php deleted file mode 100644 index 6bc6895ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Sharpness.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'Sharpness'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/Software.php b/lib/PHPExiftool/Driver/Tag/Sigma/Software.php deleted file mode 100644 index 23a4a6950..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/Software.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 24; - - protected $Name = 'Software'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Software'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Sigma/WhiteBalance.php deleted file mode 100644 index d95fb1787..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/WhiteBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sigma/X3FillLight.php b/lib/PHPExiftool/Driver/Tag/Sigma/X3FillLight.php deleted file mode 100644 index 012e79639..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sigma/X3FillLight.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sigma; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class X3FillLight extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'X3FillLight'; - - protected $FullName = 'Sigma::Main'; - - protected $GroupName = 'Sigma'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sigma'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'X3 Fill Light'; - - protected $flag_Permanent = true; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/AFArea.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/AFArea.php deleted file mode 100644 index 0aadd3118..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/AFArea.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFArea extends AbstractTag -{ - - protected $Id = 'AFAREA'; - - protected $Name = 'AFArea'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF Area'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/AFInFocus.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/AFInFocus.php deleted file mode 100644 index 2bc0501d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/AFInFocus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFInFocus extends AbstractTag -{ - - protected $Id = 'AFINFOCUS'; - - protected $Name = 'AFInFocus'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'AF In Focus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ApertureDisplayed.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ApertureDisplayed.php deleted file mode 100644 index 76880e1a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ApertureDisplayed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureDisplayed extends AbstractTag -{ - - protected $Id = 'AP_DESC'; - - protected $Name = 'ApertureDisplayed'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Aperture Displayed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/BlueAdjust.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/BlueAdjust.php deleted file mode 100644 index 5f50679a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/BlueAdjust.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueAdjust extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'BlueAdjust'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Blue Adjust'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/BracketShot.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/BracketShot.php deleted file mode 100644 index 29e7a161d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/BracketShot.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketShot extends AbstractTag -{ - - protected $Id = 'BRACKET'; - - protected $Name = 'BracketShot'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Bracket Shot'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/BurstShot.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/BurstShot.php deleted file mode 100644 index ffa6d6756..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/BurstShot.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BurstShot extends AbstractTag -{ - - protected $Id = 'BURST'; - - protected $Name = 'BurstShot'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Burst Shot'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/CameraName.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/CameraName.php deleted file mode 100644 index 2454d246a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/CameraName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraName extends AbstractTag -{ - - protected $Id = 'CAMNAME'; - - protected $Name = 'CameraName'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ColorSpace.php deleted file mode 100644 index 39819eff7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ColorSpace.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'COLORSPACE'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Color Space'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Contrast.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Contrast.php deleted file mode 100644 index e98769b72..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Contrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Contrast'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/DateTimeOriginal.php deleted file mode 100644 index 48d2ec3aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'TIME'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/DriveMode.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/DriveMode.php deleted file mode 100644 index 840261d38..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/DriveMode.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 'DRIVE'; - - protected $Name = 'DriveMode'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Drive Mode'; - - protected $Values = array( - '10S' => array( - 'Id' => '10S', - 'Label' => '10 s Timer', - ), - '2S' => array( - 'Id' => '2S', - 'Label' => '2 s Timer', - ), - 'AB' => array( - 'Id' => 'AB', - 'Label' => 'Auto Bracket', - ), - 'MULTI' => array( - 'Id' => 'MULTI', - 'Label' => 'Multi Shot', - ), - 'OFF' => array( - 'Id' => 'OFF', - 'Label' => 'Off', - ), - 'SINGLE' => array( - 'Id' => 'SINGLE', - 'Label' => 'Single Shot', - ), - 'UP' => array( - 'Id' => 'UP', - 'Label' => 'Mirror Up', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/EvalState.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/EvalState.php deleted file mode 100644 index b7182de16..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/EvalState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EvalState extends AbstractTag -{ - - protected $Id = 'EVAL_STATE'; - - protected $Name = 'EvalState'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Eval State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureAdjust.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureAdjust.php deleted file mode 100644 index d25523ba6..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureAdjust.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureAdjust extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ExposureAdjust'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Exposure Adjust'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureCompensation.php deleted file mode 100644 index 45204f88c..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'EXPCOMP'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureProgram.php deleted file mode 100644 index a6e8a87f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureProgram.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 'PMODE'; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Program'; - - protected $Values = array( - 'A' => array( - 'Id' => 'A', - 'Label' => 'Aperture Priority', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'Manual', - ), - 'P' => array( - 'Id' => 'P', - 'Label' => 'Program', - ), - 'S' => array( - 'Id' => 'S', - 'Label' => 'Shutter Priority', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureTime.php deleted file mode 100644 index 055b2942f..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'SHUTTER'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FNumber.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FNumber.php deleted file mode 100644 index f5ac046d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'APERTURE'; - - protected $Name = 'FNumber'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FileVersion.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FileVersion.php deleted file mode 100644 index 1164d2bb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FileVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileVersion extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'FileVersion'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'File Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FirmwareVersion.php deleted file mode 100644 index bd9655eea..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FirmwareVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'FIRMVERS'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashExpComp.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashExpComp.php deleted file mode 100644 index 7913d0c48..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashExpComp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExpComp extends AbstractTag -{ - - protected $Id = 'FLASHEXPCOMP'; - - protected $Name = 'FlashExpComp'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Exp Comp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashMode.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashMode.php deleted file mode 100644 index 186c4fcf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'FLASH'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashPower.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashPower.php deleted file mode 100644 index 5aba8d619..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashPower.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashPower extends AbstractTag -{ - - protected $Id = 'FLASHPOWER'; - - protected $Name = 'FlashPower'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Power'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashTTLMode.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashTTLMode.php deleted file mode 100644 index 7f13276b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashTTLMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashTTLMode extends AbstractTag -{ - - protected $Id = 'FLASHTTLMODE'; - - protected $Name = 'FlashTTLMode'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash TTL Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashType.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashType.php deleted file mode 100644 index f2eabbc79..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FlashType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashType extends AbstractTag -{ - - protected $Id = 'FLASHTYPE'; - - protected $Name = 'FlashType'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Flash Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocalLength.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocalLength.php deleted file mode 100644 index 454022945..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocalLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'FLENGTH'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocalLengthIn35mmFormat.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocalLengthIn35mmFormat.php deleted file mode 100644 index 3fc5b97ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocalLengthIn35mmFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLengthIn35mmFormat extends AbstractTag -{ - - protected $Id = 'FLEQ35MM'; - - protected $Name = 'FocalLengthIn35mmFormat'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focal Length In 35mm Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Focus.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Focus.php deleted file mode 100644 index bfac003e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Focus.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Focus extends AbstractTag -{ - - protected $Id = 'FOCUS'; - - protected $Name = 'Focus'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focus'; - - protected $Values = array( - 'AF' => array( - 'Id' => 'AF', - 'Label' => 'Auto-focus Locked', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'Manual', - ), - 'NO LOCK' => array( - 'Id' => 'NO LOCK', - 'Label' => 'Auto-focus Didn\'t Lock', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocusMode.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocusMode.php deleted file mode 100644 index d7f9397bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/FocusMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'AFMODE'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Focus Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/GreenAdjust.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/GreenAdjust.php deleted file mode 100644 index 586289ea7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/GreenAdjust.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenAdjust extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'GreenAdjust'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Green Adjust'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Highlight.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Highlight.php deleted file mode 100644 index b1e2b26a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Highlight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Highlight extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'Highlight'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Highlight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ISO.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ISO.php deleted file mode 100644 index 47f5d6a70..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ISO.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'ISO'; - - protected $Name = 'ISO'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISO'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageBoardID.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageBoardID.php deleted file mode 100644 index b2c17c006..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageBoardID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageBoardID extends AbstractTag -{ - - protected $Id = 'IMAGEBOARDID'; - - protected $Name = 'ImageBoardID'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Board ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageHeight.php deleted file mode 100644 index a57628bdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageUniqueID.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageUniqueID.php deleted file mode 100644 index 66a9ed4f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageUniqueID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageUniqueID extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ImageUniqueID'; - - protected $FullName = 'SigmaRaw::Header'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Image Unique ID'; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageWidth.php deleted file mode 100644 index 7d1656453..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImagerBoardID.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImagerBoardID.php deleted file mode 100644 index fd332a995..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ImagerBoardID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImagerBoardID extends AbstractTag -{ - - protected $Id = 'IMAGERBOARDID'; - - protected $Name = 'ImagerBoardID'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Imager Board ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/IntegrationTime.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/IntegrationTime.php deleted file mode 100644 index cef68b958..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/IntegrationTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntegrationTime extends AbstractTag -{ - - protected $Id = 'EXPTIME'; - - protected $Name = 'IntegrationTime'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Integration Time'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/JpgFromRaw.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/JpgFromRaw.php deleted file mode 100644 index c4b049781..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/JpgFromRaw.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRaw extends AbstractTag -{ - - protected $Id = 'IMA2'; - - protected $Name = 'JpgFromRaw'; - - protected $FullName = 'SigmaRaw::Main'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Jpg From Raw'; - - protected $flag_Binary = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensApertureRange.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensApertureRange.php deleted file mode 100644 index 0cd1e1e4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensApertureRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensApertureRange extends AbstractTag -{ - - protected $Id = 'LENSARANGE'; - - protected $Name = 'LensApertureRange'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Aperture Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensFocalRange.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensFocalRange.php deleted file mode 100644 index d101a4593..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensFocalRange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFocalRange extends AbstractTag -{ - - protected $Id = 'LENSFRANGE'; - - protected $Name = 'LensFocalRange'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Focal Range'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensType.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensType.php deleted file mode 100644 index fef6b481e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/LensType.php +++ /dev/null @@ -1,114 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'LENSMODEL'; - - protected $Name = 'LensType'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lens Type'; - - protected $Values = array( - 16 => array( - 'Id' => 16, - 'Label' => 'Sigma 18-50mm F3.5-5.6 DC', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Sigma 14mm F2.8 EX Aspherical', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Sigma 17-70mm F2.8-4.5 DC Macro', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'Sigma Lens (145)', - ), - '145.1' => array( - 'Id' => '145.1', - 'Label' => 'Sigma 15-30mm F3.5-4.5 EX DG Aspherical', - ), - '145.2' => array( - 'Id' => '145.2', - 'Label' => 'Sigma 18-50mm F2.8 EX DG', - ), - '145.3' => array( - 'Id' => '145.3', - 'Label' => 'Sigma 20-40mm F2.8 EX DG', - ), - 165 => array( - 'Id' => 165, - 'Label' => 'Sigma 70-200mm F2.8 EX', - ), - 169 => array( - 'Id' => 169, - 'Label' => 'Sigma 18-50mm F2.8 EX DC', - ), - 581 => array( - 'Id' => 581, - 'Label' => 'Sigma 18-50mm F2.8 EX DC Macro', - ), - 583 => array( - 'Id' => 583, - 'Label' => 'Sigma 17-50mm F2.8 EX DC OS', - ), - 1003 => array( - 'Id' => 1003, - 'Label' => 'Sigma 19mm F2.8', - ), - 1004 => array( - 'Id' => 1004, - 'Label' => 'Sigma 30mm F2.8', - ), - 1005 => array( - 'Id' => 1005, - 'Label' => 'Sigma 50mm F2.8 Macro', - ), - 1007 => array( - 'Id' => 1007, - 'Label' => 'Sigma 30mm F2.8', - ), - 8900 => array( - 'Id' => 8900, - 'Label' => 'Sigma 70-300mm F4-5.6 DG OS', - ), - 'A100' => array( - 'Id' => 'A100', - 'Label' => 'Sigma 24-70mm F2.8 DG Macro', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Make.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Make.php deleted file mode 100644 index 471ee2c83..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Make.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'CAMMANUF'; - - protected $Name = 'Make'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/MarkBits.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/MarkBits.php deleted file mode 100644 index 8cdb0c829..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/MarkBits.php +++ /dev/null @@ -1,46 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkBits extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'MarkBits'; - - protected $FullName = 'SigmaRaw::Header'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Mark Bits'; - - protected $Values = array( - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/MeteringMode.php deleted file mode 100644 index 78a4e948a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/MeteringMode.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 'AEMODE'; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Metering Mode'; - - protected $Values = array( - 8 => array( - 'Id' => 8, - 'Label' => '8-segment', - ), - 'A' => array( - 'Id' => 'A', - 'Label' => 'Average', - ), - 'C' => array( - 'Id' => 'C', - 'Label' => 'Center-weighted average', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Model.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Model.php deleted file mode 100644 index 1da8a558b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Model.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'CAMMODEL'; - - protected $Name = 'Model'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/NetExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/NetExposureCompensation.php deleted file mode 100644 index 2ea8747e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/NetExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NetExposureCompensation extends AbstractTag -{ - - protected $Id = 'EXPNET'; - - protected $Name = 'NetExposureCompensation'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Net Exposure Compensation'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/PreviewImage.php deleted file mode 100644 index 4b3647048..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'SigmaRaw::Main'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Preview Image'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Quality.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Quality.php deleted file mode 100644 index c9a51b8c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Quality.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'RESOLUTION'; - - protected $Name = 'Quality'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Quality'; - - protected $Values = array( - 'HI' => array( - 'Id' => 'HI', - 'Label' => 'High', - ), - 'LOW' => array( - 'Id' => 'LOW', - 'Label' => 'Low', - ), - 'MED' => array( - 'Id' => 'MED', - 'Label' => 'Medium', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/RedAdjust.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/RedAdjust.php deleted file mode 100644 index 9270bb2f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/RedAdjust.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedAdjust extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'RedAdjust'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Red Adjust'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Rotation.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Rotation.php deleted file mode 100644 index be6a68246..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Rotation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Rotation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Rotation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Saturation.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Saturation.php deleted file mode 100644 index db2d36816..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Saturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'Saturation'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SceneCaptureType.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/SceneCaptureType.php deleted file mode 100644 index c58f520bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SceneCaptureType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneCaptureType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SceneCaptureType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Scene Capture Type'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SensorID.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/SensorID.php deleted file mode 100644 index 258809d4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SensorID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorID extends AbstractTag -{ - - protected $Id = 'SENSORID'; - - protected $Name = 'SensorID'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SensorTemperature.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/SensorTemperature.php deleted file mode 100644 index 5cc184e7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SensorTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTemperature extends AbstractTag -{ - - protected $Id = 'IMAGERTEMP'; - - protected $Name = 'SensorTemperature'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/SerialNumber.php deleted file mode 100644 index 2f2f5821d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/SerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'CAMSERIAL'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Shadow.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Shadow.php deleted file mode 100644 index 4b90596ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Shadow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Shadow extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Shadow'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Shadow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Sharpness.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Sharpness.php deleted file mode 100644 index 3a16d2539..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Sharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'Sharpness'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ShutterSpeedDisplayed.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/ShutterSpeedDisplayed.php deleted file mode 100644 index 89bd94045..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/ShutterSpeedDisplayed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedDisplayed extends AbstractTag -{ - - protected $Id = 'SH_DESC'; - - protected $Name = 'ShutterSpeedDisplayed'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shutter Speed Displayed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Unused.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/Unused.php deleted file mode 100644 index b834bb973..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/Unused.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Unused extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'Unused'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'Unused'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/VersionBF.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/VersionBF.php deleted file mode 100644 index c5d973f75..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/VersionBF.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionBF extends AbstractTag -{ - - protected $Id = 'VERSION_BF'; - - protected $Name = 'VersionBF'; - - protected $FullName = 'SigmaRaw::Properties'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version BF'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/WhiteBalance.php deleted file mode 100644 index 551e8263b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/WhiteBalance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'White Balance'; - - protected $MaxLength = 32; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SigmaRaw/X3FillLight.php b/lib/PHPExiftool/Driver/Tag/SigmaRaw/X3FillLight.php deleted file mode 100644 index 196234fa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/SigmaRaw/X3FillLight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SigmaRaw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class X3FillLight extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'X3FillLight'; - - protected $FullName = 'SigmaRaw::HeaderExt'; - - protected $GroupName = 'SigmaRaw'; - - protected $g0 = 'SigmaRaw'; - - protected $g1 = 'SigmaRaw'; - - protected $g2 = 'Camera'; - - protected $Type = 'float'; - - protected $Writable = false; - - protected $Description = 'X3 Fill Light'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AELock.php b/lib/PHPExiftool/Driver/Tag/Sony/AELock.php deleted file mode 100644 index cb985412c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AELock.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AELock extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AELock'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AE Lock'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFAreaMode.php b/lib/PHPExiftool/Driver/Tag/Sony/AFAreaMode.php deleted file mode 100644 index 8ca8670b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFAreaMode.php +++ /dev/null @@ -1,230 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFAreaMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'AF Area Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Wide', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Spot', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Local', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Zone', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Wide', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Flexible Spot', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'Zone', - ), - 8 => array( - 'Id' => 4, - 'Label' => 'Expanded Flexible Spot', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Wide', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Local', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Wide', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Local', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - 15 => array( - 'Id' => 1, - 'Label' => 'Wide', - ), - 16 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - 17 => array( - 'Id' => 3, - 'Label' => 'Local', - ), - 18 => array( - 'Id' => 4, - 'Label' => 'Flexible', - ), - 19 => array( - 'Id' => 0, - 'Label' => 'Default', - ), - 20 => array( - 'Id' => 1, - 'Label' => 'Multi', - ), - 21 => array( - 'Id' => 2, - 'Label' => 'Center', - ), - 22 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 23 => array( - 'Id' => 4, - 'Label' => 'Flexible Spot', - ), - 24 => array( - 'Id' => 6, - 'Label' => 'Touch', - ), - 25 => array( - 'Id' => 14, - 'Label' => 'Tracking', - ), - 26 => array( - 'Id' => 15, - 'Label' => 'Face Tracking', - ), - 27 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - 28 => array( - 'Id' => 0, - 'Label' => 'Multi', - ), - 29 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 30 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - 31 => array( - 'Id' => 3, - 'Label' => 'Flexible Spot', - ), - 32 => array( - 'Id' => 10, - 'Label' => 'Selective (for Miniature effect)', - ), - 33 => array( - 'Id' => 14, - 'Label' => 'Tracking', - ), - 34 => array( - 'Id' => 15, - 'Label' => 'Face Tracking', - ), - 35 => array( - 'Id' => 255, - 'Label' => 'Manual', - ), - 36 => array( - 'Id' => 0, - 'Label' => 'Multi', - ), - 37 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 38 => array( - 'Id' => 2, - 'Label' => 'Spot', - ), - 39 => array( - 'Id' => 3, - 'Label' => 'Flexible Spot', - ), - 40 => array( - 'Id' => 10, - 'Label' => 'Selective (for Miniature effect)', - ), - 41 => array( - 'Id' => 11, - 'Label' => 'Zone', - ), - 42 => array( - 'Id' => 14, - 'Label' => 'Tracking', - ), - 43 => array( - 'Id' => 15, - 'Label' => 'Face Tracking', - ), - 44 => array( - 'Id' => 255, - 'Label' => 'Manual', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFAreaModeSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/AFAreaModeSetting.php deleted file mode 100644 index 3d6e8c697..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFAreaModeSetting.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFAreaModeSetting extends AbstractTag -{ - - protected $Id = 8220; - - protected $Name = 'AFAreaModeSetting'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Area Mode Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Wide', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'Local', - ), - 2 => array( - 'Id' => 8, - 'Label' => 'Zone', - ), - 3 => array( - 'Id' => 9, - 'Label' => 'Spot', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Multi', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 6 => array( - 'Id' => 3, - 'Label' => 'Flexible Spot', - ), - 7 => array( - 'Id' => 11, - 'Label' => 'Zone', - ), - 8 => array( - 'Id' => 0, - 'Label' => 'Wide', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Flexible Spot', - ), - 10 => array( - 'Id' => 8, - 'Label' => 'Zone', - ), - 11 => array( - 'Id' => 9, - 'Label' => 'Center', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Expanded Flexible Spot', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFButtonPressed.php b/lib/PHPExiftool/Driver/Tag/Sony/AFButtonPressed.php deleted file mode 100644 index da548e574..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFButtonPressed.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFButtonPressed extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFButtonPressed'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Button Pressed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'No', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFIlluminator.php b/lib/PHPExiftool/Driver/Tag/Sony/AFIlluminator.php deleted file mode 100644 index 64b549768..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFIlluminator.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFIlluminator extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFIlluminator'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Illuminator'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 4 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdj.php b/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdj.php deleted file mode 100644 index 30ba1734e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMicroAdj extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFMicroAdj'; - - protected $FullName = 'Sony::AFInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'AF Micro Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjMode.php b/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjMode.php deleted file mode 100644 index 0c107f625..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMicroAdjMode extends AbstractTag -{ - - protected $Id = 305; - - protected $Name = 'AFMicroAdjMode'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Micro Adj Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjRegisteredLenses.php b/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjRegisteredLenses.php deleted file mode 100644 index d89736459..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjRegisteredLenses.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMicroAdjRegisteredLenses extends AbstractTag -{ - - protected $Id = '305.1'; - - protected $Name = 'AFMicroAdjRegisteredLenses'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Micro Adj Registered Lenses'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjValue.php b/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjValue.php deleted file mode 100644 index 391c8c955..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFMicroAdjValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFMicroAdjValue extends AbstractTag -{ - - protected $Id = 304; - - protected $Name = 'AFMicroAdjValue'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Micro Adj Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFPoint.php b/lib/PHPExiftool/Driver/Tag/Sony/AFPoint.php deleted file mode 100644 index 105184e5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFPoint.php +++ /dev/null @@ -1,474 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPoint extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFPoint'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Upper-left', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Lower-left', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Far Left', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Top (horizontal)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Near Right', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Center (horizontal)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Near Left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Bottom (horizontal)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Top (vertical)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Center (vertical)', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Bottom (vertical)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Far Right', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Upper-right', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Right', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Lower-right', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Upper-middle', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Lower-middle', - ), - 18 => array( - 'Id' => 0, - 'Label' => 'Upper Far Left', - ), - 19 => array( - 'Id' => 1, - 'Label' => 'Upper-left (horizontal)', - ), - 20 => array( - 'Id' => 2, - 'Label' => 'Far Left (horizontal)', - ), - 21 => array( - 'Id' => 3, - 'Label' => 'Left (horizontal)', - ), - 22 => array( - 'Id' => 4, - 'Label' => 'Lower Far Left', - ), - 23 => array( - 'Id' => 5, - 'Label' => 'Lower-left (horizontal)', - ), - 24 => array( - 'Id' => 6, - 'Label' => 'Upper-left (vertical)', - ), - 25 => array( - 'Id' => 7, - 'Label' => 'Left (vertical)', - ), - 26 => array( - 'Id' => 8, - 'Label' => 'Lower-left (vertical)', - ), - 27 => array( - 'Id' => 9, - 'Label' => 'Far Left (vertical)', - ), - 28 => array( - 'Id' => 10, - 'Label' => 'Top (horizontal)', - ), - 29 => array( - 'Id' => 11, - 'Label' => 'Near Right', - ), - 30 => array( - 'Id' => 12, - 'Label' => 'Center (horizontal)', - ), - 31 => array( - 'Id' => 13, - 'Label' => 'Near Left', - ), - 32 => array( - 'Id' => 14, - 'Label' => 'Bottom (horizontal)', - ), - 33 => array( - 'Id' => 15, - 'Label' => 'Top (vertical)', - ), - 34 => array( - 'Id' => 16, - 'Label' => 'Upper-middle', - ), - 35 => array( - 'Id' => 17, - 'Label' => 'Center (vertical)', - ), - 36 => array( - 'Id' => 18, - 'Label' => 'Lower-middle', - ), - 37 => array( - 'Id' => 19, - 'Label' => 'Bottom (vertical)', - ), - 38 => array( - 'Id' => 20, - 'Label' => 'Upper Far Right', - ), - 39 => array( - 'Id' => 21, - 'Label' => 'Upper-right (horizontal)', - ), - 40 => array( - 'Id' => 22, - 'Label' => 'Far Right (horizontal)', - ), - 41 => array( - 'Id' => 23, - 'Label' => 'Right (horizontal)', - ), - 42 => array( - 'Id' => 24, - 'Label' => 'Lower Far Right', - ), - 43 => array( - 'Id' => 25, - 'Label' => 'Lower-right (horizontal)', - ), - 44 => array( - 'Id' => 26, - 'Label' => 'Far Right (vertical)', - ), - 45 => array( - 'Id' => 27, - 'Label' => 'Upper-right (vertical)', - ), - 46 => array( - 'Id' => 28, - 'Label' => 'Right (vertical)', - ), - 47 => array( - 'Id' => 29, - 'Label' => 'Lower-right (vertical)', - ), - 48 => array( - 'Id' => 0, - 'Label' => 'Upper-left', - ), - 49 => array( - 'Id' => 1, - 'Label' => 'Left', - ), - 50 => array( - 'Id' => 2, - 'Label' => 'Lower-left', - ), - 51 => array( - 'Id' => 3, - 'Label' => 'Far Left', - ), - 52 => array( - 'Id' => 4, - 'Label' => 'Bottom Assist-left', - ), - 53 => array( - 'Id' => 5, - 'Label' => 'Bottom', - ), - 54 => array( - 'Id' => 6, - 'Label' => 'Bottom Assist-right', - ), - 55 => array( - 'Id' => 7, - 'Label' => 'Center (7)', - ), - 56 => array( - 'Id' => 8, - 'Label' => 'Center (horizontal)', - ), - 57 => array( - 'Id' => 9, - 'Label' => 'Center (9)', - ), - 58 => array( - 'Id' => 10, - 'Label' => 'Center (10)', - ), - 59 => array( - 'Id' => 11, - 'Label' => 'Center (11)', - ), - 60 => array( - 'Id' => 12, - 'Label' => 'Center (12)', - ), - 61 => array( - 'Id' => 13, - 'Label' => 'Center (vertical)', - ), - 62 => array( - 'Id' => 14, - 'Label' => 'Center (14)', - ), - 63 => array( - 'Id' => 15, - 'Label' => 'Top Assist-left', - ), - 64 => array( - 'Id' => 16, - 'Label' => 'Top', - ), - 65 => array( - 'Id' => 17, - 'Label' => 'Top Assist-right', - ), - 66 => array( - 'Id' => 18, - 'Label' => 'Far Right', - ), - 67 => array( - 'Id' => 19, - 'Label' => 'Upper-right', - ), - 68 => array( - 'Id' => 20, - 'Label' => 'Right', - ), - 69 => array( - 'Id' => 21, - 'Label' => 'Lower-right', - ), - 70 => array( - 'Id' => 22, - 'Label' => 'Center F2.8', - ), - 71 => array( - 'Id' => 0, - 'Label' => 'Top-right', - ), - 72 => array( - 'Id' => 1, - 'Label' => 'Bottom-right', - ), - 73 => array( - 'Id' => 2, - 'Label' => 'Bottom', - ), - 74 => array( - 'Id' => 3, - 'Label' => 'Middle Horizontal', - ), - 75 => array( - 'Id' => 4, - 'Label' => 'Center Vertical', - ), - 76 => array( - 'Id' => 5, - 'Label' => 'Top', - ), - 77 => array( - 'Id' => 6, - 'Label' => 'Top-left', - ), - 78 => array( - 'Id' => 7, - 'Label' => 'Bottom-left', - ), - 79 => array( - 'Id' => 0, - 'Label' => 'Top-right', - ), - 80 => array( - 'Id' => 1, - 'Label' => 'Bottom-right', - ), - 81 => array( - 'Id' => 2, - 'Label' => 'Bottom', - ), - 82 => array( - 'Id' => 3, - 'Label' => 'Middle Horizontal', - ), - 83 => array( - 'Id' => 4, - 'Label' => 'Center Vertical', - ), - 84 => array( - 'Id' => 5, - 'Label' => 'Top', - ), - 85 => array( - 'Id' => 6, - 'Label' => 'Top-left', - ), - 86 => array( - 'Id' => 7, - 'Label' => 'Bottom-left', - ), - 87 => array( - 'Id' => 0, - 'Label' => 'Upper-left', - ), - 88 => array( - 'Id' => 1, - 'Label' => 'Left', - ), - 89 => array( - 'Id' => 2, - 'Label' => 'Lower-left', - ), - 90 => array( - 'Id' => 3, - 'Label' => 'Far Left', - ), - 91 => array( - 'Id' => 4, - 'Label' => 'Top (horizontal)', - ), - 92 => array( - 'Id' => 5, - 'Label' => 'Near Right', - ), - 93 => array( - 'Id' => 6, - 'Label' => 'Center (horizontal)', - ), - 94 => array( - 'Id' => 7, - 'Label' => 'Near Left', - ), - 95 => array( - 'Id' => 8, - 'Label' => 'Bottom (horizontal)', - ), - 96 => array( - 'Id' => 9, - 'Label' => 'Top (vertical)', - ), - 97 => array( - 'Id' => 10, - 'Label' => 'Center (vertical)', - ), - 98 => array( - 'Id' => 11, - 'Label' => 'Bottom (vertical)', - ), - 99 => array( - 'Id' => 12, - 'Label' => 'Far Right', - ), - 100 => array( - 'Id' => 13, - 'Label' => 'Upper-right', - ), - 101 => array( - 'Id' => 14, - 'Label' => 'Right', - ), - 102 => array( - 'Id' => 15, - 'Label' => 'Lower-right', - ), - 103 => array( - 'Id' => 16, - 'Label' => 'Upper-middle', - ), - 104 => array( - 'Id' => 17, - 'Label' => 'Lower-middle', - ), - 105 => array( - 'Id' => 255, - 'Label' => '(none)', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFPointAtShutterRelease.php b/lib/PHPExiftool/Driver/Tag/Sony/AFPointAtShutterRelease.php deleted file mode 100644 index bd03e4de0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFPointAtShutterRelease.php +++ /dev/null @@ -1,250 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointAtShutterRelease extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'AFPointAtShutterRelease'; - - protected $FullName = 'Sony::AFInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point At Shutter Release'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Upper-left', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Lower-left', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Far Left', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Top (horizontal)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Near Right', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Center (horizontal)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Near Left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Bottom (horizontal)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Top (vertical)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Center (vertical)', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Bottom (vertical)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Far Right', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Upper-right', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Right', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Lower-right', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Upper-middle', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Lower-middle', - ), - 18 => array( - 'Id' => 30, - 'Label' => '(out of focus)', - ), - 19 => array( - 'Id' => 0, - 'Label' => 'Upper Far Left', - ), - 20 => array( - 'Id' => 1, - 'Label' => 'Upper-left (horizontal)', - ), - 21 => array( - 'Id' => 2, - 'Label' => 'Far Left (horizontal)', - ), - 22 => array( - 'Id' => 3, - 'Label' => 'Left (horizontal)', - ), - 23 => array( - 'Id' => 4, - 'Label' => 'Lower Far Left', - ), - 24 => array( - 'Id' => 5, - 'Label' => 'Lower-left (horizontal)', - ), - 25 => array( - 'Id' => 6, - 'Label' => 'Upper-left (vertical)', - ), - 26 => array( - 'Id' => 7, - 'Label' => 'Left (vertical)', - ), - 27 => array( - 'Id' => 8, - 'Label' => 'Lower-left (vertical)', - ), - 28 => array( - 'Id' => 9, - 'Label' => 'Far Left (vertical)', - ), - 29 => array( - 'Id' => 10, - 'Label' => 'Top (horizontal)', - ), - 30 => array( - 'Id' => 11, - 'Label' => 'Near Right', - ), - 31 => array( - 'Id' => 12, - 'Label' => 'Center (horizontal)', - ), - 32 => array( - 'Id' => 13, - 'Label' => 'Near Left', - ), - 33 => array( - 'Id' => 14, - 'Label' => 'Bottom (horizontal)', - ), - 34 => array( - 'Id' => 15, - 'Label' => 'Top (vertical)', - ), - 35 => array( - 'Id' => 16, - 'Label' => 'Upper-middle', - ), - 36 => array( - 'Id' => 17, - 'Label' => 'Center (vertical)', - ), - 37 => array( - 'Id' => 18, - 'Label' => 'Lower-middle', - ), - 38 => array( - 'Id' => 19, - 'Label' => 'Bottom (vertical)', - ), - 39 => array( - 'Id' => 20, - 'Label' => 'Upper Far Right', - ), - 40 => array( - 'Id' => 21, - 'Label' => 'Upper-right (horizontal)', - ), - 41 => array( - 'Id' => 22, - 'Label' => 'Far Right (horizontal)', - ), - 42 => array( - 'Id' => 23, - 'Label' => 'Right (horizontal)', - ), - 43 => array( - 'Id' => 24, - 'Label' => 'Lower Far Right', - ), - 44 => array( - 'Id' => 25, - 'Label' => 'Lower-right (horizontal)', - ), - 45 => array( - 'Id' => 26, - 'Label' => 'Far Right (vertical)', - ), - 46 => array( - 'Id' => 27, - 'Label' => 'Upper-right (vertical)', - ), - 47 => array( - 'Id' => 28, - 'Label' => 'Right (vertical)', - ), - 48 => array( - 'Id' => 29, - 'Label' => 'Lower-right (vertical)', - ), - 49 => array( - 'Id' => 30, - 'Label' => '(out of focus)', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFPointInFocus.php b/lib/PHPExiftool/Driver/Tag/Sony/AFPointInFocus.php deleted file mode 100644 index 188ff7e03..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFPointInFocus.php +++ /dev/null @@ -1,250 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointInFocus extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'AFPointInFocus'; - - protected $FullName = 'Sony::AFInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point In Focus'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Upper-left', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Left', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Lower-left', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Far Left', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Top (horizontal)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Near Right', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Center (horizontal)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Near Left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Bottom (horizontal)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Top (vertical)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Center (vertical)', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Bottom (vertical)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Far Right', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Upper-right', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Right', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Lower-right', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Upper-middle', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Lower-middle', - ), - 18 => array( - 'Id' => 255, - 'Label' => '(none)', - ), - 19 => array( - 'Id' => 0, - 'Label' => 'Upper Far Left', - ), - 20 => array( - 'Id' => 1, - 'Label' => 'Upper-left (horizontal)', - ), - 21 => array( - 'Id' => 2, - 'Label' => 'Far Left (horizontal)', - ), - 22 => array( - 'Id' => 3, - 'Label' => 'Left (horizontal)', - ), - 23 => array( - 'Id' => 4, - 'Label' => 'Lower Far Left', - ), - 24 => array( - 'Id' => 5, - 'Label' => 'Lower-left (horizontal)', - ), - 25 => array( - 'Id' => 6, - 'Label' => 'Upper-left (vertical)', - ), - 26 => array( - 'Id' => 7, - 'Label' => 'Left (vertical)', - ), - 27 => array( - 'Id' => 8, - 'Label' => 'Lower-left (vertical)', - ), - 28 => array( - 'Id' => 9, - 'Label' => 'Far Left (vertical)', - ), - 29 => array( - 'Id' => 10, - 'Label' => 'Top (horizontal)', - ), - 30 => array( - 'Id' => 11, - 'Label' => 'Near Right', - ), - 31 => array( - 'Id' => 12, - 'Label' => 'Center (horizontal)', - ), - 32 => array( - 'Id' => 13, - 'Label' => 'Near Left', - ), - 33 => array( - 'Id' => 14, - 'Label' => 'Bottom (horizontal)', - ), - 34 => array( - 'Id' => 15, - 'Label' => 'Top (vertical)', - ), - 35 => array( - 'Id' => 16, - 'Label' => 'Upper-middle', - ), - 36 => array( - 'Id' => 17, - 'Label' => 'Center (vertical)', - ), - 37 => array( - 'Id' => 18, - 'Label' => 'Lower-middle', - ), - 38 => array( - 'Id' => 19, - 'Label' => 'Bottom (vertical)', - ), - 39 => array( - 'Id' => 20, - 'Label' => 'Upper Far Right', - ), - 40 => array( - 'Id' => 21, - 'Label' => 'Upper-right (horizontal)', - ), - 41 => array( - 'Id' => 22, - 'Label' => 'Far Right (horizontal)', - ), - 42 => array( - 'Id' => 23, - 'Label' => 'Right (horizontal)', - ), - 43 => array( - 'Id' => 24, - 'Label' => 'Lower Far Right', - ), - 44 => array( - 'Id' => 25, - 'Label' => 'Lower-right (horizontal)', - ), - 45 => array( - 'Id' => 26, - 'Label' => 'Far Right (vertical)', - ), - 46 => array( - 'Id' => 27, - 'Label' => 'Upper-right (vertical)', - ), - 47 => array( - 'Id' => 28, - 'Label' => 'Right (vertical)', - ), - 48 => array( - 'Id' => 29, - 'Label' => 'Lower-right (vertical)', - ), - 49 => array( - 'Id' => 255, - 'Label' => '(none)', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFPointSelected.php b/lib/PHPExiftool/Driver/Tag/Sony/AFPointSelected.php deleted file mode 100644 index 7bdc93646..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFPointSelected.php +++ /dev/null @@ -1,330 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSelected extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFPointSelected'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Point Selected'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Lower-right', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Upper-left', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Far Right', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Far Left', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 15 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 16 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 17 => array( - 'Id' => 5, - 'Label' => 'Lower-right', - ), - 18 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 19 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 20 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 21 => array( - 'Id' => 9, - 'Label' => 'Upper-left', - ), - 22 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 23 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 24 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 25 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 26 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 27 => array( - 'Id' => 5, - 'Label' => 'Lower-right', - ), - 28 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 29 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 30 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 31 => array( - 'Id' => 9, - 'Label' => 'Upper-left', - ), - 32 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 33 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 34 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 35 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 36 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 37 => array( - 'Id' => 5, - 'Label' => 'Lower-right', - ), - 38 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 39 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 40 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 41 => array( - 'Id' => 9, - 'Label' => 'Upper-left', - ), - 42 => array( - 'Id' => 10, - 'Label' => 'Far Right', - ), - 43 => array( - 'Id' => 11, - 'Label' => 'Far Left', - ), - 44 => array( - 'Id' => 12, - 'Label' => 'Upper-middle', - ), - 45 => array( - 'Id' => 13, - 'Label' => 'Near Right', - ), - 46 => array( - 'Id' => 14, - 'Label' => 'Lower-middle', - ), - 47 => array( - 'Id' => 15, - 'Label' => 'Near Left', - ), - 48 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 49 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 50 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 51 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 52 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 53 => array( - 'Id' => 5, - 'Label' => 'Lower-right', - ), - 54 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 55 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 56 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 57 => array( - 'Id' => 9, - 'Label' => 'Upper-left', - ), - 58 => array( - 'Id' => 10, - 'Label' => 'Far Right', - ), - 59 => array( - 'Id' => 11, - 'Label' => 'Far Left', - ), - 60 => array( - 'Id' => 12, - 'Label' => 'Upper-middle', - ), - 61 => array( - 'Id' => 13, - 'Label' => 'Near Right', - ), - 62 => array( - 'Id' => 14, - 'Label' => 'Lower-middle', - ), - 63 => array( - 'Id' => 15, - 'Label' => 'Near Left', - ), - 64 => array( - 'Id' => 16, - 'Label' => 'Upper Far Right', - ), - 65 => array( - 'Id' => 17, - 'Label' => 'Lower Far Right', - ), - 66 => array( - 'Id' => 18, - 'Label' => 'Lower Far Left', - ), - 67 => array( - 'Id' => 19, - 'Label' => 'Upper Far Left', - ), - 68 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 69 => array( - 'Id' => 40, - 'Label' => 'Center', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFPointSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/AFPointSetting.php deleted file mode 100644 index 76d1fb625..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFPointSetting.php +++ /dev/null @@ -1,128 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFPointSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF Point Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Lower-right', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 6 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 7 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 8 => array( - 'Id' => 9, - 'Label' => 'Upper-left', - ), - 9 => array( - 'Id' => 10, - 'Label' => 'Far Right', - ), - 10 => array( - 'Id' => 11, - 'Label' => 'Far Left', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'Upper-right', - ), - 14 => array( - 'Id' => 4, - 'Label' => 'Right', - ), - 15 => array( - 'Id' => 5, - 'Label' => 'Lower-right', - ), - 16 => array( - 'Id' => 6, - 'Label' => 'Bottom', - ), - 17 => array( - 'Id' => 7, - 'Label' => 'Lower-left', - ), - 18 => array( - 'Id' => 8, - 'Label' => 'Left', - ), - 19 => array( - 'Id' => 9, - 'Label' => 'Upper-left', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFPointsSelected.php b/lib/PHPExiftool/Driver/Tag/Sony/AFPointsSelected.php deleted file mode 100644 index 36a808119..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFPointsSelected.php +++ /dev/null @@ -1,144 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsSelected extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AFPointsSelected'; - - protected $FullName = 'Sony::Tag940a'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'AF Points Selected'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Upper-right', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Right', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Lower-right', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Bottom', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Lower-left', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Left', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'Upper-left', - ), - 512 => array( - 'Id' => 512, - 'Label' => 'Far Right', - ), - 1024 => array( - 'Id' => 1024, - 'Label' => 'Far Left', - ), - 2048 => array( - 'Id' => 2048, - 'Label' => 'Upper-middle', - ), - 4096 => array( - 'Id' => 4096, - 'Label' => 'Near Right', - ), - 8192 => array( - 'Id' => 8192, - 'Label' => 'Lower-middle', - ), - 16384 => array( - 'Id' => 16384, - 'Label' => 'Near Left', - ), - 30721 => array( - 'Id' => 30721, - 'Label' => 'Center Zone', - ), - 32768 => array( - 'Id' => 32768, - 'Label' => 'Upper Far Right', - ), - 65536 => array( - 'Id' => 65536, - 'Label' => 'Lower Far Right', - ), - 98844 => array( - 'Id' => 98844, - 'Label' => 'Right Zone', - ), - 131072 => array( - 'Id' => 131072, - 'Label' => 'Lower Far Left', - ), - 262144 => array( - 'Id' => 262144, - 'Label' => 'Upper Far Left', - ), - 394688 => array( - 'Id' => 394688, - 'Label' => 'Left Zone', - ), - 2147483647 => array( - 'Id' => 2147483647, - 'Label' => '(all)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFPointsUsed.php b/lib/PHPExiftool/Driver/Tag/Sony/AFPointsUsed.php deleted file mode 100644 index fc297870c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFPointsUsed.php +++ /dev/null @@ -1,140 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFPointsUsed extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AFPointsUsed'; - - protected $FullName = 'Sony::AFInfo2'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'AF Points Used'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Center', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Top', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Upper-right', - ), - 4 => array( - 'Id' => 8, - 'Label' => 'Right', - ), - 5 => array( - 'Id' => 16, - 'Label' => 'Lower-right', - ), - 6 => array( - 'Id' => 32, - 'Label' => 'Bottom', - ), - 7 => array( - 'Id' => 64, - 'Label' => 'Lower-left', - ), - 8 => array( - 'Id' => 128, - 'Label' => 'Left', - ), - 9 => array( - 'Id' => 256, - 'Label' => 'Upper-left', - ), - 10 => array( - 'Id' => 512, - 'Label' => 'Far Right', - ), - 11 => array( - 'Id' => 1024, - 'Label' => 'Far Left', - ), - 12 => array( - 'Id' => 2048, - 'Label' => 'Upper-middle', - ), - 13 => array( - 'Id' => 4096, - 'Label' => 'Near Right', - ), - 14 => array( - 'Id' => 8192, - 'Label' => 'Lower-middle', - ), - 15 => array( - 'Id' => 16384, - 'Label' => 'Near Left', - ), - 16 => array( - 'Id' => 32768, - 'Label' => 'Upper Far Right', - ), - 17 => array( - 'Id' => 65536, - 'Label' => 'Lower Far Right', - ), - 18 => array( - 'Id' => 131072, - 'Label' => 'Lower Far Left', - ), - 19 => array( - 'Id' => 262144, - 'Label' => 'Upper Far Left', - ), - 20 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 21 => array( - 'Id' => 549755813888, - 'Label' => 'Center', - ), - ); - - protected $MaxLength = 'mixed'; - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusActiveSensor.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusActiveSensor.php deleted file mode 100644 index 7a547a371..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusActiveSensor.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusActiveSensor extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusActiveSensor'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Active Sensor'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottom.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottom.php deleted file mode 100644 index c250d9e9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottom.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottom extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusBottom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomAssistLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomAssistLeft.php deleted file mode 100644 index b0362276f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomAssistLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomAssistLeft extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'AFStatusBottomAssist-left'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom Assist-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomAssistRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomAssistRight.php deleted file mode 100644 index 6b0a25dec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomAssistRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomAssistRight extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'AFStatusBottomAssist-right'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom Assist-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomHorizontal.php deleted file mode 100644 index 37077e2c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomHorizontal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusBottomHorizontal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomLeft.php deleted file mode 100644 index 46201c128..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomLeft extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'AFStatusBottom-left'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomRight.php deleted file mode 100644 index e8f460bfa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomRight extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'AFStatusBottom-right'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomVertical.php deleted file mode 100644 index 0872baf7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusBottomVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusBottomVertical extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusBottomVertical'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Bottom Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter10.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter10.php deleted file mode 100644 index dd7688b59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter10.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenter10 extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'AFStatusCenter-10'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center-10'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter11.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter11.php deleted file mode 100644 index a624b74ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter11.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenter11 extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'AFStatusCenter-11'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center-11'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter12.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter12.php deleted file mode 100644 index 22d74f60d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter12.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenter12 extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'AFStatusCenter-12'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center-12'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter14.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter14.php deleted file mode 100644 index 0fc636531..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter14.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenter14 extends AbstractTag -{ - - protected $Id = 60; - - protected $Name = 'AFStatusCenter-14'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center-14'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter7.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter7.php deleted file mode 100644 index 6d9d5f6e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter7.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenter7 extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'AFStatusCenter-7'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center-7'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter9.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter9.php deleted file mode 100644 index 71ae23afc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenter9.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenter9 extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'AFStatusCenter-9'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center-9'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterF28.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterF28.php deleted file mode 100644 index a07438357..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterF28.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenterF28 extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'AFStatusCenterF2-8'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Center F2-8'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterHorizontal.php deleted file mode 100644 index bb7b9d9b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenterHorizontal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'mixed'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'mixed'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterVertical.php deleted file mode 100644 index 527b6628d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusCenterVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusCenterVertical extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'mixed'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'mixed'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeft.php deleted file mode 100644 index 8802573d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusFarLeft extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusFarLeft'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Far Left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeftHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeftHorizontal.php deleted file mode 100644 index 3d3eede74..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeftHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusFarLeftHorizontal extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AFStatusFarLeftHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Far Left Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeftVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeftVertical.php deleted file mode 100644 index a8e69c461..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarLeftVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusFarLeftVertical extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'AFStatusFarLeftVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Far Left Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRight.php deleted file mode 100644 index c7e34bd65..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusFarRight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusFarRight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Far Right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRightHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRightHorizontal.php deleted file mode 100644 index 0797a260d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRightHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusFarRightHorizontal extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'AFStatusFarRightHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Far Right Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRightVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRightVertical.php deleted file mode 100644 index c44dcc5ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusFarRightVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusFarRightVertical extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'AFStatusFarRightVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Far Right Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeft.php deleted file mode 100644 index 564882df7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLeft extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusLeft'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeftHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeftHorizontal.php deleted file mode 100644 index 356af2a24..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeftHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLeftHorizontal extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'AFStatusLeftHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Left Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeftVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeftVertical.php deleted file mode 100644 index 0393db761..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLeftVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLeftVertical extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'AFStatusLeftVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Left Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerFarLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerFarLeft.php deleted file mode 100644 index fcae92087..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerFarLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerFarLeft extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'AFStatusLowerFarLeft'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower Far Left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerFarRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerFarRight.php deleted file mode 100644 index 71dd9c765..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerFarRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerFarRight extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'AFStatusLowerFarRight'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower Far Right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeft.php deleted file mode 100644 index a908e4452..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerLeft extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusLower-left'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeftHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeftHorizontal.php deleted file mode 100644 index 1d496ceb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeftHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerLeftHorizontal extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'AFStatusLower-leftHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower-left Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeftVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeftVertical.php deleted file mode 100644 index 52907121b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerLeftVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerLeftVertical extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'AFStatusLower-leftVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower-left Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerMiddle.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerMiddle.php deleted file mode 100644 index 8c2a3b9c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerMiddle.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerMiddle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusLower-middle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower-middle'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRight.php deleted file mode 100644 index 81a47a256..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerRight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusLower-right'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRightHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRightHorizontal.php deleted file mode 100644 index b866d1d9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRightHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerRightHorizontal extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'AFStatusLower-rightHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower-right Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRightVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRightVertical.php deleted file mode 100644 index 6e3b99e72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusLowerRightVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusLowerRightVertical extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'AFStatusLower-rightVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Lower-right Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusMiddleHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusMiddleHorizontal.php deleted file mode 100644 index a5fa9634e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusMiddleHorizontal.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusMiddleHorizontal extends AbstractTag -{ - - protected $Id = 35; - - protected $Name = 'AFStatusMiddleHorizontal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Middle Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusNearLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusNearLeft.php deleted file mode 100644 index decae75a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusNearLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusNearLeft extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusNearLeft'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Near Left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusNearRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusNearRight.php deleted file mode 100644 index 7ad4736a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusNearRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusNearRight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusNearRight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Near Right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRight.php deleted file mode 100644 index 7d5b994b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusRight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusRight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRightHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRightHorizontal.php deleted file mode 100644 index 536b2312a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRightHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusRightHorizontal extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'AFStatusRightHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Right Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRightVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRightVertical.php deleted file mode 100644 index 1bf7ff82b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusRightVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusRightVertical extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'AFStatusRightVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Right Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTop.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTop.php deleted file mode 100644 index 7e0865acc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTop.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTop extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusTop'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopAssistLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopAssistLeft.php deleted file mode 100644 index 1f2d71a14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopAssistLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopAssistLeft extends AbstractTag -{ - - protected $Id = 62; - - protected $Name = 'AFStatusTopAssist-left'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top Assist-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopAssistRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopAssistRight.php deleted file mode 100644 index e5d417753..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopAssistRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopAssistRight extends AbstractTag -{ - - protected $Id = 66; - - protected $Name = 'AFStatusTopAssist-right'; - - protected $FullName = 'Sony::CameraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top Assist-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopHorizontal.php deleted file mode 100644 index 084c10682..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopHorizontal extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusTopHorizontal'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopLeft.php deleted file mode 100644 index 6e9167612..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopLeft extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'AFStatusTop-left'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopRight.php deleted file mode 100644 index b14fffa0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopRight.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopRight extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'AFStatusTop-right'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopVertical.php deleted file mode 100644 index 1ff343980..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusTopVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusTopVertical extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusTopVertical'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Top Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperFarLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperFarLeft.php deleted file mode 100644 index 895666674..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperFarLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperFarLeft extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'AFStatusUpperFarLeft'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper Far Left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperFarRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperFarRight.php deleted file mode 100644 index 514ced9fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperFarRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperFarRight extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'AFStatusUpperFarRight'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper Far Right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeft.php deleted file mode 100644 index fa8e72a11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeft.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperLeft extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusUpper-left'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper-left'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeftHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeftHorizontal.php deleted file mode 100644 index 028275eef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeftHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperLeftHorizontal extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AFStatusUpper-leftHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper-left Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeftVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeftVertical.php deleted file mode 100644 index 7730d59d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperLeftVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperLeftVertical extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'AFStatusUpper-leftVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper-left Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperMiddle.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperMiddle.php deleted file mode 100644 index df4e64116..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperMiddle.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperMiddle extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'AFStatusUpper-middle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper-middle'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRight.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRight.php deleted file mode 100644 index c60586b49..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRight.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperRight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AFStatusUpper-right'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper-right'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRightHorizontal.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRightHorizontal.php deleted file mode 100644 index 4b8974e77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRightHorizontal.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperRightHorizontal extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'AFStatusUpper-rightHorizontal'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper-right Horizontal'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRightVertical.php b/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRightVertical.php deleted file mode 100644 index c3c68574c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFStatusUpperRightVertical.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFStatusUpperRightVertical extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'AFStatusUpper-rightVertical'; - - protected $FullName = 'Sony::AFStatus19'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'AF Status Upper-right Vertical'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Out of Focus', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'In Focus', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFType.php b/lib/PHPExiftool/Driver/Tag/Sony/AFType.php deleted file mode 100644 index f52d9e9dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFType.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFType extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'AFType'; - - protected $FullName = 'Sony::AFInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'AF Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => '15-point', - ), - 2 => array( - 'Id' => 2, - 'Label' => '19-point', - ), - 3 => array( - 'Id' => 3, - 'Label' => '79-point', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AFWithShutter.php b/lib/PHPExiftool/Driver/Tag/Sony/AFWithShutter.php deleted file mode 100644 index bbf33d97e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AFWithShutter.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AFWithShutter extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'AFWithShutter'; - - protected $FullName = 'Sony::CameraSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'AF With Shutter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'On', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AmbientTemperature.php b/lib/PHPExiftool/Driver/Tag/Sony/AmbientTemperature.php deleted file mode 100644 index c78021c15..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AmbientTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AmbientTemperature extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AmbientTemperature'; - - protected $FullName = 'Sony::Tag9402'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Ambient Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AntiBlur.php b/lib/PHPExiftool/Driver/Tag/Sony/AntiBlur.php deleted file mode 100644 index 90066bbbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AntiBlur.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AntiBlur extends AbstractTag -{ - - protected $Id = 45131; - - protected $Name = 'Anti-Blur'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Anti-Blur'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On (Continuous)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'On (Shooting)', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ApertureSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/ApertureSetting.php deleted file mode 100644 index 1396afb03..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ApertureSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ApertureSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Aperture Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AspectRatio.php b/lib/PHPExiftool/Driver/Tag/Sony/AspectRatio.php deleted file mode 100644 index e33afd765..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AspectRatio.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AspectRatio extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'AspectRatio'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Aspect Ratio'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => '3:2', - ), - 1 => array( - 'Id' => 2, - 'Label' => '16:9', - ), - 2 => array( - 'Id' => 4, - 'Label' => '3:2', - ), - 3 => array( - 'Id' => 8, - 'Label' => '16:9', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/AutoPortraitFramed.php b/lib/PHPExiftool/Driver/Tag/Sony/AutoPortraitFramed.php deleted file mode 100644 index fb9ae03a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/AutoPortraitFramed.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoPortraitFramed extends AbstractTag -{ - - protected $Id = 8214; - - protected $Name = 'AutoPortraitFramed'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Auto Portrait Framed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Barcode.php b/lib/PHPExiftool/Driver/Tag/Sony/Barcode.php deleted file mode 100644 index 7d49d2e79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Barcode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Barcode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Barcode'; - - protected $FullName = 'Sony::PIC'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Barcode'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BaseISO.php b/lib/PHPExiftool/Driver/Tag/Sony/BaseISO.php deleted file mode 100644 index 496e16a93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BaseISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseISO extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'BaseISO'; - - protected $FullName = 'Sony::Tag9405b'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Base ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevel.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevel.php deleted file mode 100644 index a47e506b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BatteryLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Battery Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevelGrip1.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevelGrip1.php deleted file mode 100644 index f04261af0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevelGrip1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryLevelGrip1 extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'BatteryLevelGrip1'; - - protected $FullName = 'Sony::Tag9406'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Battery Level Grip 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevelGrip2.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevelGrip2.php deleted file mode 100644 index 8b4d2e4cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryLevelGrip2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryLevelGrip2 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'BatteryLevelGrip2'; - - protected $FullName = 'Sony::Tag9406'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Battery Level Grip 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryState.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryState.php deleted file mode 100644 index a24c960fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryState.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryState extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BatteryState'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Battery State'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 2, - 'Label' => 'Empty', - ), - 1 => array( - 'Id' => 3, - 'Label' => 'Very Low', - ), - 2 => array( - 'Id' => 4, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 5, - 'Label' => 'Sufficient', - ), - 4 => array( - 'Id' => 6, - 'Label' => 'Full', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Empty', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'Half full', - ), - 8 => array( - 'Id' => 4, - 'Label' => 'Almost full', - ), - 9 => array( - 'Id' => 5, - 'Label' => 'Full', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryTemperature.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryTemperature.php deleted file mode 100644 index fe8b9a66f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BatteryTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Battery Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryUnknown.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryUnknown.php deleted file mode 100644 index eb2e4f578..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryUnknown extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BatteryUnknown'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Battery Unknown'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage.php deleted file mode 100644 index 1056ea728..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryVoltage extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'BatteryVoltage'; - - protected $FullName = 'Sony::ExtraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = false; - - protected $Description = 'Battery Voltage'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage1.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage1.php deleted file mode 100644 index 2797a2a53..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryVoltage1 extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'BatteryVoltage1'; - - protected $FullName = 'Sony::ExtraInfo3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Battery Voltage 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage2.php b/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage2.php deleted file mode 100644 index a331ee37e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BatteryVoltage2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BatteryVoltage2 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'BatteryVoltage2'; - - protected $FullName = 'Sony::ExtraInfo3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Battery Voltage 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BoardTemperature.php b/lib/PHPExiftool/Driver/Tag/Sony/BoardTemperature.php deleted file mode 100644 index 54134ef7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BoardTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BoardTemperature extends AbstractTag -{ - - protected $Id = 'Temp:Clbt:'; - - protected $Name = 'BoardTemperature'; - - protected $FullName = 'Sony::PIC'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Board Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BracketShotNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/BracketShotNumber.php deleted file mode 100644 index 73bfb186f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BracketShotNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketShotNumber extends AbstractTag -{ - - protected $Id = 43; - - protected $Name = 'BracketShotNumber'; - - protected $FullName = 'Sony::FocusInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Bracket Shot Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BracketShotNumber2.php b/lib/PHPExiftool/Driver/Tag/Sony/BracketShotNumber2.php deleted file mode 100644 index 3b6e307ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BracketShotNumber2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BracketShotNumber2 extends AbstractTag -{ - - protected $Id = 45; - - protected $Name = 'BracketShotNumber2'; - - protected $FullName = 'Sony::FocusInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Bracket Shot Number 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Brightness.php b/lib/PHPExiftool/Driver/Tag/Sony/Brightness.php deleted file mode 100644 index f463bdc3d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Brightness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Brightness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Brightness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/Sony/BrightnessValue.php deleted file mode 100644 index df33451bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/BrightnessValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Brightness Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/CameraOrientation.php b/lib/PHPExiftool/Driver/Tag/Sony/CameraOrientation.php deleted file mode 100644 index d5364e87a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/CameraOrientation.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraOrientation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraOrientation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Camera Orientation'; - - protected $flag_Permanent = true; - - protected $Index = 1; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'Rotate 90 CW', - ), - 2 => array( - 'Id' => 128, - 'Label' => 'Rotate 270 CW', - ), - 3 => array( - 'Id' => 192, - 'Label' => 'Rotate 180', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 5 => array( - 'Id' => 16, - 'Label' => 'Rotate 90 CW', - ), - 6 => array( - 'Id' => 32, - 'Label' => 'Rotate 270 CW', - ), - 7 => array( - 'Id' => 48, - 'Label' => 'Rotate 180', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 9 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 10 => array( - 'Id' => 6, - 'Label' => 'Rotate 90 CW', - ), - 11 => array( - 'Id' => 8, - 'Label' => 'Rotate 270 CW', - ), - 12 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 14 => array( - 'Id' => 6, - 'Label' => 'Rotate 90 CW', - ), - 15 => array( - 'Id' => 8, - 'Label' => 'Rotate 270 CW', - ), - 16 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 17 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 18 => array( - 'Id' => 6, - 'Label' => 'Rotate 90 CW', - ), - 19 => array( - 'Id' => 8, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/CameraTemperature.php b/lib/PHPExiftool/Driver/Tag/Sony/CameraTemperature.php deleted file mode 100644 index 6c938f3ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/CameraTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraTemperature extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CameraTemperature'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Camera Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ColorCompensationFilter.php b/lib/PHPExiftool/Driver/Tag/Sony/ColorCompensationFilter.php deleted file mode 100644 index 6caa20650..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ColorCompensationFilter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCompensationFilter extends AbstractTag -{ - - protected $Id = 45090; - - protected $Name = 'ColorCompensationFilter'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Compensation Filter'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ColorCompensationFilterSet.php b/lib/PHPExiftool/Driver/Tag/Sony/ColorCompensationFilterSet.php deleted file mode 100644 index fbfebaa6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ColorCompensationFilterSet.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCompensationFilterSet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorCompensationFilterSet'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Compensation Filter Set'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ColorMode.php b/lib/PHPExiftool/Driver/Tag/Sony/ColorMode.php deleted file mode 100644 index 639f47e0b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ColorMode.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 45097; - - protected $Name = 'ColorMode'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Landscape', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Night View/Portrait', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'B&W', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Adobe RGB', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Neutral', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Clear', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Deep', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Light', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Autumn Leaves', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Sepia', - ), - 100 => array( - 'Id' => 100, - 'Label' => 'Neutral', - ), - 101 => array( - 'Id' => 101, - 'Label' => 'Clear', - ), - 102 => array( - 'Id' => 102, - 'Label' => 'Deep', - ), - 103 => array( - 'Id' => 103, - 'Label' => 'Light', - ), - 104 => array( - 'Id' => 104, - 'Label' => 'Night View', - ), - 105 => array( - 'Id' => 105, - 'Label' => 'Autumn Leaves', - ), - 4294967295 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Sony/ColorSpace.php deleted file mode 100644 index 98ed449d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ColorSpace.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'sRGB', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Adobe RGB', - ), - 2 => array( - 'Id' => 5, - 'Label' => 'Adobe RGB (A700)', - ), - 3 => array( - 'Id' => 5, - 'Label' => 'Adobe RGB', - ), - 4 => array( - 'Id' => 6, - 'Label' => 'sRGB', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'sRGB', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Adobe RGB', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'sRGB', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'Adobe RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/Sony/ColorTemperature.php deleted file mode 100644 index 025f1141a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 45089; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ColorTemperatureSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/ColorTemperatureSetting.php deleted file mode 100644 index e4d25a531..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ColorTemperatureSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperatureSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ColorTemperatureSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Color Temperature Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Comment.php b/lib/PHPExiftool/Driver/Tag/Sony/Comment.php deleted file mode 100644 index 0da99aa70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Comment.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'Comment'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Comment'; - - protected $flag_Permanent = true; - - protected $MaxLength = 19; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Contrast.php b/lib/PHPExiftool/Driver/Tag/Sony/Contrast.php deleted file mode 100644 index 126403d1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Contrast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Contrast'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ContrastSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/ContrastSetting.php deleted file mode 100644 index 1212c9eef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ContrastSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ContrastSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Contrast Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/CreativeStyle.php b/lib/PHPExiftool/Driver/Tag/Sony/CreativeStyle.php deleted file mode 100644 index cda82f499..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/CreativeStyle.php +++ /dev/null @@ -1,300 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreativeStyle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CreativeStyle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Creative Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Landscape', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Sunset', - ), - 5 => array( - 'Id' => 6, - 'Label' => 'Night View/Portrait', - ), - 6 => array( - 'Id' => 8, - 'Label' => 'B&W', - ), - 7 => array( - 'Id' => 9, - 'Label' => 'Adobe RGB', - ), - 8 => array( - 'Id' => 11, - 'Label' => 'Neutral', - ), - 9 => array( - 'Id' => 12, - 'Label' => 'Clear', - ), - 10 => array( - 'Id' => 13, - 'Label' => 'Deep', - ), - 11 => array( - 'Id' => 14, - 'Label' => 'Light', - ), - 12 => array( - 'Id' => 15, - 'Label' => 'Autumn Leaves', - ), - 13 => array( - 'Id' => 16, - 'Label' => 'Sepia', - ), - 14 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 15 => array( - 'Id' => 2, - 'Label' => 'Vivid', - ), - 16 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 17 => array( - 'Id' => 4, - 'Label' => 'Landscape', - ), - 18 => array( - 'Id' => 5, - 'Label' => 'Sunset', - ), - 19 => array( - 'Id' => 6, - 'Label' => 'Night View/Portrait', - ), - 20 => array( - 'Id' => 8, - 'Label' => 'B&W', - ), - 21 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 22 => array( - 'Id' => 2, - 'Label' => 'Vivid', - ), - 23 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 24 => array( - 'Id' => 4, - 'Label' => 'Landscape', - ), - 25 => array( - 'Id' => 5, - 'Label' => 'Sunset', - ), - 26 => array( - 'Id' => 6, - 'Label' => 'Night View/Portrait', - ), - 27 => array( - 'Id' => 8, - 'Label' => 'B&W', - ), - 28 => array( - 'Id' => 9, - 'Label' => 'Adobe RGB', - ), - 29 => array( - 'Id' => 11, - 'Label' => 'Neutral', - ), - 30 => array( - 'Id' => 12, - 'Label' => 'Clear', - ), - 31 => array( - 'Id' => 13, - 'Label' => 'Deep', - ), - 32 => array( - 'Id' => 14, - 'Label' => 'Light', - ), - 33 => array( - 'Id' => 15, - 'Label' => 'Autumn Leaves', - ), - 34 => array( - 'Id' => 16, - 'Label' => 'Sepia', - ), - 'AdobeRGB' => array( - 'Id' => 'AdobeRGB', - 'Label' => 'Adobe RGB', - ), - 'Autumnleaves' => array( - 'Id' => 'Autumnleaves', - 'Label' => 'Autumn Leaves', - ), - 'BW' => array( - 'Id' => 'BW', - 'Label' => 'B&W', - ), - 'Clear' => array( - 'Id' => 'Clear', - 'Label' => 'Clear', - ), - 'Deep' => array( - 'Id' => 'Deep', - 'Label' => 'Deep', - ), - 'Landscape' => array( - 'Id' => 'Landscape', - 'Label' => 'Landscape', - ), - 'Light' => array( - 'Id' => 'Light', - 'Label' => 'Light', - ), - 'Neutral' => array( - 'Id' => 'Neutral', - 'Label' => 'Neutral', - ), - 'Nightview' => array( - 'Id' => 'Nightview', - 'Label' => 'Night View/Portrait', - ), - 'None' => array( - 'Id' => 'None', - 'Label' => 'None', - ), - 'Portrait' => array( - 'Id' => 'Portrait', - 'Label' => 'Portrait', - ), - 'Real' => array( - 'Id' => 'Real', - 'Label' => 'Real', - ), - 'Sepia' => array( - 'Id' => 'Sepia', - 'Label' => 'Sepia', - ), - 'Standard' => array( - 'Id' => 'Standard', - 'Label' => 'Standard', - ), - 'Sunset' => array( - 'Id' => 'Sunset', - 'Label' => 'Sunset', - ), - 'Vivid' => array( - 'Id' => 'Vivid', - 'Label' => 'Vivid', - ), - 35 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 36 => array( - 'Id' => 1, - 'Label' => 'Vivid', - ), - 37 => array( - 'Id' => 2, - 'Label' => 'Neutral', - ), - 38 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 39 => array( - 'Id' => 4, - 'Label' => 'Landscape', - ), - 40 => array( - 'Id' => 5, - 'Label' => 'B&W', - ), - 41 => array( - 'Id' => 6, - 'Label' => 'Clear', - ), - 42 => array( - 'Id' => 7, - 'Label' => 'Deep', - ), - 43 => array( - 'Id' => 8, - 'Label' => 'Light', - ), - 44 => array( - 'Id' => 9, - 'Label' => 'Sunset', - ), - 45 => array( - 'Id' => 11, - 'Label' => 'Autumn Leaves', - ), - 46 => array( - 'Id' => 13, - 'Label' => 'Sepia', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/CreativeStyleSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/CreativeStyleSetting.php deleted file mode 100644 index f1015f447..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/CreativeStyleSetting.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreativeStyleSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CreativeStyleSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Creative Style Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16 => array( - 'Id' => 16, - 'Label' => 'Standard', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Vivid', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Portrait', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Landscape', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'B&W', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Sunset', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/CustomWBRBLevels.php b/lib/PHPExiftool/Driver/Tag/Sony/CustomWBRBLevels.php deleted file mode 100644 index c069e6064..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/CustomWBRBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomWBRBLevels extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'CustomWB_RBLevels'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16uRev'; - - protected $Writable = true; - - protected $Description = 'Custom WB RB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/CustomWBRGBLevels.php b/lib/PHPExiftool/Driver/Tag/Sony/CustomWBRGBLevels.php deleted file mode 100644 index 5765450aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/CustomWBRGBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomWBRGBLevels extends AbstractTag -{ - - protected $Id = 25; - - protected $Name = 'CustomWB_RGBLevels'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16uRev'; - - protected $Writable = true; - - protected $Description = 'Custom WB RGB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/Sony/DateTimeOriginal.php deleted file mode 100644 index a38c392b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DateTimeOriginal.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DigitalZoom.php b/lib/PHPExiftool/Driver/Tag/Sony/DigitalZoom.php deleted file mode 100644 index b2c0915a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DigitalZoom.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoom extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'DigitalZoom'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DigitalZoomRatio.php b/lib/PHPExiftool/Driver/Tag/Sony/DigitalZoomRatio.php deleted file mode 100644 index 4cda43c2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DigitalZoomRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoomRatio extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DigitalZoomRatio'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom Ratio'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DistortionCorrection.php b/lib/PHPExiftool/Driver/Tag/Sony/DistortionCorrection.php deleted file mode 100644 index 3cc4371b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DistortionCorrection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrection extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DistortionCorrection'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Applied', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DistortionCorrectionSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/DistortionCorrectionSetting.php deleted file mode 100644 index 92ca661ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DistortionCorrectionSetting.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DistortionCorrectionSetting extends AbstractTag -{ - - protected $Id = 8211; - - protected $Name = 'DistortionCorrectionSetting'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Distortion Correction Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto', - ), - 4294967295 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DriveMode.php b/lib/PHPExiftool/Driver/Tag/Sony/DriveMode.php deleted file mode 100644 index 25196b7c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DriveMode.php +++ /dev/null @@ -1,196 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DriveMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Drive Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Single Frame', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Continuous High', - ), - 2 => array( - 'Id' => 4, - 'Label' => 'Self-timer 10 sec', - ), - 3 => array( - 'Id' => 5, - 'Label' => 'Self-timer 2 sec, Mirror Lock-up', - ), - 4 => array( - 'Id' => 6, - 'Label' => 'Single-frame Bracketing', - ), - 5 => array( - 'Id' => 7, - 'Label' => 'Continuous Bracketing', - ), - 6 => array( - 'Id' => 10, - 'Label' => 'Remote Commander', - ), - 7 => array( - 'Id' => 11, - 'Label' => 'Mirror Lock-up', - ), - 8 => array( - 'Id' => 18, - 'Label' => 'Continuous Low', - ), - 9 => array( - 'Id' => 24, - 'Label' => 'White Balance Bracketing Low', - ), - 10 => array( - 'Id' => 25, - 'Label' => 'D-Range Optimizer Bracketing Low', - ), - 11 => array( - 'Id' => 40, - 'Label' => 'White Balance Bracketing High', - ), - 12 => array( - 'Id' => 41, - 'Label' => 'D-Range Optimizer Bracketing High', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'Single Frame', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'Continuous High', - ), - 15 => array( - 'Id' => 4, - 'Label' => 'Self-timer 10 sec', - ), - 16 => array( - 'Id' => 5, - 'Label' => 'Self-timer 2 sec, Mirror Lock-up', - ), - 17 => array( - 'Id' => 7, - 'Label' => 'Continuous Bracketing', - ), - 18 => array( - 'Id' => 10, - 'Label' => 'Remote Commander', - ), - 19 => array( - 'Id' => 11, - 'Label' => 'Continuous Self-timer', - ), - 20 => array( - 'Id' => 16, - 'Label' => 'Single Frame', - ), - 21 => array( - 'Id' => 33, - 'Label' => 'Continuous High', - ), - 22 => array( - 'Id' => 34, - 'Label' => 'Continuous Low', - ), - 23 => array( - 'Id' => 48, - 'Label' => 'Speed Priority Continuous', - ), - 24 => array( - 'Id' => 81, - 'Label' => 'Self-timer 10 sec', - ), - 25 => array( - 'Id' => 82, - 'Label' => 'Self-timer 2 sec, Mirror Lock-up', - ), - 26 => array( - 'Id' => 113, - 'Label' => 'Continuous Bracketing 0.3 EV', - ), - 27 => array( - 'Id' => 117, - 'Label' => 'Continuous Bracketing 0.7 EV', - ), - 28 => array( - 'Id' => 145, - 'Label' => 'White Balance Bracketing Low', - ), - 29 => array( - 'Id' => 146, - 'Label' => 'White Balance Bracketing High', - ), - 30 => array( - 'Id' => 192, - 'Label' => 'Remote Commander', - ), - 31 => array( - 'Id' => 209, - 'Label' => 'Continuous - HDR', - ), - 32 => array( - 'Id' => 210, - 'Label' => 'Continuous - Multi Frame NR', - ), - 33 => array( - 'Id' => 211, - 'Label' => 'Continuous - Handheld Night Shot', - ), - 34 => array( - 'Id' => 212, - 'Label' => 'Continuous - Anti Motion Blur', - ), - 35 => array( - 'Id' => 213, - 'Label' => 'Continuous - Sweep Panorama', - ), - 36 => array( - 'Id' => 214, - 'Label' => 'Continuous - 3D Sweep Panorama', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DriveMode2.php b/lib/PHPExiftool/Driver/Tag/Sony/DriveMode2.php deleted file mode 100644 index 428421712..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DriveMode2.php +++ /dev/null @@ -1,174 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveMode2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DriveMode2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Drive Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Single Frame', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Continuous High', - ), - 2 => array( - 'Id' => 4, - 'Label' => 'Self-timer 10 sec', - ), - 3 => array( - 'Id' => 5, - 'Label' => 'Self-timer 2 sec, Mirror Lock-up', - ), - 4 => array( - 'Id' => 7, - 'Label' => 'Continuous Bracketing', - ), - 5 => array( - 'Id' => 10, - 'Label' => 'Remote Commander', - ), - 6 => array( - 'Id' => 11, - 'Label' => 'Continuous Self-timer', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'Single Frame', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'Continuous High', - ), - 9 => array( - 'Id' => 4, - 'Label' => 'Self-timer 10 sec', - ), - 10 => array( - 'Id' => 5, - 'Label' => 'Self-timer 2 sec, Mirror Lock-up', - ), - 11 => array( - 'Id' => 6, - 'Label' => 'Single-frame Bracketing', - ), - 12 => array( - 'Id' => 7, - 'Label' => 'Continuous Bracketing', - ), - 13 => array( - 'Id' => 10, - 'Label' => 'Remote Commander', - ), - 14 => array( - 'Id' => 11, - 'Label' => 'Mirror Lock-up', - ), - 15 => array( - 'Id' => 18, - 'Label' => 'Continuous Low', - ), - 16 => array( - 'Id' => 24, - 'Label' => 'White Balance Bracketing Low', - ), - 17 => array( - 'Id' => 25, - 'Label' => 'D-Range Optimizer Bracketing Low', - ), - 18 => array( - 'Id' => 40, - 'Label' => 'White Balance Bracketing High', - ), - 19 => array( - 'Id' => 41, - 'Label' => 'D-Range Optimizer Bracketing High', - ), - 20 => array( - 'Id' => 16, - 'Label' => 'Single Frame', - ), - 21 => array( - 'Id' => 33, - 'Label' => 'Continuous High', - ), - 22 => array( - 'Id' => 34, - 'Label' => 'Continuous Low', - ), - 23 => array( - 'Id' => 48, - 'Label' => 'Speed Priority Continuous', - ), - 24 => array( - 'Id' => 81, - 'Label' => 'Self-timer 10 sec', - ), - 25 => array( - 'Id' => 82, - 'Label' => 'Self-timer 2 sec, Mirror Lock-up', - ), - 26 => array( - 'Id' => 113, - 'Label' => 'Continuous Bracketing 0.3 EV', - ), - 27 => array( - 'Id' => 117, - 'Label' => 'Continuous Bracketing 0.7 EV', - ), - 28 => array( - 'Id' => 145, - 'Label' => 'White Balance Bracketing Low', - ), - 29 => array( - 'Id' => 146, - 'Label' => 'White Balance Bracketing High', - ), - 30 => array( - 'Id' => 192, - 'Label' => 'Remote Commander', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DriveModeSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/DriveModeSetting.php deleted file mode 100644 index 41e039b77..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DriveModeSetting.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DriveModeSetting extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'DriveModeSetting'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Drive Mode Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16 => array( - 'Id' => 16, - 'Label' => 'Single Frame', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Continuous High', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Continuous Low', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Speed Priority Continuous', - ), - 81 => array( - 'Id' => 81, - 'Label' => 'Self-timer 10 sec', - ), - 82 => array( - 'Id' => 82, - 'Label' => 'Self-timer 2 sec, Mirror Lock-up', - ), - 113 => array( - 'Id' => 113, - 'Label' => 'Continuous Bracketing 0.3 EV', - ), - 117 => array( - 'Id' => 117, - 'Label' => 'Continuous Bracketing 0.7 EV', - ), - 145 => array( - 'Id' => 145, - 'Label' => 'White Balance Bracketing Low', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'White Balance Bracketing High', - ), - 192 => array( - 'Id' => 192, - 'Label' => 'Remote Commander', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizer.php b/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizer.php deleted file mode 100644 index 6a1046a78..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizer.php +++ /dev/null @@ -1,532 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizer extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DynamicRangeOptimizer'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced Auto', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto', - ), - 4 => array( - 'Id' => 8, - 'Label' => 'Advanced Lv1', - ), - 5 => array( - 'Id' => 9, - 'Label' => 'Advanced Lv2', - ), - 6 => array( - 'Id' => 10, - 'Label' => 'Advanced Lv3', - ), - 7 => array( - 'Id' => 11, - 'Label' => 'Advanced Lv4', - ), - 8 => array( - 'Id' => 12, - 'Label' => 'Advanced Lv5', - ), - 9 => array( - 'Id' => 16, - 'Label' => 'Lv1', - ), - 10 => array( - 'Id' => 17, - 'Label' => 'Lv2', - ), - 11 => array( - 'Id' => 18, - 'Label' => 'Lv3', - ), - 12 => array( - 'Id' => 19, - 'Label' => 'Lv4', - ), - 13 => array( - 'Id' => 20, - 'Label' => 'Lv5', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 15 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 16 => array( - 'Id' => 2, - 'Label' => 'Plus', - ), - 17 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 18 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 19 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 20 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 21 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 22 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 23 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 24 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 25 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 26 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 27 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 28 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 29 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 30 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 31 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 32 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 33 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 34 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 35 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 36 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 37 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 38 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 39 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 40 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 41 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 42 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 43 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 44 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 45 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 46 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 47 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 48 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 49 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 50 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 51 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 52 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 53 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 54 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 55 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 56 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 57 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 58 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 59 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 60 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 61 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 62 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 63 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 64 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 65 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 66 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 67 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 68 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 69 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 70 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 71 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 72 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 73 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 74 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 75 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 76 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 77 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 78 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 79 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 80 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 81 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 82 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 83 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 84 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 85 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 86 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 87 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 88 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 89 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 90 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 91 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 92 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 93 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 94 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 95 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 96 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 97 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 98 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 99 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 100 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 101 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 102 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 103 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 104 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 105 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 106 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 107 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 108 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 109 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 110 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 111 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 112 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - 113 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 114 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 115 => array( - 'Id' => 3, - 'Label' => 'Lv1', - ), - 116 => array( - 'Id' => 4, - 'Label' => 'Lv2', - ), - 117 => array( - 'Id' => 5, - 'Label' => 'Lv3', - ), - 118 => array( - 'Id' => 6, - 'Label' => 'Lv4', - ), - 119 => array( - 'Id' => 7, - 'Label' => 'Lv5', - ), - 120 => array( - 'Id' => 8, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerBracket.php b/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerBracket.php deleted file mode 100644 index ed62b576e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerBracket.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizerBracket extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'DynamicRangeOptimizerBracket'; - - protected $FullName = 'Sony::FocusInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer Bracket'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerLevel.php b/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerLevel.php deleted file mode 100644 index cadae1196..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerLevel.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizerLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DynamicRangeOptimizerLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer Level'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerMode.php b/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerMode.php deleted file mode 100644 index b9f989605..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizerMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DynamicRangeOptimizerMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced Auto', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Advanced Level', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerSetting.php deleted file mode 100644 index d89dbd0a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/DynamicRangeOptimizerSetting.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DynamicRangeOptimizerSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'DynamicRangeOptimizerSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Dynamic Range Optimizer Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'On (Auto)', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'On (Manual)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureBracketShotNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureBracketShotNumber.php deleted file mode 100644 index 83740fd4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureBracketShotNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureBracketShotNumber extends AbstractTag -{ - - protected $Id = 47; - - protected $Name = 'ExposureBracketShotNumber'; - - protected $FullName = 'Sony::FocusInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Bracket Shot Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensation.php deleted file mode 100644 index 90dfec88a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensation2.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensation2.php deleted file mode 100644 index cae3cd2f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensation2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation2 extends AbstractTag -{ - - protected $Id = 42; - - protected $Name = 'ExposureCompensation2'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensationSet.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensationSet.php deleted file mode 100644 index e467a561b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureCompensationSet.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensationSet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureCompensationSet'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation Set'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureLevelIncrements.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureLevelIncrements.php deleted file mode 100644 index ff6897f7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureLevelIncrements.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureLevelIncrements extends AbstractTag -{ - - protected $Id = 88; - - protected $Name = 'ExposureLevelIncrements'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Level Increments'; - - protected $flag_Permanent = true; - - protected $Values = array( - 33 => array( - 'Id' => 33, - 'Label' => '1/3 EV', - ), - 50 => array( - 'Id' => 50, - 'Label' => '1/2 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureMode.php deleted file mode 100644 index 8f9a5a7ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureMode.php +++ /dev/null @@ -1,172 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 45121; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Beach', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Sports', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Snow', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Landscape', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Auto', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Aperture-priority AE', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Shutter speed priority AE', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Night Scene / Twilight', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Hi-Speed Shutter', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Soft Snap/Portrait', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Fireworks', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Smile Shutter', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Manual', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'High Sensitivity', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Macro', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Advanced Sports Shooting', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Underwater', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Food', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Sweep Panorama', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Handheld Night Shot', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Anti Motion Blur', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Pet', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Backlight Correction HDR', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Superior Auto', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Background Defocus', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Soft Skin', - ), - 42 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureProgram.php deleted file mode 100644 index fcd9d7c4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureProgram.php +++ /dev/null @@ -1,1626 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Exposure Program'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 13 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 14 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 15 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 16 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 17 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 18 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 19 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 20 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 21 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 22 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 23 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 24 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 25 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 26 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 27 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 28 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 29 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 30 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 31 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 32 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 33 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 34 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 35 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 36 => array( - 'Id' => 8, - 'Label' => 'Program Shift A', - ), - 37 => array( - 'Id' => 9, - 'Label' => 'Program Shift S', - ), - 38 => array( - 'Id' => 16, - 'Label' => 'Portrait', - ), - 39 => array( - 'Id' => 17, - 'Label' => 'Sports', - ), - 40 => array( - 'Id' => 18, - 'Label' => 'Sunset', - ), - 41 => array( - 'Id' => 19, - 'Label' => 'Night Portrait', - ), - 42 => array( - 'Id' => 20, - 'Label' => 'Landscape', - ), - 43 => array( - 'Id' => 21, - 'Label' => 'Macro', - ), - 44 => array( - 'Id' => 35, - 'Label' => 'Auto No Flash', - ), - 45 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 46 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 47 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 48 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 49 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 50 => array( - 'Id' => 8, - 'Label' => 'Program Shift A', - ), - 51 => array( - 'Id' => 9, - 'Label' => 'Program Shift S', - ), - 52 => array( - 'Id' => 16, - 'Label' => 'Portrait', - ), - 53 => array( - 'Id' => 17, - 'Label' => 'Sports', - ), - 54 => array( - 'Id' => 18, - 'Label' => 'Sunset', - ), - 55 => array( - 'Id' => 19, - 'Label' => 'Night Portrait', - ), - 56 => array( - 'Id' => 20, - 'Label' => 'Landscape', - ), - 57 => array( - 'Id' => 21, - 'Label' => 'Macro', - ), - 58 => array( - 'Id' => 35, - 'Label' => 'Auto No Flash', - ), - 59 => array( - 'Id' => 1, - 'Label' => 'Program AE', - ), - 60 => array( - 'Id' => 2, - 'Label' => 'Aperture-priority AE', - ), - 61 => array( - 'Id' => 3, - 'Label' => 'Shutter speed priority AE', - ), - 62 => array( - 'Id' => 4, - 'Label' => 'Manual', - ), - 63 => array( - 'Id' => 5, - 'Label' => 'Cont. Priority AE', - ), - 64 => array( - 'Id' => 16, - 'Label' => 'Auto', - ), - 65 => array( - 'Id' => 17, - 'Label' => 'Auto (no flash)', - ), - 66 => array( - 'Id' => 18, - 'Label' => 'Auto+', - ), - 67 => array( - 'Id' => 49, - 'Label' => 'Portrait', - ), - 68 => array( - 'Id' => 50, - 'Label' => 'Landscape', - ), - 69 => array( - 'Id' => 51, - 'Label' => 'Macro', - ), - 70 => array( - 'Id' => 52, - 'Label' => 'Sports', - ), - 71 => array( - 'Id' => 53, - 'Label' => 'Sunset', - ), - 72 => array( - 'Id' => 54, - 'Label' => 'Night view', - ), - 73 => array( - 'Id' => 55, - 'Label' => 'Night view/portrait', - ), - 74 => array( - 'Id' => 56, - 'Label' => 'Handheld Night Shot', - ), - 75 => array( - 'Id' => 57, - 'Label' => '3D Sweep Panorama', - ), - 76 => array( - 'Id' => 64, - 'Label' => 'Auto 2', - ), - 77 => array( - 'Id' => 65, - 'Label' => 'Auto 2 (no flash)', - ), - 78 => array( - 'Id' => 80, - 'Label' => 'Sweep Panorama', - ), - 79 => array( - 'Id' => 96, - 'Label' => 'Anti Motion Blur', - ), - 80 => array( - 'Id' => 128, - 'Label' => 'Toy Camera', - ), - 81 => array( - 'Id' => 129, - 'Label' => 'Pop Color', - ), - 82 => array( - 'Id' => 130, - 'Label' => 'Posterization', - ), - 83 => array( - 'Id' => 131, - 'Label' => 'Posterization B/W', - ), - 84 => array( - 'Id' => 132, - 'Label' => 'Retro Photo', - ), - 85 => array( - 'Id' => 133, - 'Label' => 'High-key', - ), - 86 => array( - 'Id' => 134, - 'Label' => 'Partial Color Red', - ), - 87 => array( - 'Id' => 135, - 'Label' => 'Partial Color Green', - ), - 88 => array( - 'Id' => 136, - 'Label' => 'Partial Color Blue', - ), - 89 => array( - 'Id' => 137, - 'Label' => 'Partial Color Yellow', - ), - 90 => array( - 'Id' => 138, - 'Label' => 'High Contrast Monochrome', - ), - 91 => array( - 'Id' => 241, - 'Label' => 'Landscape', - ), - 92 => array( - 'Id' => 243, - 'Label' => 'Aperture-priority AE', - ), - 93 => array( - 'Id' => 245, - 'Label' => 'Portrait', - ), - 94 => array( - 'Id' => 246, - 'Label' => 'Auto', - ), - 95 => array( - 'Id' => 247, - 'Label' => 'Program AE', - ), - 96 => array( - 'Id' => 249, - 'Label' => 'Macro', - ), - 97 => array( - 'Id' => 252, - 'Label' => 'Sunset', - ), - 98 => array( - 'Id' => 253, - 'Label' => 'Sports', - ), - 99 => array( - 'Id' => 255, - 'Label' => 'Manual', - ), - 100 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 101 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 102 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 103 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 104 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 105 => array( - 'Id' => 8, - 'Label' => 'Program Shift A', - ), - 106 => array( - 'Id' => 9, - 'Label' => 'Program Shift S', - ), - 107 => array( - 'Id' => 16, - 'Label' => 'Portrait', - ), - 108 => array( - 'Id' => 17, - 'Label' => 'Sports', - ), - 109 => array( - 'Id' => 18, - 'Label' => 'Sunset', - ), - 110 => array( - 'Id' => 19, - 'Label' => 'Night Portrait', - ), - 111 => array( - 'Id' => 20, - 'Label' => 'Landscape', - ), - 112 => array( - 'Id' => 21, - 'Label' => 'Macro', - ), - 113 => array( - 'Id' => 35, - 'Label' => 'Auto No Flash', - ), - 114 => array( - 'Id' => 1, - 'Label' => 'Program AE', - ), - 115 => array( - 'Id' => 2, - 'Label' => 'Aperture-priority AE', - ), - 116 => array( - 'Id' => 3, - 'Label' => 'Shutter speed priority AE', - ), - 117 => array( - 'Id' => 4, - 'Label' => 'Manual', - ), - 118 => array( - 'Id' => 5, - 'Label' => 'Cont. Priority AE', - ), - 119 => array( - 'Id' => 16, - 'Label' => 'Auto', - ), - 120 => array( - 'Id' => 17, - 'Label' => 'Auto (no flash)', - ), - 121 => array( - 'Id' => 18, - 'Label' => 'Auto+', - ), - 122 => array( - 'Id' => 49, - 'Label' => 'Portrait', - ), - 123 => array( - 'Id' => 50, - 'Label' => 'Landscape', - ), - 124 => array( - 'Id' => 51, - 'Label' => 'Macro', - ), - 125 => array( - 'Id' => 52, - 'Label' => 'Sports', - ), - 126 => array( - 'Id' => 53, - 'Label' => 'Sunset', - ), - 127 => array( - 'Id' => 54, - 'Label' => 'Night view', - ), - 128 => array( - 'Id' => 55, - 'Label' => 'Night view/portrait', - ), - 129 => array( - 'Id' => 56, - 'Label' => 'Handheld Night Shot', - ), - 130 => array( - 'Id' => 57, - 'Label' => '3D Sweep Panorama', - ), - 131 => array( - 'Id' => 64, - 'Label' => 'Auto 2', - ), - 132 => array( - 'Id' => 65, - 'Label' => 'Auto 2 (no flash)', - ), - 133 => array( - 'Id' => 80, - 'Label' => 'Sweep Panorama', - ), - 134 => array( - 'Id' => 96, - 'Label' => 'Anti Motion Blur', - ), - 135 => array( - 'Id' => 128, - 'Label' => 'Toy Camera', - ), - 136 => array( - 'Id' => 129, - 'Label' => 'Pop Color', - ), - 137 => array( - 'Id' => 130, - 'Label' => 'Posterization', - ), - 138 => array( - 'Id' => 131, - 'Label' => 'Posterization B/W', - ), - 139 => array( - 'Id' => 132, - 'Label' => 'Retro Photo', - ), - 140 => array( - 'Id' => 133, - 'Label' => 'High-key', - ), - 141 => array( - 'Id' => 134, - 'Label' => 'Partial Color Red', - ), - 142 => array( - 'Id' => 135, - 'Label' => 'Partial Color Green', - ), - 143 => array( - 'Id' => 136, - 'Label' => 'Partial Color Blue', - ), - 144 => array( - 'Id' => 137, - 'Label' => 'Partial Color Yellow', - ), - 145 => array( - 'Id' => 138, - 'Label' => 'High Contrast Monochrome', - ), - 146 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 147 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 148 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 149 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 150 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 151 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 152 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 153 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 154 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 155 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 156 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 157 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 158 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 159 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 160 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 161 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 162 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 163 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 164 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 165 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 166 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 167 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 168 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 169 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 170 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 171 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 172 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 173 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 174 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 175 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 176 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 177 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 178 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 179 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 180 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 181 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 182 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 183 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 184 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 185 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 186 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 187 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 188 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 189 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 190 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 191 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 192 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 193 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 194 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 195 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 196 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 197 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 198 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 199 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 200 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 201 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 202 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 203 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 204 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 205 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 206 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 207 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 208 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 209 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 210 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 211 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 212 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 213 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 214 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 215 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 216 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 217 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 218 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 219 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 220 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 221 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 222 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 223 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 224 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 225 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 226 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 227 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 228 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 229 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 230 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 231 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 232 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 233 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 234 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 235 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 236 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 237 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 238 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 239 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 240 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 241 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 242 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 243 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 244 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 245 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 246 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 247 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 248 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 249 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 250 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 251 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 252 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 253 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 254 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 255 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 256 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 257 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 258 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 259 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 260 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 261 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 262 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 263 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 264 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 265 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 266 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 267 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 268 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 269 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 270 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 271 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 272 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 273 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 274 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 275 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 276 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 277 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 278 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 279 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 280 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 281 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 282 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 283 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 284 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 285 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 286 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 287 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 288 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 289 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 290 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 291 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 292 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 293 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 294 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 295 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 296 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 297 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 298 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 299 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 300 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 301 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 302 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 303 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 304 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 305 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 306 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 307 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 308 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 309 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 310 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 311 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 312 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 313 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 314 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 315 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 316 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 317 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 318 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 319 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 320 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 321 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 322 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 323 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 324 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 325 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 326 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 327 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 328 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 329 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 330 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 331 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 332 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 333 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 334 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 335 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 336 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 337 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 338 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 339 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 340 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 341 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 342 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 343 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 344 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 345 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 346 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 347 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 348 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 349 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 350 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 351 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 352 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 353 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 354 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 355 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 356 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 357 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 358 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 359 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 360 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 361 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 362 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - 363 => array( - 'Id' => 0, - 'Label' => 'Program AE', - ), - 364 => array( - 'Id' => 1, - 'Label' => 'Aperture-priority AE', - ), - 365 => array( - 'Id' => 2, - 'Label' => 'Shutter speed priority AE', - ), - 366 => array( - 'Id' => 3, - 'Label' => 'Manual', - ), - 367 => array( - 'Id' => 4, - 'Label' => 'Auto', - ), - 368 => array( - 'Id' => 5, - 'Label' => 'iAuto', - ), - 369 => array( - 'Id' => 6, - 'Label' => 'Superior Auto', - ), - 370 => array( - 'Id' => 7, - 'Label' => 'iAuto+', - ), - 371 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 372 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 373 => array( - 'Id' => 10, - 'Label' => 'Twilight', - ), - 374 => array( - 'Id' => 11, - 'Label' => 'Twilight Portrait', - ), - 375 => array( - 'Id' => 12, - 'Label' => 'Sunset', - ), - 376 => array( - 'Id' => 14, - 'Label' => 'Action (High speed)', - ), - 377 => array( - 'Id' => 16, - 'Label' => 'Sports', - ), - 378 => array( - 'Id' => 17, - 'Label' => 'Handheld Night Shot', - ), - 379 => array( - 'Id' => 18, - 'Label' => 'Anti Motion Blur', - ), - 380 => array( - 'Id' => 19, - 'Label' => 'High Sensitivity', - ), - 381 => array( - 'Id' => 21, - 'Label' => 'Beach', - ), - 382 => array( - 'Id' => 22, - 'Label' => 'Snow', - ), - 383 => array( - 'Id' => 23, - 'Label' => 'Fireworks', - ), - 384 => array( - 'Id' => 26, - 'Label' => 'Underwater', - ), - 385 => array( - 'Id' => 27, - 'Label' => 'Gourmet', - ), - 386 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 387 => array( - 'Id' => 29, - 'Label' => 'Macro', - ), - 388 => array( - 'Id' => 30, - 'Label' => 'Backlight Correction HDR', - ), - 389 => array( - 'Id' => 33, - 'Label' => 'Sweep Panorama', - ), - 390 => array( - 'Id' => 36, - 'Label' => 'Background Defocus', - ), - 391 => array( - 'Id' => 37, - 'Label' => 'Soft Skin', - ), - 392 => array( - 'Id' => 42, - 'Label' => '3D Image', - ), - 393 => array( - 'Id' => 43, - 'Label' => 'Cont. Priority AE', - ), - ); - - protected $Index = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/Sony/ExposureTime.php deleted file mode 100644 index 335a15487..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ExtraInfoVersion.php b/lib/PHPExiftool/Driver/Tag/Sony/ExtraInfoVersion.php deleted file mode 100644 index a7ca4122f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ExtraInfoVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtraInfoVersion extends AbstractTag -{ - - protected $Id = 26; - - protected $Name = 'ExtraInfoVersion'; - - protected $FullName = 'Sony::ExtraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Extra Info Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/FNumber.php deleted file mode 100644 index 4c44000a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face1Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face1Position.php deleted file mode 100644 index e6f2df2c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face1Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face1Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face2Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face2Position.php deleted file mode 100644 index 30819972e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face2Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face2Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face3Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face3Position.php deleted file mode 100644 index 44a2e014f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face3Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face3Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face4Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face4Position.php deleted file mode 100644 index 5e0e5d8de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face4Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face4Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face5Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face5Position.php deleted file mode 100644 index c10ac6758..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face5Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face5Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face6Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face6Position.php deleted file mode 100644 index a38318e3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face6Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face6Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face6Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 6 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face7Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face7Position.php deleted file mode 100644 index e3c9d4069..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face7Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face7Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face7Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 7 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Face8Position.php b/lib/PHPExiftool/Driver/Tag/Sony/Face8Position.php deleted file mode 100644 index d84fb52fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Face8Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Face8Position extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Face8Position'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face 8 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FaceDetection.php b/lib/PHPExiftool/Driver/Tag/Sony/FaceDetection.php deleted file mode 100644 index 33a4b4d63..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FaceDetection.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceDetection extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FaceDetection'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Face Detection'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 98, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FaceInfoLength.php b/lib/PHPExiftool/Driver/Tag/Sony/FaceInfoLength.php deleted file mode 100644 index 5d175203b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FaceInfoLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceInfoLength extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'FaceInfoLength'; - - protected $FullName = 'Sony::ShotInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Info Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FaceInfoOffset.php b/lib/PHPExiftool/Driver/Tag/Sony/FaceInfoOffset.php deleted file mode 100644 index 6aa9513ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FaceInfoOffset.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceInfoOffset extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FaceInfoOffset'; - - protected $FullName = 'Sony::ShotInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Info Offset'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FaceTest2.php b/lib/PHPExiftool/Driver/Tag/Sony/FaceTest2.php deleted file mode 100644 index 743e2b05b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FaceTest2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceTest2 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'FaceTest2'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Test 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FaceTest8.php b/lib/PHPExiftool/Driver/Tag/Sony/FaceTest8.php deleted file mode 100644 index 164ca0a69..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FaceTest8.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceTest8 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'FaceTest8'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Face Test 8'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FacesDetected.php b/lib/PHPExiftool/Driver/Tag/Sony/FacesDetected.php deleted file mode 100644 index bb1ef1078..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FacesDetected.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FacesDetected extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FacesDetected'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Faces Detected'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => '-1', - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 0, - 'Label' => 0, - ), - 2 => array( - 'Id' => 33, - 'Label' => 5, - ), - 3 => array( - 'Id' => 57, - 'Label' => 2, - ), - 4 => array( - 'Id' => 77, - 'Label' => 4, - ), - 5 => array( - 'Id' => 93, - 'Label' => 3, - ), - 6 => array( - 'Id' => 98, - 'Label' => 1, - ), - 7 => array( - 'Id' => 115, - 'Label' => 8, - ), - 8 => array( - 'Id' => 168, - 'Label' => 6, - ), - 9 => array( - 'Id' => 241, - 'Label' => 7, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FileFormat.php b/lib/PHPExiftool/Driver/Tag/Sony/FileFormat.php deleted file mode 100644 index fed884435..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FileFormat.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileFormat extends AbstractTag -{ - - protected $Id = 45056; - - protected $Name = 'FileFormat'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'File Format'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - - protected $Values = array( - '0 0 0 2' => array( - 'Id' => '0 0 0 2', - 'Label' => 'JPEG', - ), - '1 0 0 0' => array( - 'Id' => '1 0 0 0', - 'Label' => 'SR2', - ), - '2 0 0 0' => array( - 'Id' => '2 0 0 0', - 'Label' => 'ARW 1.0', - ), - '3 0 0 0' => array( - 'Id' => '3 0 0 0', - 'Label' => 'ARW 2.0', - ), - '3 1 0 0' => array( - 'Id' => '3 1 0 0', - 'Label' => 'ARW 2.1', - ), - '3 2 0 0' => array( - 'Id' => '3 2 0 0', - 'Label' => 'ARW 2.2', - ), - '3 3 0 0' => array( - 'Id' => '3 3 0 0', - 'Label' => 'ARW 2.3', - ), - '3 3 1 0' => array( - 'Id' => '3 3 1 0', - 'Label' => 'ARW 2.3.1', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FirmwareVersion.php b/lib/PHPExiftool/Driver/Tag/Sony/FirmwareVersion.php deleted file mode 100644 index 8405a5a4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FirmwareVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirmwareVersion extends AbstractTag -{ - - protected $Id = 'FWVer:'; - - protected $Name = 'FirmwareVersion'; - - protected $FullName = 'Sony::PIC'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Firmware Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Flash.php b/lib/PHPExiftool/Driver/Tag/Sony/Flash.php deleted file mode 100644 index 586664231..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Flash.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 118; - - protected $Name = 'Flash'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Flash'; - - protected $local_g2 = 'Camera'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Flash', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashAction.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashAction.php deleted file mode 100644 index c96f11f99..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashAction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashAction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashAction'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Action'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Did not fire', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashAction2.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashAction2.php deleted file mode 100644 index 76947d207..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashAction2.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashAction2 extends AbstractTag -{ - - protected $Id = 48; - - protected $Name = 'FlashAction2'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Action 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Did not fire', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashControl.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashControl.php deleted file mode 100644 index 4671094ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashControl.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashControl extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'FlashControl'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Control'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'ADI Flash', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pre-flash TTL', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureComp.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureComp.php deleted file mode 100644 index fd6eb5c7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureComp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureComp extends AbstractTag -{ - - protected $Id = 260; - - protected $Name = 'FlashExposureComp'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Compensation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureCompSet.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureCompSet.php deleted file mode 100644 index db49f8b92..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureCompSet.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureCompSet extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashExposureCompSet'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp. Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureCompSet2.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureCompSet2.php deleted file mode 100644 index 542a4a3f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashExposureCompSet2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashExposureCompSet2 extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'FlashExposureCompSet2'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Exposure Comp. Setting 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashLevel.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashLevel.php deleted file mode 100644 index bc79cb7f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashLevel.php +++ /dev/null @@ -1,112 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashLevel extends AbstractTag -{ - - protected $Id = 45128; - - protected $Name = 'FlashLevel'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16s'; - - protected $Writable = true; - - protected $Description = 'Flash Level'; - - protected $flag_Permanent = true; - - protected $Values = array( - '-32768' => array( - 'Id' => '-32768', - 'Label' => 'Low', - ), - '-6' => array( - 'Id' => '-6', - 'Label' => '-6/3', - ), - '-5' => array( - 'Id' => '-5', - 'Label' => '-5/3', - ), - '-4' => array( - 'Id' => '-4', - 'Label' => '-4/3', - ), - '-3' => array( - 'Id' => '-3', - 'Label' => '-3/3', - ), - '-2' => array( - 'Id' => '-2', - 'Label' => '-2/3', - ), - '-1' => array( - 'Id' => '-1', - 'Label' => '-1/3', - ), - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => '+1/3', - ), - 2 => array( - 'Id' => 2, - 'Label' => '+2/3', - ), - 3 => array( - 'Id' => 3, - 'Label' => '+3/3', - ), - 4 => array( - 'Id' => 4, - 'Label' => '+4/3', - ), - 5 => array( - 'Id' => 5, - 'Label' => '+5/3', - ), - 6 => array( - 'Id' => 6, - 'Label' => '+6/3', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'n/a', - ), - 32767 => array( - 'Id' => 32767, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashMode.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashMode.php deleted file mode 100644 index e9608a928..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashMode.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'ADI', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'TTL', - ), - 2 => array( - 'Id' => 1, - 'Label' => 'Flash Off', - ), - 3 => array( - 'Id' => 16, - 'Label' => 'Autoflash', - ), - 4 => array( - 'Id' => 17, - 'Label' => 'Fill-flash', - ), - 5 => array( - 'Id' => 18, - 'Label' => 'Slow Sync', - ), - 6 => array( - 'Id' => 19, - 'Label' => 'Rear Sync', - ), - 7 => array( - 'Id' => 20, - 'Label' => 'Wireless', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Flash Off', - ), - 9 => array( - 'Id' => 16, - 'Label' => 'Autoflash', - ), - 10 => array( - 'Id' => 17, - 'Label' => 'Fill-flash', - ), - 11 => array( - 'Id' => 18, - 'Label' => 'Slow Sync', - ), - 12 => array( - 'Id' => 19, - 'Label' => 'Rear Sync', - ), - 13 => array( - 'Id' => 20, - 'Label' => 'Wireless', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlashStatus.php b/lib/PHPExiftool/Driver/Tag/Sony/FlashStatus.php deleted file mode 100644 index 08b07402f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlashStatus.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashStatus extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'FlashStatus'; - - protected $FullName = 'Sony::Tag9050'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Flash Status'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Flash present', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Flash Inhibited', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Built-in Flash present', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Built-in Flash Fired', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Built-in Flash Inhibited', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'External Flash present', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'External Flash Fired', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FlexibleSpotPosition.php b/lib/PHPExiftool/Driver/Tag/Sony/FlexibleSpotPosition.php deleted file mode 100644 index ef2b5c96f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FlexibleSpotPosition.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlexibleSpotPosition extends AbstractTag -{ - - protected $Id = 8221; - - protected $Name = 'FlexibleSpotPosition'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Flexible Spot Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocalLength.php b/lib/PHPExiftool/Driver/Tag/Sony/FocalLength.php deleted file mode 100644 index 5f5677a17..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocalLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Focal Length'; - - protected $flag_Permanent = true; - - protected $local_g2 = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocalLength2.php b/lib/PHPExiftool/Driver/Tag/Sony/FocalLength2.php deleted file mode 100644 index df7f9adf5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocalLength2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength2 extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'FocalLength2'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focal Length 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocalLengthTeleZoom.php b/lib/PHPExiftool/Driver/Tag/Sony/FocalLengthTeleZoom.php deleted file mode 100644 index d93262374..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocalLengthTeleZoom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLengthTeleZoom extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'FocalLengthTeleZoom'; - - protected $FullName = 'Sony::CameraInfo3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focal Length Tele Zoom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocusMode.php b/lib/PHPExiftool/Driver/Tag/Sony/FocusMode.php deleted file mode 100644 index af18cc6c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocusMode.php +++ /dev/null @@ -1,256 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'AF-S', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'AF-C', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'AF-A', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'AF-S', - ), - 6 => array( - 'Id' => 3, - 'Label' => 'AF-C', - ), - 7 => array( - 'Id' => 4, - 'Label' => 'AF-A', - ), - 8 => array( - 'Id' => 6, - 'Label' => 'DMF', - ), - 9 => array( - 'Id' => 7, - 'Label' => 'AF-D', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - 14 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 15 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 16 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 17 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - 18 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 19 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 20 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 21 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - 22 => array( - 'Id' => 4, - 'Label' => 'DMF', - ), - 23 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 24 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 25 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 26 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - 27 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 28 => array( - 'Id' => 2, - 'Label' => 'AF-S', - ), - 29 => array( - 'Id' => 3, - 'Label' => 'AF-C', - ), - 30 => array( - 'Id' => 4, - 'Label' => 'AF-A', - ), - 31 => array( - 'Id' => 6, - 'Label' => 'DMF', - ), - 32 => array( - 'Id' => 7, - 'Label' => 'AF-D', - ), - 33 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 34 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 35 => array( - 'Id' => 4, - 'Label' => 'Permanent-AF', - ), - 36 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - 37 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 38 => array( - 'Id' => 2, - 'Label' => 'AF-S', - ), - 39 => array( - 'Id' => 3, - 'Label' => 'AF-C', - ), - 40 => array( - 'Id' => 5, - 'Label' => 'Semi-manual', - ), - 41 => array( - 'Id' => 6, - 'Label' => 'DMF', - ), - 42 => array( - 'Id' => 17, - 'Label' => 'AF-S', - ), - 43 => array( - 'Id' => 18, - 'Label' => 'AF-C', - ), - 44 => array( - 'Id' => 19, - 'Label' => 'AF-A', - ), - 45 => array( - 'Id' => 32, - 'Label' => 'Manual', - ), - 46 => array( - 'Id' => 48, - 'Label' => 'DMF', - ), - 47 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 48 => array( - 'Id' => 2, - 'Label' => 'AF-S', - ), - 49 => array( - 'Id' => 3, - 'Label' => 'AF-C', - ), - 50 => array( - 'Id' => 4, - 'Label' => 'AF-A', - ), - 51 => array( - 'Id' => 6, - 'Label' => 'DMF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocusMode2.php b/lib/PHPExiftool/Driver/Tag/Sony/FocusMode2.php deleted file mode 100644 index 1a6d962c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocusMode2.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusMode2 extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'FocusMode2'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'MF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocusModeSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/FocusModeSetting.php deleted file mode 100644 index 7ac231057..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocusModeSetting.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusModeSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusModeSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focus Mode Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'DMF', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Manual', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'AF-S', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'AF-C', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'AF-A', - ), - 9 => array( - 'Id' => 17, - 'Label' => 'AF-S', - ), - 10 => array( - 'Id' => 18, - 'Label' => 'AF-C', - ), - 11 => array( - 'Id' => 19, - 'Label' => 'AF-A', - ), - 12 => array( - 'Id' => 32, - 'Label' => 'Manual', - ), - 13 => array( - 'Id' => 48, - 'Label' => 'DMF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocusModeSwitch.php b/lib/PHPExiftool/Driver/Tag/Sony/FocusModeSwitch.php deleted file mode 100644 index d857dd9f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocusModeSwitch.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusModeSwitch extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'FocusModeSwitch'; - - protected $FullName = 'Sony::CameraSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Focus Mode Switch'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocusPosition.php b/lib/PHPExiftool/Driver/Tag/Sony/FocusPosition.php deleted file mode 100644 index 34d88d197..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocusPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusPosition extends AbstractTag -{ - - protected $Id = 2491; - - protected $Name = 'FocusPosition'; - - protected $FullName = 'Sony::FocusInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Focus Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FocusStatus.php b/lib/PHPExiftool/Driver/Tag/Sony/FocusStatus.php deleted file mode 100644 index 54a314cc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FocusStatus.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocusStatus extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FocusStatus'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Focus Status'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Manual - Not confirmed (0)', - ), - 1 => array( - 'Id' => 4, - 'Label' => 'Manual - Not confirmed (4)', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'AF-C - Confirmed', - ), - 3 => array( - 'Id' => 24, - 'Label' => 'AF-C - Not Confirmed', - ), - 4 => array( - 'Id' => 64, - 'Label' => 'AF-S - Confirmed', - ), - 5 => array( - 'Id' => 0, - 'Label' => 'Not confirmed', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Confirmed', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Failed', - ), - 8 => array( - 'Id' => 4, - 'Label' => 'Not confirmed, Tracking', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Not confirmed', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Confirmed', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'Failed', - ), - 12 => array( - 'Id' => 4, - 'Label' => 'Not confirmed, Tracking', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FolderNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/FolderNumber.php deleted file mode 100644 index 6b2f05477..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FolderNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FolderNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'FolderNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Folder Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/FullImageSize.php b/lib/PHPExiftool/Driver/Tag/Sony/FullImageSize.php deleted file mode 100644 index a7c122f75..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/FullImageSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullImageSize extends AbstractTag -{ - - protected $Id = 45099; - - protected $Name = 'FullImageSize'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Full Image Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/HDR.php b/lib/PHPExiftool/Driver/Tag/Sony/HDR.php deleted file mode 100644 index 457215a34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/HDR.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDR extends AbstractTag -{ - - protected $Id = 8202; - - protected $Name = 'HDR'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'HDR'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 16 => array( - 'Id' => 16, - 'Label' => '1.0 EV', - ), - 17 => array( - 'Id' => 17, - 'Label' => '1.5 EV', - ), - 18 => array( - 'Id' => 18, - 'Label' => '2.0 EV', - ), - 19 => array( - 'Id' => 19, - 'Label' => '2.5 EV', - ), - 20 => array( - 'Id' => 20, - 'Label' => '3.0 EV', - ), - 21 => array( - 'Id' => 21, - 'Label' => '3.5 EV', - ), - 22 => array( - 'Id' => 22, - 'Label' => '4.0 EV', - ), - 23 => array( - 'Id' => 23, - 'Label' => '4.5 EV', - ), - 24 => array( - 'Id' => 24, - 'Label' => '5.0 EV', - ), - 25 => array( - 'Id' => 25, - 'Label' => '5.5 EV', - ), - 26 => array( - 'Id' => 26, - 'Label' => '6.0 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/HDRLevel.php b/lib/PHPExiftool/Driver/Tag/Sony/HDRLevel.php deleted file mode 100644 index de907f2ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/HDRLevel.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRLevel extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HDRLevel'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'HDR Level'; - - protected $flag_Permanent = true; - - protected $Values = array( - 33 => array( - 'Id' => 33, - 'Label' => '1 EV', - ), - 34 => array( - 'Id' => 34, - 'Label' => '1.5 EV', - ), - 35 => array( - 'Id' => 35, - 'Label' => '2 EV', - ), - 36 => array( - 'Id' => 36, - 'Label' => '2.5 EV', - ), - 37 => array( - 'Id' => 37, - 'Label' => '3 EV', - ), - 38 => array( - 'Id' => 38, - 'Label' => '3.5 EV', - ), - 39 => array( - 'Id' => 39, - 'Label' => '4 EV', - ), - 40 => array( - 'Id' => 40, - 'Label' => '5 EV', - ), - 41 => array( - 'Id' => 41, - 'Label' => '6 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/HDRSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/HDRSetting.php deleted file mode 100644 index f2c1df28d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/HDRSetting.php +++ /dev/null @@ -1,284 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HDRSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HDRSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'HDR Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'On (Auto)', - ), - 2 => array( - 'Id' => 17, - 'Label' => 'On (Manual)', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 5 => array( - 'Id' => 3, - 'Label' => 'HDR 1 EV', - ), - 6 => array( - 'Id' => 5, - 'Label' => 'HDR 2 EV', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'HDR 3 EV', - ), - 8 => array( - 'Id' => 9, - 'Label' => 'HDR 4 EV', - ), - 9 => array( - 'Id' => 11, - 'Label' => 'HDR 5 EV', - ), - 10 => array( - 'Id' => 13, - 'Label' => 'HDR 6 EV', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 12 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'HDR 1 EV', - ), - 14 => array( - 'Id' => 5, - 'Label' => 'HDR 2 EV', - ), - 15 => array( - 'Id' => 7, - 'Label' => 'HDR 3 EV', - ), - 16 => array( - 'Id' => 9, - 'Label' => 'HDR 4 EV', - ), - 17 => array( - 'Id' => 11, - 'Label' => 'HDR 5 EV', - ), - 18 => array( - 'Id' => 13, - 'Label' => 'HDR 6 EV', - ), - 19 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 20 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 21 => array( - 'Id' => 3, - 'Label' => 'HDR 1 EV', - ), - 22 => array( - 'Id' => 5, - 'Label' => 'HDR 2 EV', - ), - 23 => array( - 'Id' => 7, - 'Label' => 'HDR 3 EV', - ), - 24 => array( - 'Id' => 9, - 'Label' => 'HDR 4 EV', - ), - 25 => array( - 'Id' => 11, - 'Label' => 'HDR 5 EV', - ), - 26 => array( - 'Id' => 13, - 'Label' => 'HDR 6 EV', - ), - 27 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 28 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 29 => array( - 'Id' => 3, - 'Label' => 'HDR 1 EV', - ), - 30 => array( - 'Id' => 5, - 'Label' => 'HDR 2 EV', - ), - 31 => array( - 'Id' => 7, - 'Label' => 'HDR 3 EV', - ), - 32 => array( - 'Id' => 9, - 'Label' => 'HDR 4 EV', - ), - 33 => array( - 'Id' => 11, - 'Label' => 'HDR 5 EV', - ), - 34 => array( - 'Id' => 13, - 'Label' => 'HDR 6 EV', - ), - 35 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 36 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 37 => array( - 'Id' => 3, - 'Label' => 'HDR 1 EV', - ), - 38 => array( - 'Id' => 5, - 'Label' => 'HDR 2 EV', - ), - 39 => array( - 'Id' => 7, - 'Label' => 'HDR 3 EV', - ), - 40 => array( - 'Id' => 9, - 'Label' => 'HDR 4 EV', - ), - 41 => array( - 'Id' => 11, - 'Label' => 'HDR 5 EV', - ), - 42 => array( - 'Id' => 13, - 'Label' => 'HDR 6 EV', - ), - 43 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 44 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 45 => array( - 'Id' => 3, - 'Label' => 'HDR 1 EV', - ), - 46 => array( - 'Id' => 5, - 'Label' => 'HDR 2 EV', - ), - 47 => array( - 'Id' => 7, - 'Label' => 'HDR 3 EV', - ), - 48 => array( - 'Id' => 9, - 'Label' => 'HDR 4 EV', - ), - 49 => array( - 'Id' => 11, - 'Label' => 'HDR 5 EV', - ), - 50 => array( - 'Id' => 13, - 'Label' => 'HDR 6 EV', - ), - 51 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 52 => array( - 'Id' => 1, - 'Label' => 'HDR Auto', - ), - 53 => array( - 'Id' => 3, - 'Label' => 'HDR 1 EV', - ), - 54 => array( - 'Id' => 5, - 'Label' => 'HDR 2 EV', - ), - 55 => array( - 'Id' => 7, - 'Label' => 'HDR 3 EV', - ), - 56 => array( - 'Id' => 9, - 'Label' => 'HDR 4 EV', - ), - 57 => array( - 'Id' => 11, - 'Label' => 'HDR 5 EV', - ), - 58 => array( - 'Id' => 13, - 'Label' => 'HDR 6 EV', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/HighISONoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Sony/HighISONoiseReduction.php deleted file mode 100644 index 3f190bd87..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/HighISONoiseReduction.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighISONoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'HighISONoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'High ISO Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 6 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 7 => array( - 'Id' => 3, - 'Label' => 'High', - ), - 8 => array( - 'Id' => 16, - 'Label' => 'Low', - ), - 9 => array( - 'Id' => 19, - 'Label' => 'Auto', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 11 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 12 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 13 => array( - 'Id' => 3, - 'Label' => 'High', - ), - 14 => array( - 'Id' => 256, - 'Label' => 'Auto', - ), - 15 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Low', - ), - 17 => array( - 'Id' => 19, - 'Label' => 'Auto', - ), - 18 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 19 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 20 => array( - 'Id' => 2, - 'Label' => 'Normal', - ), - 21 => array( - 'Id' => 3, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/HighISONoiseReduction2.php b/lib/PHPExiftool/Driver/Tag/Sony/HighISONoiseReduction2.php deleted file mode 100644 index 9391fdb34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/HighISONoiseReduction2.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighISONoiseReduction2 extends AbstractTag -{ - - protected $Id = 45136; - - protected $Name = 'HighISONoiseReduction2'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'High ISO Noise Reduction 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'High', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Off', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ISOSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/ISOSetting.php deleted file mode 100644 index f527ed2cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ISOSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ISOSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'ISO Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageCount.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageCount.php deleted file mode 100644 index 3ed0ca542..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Image Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageCount2.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageCount2.php deleted file mode 100644 index 10f34443c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageCount2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCount2 extends AbstractTag -{ - - protected $Id = 76; - - protected $Name = 'ImageCount2'; - - protected $FullName = 'Sony::Tag9050'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Image Count 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageNumber.php deleted file mode 100644 index 2d227e8a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Image Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageQuality.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageQuality.php deleted file mode 100644 index c3db4844f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageQuality.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageQuality extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'ImageQuality'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Image Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 8 => array( - 'Id' => 8, - 'Label' => 'Snap Shot', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Standard', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Fine', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilization.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilization.php deleted file mode 100644 index 180753a45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilization.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageStabilization'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 64, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilization2.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilization2.php deleted file mode 100644 index 6b64c9165..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilization2.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilization2 extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ImageStabilization2'; - - protected $FullName = 'Sony::ExtraInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 191 => array( - 'Id' => 191, - 'Label' => 'On (191)', - ), - 207 => array( - 'Id' => 207, - 'Label' => 'On (207)', - ), - 210 => array( - 'Id' => 210, - 'Label' => 'On (210)', - ), - 213 => array( - 'Id' => 213, - 'Label' => 'On', - ), - 246 => array( - 'Id' => 246, - 'Label' => 'Off', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilizationSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilizationSetting.php deleted file mode 100644 index b994ec186..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageStabilizationSetting.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStabilizationSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageStabilizationSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Image Stabilization Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ImageStyle.php b/lib/PHPExiftool/Driver/Tag/Sony/ImageStyle.php deleted file mode 100644 index a006474e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ImageStyle.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageStyle extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ImageStyle'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Image Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Vivid', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 4, - 'Label' => 'Landscape', - ), - 4 => array( - 'Id' => 5, - 'Label' => 'Sunset', - ), - 5 => array( - 'Id' => 7, - 'Label' => 'Night View/Portrait', - ), - 6 => array( - 'Id' => 8, - 'Label' => 'B&W', - ), - 7 => array( - 'Id' => 9, - 'Label' => 'Adobe RGB', - ), - 8 => array( - 'Id' => 11, - 'Label' => 'Neutral', - ), - 9 => array( - 'Id' => 129, - 'Label' => 'StyleBox1', - ), - 10 => array( - 'Id' => 130, - 'Label' => 'StyleBox2', - ), - 11 => array( - 'Id' => 131, - 'Label' => 'StyleBox3', - ), - 12 => array( - 'Id' => 132, - 'Label' => 'StyleBox4', - ), - 13 => array( - 'Id' => 133, - 'Label' => 'StyleBox5', - ), - 14 => array( - 'Id' => 134, - 'Label' => 'StyleBox6', - ), - 15 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 16 => array( - 'Id' => 2, - 'Label' => 'Vivid', - ), - 17 => array( - 'Id' => 3, - 'Label' => 'Portrait', - ), - 18 => array( - 'Id' => 4, - 'Label' => 'Landscape', - ), - 19 => array( - 'Id' => 5, - 'Label' => 'Sunset', - ), - 20 => array( - 'Id' => 7, - 'Label' => 'Night View/Portrait', - ), - 21 => array( - 'Id' => 8, - 'Label' => 'B&W', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/IntelligentAuto.php b/lib/PHPExiftool/Driver/Tag/Sony/IntelligentAuto.php deleted file mode 100644 index 1e0417d71..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/IntelligentAuto.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntelligentAuto extends AbstractTag -{ - - protected $Id = 45138; - - protected $Name = 'IntelligentAuto'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Intelligent Auto'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Advanced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/InternalSerialNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/InternalSerialNumber.php deleted file mode 100644 index 90834ac02..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/InternalSerialNumber.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InternalSerialNumber extends AbstractTag -{ - - protected $Id = 240; - - protected $Name = 'InternalSerialNumber'; - - protected $FullName = 'Sony::Tag9050'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Internal Serial Number'; - - protected $flag_Permanent = true; - - protected $MaxLength = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/JPEGQuality.php b/lib/PHPExiftool/Driver/Tag/Sony/JPEGQuality.php deleted file mode 100644 index db56ed4ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/JPEGQuality.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JPEGQuality extends AbstractTag -{ - - protected $Id = 45127; - - protected $Name = 'JPEGQuality'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'JPEG Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Fine', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Extra Fine', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/JpgFromRawLength.php b/lib/PHPExiftool/Driver/Tag/Sony/JpgFromRawLength.php deleted file mode 100644 index 61ec1a9dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/JpgFromRawLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRawLength extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'JpgFromRawLength'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Jpg From Raw Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/JpgFromRawStart.php b/lib/PHPExiftool/Driver/Tag/Sony/JpgFromRawStart.php deleted file mode 100644 index d7fd8599a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/JpgFromRawStart.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRawStart extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'JpgFromRawStart'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Jpg From Raw Start'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LateralChromaticAberration.php b/lib/PHPExiftool/Driver/Tag/Sony/LateralChromaticAberration.php deleted file mode 100644 index 2d8195d44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LateralChromaticAberration.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LateralChromaticAberration extends AbstractTag -{ - - protected $Id = 8210; - - protected $Name = 'LateralChromaticAberration'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Lateral Chromatic Aberration'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto', - ), - 4294967295 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LensFormat.php b/lib/PHPExiftool/Driver/Tag/Sony/LensFormat.php deleted file mode 100644 index e395586bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LensFormat.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensFormat extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensFormat'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Lens Format'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'APS-C', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Full-frame', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LensMount.php b/lib/PHPExiftool/Driver/Tag/Sony/LensMount.php deleted file mode 100644 index 59bb92cce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LensMount.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensMount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensMount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Lens Mount'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 16, - 'Label' => 'A-mount', - ), - 2 => array( - 'Id' => 17, - 'Label' => 'E-mount', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'A-mount', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'E-mount', - ), - 6 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 7 => array( - 'Id' => 1, - 'Label' => 'A-mount', - ), - 8 => array( - 'Id' => 2, - 'Label' => 'E-mount', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'A-mount', - ), - 11 => array( - 'Id' => 2, - 'Label' => 'E-mount', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'A-mount', - ), - 14 => array( - 'Id' => 2, - 'Label' => 'E-mount', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 16 => array( - 'Id' => 1, - 'Label' => 'A-mount', - ), - 17 => array( - 'Id' => 2, - 'Label' => 'E-mount', - ), - 18 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 19 => array( - 'Id' => 1, - 'Label' => 'A-mount (1)', - ), - 20 => array( - 'Id' => 4, - 'Label' => 'E-mount', - ), - 21 => array( - 'Id' => 5, - 'Label' => 'A-mount (5)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LensParameters.php b/lib/PHPExiftool/Driver/Tag/Sony/LensParameters.php deleted file mode 100644 index 3057c4193..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LensParameters.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensParameters extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensParameters'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16s'; - - protected $Writable = false; - - protected $Description = 'Lens Parameters'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LensSpec.php b/lib/PHPExiftool/Driver/Tag/Sony/LensSpec.php deleted file mode 100644 index 54b4fee45..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LensSpec.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSpec extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensSpec'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens Spec'; - - protected $flag_Permanent = true; - - protected $MaxLength = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LensType.php b/lib/PHPExiftool/Driver/Tag/Sony/LensType.php deleted file mode 100644 index 861b4a8ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LensType.php +++ /dev/null @@ -1,1796 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensType'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Lens Type'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Minolta AF 28-85mm F3.5-4.5 New', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Minolta AF 80-200mm F2.8 HS-APO G', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Minolta AF 28-70mm F2.8 G', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Minolta AF 28-80mm F4-5.6', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Minolta AF 85mm F1.4G', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Minolta AF 35-70mm F3.5-4.5 [II]', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Minolta AF 24-85mm F3.5-4.5 [New]', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6 APO [New] or 100-400mm or Sigma Lens', - ), - '7.1' => array( - 'Id' => '7.1', - 'Label' => 'Minolta AF 100-400mm F4.5-6.7 APO', - ), - '7.2' => array( - 'Id' => '7.2', - 'Label' => 'Sigma AF 100-300mm F4 EX DG IF', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Minolta AF 70-210mm F4.5-5.6 [II]', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Minolta AF 50mm F3.5 Macro', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Minolta AF 28-105mm F3.5-4.5 [New]', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Minolta AF 300mm F4 HS-APO G', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Minolta AF 100mm F2.8 Soft Focus', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Minolta AF 75-300mm F4.5-5.6 (New or II)', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Minolta AF 100-400mm F4.5-6.7 APO', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Minolta AF 400mm F4.5 HS-APO G', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Minolta AF 17-35mm F3.5 G', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Minolta AF 20-35mm F3.5-4.5', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Minolta AF 28-80mm F3.5-5.6 II', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Minolta AF 35mm F1.4 G', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Minolta/Sony 135mm F2.8 [T4.5] STF', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Minolta AF 35-80mm F4-5.6 II', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Minolta AF 200mm F4 Macro APO G', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Minolta/Sony AF 24-105mm F3.5-4.5 (D) or Sigma or Tamron Lens', - ), - '24.1' => array( - 'Id' => '24.1', - 'Label' => 'Sigma 18-50mm F2.8', - ), - '24.2' => array( - 'Id' => '24.2', - 'Label' => 'Sigma 17-70mm F2.8-4.5 (D)', - ), - '24.3' => array( - 'Id' => '24.3', - 'Label' => 'Sigma 20-40mm F2.8 EX DG Aspherical IF', - ), - '24.4' => array( - 'Id' => '24.4', - 'Label' => 'Sigma 18-200mm F3.5-6.3 DC', - ), - '24.5' => array( - 'Id' => '24.5', - 'Label' => 'Sigma DC 18-125mm F4-5,6 D', - ), - '24.6' => array( - 'Id' => '24.6', - 'Label' => 'Tamron SP AF 28-75mm F2.8 XR Di LD Aspherical [IF] Macro', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6 APO (D) or Sigma Lens', - ), - '25.1' => array( - 'Id' => '25.1', - 'Label' => 'Sigma 100-300mm F4 EX (APO (D) or D IF)', - ), - '25.2' => array( - 'Id' => '25.2', - 'Label' => 'Sigma 70mm F2.8 EX DG Macro', - ), - '25.3' => array( - 'Id' => '25.3', - 'Label' => 'Sigma 20mm F1.8 EX DG Aspherical RF', - ), - '25.4' => array( - 'Id' => '25.4', - 'Label' => 'Sigma 30mm F1.4 EX DC', - ), - '25.5' => array( - 'Id' => '25.5', - 'Label' => 'Sigma 24mm F1.8 EX DG ASP Macro', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Minolta AF 85mm F1.4 G (D)', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Minolta/Sony AF 100mm F2.8 Macro (D) or Tamron Lens', - ), - '28.1' => array( - 'Id' => '28.1', - 'Label' => 'Tamron SP AF 90mm F2.8 Di Macro', - ), - '28.2' => array( - 'Id' => '28.2', - 'Label' => 'Tamron SP AF 180mm F3.5 Di LD [IF] Macro', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Minolta/Sony AF 75-300mm F4.5-5.6 (D)', - ), - 30 => array( - 'Id' => 30, - 'Label' => 'Minolta AF 28-80mm F3.5-5.6 (D) or Sigma Lens', - ), - '30.1' => array( - 'Id' => '30.1', - 'Label' => 'Sigma AF 10-20mm F4-5.6 EX DC', - ), - '30.2' => array( - 'Id' => '30.2', - 'Label' => 'Sigma AF 12-24mm F4.5-5.6 EX DG', - ), - '30.3' => array( - 'Id' => '30.3', - 'Label' => 'Sigma 28-70mm EX DG F2.8', - ), - '30.4' => array( - 'Id' => '30.4', - 'Label' => 'Sigma 55-200mm F4-5.6 DC', - ), - 31 => array( - 'Id' => 31, - 'Label' => 'Minolta/Sony AF 50mm F2.8 Macro (D) or F3.5', - ), - '31.1' => array( - 'Id' => '31.1', - 'Label' => 'Minolta/Sony AF 50mm F3.5 Macro', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Minolta/Sony AF 300mm F2.8 G or 1.5x Teleconverter', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Minolta/Sony AF 70-200mm F2.8 G', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Minolta AF 85mm F1.4 G (D) Limited', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Minolta AF 28-100mm F3.5-5.6 (D)', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Minolta AF 17-35mm F2.8-4 (D)', - ), - 39 => array( - 'Id' => 39, - 'Label' => 'Minolta AF 28-75mm F2.8 (D)', - ), - 40 => array( - 'Id' => 40, - 'Label' => 'Minolta/Sony AF DT 18-70mm F3.5-5.6 (D)', - ), - 41 => array( - 'Id' => 41, - 'Label' => 'Minolta/Sony AF DT 11-18mm F4.5-5.6 (D) or Tamron Lens', - ), - '41.1' => array( - 'Id' => '41.1', - 'Label' => 'Tamron SP AF 11-18mm F4.5-5.6 Di II LD Aspherical IF', - ), - 42 => array( - 'Id' => 42, - 'Label' => 'Minolta/Sony AF DT 18-200mm F3.5-6.3 (D)', - ), - 43 => array( - 'Id' => 43, - 'Label' => 'Sony 35mm F1.4 G (SAL35F14G)', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Sony 50mm F1.4 (SAL50F14)', - ), - 45 => array( - 'Id' => 45, - 'Label' => 'Carl Zeiss Planar T* 85mm F1.4 ZA (SAL85F14Z)', - ), - 46 => array( - 'Id' => 46, - 'Label' => 'Carl Zeiss Vario-Sonnar T* DT 16-80mm F3.5-4.5 ZA (SAL1680Z)', - ), - 47 => array( - 'Id' => 47, - 'Label' => 'Carl Zeiss Sonnar T* 135mm F1.8 ZA (SAL135F18Z)', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Carl Zeiss Vario-Sonnar T* 24-70mm F2.8 ZA SSM (SAL2470Z)', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Sony DT 55-200mm F4-5.6 (SAL55200)', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Sony DT 18-250mm F3.5-6.3 (SAL18250)', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Sony DT 16-105mm F3.5-5.6 (SAL16105)', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Sony 70-300mm F4.5-5.6 G SSM (SAL70300G) or Tamron Lens', - ), - '52.1' => array( - 'Id' => '52.1', - 'Label' => 'Tamron SP 70-300mm F4-5.6 Di USD', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Sony 70-400mm F4-5.6 G SSM (SAL70400G)', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Carl Zeiss Vario-Sonnar T* 16-35mm F2.8 ZA SSM (SAL1635Z)', - ), - 55 => array( - 'Id' => 55, - 'Label' => 'Sony DT 18-55mm F3.5-5.6 SAM [II] (SAL1855)', - ), - 56 => array( - 'Id' => 56, - 'Label' => 'Sony DT 55-200mm F4-5.6 SAM (SAL55200-2)', - ), - 57 => array( - 'Id' => 57, - 'Label' => 'Sony DT 50mm F1.8 SAM (SAL50F18) or Tamron Lens', - ), - '57.1' => array( - 'Id' => '57.1', - 'Label' => 'Tamron SP AF 60mm F2 Di II LD [IF] Macro 1:1', - ), - '57.2' => array( - 'Id' => '57.2', - 'Label' => 'Tamron 18-270mm F3.5-6.3 Di II PZD', - ), - 58 => array( - 'Id' => 58, - 'Label' => 'Sony DT 30mm F2.8 Macro SAM (SAL30M28)', - ), - 59 => array( - 'Id' => 59, - 'Label' => 'Sony 28-75mm F2.8 SAM (SAL2875)', - ), - 60 => array( - 'Id' => 60, - 'Label' => 'Carl Zeiss Distagon T* 24mm F2 ZA SSM (SAL24F20Z)', - ), - 61 => array( - 'Id' => 61, - 'Label' => 'Sony 85mm F2.8 SAM (SAL85F28)', - ), - 62 => array( - 'Id' => 62, - 'Label' => 'Sony DT 35mm F1.8 SAM (SAL35F18)', - ), - 63 => array( - 'Id' => 63, - 'Label' => 'Sony DT 16-50mm F2.8 SSM (SAL1650)', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Sony 500mm F4.0 G SSM (SAL500F40G)', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Sony DT 18-135mm F3.5-5.6 SAM (SAL18135)', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Sony 300mm F2.8 G SSM II (SAL300F28G2)', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Sony 70-200mm F2.8 G SSM II (SAL70200G2)', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Sony DT 55-300mm F4.5-5.6 SAM (SAL55300)', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Sony 70-400mm F4-5.6 G SSM II (SAL70400G2)', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Carl Zeiss Planar T* 50mm F1.4 ZA SSM (SAL50F14Z)', - ), - 128 => array( - 'Id' => 128, - 'Label' => 'Tamron or Sigma Lens (128)', - ), - '128.1' => array( - 'Id' => '128.1', - 'Label' => 'Tamron AF 18-200mm F3.5-6.3 XR Di II LD Aspherical [IF] Macro', - ), - '128.10' => array( - 'Id' => '128.10', - 'Label' => 'Sigma 50mm F1.4 EX DG HSM', - ), - '128.11' => array( - 'Id' => '128.11', - 'Label' => 'Sigma 85mm F1.4 EX DG HSM', - ), - '128.12' => array( - 'Id' => '128.12', - 'Label' => 'Sigma 24-70mm F2.8 IF EX DG HSM', - ), - '128.13' => array( - 'Id' => '128.13', - 'Label' => 'Sigma 18-250mm F3.5-6.3 DC OS HSM', - ), - '128.14' => array( - 'Id' => '128.14', - 'Label' => 'Sigma 17-50mm F2.8 EX DC HSM', - ), - '128.15' => array( - 'Id' => '128.15', - 'Label' => 'Sigma 17-70mm F2.8-4 DC Macro HSM', - ), - '128.2' => array( - 'Id' => '128.2', - 'Label' => 'Tamron AF 28-300mm F3.5-6.3 XR Di LD Aspherical [IF] Macro', - ), - '128.3' => array( - 'Id' => '128.3', - 'Label' => 'Tamron 80-300mm F3.5-6.3', - ), - '128.4' => array( - 'Id' => '128.4', - 'Label' => 'Tamron AF 28-200mm F3.8-5.6 XR Di Aspherical [IF] Macro', - ), - '128.5' => array( - 'Id' => '128.5', - 'Label' => 'Tamron SP AF 17-35mm F2.8-4 Di LD Aspherical IF', - ), - '128.6' => array( - 'Id' => '128.6', - 'Label' => 'Sigma AF 50-150mm F2.8 EX DC APO HSM II', - ), - '128.7' => array( - 'Id' => '128.7', - 'Label' => 'Sigma 10-20mm F3.5 EX DC HSM', - ), - '128.8' => array( - 'Id' => '128.8', - 'Label' => 'Sigma 70-200mm F2.8 II EX DG APO MACRO HSM', - ), - '128.9' => array( - 'Id' => '128.9', - 'Label' => 'Sigma 10mm F2.8 EX DC HSM Fisheye', - ), - 129 => array( - 'Id' => 129, - 'Label' => 'Tamron Lens (129)', - ), - '129.1' => array( - 'Id' => '129.1', - 'Label' => 'Tamron 200-400mm F5.6 LD', - ), - '129.2' => array( - 'Id' => '129.2', - 'Label' => 'Tamron 70-300mm F4-5.6 LD', - ), - 131 => array( - 'Id' => 131, - 'Label' => 'Tamron 20-40mm F2.7-3.5 SP Aspherical IF', - ), - 135 => array( - 'Id' => 135, - 'Label' => 'Vivitar 28-210mm F3.5-5.6', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Tokina EMZ M100 AF 100mm F3.5', - ), - 137 => array( - 'Id' => 137, - 'Label' => 'Cosina 70-210mm F2.8-4 AF', - ), - 138 => array( - 'Id' => 138, - 'Label' => 'Soligor 19-35mm F3.5-4.5', - ), - 142 => array( - 'Id' => 142, - 'Label' => 'Voigtlander 70-300mm F4.5-5.6', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'Voigtlander Macro APO-Lanthar 125mm F2.5 SL', - ), - 194 => array( - 'Id' => 194, - 'Label' => 'Tamron SP AF 17-50mm F2.8 XR Di II LD Aspherical [IF]', - ), - 203 => array( - 'Id' => 203, - 'Label' => 'Tamron SP 70-200mm F2.8 Di USD', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Tamron Lens (255)', - ), - '255.1' => array( - 'Id' => '255.1', - 'Label' => 'Tamron SP AF 17-50mm F2.8 XR Di II LD Aspherical', - ), - '255.2' => array( - 'Id' => '255.2', - 'Label' => 'Tamron AF 18-250mm F3.5-6.3 XR Di II LD', - ), - '255.3' => array( - 'Id' => '255.3', - 'Label' => 'Tamron AF 55-200mm F4-5.6 Di II LD Macro', - ), - '255.4' => array( - 'Id' => '255.4', - 'Label' => 'Tamron AF 70-300mm F4-5.6 Di LD Macro 1:2', - ), - '255.5' => array( - 'Id' => '255.5', - 'Label' => 'Tamron SP AF 200-500mm F5.0-6.3 Di LD IF', - ), - '255.6' => array( - 'Id' => '255.6', - 'Label' => 'Tamron SP AF 10-24mm F3.5-4.5 Di II LD Aspherical IF', - ), - '255.7' => array( - 'Id' => '255.7', - 'Label' => 'Tamron SP AF 70-200mm F2.8 Di LD IF Macro', - ), - '255.8' => array( - 'Id' => '255.8', - 'Label' => 'Tamron SP AF 28-75mm F2.8 XR Di LD Aspherical IF', - ), - '255.9' => array( - 'Id' => '255.9', - 'Label' => 'Tamron AF 90-300mm F4.5-5.6 Telemacro', - ), - 2550 => array( - 'Id' => 2550, - 'Label' => 'Minolta AF 50mm F1.7', - ), - 2551 => array( - 'Id' => 2551, - 'Label' => 'Minolta AF 35-70mm F4 or Other Lens', - ), - '2551.1' => array( - 'Id' => '2551.1', - 'Label' => 'Sigma UC AF 28-70mm F3.5-4.5', - ), - '2551.2' => array( - 'Id' => '2551.2', - 'Label' => 'Sigma AF 28-70mm F2.8', - ), - '2551.3' => array( - 'Id' => '2551.3', - 'Label' => 'Sigma M-AF 70-200mm F2.8 EX Aspherical', - ), - '2551.4' => array( - 'Id' => '2551.4', - 'Label' => 'Quantaray M-AF 35-80mm F4-5.6', - ), - 2552 => array( - 'Id' => 2552, - 'Label' => 'Minolta AF 28-85mm F3.5-4.5 or Other Lens', - ), - '2552.1' => array( - 'Id' => '2552.1', - 'Label' => 'Tokina 19-35mm F3.5-4.5', - ), - '2552.2' => array( - 'Id' => '2552.2', - 'Label' => 'Tokina 28-70mm F2.8 AT-X', - ), - '2552.3' => array( - 'Id' => '2552.3', - 'Label' => 'Tokina 80-400mm F4.5-5.6 AT-X AF II 840', - ), - '2552.4' => array( - 'Id' => '2552.4', - 'Label' => 'Tokina AF PRO 28-80mm F2.8 AT-X 280', - ), - '2552.5' => array( - 'Id' => '2552.5', - 'Label' => 'Tokina AT-X PRO II AF 28-70mm F2.6-2.8 270', - ), - '2552.6' => array( - 'Id' => '2552.6', - 'Label' => 'Tamron AF 19-35mm F3.5-4.5', - ), - '2552.7' => array( - 'Id' => '2552.7', - 'Label' => 'Angenieux AF 28-70mm F2.6', - ), - '2552.8' => array( - 'Id' => '2552.8', - 'Label' => 'Tokina AT-X 17 AF 17mm F3.5', - ), - 2553 => array( - 'Id' => 2553, - 'Label' => 'Minolta AF 28-135mm F4-4.5 or Sigma Lens', - ), - '2553.1' => array( - 'Id' => '2553.1', - 'Label' => 'Sigma ZOOM-alpha 35-135mm F3.5-4.5', - ), - '2553.2' => array( - 'Id' => '2553.2', - 'Label' => 'Sigma 28-105mm F2.8-4 Aspherical', - ), - '2553.3' => array( - 'Id' => '2553.3', - 'Label' => 'Sigma 28-105mm F4-5.6 UC', - ), - 2554 => array( - 'Id' => 2554, - 'Label' => 'Minolta AF 35-105mm F3.5-4.5', - ), - 2555 => array( - 'Id' => 2555, - 'Label' => 'Minolta AF 70-210mm F4 Macro or Sigma Lens', - ), - '2555.1' => array( - 'Id' => '2555.1', - 'Label' => 'Sigma 70-210mm F4-5.6 APO', - ), - '2555.2' => array( - 'Id' => '2555.2', - 'Label' => 'Sigma M-AF 70-200mm F2.8 EX APO', - ), - '2555.3' => array( - 'Id' => '2555.3', - 'Label' => 'Sigma 75-200mm F2.8-3.5', - ), - 2556 => array( - 'Id' => 2556, - 'Label' => 'Minolta AF 135mm F2.8', - ), - 2557 => array( - 'Id' => 2557, - 'Label' => 'Minolta/Sony AF 28mm F2.8', - ), - 2558 => array( - 'Id' => 2558, - 'Label' => 'Minolta AF 24-50mm F4', - ), - 2560 => array( - 'Id' => 2560, - 'Label' => 'Minolta AF 100-200mm F4.5', - ), - 2561 => array( - 'Id' => 2561, - 'Label' => 'Minolta AF 75-300mm F4.5-5.6 or Sigma Lens', - ), - '2561.1' => array( - 'Id' => '2561.1', - 'Label' => 'Sigma 70-300mm F4-5.6 DL Macro', - ), - '2561.2' => array( - 'Id' => '2561.2', - 'Label' => 'Sigma 300mm F4 APO Macro', - ), - '2561.3' => array( - 'Id' => '2561.3', - 'Label' => 'Sigma AF 500mm F4.5 APO', - ), - '2561.4' => array( - 'Id' => '2561.4', - 'Label' => 'Sigma AF 170-500mm F5-6.3 APO Aspherical', - ), - '2561.5' => array( - 'Id' => '2561.5', - 'Label' => 'Tokina AT-X AF 300mm F4', - ), - '2561.6' => array( - 'Id' => '2561.6', - 'Label' => 'Tokina AT-X AF 400mm F5.6 SD', - ), - '2561.7' => array( - 'Id' => '2561.7', - 'Label' => 'Tokina AF 730 II 75-300mm F4.5-5.6', - ), - '2561.8' => array( - 'Id' => '2561.8', - 'Label' => 'Sigma 800mm F5.6 APO', - ), - '2561.9' => array( - 'Id' => '2561.9', - 'Label' => 'Sigma AF 400mm F5.6 APO Macro', - ), - 2562 => array( - 'Id' => 2562, - 'Label' => 'Minolta AF 50mm F1.4 [New]', - ), - 2563 => array( - 'Id' => 2563, - 'Label' => 'Minolta AF 300mm F2.8 APO or Sigma Lens', - ), - '2563.1' => array( - 'Id' => '2563.1', - 'Label' => 'Sigma AF 50-500mm F4-6.3 EX DG APO', - ), - '2563.2' => array( - 'Id' => '2563.2', - 'Label' => 'Sigma AF 170-500mm F5-6.3 APO Aspherical', - ), - '2563.3' => array( - 'Id' => '2563.3', - 'Label' => 'Sigma AF 500mm F4.5 EX DG APO', - ), - '2563.4' => array( - 'Id' => '2563.4', - 'Label' => 'Sigma 400mm F5.6 APO', - ), - 2564 => array( - 'Id' => 2564, - 'Label' => 'Minolta AF 50mm F2.8 Macro or Sigma Lens', - ), - '2564.1' => array( - 'Id' => '2564.1', - 'Label' => 'Sigma 50mm F2.8 EX Macro', - ), - 2565 => array( - 'Id' => 2565, - 'Label' => 'Minolta AF 600mm F4', - ), - 2566 => array( - 'Id' => 2566, - 'Label' => 'Minolta AF 24mm F2.8 or Sigma Lens', - ), - '2566.1' => array( - 'Id' => '2566.1', - 'Label' => 'Sigma 17-35mm F2.8-4 EX Aspherical', - ), - 2572 => array( - 'Id' => 2572, - 'Label' => 'Minolta/Sony AF 500mm F8 Reflex', - ), - 2578 => array( - 'Id' => 2578, - 'Label' => 'Minolta/Sony AF 16mm F2.8 Fisheye or Sigma Lens', - ), - '2578.1' => array( - 'Id' => '2578.1', - 'Label' => 'Sigma 8mm F4 EX [DG] Fisheye', - ), - '2578.2' => array( - 'Id' => '2578.2', - 'Label' => 'Sigma 14mm F3.5', - ), - '2578.3' => array( - 'Id' => '2578.3', - 'Label' => 'Sigma 15mm F2.8 Fisheye', - ), - 2579 => array( - 'Id' => 2579, - 'Label' => 'Minolta/Sony AF 20mm F2.8 or Tokina Lens', - ), - '2579.1' => array( - 'Id' => '2579.1', - 'Label' => 'Tokina AT-X Pro DX 11-16mm F2.8', - ), - 2581 => array( - 'Id' => 2581, - 'Label' => 'Minolta AF 100mm F2.8 Macro [New] or Sigma or Tamron Lens', - ), - '2581.1' => array( - 'Id' => '2581.1', - 'Label' => 'Sigma AF 90mm F2.8 Macro', - ), - '2581.2' => array( - 'Id' => '2581.2', - 'Label' => 'Sigma AF 105mm F2.8 EX [DG] Macro', - ), - '2581.3' => array( - 'Id' => '2581.3', - 'Label' => 'Sigma 180mm F5.6 Macro', - ), - '2581.4' => array( - 'Id' => '2581.4', - 'Label' => 'Sigma 180mm F3.5 EX DG Macro', - ), - '2581.5' => array( - 'Id' => '2581.5', - 'Label' => 'Tamron 90mm F2.8 Macro', - ), - 2585 => array( - 'Id' => 2585, - 'Label' => 'Minolta AF 35-105mm F3.5-4.5 New or Tamron Lens', - ), - '2585.1' => array( - 'Id' => '2585.1', - 'Label' => 'Beroflex 35-135mm F3.5-4.5', - ), - '2585.2' => array( - 'Id' => '2585.2', - 'Label' => 'Tamron 24-135mm F3.5-5.6', - ), - 2588 => array( - 'Id' => 2588, - 'Label' => 'Minolta AF 70-210mm F3.5-4.5', - ), - 2589 => array( - 'Id' => 2589, - 'Label' => 'Minolta AF 80-200mm F2.8 APO or Tokina Lens', - ), - '2589.1' => array( - 'Id' => '2589.1', - 'Label' => 'Tokina 80-200mm F2.8', - ), - 2590 => array( - 'Id' => 2590, - 'Label' => 'Minolta AF 200mm F2.8 G APO + Minolta AF 1.4x APO or Other Lens + 1.4x', - ), - '2590.1' => array( - 'Id' => '2590.1', - 'Label' => 'Minolta AF 600mm F4 HS-APO G + Minolta AF 1.4x APO', - ), - 2591 => array( - 'Id' => 2591, - 'Label' => 'Minolta AF 35mm F1.4', - ), - 2592 => array( - 'Id' => 2592, - 'Label' => 'Minolta AF 85mm F1.4 G (D)', - ), - 2593 => array( - 'Id' => 2593, - 'Label' => 'Minolta AF 200mm F2.8 G APO', - ), - 2594 => array( - 'Id' => 2594, - 'Label' => 'Minolta AF 3x-1x F1.7-2.8 Macro', - ), - 2596 => array( - 'Id' => 2596, - 'Label' => 'Minolta AF 28mm F2', - ), - 2597 => array( - 'Id' => 2597, - 'Label' => 'Minolta AF 35mm F2 [New]', - ), - 2598 => array( - 'Id' => 2598, - 'Label' => 'Minolta AF 100mm F2', - ), - 2601 => array( - 'Id' => 2601, - 'Label' => 'Minolta AF 200mm F2.8 G APO + Minolta AF 2x APO or Other Lens + 2x', - ), - '2601.1' => array( - 'Id' => '2601.1', - 'Label' => 'Minolta AF 600mm F4 HS-APO G + Minolta AF 2x APO', - ), - 2604 => array( - 'Id' => 2604, - 'Label' => 'Minolta AF 80-200mm F4.5-5.6', - ), - 2605 => array( - 'Id' => 2605, - 'Label' => 'Minolta AF 35-80mm F4-5.6', - ), - 2606 => array( - 'Id' => 2606, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6', - ), - 2607 => array( - 'Id' => 2607, - 'Label' => 'Minolta AF 35-80mm F4-5.6', - ), - 2608 => array( - 'Id' => 2608, - 'Label' => 'Minolta AF 300mm F2.8 HS-APO G', - ), - 2609 => array( - 'Id' => 2609, - 'Label' => 'Minolta AF 600mm F4 HS-APO G', - ), - 2612 => array( - 'Id' => 2612, - 'Label' => 'Minolta AF 200mm F2.8 HS-APO G', - ), - 2613 => array( - 'Id' => 2613, - 'Label' => 'Minolta AF 50mm F1.7 New', - ), - 2615 => array( - 'Id' => 2615, - 'Label' => 'Minolta AF 28-105mm F3.5-4.5 xi', - ), - 2616 => array( - 'Id' => 2616, - 'Label' => 'Minolta AF 35-200mm F4.5-5.6 xi', - ), - 2618 => array( - 'Id' => 2618, - 'Label' => 'Minolta AF 28-80mm F4-5.6 xi', - ), - 2619 => array( - 'Id' => 2619, - 'Label' => 'Minolta AF 80-200mm F4.5-5.6 xi', - ), - 2620 => array( - 'Id' => 2620, - 'Label' => 'Minolta AF 28-70mm F2.8 G', - ), - 2621 => array( - 'Id' => 2621, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6 xi', - ), - 2624 => array( - 'Id' => 2624, - 'Label' => 'Minolta AF 35-80mm F4-5.6 Power Zoom', - ), - 2628 => array( - 'Id' => 2628, - 'Label' => 'Minolta AF 80-200mm F2.8 G', - ), - 2629 => array( - 'Id' => 2629, - 'Label' => 'Minolta AF 85mm F1.4 New', - ), - 2631 => array( - 'Id' => 2631, - 'Label' => 'Minolta/Sony AF 100-300mm F4.5-5.6 APO', - ), - 2632 => array( - 'Id' => 2632, - 'Label' => 'Minolta AF 24-50mm F4 New', - ), - 2638 => array( - 'Id' => 2638, - 'Label' => 'Minolta AF 50mm F2.8 Macro New', - ), - 2639 => array( - 'Id' => 2639, - 'Label' => 'Minolta AF 100mm F2.8 Macro', - ), - 2641 => array( - 'Id' => 2641, - 'Label' => 'Minolta/Sony AF 20mm F2.8 New', - ), - 2642 => array( - 'Id' => 2642, - 'Label' => 'Minolta AF 24mm F2.8 New', - ), - 2644 => array( - 'Id' => 2644, - 'Label' => 'Minolta AF 100-400mm F4.5-6.7 APO', - ), - 2662 => array( - 'Id' => 2662, - 'Label' => 'Minolta AF 50mm F1.4 New', - ), - 2667 => array( - 'Id' => 2667, - 'Label' => 'Minolta AF 35mm F2 New', - ), - 2668 => array( - 'Id' => 2668, - 'Label' => 'Minolta AF 28mm F2 New', - ), - 2672 => array( - 'Id' => 2672, - 'Label' => 'Minolta AF 24-105mm F3.5-4.5 (D)', - ), - 3046 => array( - 'Id' => 3046, - 'Label' => 'Metabones Canon EF Speed Booster', - ), - 4567 => array( - 'Id' => 4567, - 'Label' => 'Tokina 70-210mm F4-5.6', - ), - 4574 => array( - 'Id' => 4574, - 'Label' => '2x Teleconverter or Tamron or Tokina Lens', - ), - '4574.1' => array( - 'Id' => '4574.1', - 'Label' => 'Tamron SP AF 90mm F2.5', - ), - '4574.2' => array( - 'Id' => '4574.2', - 'Label' => 'Tokina RF 500mm F8.0 x2', - ), - '4574.3' => array( - 'Id' => '4574.3', - 'Label' => 'Tokina 300mm F2.8 x2', - ), - 4575 => array( - 'Id' => 4575, - 'Label' => '1.4x Teleconverter', - ), - 4585 => array( - 'Id' => 4585, - 'Label' => 'Tamron SP AF 300mm F2.8 LD IF', - ), - 4586 => array( - 'Id' => 4586, - 'Label' => 'Tamron SP AF 35-105mm F2.8 LD Aspherical IF', - ), - 4587 => array( - 'Id' => 4587, - 'Label' => 'Tamron AF 70-210mm F2.8 SP LD', - ), - 6118 => array( - 'Id' => 6118, - 'Label' => 'Metabones Canon EF Adapter', - ), - 6553 => array( - 'Id' => 6553, - 'Label' => 'E-Mount, T-Mount, Other Lens or no lens', - ), - '6553.1' => array( - 'Id' => '6553.1', - 'Label' => 'Sony E 16mm F2.8', - ), - '6553.10' => array( - 'Id' => '6553.10', - 'Label' => 'Sony E PZ 18-200mm F3.5-6.3 OSS', - ), - '6553.11' => array( - 'Id' => '6553.11', - 'Label' => 'Sony FE 55mm F1.8 ZA', - ), - '6553.12' => array( - 'Id' => '6553.12', - 'Label' => 'Sony E 18-55mm F3.5-5.6 OSS', - ), - '6553.13' => array( - 'Id' => '6553.13', - 'Label' => 'Sony FE 70-200mm F4 G OSS', - ), - '6553.14' => array( - 'Id' => '6553.14', - 'Label' => 'Sony FE 28-70mm F3.5-5.6 OSS', - ), - '6553.15' => array( - 'Id' => '6553.15', - 'Label' => 'Sigma 19mm F2.8 [EX] DN', - ), - '6553.16' => array( - 'Id' => '6553.16', - 'Label' => 'Sigma 30mm F2.8 [EX] DN', - ), - '6553.17' => array( - 'Id' => '6553.17', - 'Label' => 'Sigma 60mm F2.8 DN', - ), - '6553.18' => array( - 'Id' => '6553.18', - 'Label' => 'Tamron 18-200mm F3.5-6.3 Di III VC', - ), - '6553.19' => array( - 'Id' => '6553.19', - 'Label' => 'Zeiss Touit 12mm F2.8', - ), - '6553.2' => array( - 'Id' => '6553.2', - 'Label' => 'Sony E PZ 16-50mm F3.5-5.6 OSS', - ), - '6553.20' => array( - 'Id' => '6553.20', - 'Label' => 'Zeiss Touit 32mm F1.8', - ), - '6553.21' => array( - 'Id' => '6553.21', - 'Label' => 'Zeiss Touit 50mm F2.8 Macro', - ), - '6553.22' => array( - 'Id' => '6553.22', - 'Label' => 'Arax MC 35mm F2.8 Tilt+Shift', - ), - '6553.23' => array( - 'Id' => '6553.23', - 'Label' => 'Arax MC 80mm F2.8 Tilt+Shift', - ), - '6553.24' => array( - 'Id' => '6553.24', - 'Label' => 'Sony E 55-210mm F4.5-6.3 OSS', - ), - '6553.25' => array( - 'Id' => '6553.25', - 'Label' => 'Zenitar MF 16mm F2.8 Fisheye M42', - ), - '6553.26' => array( - 'Id' => '6553.26', - 'Label' => 'Samyang 500mm Mirror F8.0', - ), - '6553.27' => array( - 'Id' => '6553.27', - 'Label' => 'Pentacon Auto 135mm F2.8', - ), - '6553.28' => array( - 'Id' => '6553.28', - 'Label' => 'Pentacon Auto 29mm F2.8', - ), - '6553.29' => array( - 'Id' => '6553.29', - 'Label' => 'Helios 44-2 58mm F2.0', - ), - '6553.3' => array( - 'Id' => '6553.3', - 'Label' => 'Sony FE 35mm F2.8 ZA', - ), - '6553.30' => array( - 'Id' => '6553.30', - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS', - ), - '6553.31' => array( - 'Id' => '6553.31', - 'Label' => 'Sony E 30mm F3.5 Macro', - ), - '6553.32' => array( - 'Id' => '6553.32', - 'Label' => 'Sony E 24mm F1.8 ZA', - ), - '6553.33' => array( - 'Id' => '6553.33', - 'Label' => 'Sony E 50mm F1.8 OSS', - ), - '6553.34' => array( - 'Id' => '6553.34', - 'Label' => 'Sony E 16-70mm F4 ZA OSS', - ), - '6553.35' => array( - 'Id' => '6553.35', - 'Label' => 'Sony E 10-18mm F4 OSS', - ), - '6553.4' => array( - 'Id' => '6553.4', - 'Label' => 'Sony FE 24-70mm F4 ZA OSS', - ), - '6553.5' => array( - 'Id' => '6553.5', - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS LE', - ), - '6553.6' => array( - 'Id' => '6553.6', - 'Label' => 'Sony E 20mm F2.8', - ), - '6553.7' => array( - 'Id' => '6553.7', - 'Label' => 'Sony E 35mm F1.8 OSS', - ), - '6553.8' => array( - 'Id' => '6553.8', - 'Label' => 'Sony E PZ 18-105mm F4 G OSS', - ), - '6553.9' => array( - 'Id' => '6553.9', - 'Label' => 'Sony E 18-50mm F4-5.6', - ), - 25501 => array( - 'Id' => 25501, - 'Label' => 'Minolta AF 50mm F1.7', - ), - 25511 => array( - 'Id' => 25511, - 'Label' => 'Minolta AF 35-70mm F4 or Other Lens', - ), - '25511.1' => array( - 'Id' => '25511.1', - 'Label' => 'Sigma UC AF 28-70mm F3.5-4.5', - ), - '25511.2' => array( - 'Id' => '25511.2', - 'Label' => 'Sigma AF 28-70mm F2.8', - ), - '25511.3' => array( - 'Id' => '25511.3', - 'Label' => 'Sigma M-AF 70-200mm F2.8 EX Aspherical', - ), - '25511.4' => array( - 'Id' => '25511.4', - 'Label' => 'Quantaray M-AF 35-80mm F4-5.6', - ), - 25521 => array( - 'Id' => 25521, - 'Label' => 'Minolta AF 28-85mm F3.5-4.5 or Other Lens', - ), - '25521.1' => array( - 'Id' => '25521.1', - 'Label' => 'Tokina 19-35mm F3.5-4.5', - ), - '25521.2' => array( - 'Id' => '25521.2', - 'Label' => 'Tokina 28-70mm F2.8 AT-X', - ), - '25521.3' => array( - 'Id' => '25521.3', - 'Label' => 'Tokina 80-400mm F4.5-5.6 AT-X AF II 840', - ), - '25521.4' => array( - 'Id' => '25521.4', - 'Label' => 'Tokina AF PRO 28-80mm F2.8 AT-X 280', - ), - '25521.5' => array( - 'Id' => '25521.5', - 'Label' => 'Tokina AT-X PRO II AF 28-70mm F2.6-2.8 270', - ), - '25521.6' => array( - 'Id' => '25521.6', - 'Label' => 'Tamron AF 19-35mm F3.5-4.5', - ), - '25521.7' => array( - 'Id' => '25521.7', - 'Label' => 'Angenieux AF 28-70mm F2.6', - ), - '25521.8' => array( - 'Id' => '25521.8', - 'Label' => 'Tokina AT-X 17 AF 17mm F3.5', - ), - 25531 => array( - 'Id' => 25531, - 'Label' => 'Minolta AF 28-135mm F4-4.5 or Sigma Lens', - ), - '25531.1' => array( - 'Id' => '25531.1', - 'Label' => 'Sigma ZOOM-alpha 35-135mm F3.5-4.5', - ), - '25531.2' => array( - 'Id' => '25531.2', - 'Label' => 'Sigma 28-105mm F2.8-4 Aspherical', - ), - '25531.3' => array( - 'Id' => '25531.3', - 'Label' => 'Sigma 28-105mm F4-5.6 UC', - ), - 25541 => array( - 'Id' => 25541, - 'Label' => 'Minolta AF 35-105mm F3.5-4.5', - ), - 25551 => array( - 'Id' => 25551, - 'Label' => 'Minolta AF 70-210mm F4 Macro or Sigma Lens', - ), - '25551.1' => array( - 'Id' => '25551.1', - 'Label' => 'Sigma 70-210mm F4-5.6 APO', - ), - '25551.2' => array( - 'Id' => '25551.2', - 'Label' => 'Sigma M-AF 70-200mm F2.8 EX APO', - ), - '25551.3' => array( - 'Id' => '25551.3', - 'Label' => 'Sigma 75-200mm F2.8-3.5', - ), - 25561 => array( - 'Id' => 25561, - 'Label' => 'Minolta AF 135mm F2.8', - ), - 25571 => array( - 'Id' => 25571, - 'Label' => 'Minolta/Sony AF 28mm F2.8', - ), - 25581 => array( - 'Id' => 25581, - 'Label' => 'Minolta AF 24-50mm F4', - ), - 25601 => array( - 'Id' => 25601, - 'Label' => 'Minolta AF 100-200mm F4.5', - ), - 25611 => array( - 'Id' => 25611, - 'Label' => 'Minolta AF 75-300mm F4.5-5.6 or Sigma Lens', - ), - '25611.1' => array( - 'Id' => '25611.1', - 'Label' => 'Sigma 70-300mm F4-5.6 DL Macro', - ), - '25611.2' => array( - 'Id' => '25611.2', - 'Label' => 'Sigma 300mm F4 APO Macro', - ), - '25611.3' => array( - 'Id' => '25611.3', - 'Label' => 'Sigma AF 500mm F4.5 APO', - ), - '25611.4' => array( - 'Id' => '25611.4', - 'Label' => 'Sigma AF 170-500mm F5-6.3 APO Aspherical', - ), - '25611.5' => array( - 'Id' => '25611.5', - 'Label' => 'Tokina AT-X AF 300mm F4', - ), - '25611.6' => array( - 'Id' => '25611.6', - 'Label' => 'Tokina AT-X AF 400mm F5.6 SD', - ), - '25611.7' => array( - 'Id' => '25611.7', - 'Label' => 'Tokina AF 730 II 75-300mm F4.5-5.6', - ), - '25611.8' => array( - 'Id' => '25611.8', - 'Label' => 'Sigma 800mm F5.6 APO', - ), - '25611.9' => array( - 'Id' => '25611.9', - 'Label' => 'Sigma AF 400mm F5.6 APO Macro', - ), - 25621 => array( - 'Id' => 25621, - 'Label' => 'Minolta AF 50mm F1.4 [New]', - ), - 25631 => array( - 'Id' => 25631, - 'Label' => 'Minolta AF 300mm F2.8 APO or Sigma Lens', - ), - '25631.1' => array( - 'Id' => '25631.1', - 'Label' => 'Sigma AF 50-500mm F4-6.3 EX DG APO', - ), - '25631.2' => array( - 'Id' => '25631.2', - 'Label' => 'Sigma AF 170-500mm F5-6.3 APO Aspherical', - ), - '25631.3' => array( - 'Id' => '25631.3', - 'Label' => 'Sigma AF 500mm F4.5 EX DG APO', - ), - '25631.4' => array( - 'Id' => '25631.4', - 'Label' => 'Sigma 400mm F5.6 APO', - ), - 25641 => array( - 'Id' => 25641, - 'Label' => 'Minolta AF 50mm F2.8 Macro or Sigma Lens', - ), - '25641.1' => array( - 'Id' => '25641.1', - 'Label' => 'Sigma 50mm F2.8 EX Macro', - ), - 25651 => array( - 'Id' => 25651, - 'Label' => 'Minolta AF 600mm F4', - ), - 25661 => array( - 'Id' => 25661, - 'Label' => 'Minolta AF 24mm F2.8 or Sigma Lens', - ), - '25661.1' => array( - 'Id' => '25661.1', - 'Label' => 'Sigma 17-35mm F2.8-4 EX Aspherical', - ), - 25721 => array( - 'Id' => 25721, - 'Label' => 'Minolta/Sony AF 500mm F8 Reflex', - ), - 25781 => array( - 'Id' => 25781, - 'Label' => 'Minolta/Sony AF 16mm F2.8 Fisheye or Sigma Lens', - ), - '25781.1' => array( - 'Id' => '25781.1', - 'Label' => 'Sigma 8mm F4 EX [DG] Fisheye', - ), - '25781.2' => array( - 'Id' => '25781.2', - 'Label' => 'Sigma 14mm F3.5', - ), - '25781.3' => array( - 'Id' => '25781.3', - 'Label' => 'Sigma 15mm F2.8 Fisheye', - ), - 25791 => array( - 'Id' => 25791, - 'Label' => 'Minolta/Sony AF 20mm F2.8 or Tokina Lens', - ), - '25791.1' => array( - 'Id' => '25791.1', - 'Label' => 'Tokina AT-X Pro DX 11-16mm F2.8', - ), - 25811 => array( - 'Id' => 25811, - 'Label' => 'Minolta AF 100mm F2.8 Macro [New] or Sigma or Tamron Lens', - ), - '25811.1' => array( - 'Id' => '25811.1', - 'Label' => 'Sigma AF 90mm F2.8 Macro', - ), - '25811.2' => array( - 'Id' => '25811.2', - 'Label' => 'Sigma AF 105mm F2.8 EX [DG] Macro', - ), - '25811.3' => array( - 'Id' => '25811.3', - 'Label' => 'Sigma 180mm F5.6 Macro', - ), - '25811.4' => array( - 'Id' => '25811.4', - 'Label' => 'Sigma 180mm F3.5 EX DG Macro', - ), - '25811.5' => array( - 'Id' => '25811.5', - 'Label' => 'Tamron 90mm F2.8 Macro', - ), - 25851 => array( - 'Id' => 25851, - 'Label' => 'Beroflex 35-135mm F3.5-4.5', - ), - 25858 => array( - 'Id' => 25858, - 'Label' => 'Minolta AF 35-105mm F3.5-4.5 New or Tamron Lens', - ), - '25858.1' => array( - 'Id' => '25858.1', - 'Label' => 'Tamron 24-135mm F3.5-5.6', - ), - 25881 => array( - 'Id' => 25881, - 'Label' => 'Minolta AF 70-210mm F3.5-4.5', - ), - 25891 => array( - 'Id' => 25891, - 'Label' => 'Minolta AF 80-200mm F2.8 APO or Tokina Lens', - ), - '25891.1' => array( - 'Id' => '25891.1', - 'Label' => 'Tokina 80-200mm F2.8', - ), - 25901 => array( - 'Id' => 25901, - 'Label' => 'Minolta AF 200mm F2.8 G APO + Minolta AF 1.4x APO or Other Lens + 1.4x', - ), - '25901.1' => array( - 'Id' => '25901.1', - 'Label' => 'Minolta AF 600mm F4 HS-APO G + Minolta AF 1.4x APO', - ), - 25911 => array( - 'Id' => 25911, - 'Label' => 'Minolta AF 35mm F1.4', - ), - 25921 => array( - 'Id' => 25921, - 'Label' => 'Minolta AF 85mm F1.4 G (D)', - ), - 25931 => array( - 'Id' => 25931, - 'Label' => 'Minolta AF 200mm F2.8 G APO', - ), - 25941 => array( - 'Id' => 25941, - 'Label' => 'Minolta AF 3x-1x F1.7-2.8 Macro', - ), - 25961 => array( - 'Id' => 25961, - 'Label' => 'Minolta AF 28mm F2', - ), - 25971 => array( - 'Id' => 25971, - 'Label' => 'Minolta AF 35mm F2 [New]', - ), - 25981 => array( - 'Id' => 25981, - 'Label' => 'Minolta AF 100mm F2', - ), - 26011 => array( - 'Id' => 26011, - 'Label' => 'Minolta AF 200mm F2.8 G APO + Minolta AF 2x APO or Other Lens + 2x', - ), - '26011.1' => array( - 'Id' => '26011.1', - 'Label' => 'Minolta AF 600mm F4 HS-APO G + Minolta AF 2x APO', - ), - 26041 => array( - 'Id' => 26041, - 'Label' => 'Minolta AF 80-200mm F4.5-5.6', - ), - 26051 => array( - 'Id' => 26051, - 'Label' => 'Minolta AF 35-80mm F4-5.6', - ), - 26061 => array( - 'Id' => 26061, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6', - ), - 26071 => array( - 'Id' => 26071, - 'Label' => 'Minolta AF 35-80mm F4-5.6', - ), - 26081 => array( - 'Id' => 26081, - 'Label' => 'Minolta AF 300mm F2.8 HS-APO G', - ), - 26091 => array( - 'Id' => 26091, - 'Label' => 'Minolta AF 600mm F4 HS-APO G', - ), - 26121 => array( - 'Id' => 26121, - 'Label' => 'Minolta AF 200mm F2.8 HS-APO G', - ), - 26131 => array( - 'Id' => 26131, - 'Label' => 'Minolta AF 50mm F1.7 New', - ), - 26151 => array( - 'Id' => 26151, - 'Label' => 'Minolta AF 28-105mm F3.5-4.5 xi', - ), - 26161 => array( - 'Id' => 26161, - 'Label' => 'Minolta AF 35-200mm F4.5-5.6 xi', - ), - 26181 => array( - 'Id' => 26181, - 'Label' => 'Minolta AF 28-80mm F4-5.6 xi', - ), - 26191 => array( - 'Id' => 26191, - 'Label' => 'Minolta AF 80-200mm F4.5-5.6 xi', - ), - 26201 => array( - 'Id' => 26201, - 'Label' => 'Minolta AF 28-70mm F2.8 G', - ), - 26211 => array( - 'Id' => 26211, - 'Label' => 'Minolta AF 100-300mm F4.5-5.6 xi', - ), - 26241 => array( - 'Id' => 26241, - 'Label' => 'Minolta AF 35-80mm F4-5.6 Power Zoom', - ), - 26281 => array( - 'Id' => 26281, - 'Label' => 'Minolta AF 80-200mm F2.8 G', - ), - 26291 => array( - 'Id' => 26291, - 'Label' => 'Minolta AF 85mm F1.4 New', - ), - 26311 => array( - 'Id' => 26311, - 'Label' => 'Minolta/Sony AF 100-300mm F4.5-5.6 APO', - ), - 26321 => array( - 'Id' => 26321, - 'Label' => 'Minolta AF 24-50mm F4 New', - ), - 26381 => array( - 'Id' => 26381, - 'Label' => 'Minolta AF 50mm F2.8 Macro New', - ), - 26391 => array( - 'Id' => 26391, - 'Label' => 'Minolta AF 100mm F2.8 Macro', - ), - 26411 => array( - 'Id' => 26411, - 'Label' => 'Minolta/Sony AF 20mm F2.8 New', - ), - 26421 => array( - 'Id' => 26421, - 'Label' => 'Minolta AF 24mm F2.8 New', - ), - 26441 => array( - 'Id' => 26441, - 'Label' => 'Minolta AF 100-400mm F4.5-6.7 APO', - ), - 26621 => array( - 'Id' => 26621, - 'Label' => 'Minolta AF 50mm F1.4 New', - ), - 26671 => array( - 'Id' => 26671, - 'Label' => 'Minolta AF 35mm F2 New', - ), - 26681 => array( - 'Id' => 26681, - 'Label' => 'Minolta AF 28mm F2 New', - ), - 26721 => array( - 'Id' => 26721, - 'Label' => 'Minolta AF 24-105mm F3.5-4.5 (D)', - ), - 30464 => array( - 'Id' => 30464, - 'Label' => 'Metabones Canon EF Speed Booster', - ), - 45671 => array( - 'Id' => 45671, - 'Label' => 'Tokina 70-210mm F4-5.6', - ), - 45741 => array( - 'Id' => 45741, - 'Label' => '2x Teleconverter or Tamron or Tokina Lens', - ), - '45741.1' => array( - 'Id' => '45741.1', - 'Label' => 'Tamron SP AF 90mm F2.5', - ), - '45741.2' => array( - 'Id' => '45741.2', - 'Label' => 'Tokina RF 500mm F8.0 x2', - ), - '45741.3' => array( - 'Id' => '45741.3', - 'Label' => 'Tokina 300mm F2.8 x2', - ), - 45751 => array( - 'Id' => 45751, - 'Label' => '1.4x Teleconverter', - ), - 45851 => array( - 'Id' => 45851, - 'Label' => 'Tamron SP AF 300mm F2.8 LD IF', - ), - 45861 => array( - 'Id' => 45861, - 'Label' => 'Tamron SP AF 35-105mm F2.8 LD Aspherical IF', - ), - 45871 => array( - 'Id' => 45871, - 'Label' => 'Tamron AF 70-210mm F2.8 SP LD', - ), - 61184 => array( - 'Id' => 61184, - 'Label' => 'Metabones Canon EF Adapter', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'E-Mount, T-Mount, Other Lens or no lens', - ), - '65535.10' => array( - 'Id' => '65535.10', - 'Label' => 'Sony E PZ 16-50mm F3.5-5.6 OSS', - ), - '65535.1' => array( - 'Id' => '65535.1', - 'Label' => 'Sony E 16mm F2.8', - ), - '65535.11' => array( - 'Id' => '65535.11', - 'Label' => 'Sony FE 35mm F2.8 ZA', - ), - '65535.12' => array( - 'Id' => '65535.12', - 'Label' => 'Sony FE 24-70mm F4 ZA OSS', - ), - '65535.13' => array( - 'Id' => '65535.13', - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS LE', - ), - '65535.14' => array( - 'Id' => '65535.14', - 'Label' => 'Sony E 20mm F2.8', - ), - '65535.15' => array( - 'Id' => '65535.15', - 'Label' => 'Sony E 35mm F1.8 OSS', - ), - '65535.16' => array( - 'Id' => '65535.16', - 'Label' => 'Sony E PZ 18-105mm F4 G OSS', - ), - '65535.17' => array( - 'Id' => '65535.17', - 'Label' => 'Sony E 18-50mm F4-5.6', - ), - '65535.18' => array( - 'Id' => '65535.18', - 'Label' => 'Sony E PZ 18-200mm F3.5-6.3 OSS', - ), - '65535.19' => array( - 'Id' => '65535.19', - 'Label' => 'Sony FE 55mm F1.8 ZA', - ), - '65535.2' => array( - 'Id' => '65535.2', - 'Label' => 'Sony E 18-55mm F3.5-5.6 OSS', - ), - '65535.20' => array( - 'Id' => '65535.20', - 'Label' => 'Sony FE 70-200mm F4 G OSS', - ), - '65535.21' => array( - 'Id' => '65535.21', - 'Label' => 'Sony FE 28-70mm F3.5-5.6 OSS', - ), - '65535.22' => array( - 'Id' => '65535.22', - 'Label' => 'Sigma 19mm F2.8 [EX] DN', - ), - '65535.23' => array( - 'Id' => '65535.23', - 'Label' => 'Sigma 30mm F2.8 [EX] DN', - ), - '65535.24' => array( - 'Id' => '65535.24', - 'Label' => 'Sigma 60mm F2.8 DN', - ), - '65535.25' => array( - 'Id' => '65535.25', - 'Label' => 'Tamron 18-200mm F3.5-6.3 Di III VC', - ), - '65535.26' => array( - 'Id' => '65535.26', - 'Label' => 'Zeiss Touit 12mm F2.8', - ), - '65535.27' => array( - 'Id' => '65535.27', - 'Label' => 'Zeiss Touit 32mm F1.8', - ), - '65535.28' => array( - 'Id' => '65535.28', - 'Label' => 'Zeiss Touit 50mm F2.8 Macro', - ), - '65535.29' => array( - 'Id' => '65535.29', - 'Label' => 'Arax MC 35mm F2.8 Tilt+Shift', - ), - '65535.30' => array( - 'Id' => '65535.30', - 'Label' => 'Arax MC 80mm F2.8 Tilt+Shift', - ), - '65535.3' => array( - 'Id' => '65535.3', - 'Label' => 'Sony E 55-210mm F4.5-6.3 OSS', - ), - '65535.31' => array( - 'Id' => '65535.31', - 'Label' => 'Zenitar MF 16mm F2.8 Fisheye M42', - ), - '65535.32' => array( - 'Id' => '65535.32', - 'Label' => 'Samyang 500mm Mirror F8.0', - ), - '65535.33' => array( - 'Id' => '65535.33', - 'Label' => 'Pentacon Auto 135mm F2.8', - ), - '65535.34' => array( - 'Id' => '65535.34', - 'Label' => 'Pentacon Auto 29mm F2.8', - ), - '65535.35' => array( - 'Id' => '65535.35', - 'Label' => 'Helios 44-2 58mm F2.0', - ), - '65535.4' => array( - 'Id' => '65535.4', - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS', - ), - '65535.5' => array( - 'Id' => '65535.5', - 'Label' => 'Sony E 30mm F3.5 Macro', - ), - '65535.6' => array( - 'Id' => '65535.6', - 'Label' => 'Sony E 24mm F1.8 ZA', - ), - '65535.7' => array( - 'Id' => '65535.7', - 'Label' => 'Sony E 50mm F1.8 OSS', - ), - '65535.8' => array( - 'Id' => '65535.8', - 'Label' => 'Sony E 16-70mm F4 ZA OSS', - ), - '65535.9' => array( - 'Id' => '65535.9', - 'Label' => 'Sony E 10-18mm F4 OSS', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LensType2.php b/lib/PHPExiftool/Driver/Tag/Sony/LensType2.php deleted file mode 100644 index 638aebc1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LensType2.php +++ /dev/null @@ -1,164 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensType2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensType2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Lens Type 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown E-mount lens or other lens', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Sony LA-EA1 Adapter', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Sony LA-EA2 Adapter', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Sony LA-EA3 Adapter', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Sony LA-EA4 Adapter', - ), - 44 => array( - 'Id' => 44, - 'Label' => 'Metabones Canon EF Smart Adapter', - ), - 78 => array( - 'Id' => 78, - 'Label' => 'Metabones Canon EF Smart Adapter Mark III', - ), - 239 => array( - 'Id' => 239, - 'Label' => 'Metabones Canon EF Speed Booster', - ), - 32784 => array( - 'Id' => 32784, - 'Label' => 'Sony E 16mm F2.8', - ), - 32785 => array( - 'Id' => 32785, - 'Label' => 'Sony E 18-55mm F3.5-5.6 OSS', - ), - 32786 => array( - 'Id' => 32786, - 'Label' => 'Sony E 55-210mm F4.5-6.3 OSS', - ), - 32787 => array( - 'Id' => 32787, - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS', - ), - 32788 => array( - 'Id' => 32788, - 'Label' => 'Sony E 30mm F3.5 Macro', - ), - 32789 => array( - 'Id' => 32789, - 'Label' => 'Sony E 24mm F1.8 ZA', - ), - 32790 => array( - 'Id' => 32790, - 'Label' => 'Sony E 50mm F1.8 OSS', - ), - 32791 => array( - 'Id' => 32791, - 'Label' => 'Sony E 16-70mm F4 ZA OSS', - ), - 32792 => array( - 'Id' => 32792, - 'Label' => 'Sony E 10-18mm F4 OSS', - ), - 32793 => array( - 'Id' => 32793, - 'Label' => 'Sony E PZ 16-50mm F3.5-5.6 OSS', - ), - 32794 => array( - 'Id' => 32794, - 'Label' => 'Sony FE 35mm F2.8 ZA', - ), - 32795 => array( - 'Id' => 32795, - 'Label' => 'Sony FE 24-70mm F4 ZA OSS', - ), - 32797 => array( - 'Id' => 32797, - 'Label' => 'Sony E 18-200mm F3.5-6.3 OSS LE', - ), - 32798 => array( - 'Id' => 32798, - 'Label' => 'Sony E 20mm F2.8', - ), - 32799 => array( - 'Id' => 32799, - 'Label' => 'Sony E 35mm F1.8 OSS', - ), - 32800 => array( - 'Id' => 32800, - 'Label' => 'Sony E PZ 18-105mm F4 G OSS', - ), - 32803 => array( - 'Id' => 32803, - 'Label' => 'Sony E 18-50mm F4-5.6', - ), - 32807 => array( - 'Id' => 32807, - 'Label' => 'Sony E PZ 18-200mm F3.5-6.3 OSS', - ), - 32808 => array( - 'Id' => 32808, - 'Label' => 'Sony FE 55mm F1.8 ZA', - ), - 32810 => array( - 'Id' => 32810, - 'Label' => 'Sony FE 70-200mm F4 G OSS', - ), - 32813 => array( - 'Id' => 32813, - 'Label' => 'Sony FE 28-70mm F3.5-5.6 OSS', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LensZoomPosition.php b/lib/PHPExiftool/Driver/Tag/Sony/LensZoomPosition.php deleted file mode 100644 index 3915a6691..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LensZoomPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensZoomPosition extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LensZoomPosition'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Lens Zoom Position'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewAFMethod.php b/lib/PHPExiftool/Driver/Tag/Sony/LiveViewAFMethod.php deleted file mode 100644 index 8258e5925..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewAFMethod.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewAFMethod extends AbstractTag -{ - - protected $Id = 32; - - protected $Name = 'LiveViewAFMethod'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View AF Method'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Phase-detect AF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Contrast AF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewAFSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/LiveViewAFSetting.php deleted file mode 100644 index 26c2ba613..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewAFSetting.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewAFSetting extends AbstractTag -{ - - protected $Id = 54; - - protected $Name = 'LiveViewAFSetting'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View AF Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Phase-detect AF', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Contrast AF', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewFocusMode.php b/lib/PHPExiftool/Driver/Tag/Sony/LiveViewFocusMode.php deleted file mode 100644 index 5d0dee0b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewFocusMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewFocusMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LiveViewFocusMode'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View Focus Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'AF', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewMetering.php b/lib/PHPExiftool/Driver/Tag/Sony/LiveViewMetering.php deleted file mode 100644 index b6592d49a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LiveViewMetering.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LiveViewMetering extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LiveViewMetering'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Live View Metering'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 16 => array( - 'Id' => 16, - 'Label' => '40 Segment', - ), - 32 => array( - 'Id' => 32, - 'Label' => '1200-zone Evaluative', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/LongExposureNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Sony/LongExposureNoiseReduction.php deleted file mode 100644 index 310d28374..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/LongExposureNoiseReduction.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LongExposureNoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'LongExposureNoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Long Exposure Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 16, - 'Label' => 'On', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'On (unused)', - ), - 6 => array( - 'Id' => 65537, - 'Label' => 'On (dark subtracted)', - ), - 7 => array( - 'Id' => 4294901760, - 'Label' => 'Off (65535)', - ), - 8 => array( - 'Id' => 4294901761, - 'Label' => 'On (65535)', - ), - 9 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - 10 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 11 => array( - 'Id' => 16, - 'Label' => 'On', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 13 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Macro.php b/lib/PHPExiftool/Driver/Tag/Sony/Macro.php deleted file mode 100644 index caa3732df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Macro.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Macro extends AbstractTag -{ - - protected $Id = 45120; - - protected $Name = 'Macro'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Macro'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Close Focus', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MakerNoteVersion.php b/lib/PHPExiftool/Driver/Tag/Sony/MakerNoteVersion.php deleted file mode 100644 index d6701bee6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MakerNoteVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNoteVersion extends AbstractTag -{ - - protected $Id = 8192; - - protected $Name = 'MakerNoteVersion'; - - protected $FullName = 'Sony::Ericsson'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Maker Note Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MaxAperture.php b/lib/PHPExiftool/Driver/Tag/Sony/MaxAperture.php deleted file mode 100644 index 73f56322a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MaxAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAperture extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MaxAperture'; - - protected $FullName = 'Sony::Tag9050'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Max Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MaxFocalLength.php b/lib/PHPExiftool/Driver/Tag/Sony/MaxFocalLength.php deleted file mode 100644 index f90e8405c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MaxFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxFocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MaxFocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Max Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MemoryCardConfiguration.php b/lib/PHPExiftool/Driver/Tag/Sony/MemoryCardConfiguration.php deleted file mode 100644 index b34caa3db..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MemoryCardConfiguration.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MemoryCardConfiguration extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'MemoryCardConfiguration'; - - protected $FullName = 'Sony::ExtraInfo3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Memory Card Configuration'; - - protected $flag_Permanent = true; - - protected $Values = array( - 244 => array( - 'Id' => 244, - 'Label' => 'MemoryStick in use, SD card present', - ), - 245 => array( - 'Id' => 245, - 'Label' => 'MemoryStick in use, SD slot empty', - ), - 252 => array( - 'Id' => 252, - 'Label' => 'SD card in use, MemoryStick present', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'SD card in use, MemoryStick slot empty', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MetaVersion.php b/lib/PHPExiftool/Driver/Tag/Sony/MetaVersion.php deleted file mode 100644 index de368511c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MetaVersion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetaVersion extends AbstractTag -{ - - protected $Id = 52; - - protected $Name = 'MetaVersion'; - - protected $FullName = 'Sony::ShotInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Meta Version'; - - protected $flag_Permanent = true; - - protected $MaxLength = 16; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row1.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row1.php deleted file mode 100644 index 59475c71b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo1Row1 extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MeterInfo1Row1'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 1 Row 1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row2.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row2.php deleted file mode 100644 index 6b291a766..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo1Row2 extends AbstractTag -{ - - protected $Id = 108; - - protected $Name = 'MeterInfo1Row2'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 1 Row 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row3.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row3.php deleted file mode 100644 index 84e8778ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo1Row3 extends AbstractTag -{ - - protected $Id = 216; - - protected $Name = 'MeterInfo1Row3'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 1 Row 3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row4.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row4.php deleted file mode 100644 index 1a93d9aec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo1Row4 extends AbstractTag -{ - - protected $Id = 324; - - protected $Name = 'MeterInfo1Row4'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 1 Row 4'; - - protected $flag_Permanent = true; - - protected $MaxLength = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row5.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row5.php deleted file mode 100644 index 9d383c837..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row5.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo1Row5 extends AbstractTag -{ - - protected $Id = 432; - - protected $Name = 'MeterInfo1Row5'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 1 Row 5'; - - protected $flag_Permanent = true; - - protected $MaxLength = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row6.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row6.php deleted file mode 100644 index 0a1345f4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row6.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo1Row6 extends AbstractTag -{ - - protected $Id = 540; - - protected $Name = 'MeterInfo1Row6'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 1 Row 6'; - - protected $flag_Permanent = true; - - protected $MaxLength = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row7.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row7.php deleted file mode 100644 index 24b402f26..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo1Row7.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo1Row7 extends AbstractTag -{ - - protected $Id = 648; - - protected $Name = 'MeterInfo1Row7'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 1 Row 7'; - - protected $flag_Permanent = true; - - protected $MaxLength = 27; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row1.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row1.php deleted file mode 100644 index 0b46a8d85..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row1 extends AbstractTag -{ - - protected $Id = 756; - - protected $Name = 'MeterInfo2Row1'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 1'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row2.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row2.php deleted file mode 100644 index 70bb90f44..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row2 extends AbstractTag -{ - - protected $Id = 888; - - protected $Name = 'MeterInfo2Row2'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 2'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row3.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row3.php deleted file mode 100644 index e83b6faab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row3 extends AbstractTag -{ - - protected $Id = 1020; - - protected $Name = 'MeterInfo2Row3'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 3'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row4.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row4.php deleted file mode 100644 index b71f28cf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row4 extends AbstractTag -{ - - protected $Id = 1152; - - protected $Name = 'MeterInfo2Row4'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 4'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row5.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row5.php deleted file mode 100644 index 491b73cd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row5.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row5 extends AbstractTag -{ - - protected $Id = 1284; - - protected $Name = 'MeterInfo2Row5'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 5'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row6.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row6.php deleted file mode 100644 index f17926c43..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row6.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row6 extends AbstractTag -{ - - protected $Id = 1416; - - protected $Name = 'MeterInfo2Row6'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 6'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row7.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row7.php deleted file mode 100644 index 0786ea41c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row7.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row7 extends AbstractTag -{ - - protected $Id = 1548; - - protected $Name = 'MeterInfo2Row7'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 7'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row8.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row8.php deleted file mode 100644 index e1072c79b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row8.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row8 extends AbstractTag -{ - - protected $Id = 1680; - - protected $Name = 'MeterInfo2Row8'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 8'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row9.php b/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row9.php deleted file mode 100644 index 0cd111d05..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeterInfo2Row9.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeterInfo2Row9 extends AbstractTag -{ - - protected $Id = 1812; - - protected $Name = 'MeterInfo2Row9'; - - protected $FullName = 'Sony::MeterInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Meter Info 2 Row 9'; - - protected $flag_Permanent = true; - - protected $MaxLength = 33; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/Sony/MeteringMode.php deleted file mode 100644 index 9a71d0a3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MeteringMode.php +++ /dev/null @@ -1,168 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Multi-segment', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Center-weighted Average', - ), - 2 => array( - 'Id' => 4, - 'Label' => 'Spot', - ), - 3 => array( - 'Id' => 1, - 'Label' => 'Multi-segment', - ), - 4 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 5 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 6 => array( - 'Id' => 1, - 'Label' => 'Multi-segment', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 8 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 10 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 11 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 12 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 13 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 14 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 16 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 17 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 18 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 19 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 20 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 21 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 22 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 23 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 24 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 25 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 26 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 27 => array( - 'Id' => 0, - 'Label' => 'Multi-segment', - ), - 28 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 29 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MinAperture.php b/lib/PHPExiftool/Driver/Tag/Sony/MinAperture.php deleted file mode 100644 index b1630a361..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MinAperture.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinAperture extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MinAperture'; - - protected $FullName = 'Sony::Tag9050'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Min Aperture'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MinFocalLength.php b/lib/PHPExiftool/Driver/Tag/Sony/MinFocalLength.php deleted file mode 100644 index 31bc078af..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MinFocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinFocalLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MinFocalLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Min Focal Length'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ModeDialPosition.php b/lib/PHPExiftool/Driver/Tag/Sony/ModeDialPosition.php deleted file mode 100644 index 074c4f58b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ModeDialPosition.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModeDialPosition extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ModeDialPosition'; - - protected $FullName = 'Sony::ExtraInfo3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Mode Dial Position'; - - protected $flag_Permanent = true; - - protected $Index = 2; - - protected $Values = array( - 248 => array( - 'Id' => 248, - 'Label' => 'No Flash', - ), - 249 => array( - 'Id' => 249, - 'Label' => 'Aperture-priority AE', - ), - 250 => array( - 'Id' => 250, - 'Label' => 'SCN', - ), - 251 => array( - 'Id' => 251, - 'Label' => 'Shutter speed priority AE', - ), - 252 => array( - 'Id' => 252, - 'Label' => 'Auto', - ), - 253 => array( - 'Id' => 253, - 'Label' => 'Program AE', - ), - 254 => array( - 'Id' => 254, - 'Label' => 'Panorama', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ModelReleaseYear.php b/lib/PHPExiftool/Driver/Tag/Sony/ModelReleaseYear.php deleted file mode 100644 index f7af3e050..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ModelReleaseYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelReleaseYear extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ModelReleaseYear'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Model Release Year'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/Sony/ModifyDate.php deleted file mode 100644 index db77fe33e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ModifyDate.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 84; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstImageHeight.php b/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstImageHeight.php deleted file mode 100644 index 2e7518751..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiBurstImageHeight extends AbstractTag -{ - - protected $Id = 4098; - - protected $Name = 'MultiBurstImageHeight'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Multi Burst Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstImageWidth.php b/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstImageWidth.php deleted file mode 100644 index 90ed3fa5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiBurstImageWidth extends AbstractTag -{ - - protected $Id = 4097; - - protected $Name = 'MultiBurstImageWidth'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Multi Burst Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstMode.php b/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstMode.php deleted file mode 100644 index 25a5fd7ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MultiBurstMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiBurstMode extends AbstractTag -{ - - protected $Id = 4096; - - protected $Name = 'MultiBurstMode'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Multi Burst Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/MultiFrameNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/Sony/MultiFrameNoiseReduction.php deleted file mode 100644 index 9bc672c64..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/MultiFrameNoiseReduction.php +++ /dev/null @@ -1,92 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MultiFrameNoiseReduction extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'MultiFrameNoiseReduction'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Multi Frame Noise Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'On', - ), - 3 => array( - 'Id' => 255, - 'Label' => 'None', - ), - 4 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 5 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 6 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 9 => array( - 'Id' => 16, - 'Label' => 'On', - ), - 10 => array( - 'Id' => 255, - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Orientation.php b/lib/PHPExiftool/Driver/Tag/Sony/Orientation.php deleted file mode 100644 index 68ba8d3a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Orientation.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 27; - - protected $Name = 'Orientation'; - - protected $FullName = 'Sony::PMP'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Orientation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate 270 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 180', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 90 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Orientation2.php b/lib/PHPExiftool/Driver/Tag/Sony/Orientation2.php deleted file mode 100644 index 23d8782f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Orientation2.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation2 extends AbstractTag -{ - - protected $Id = 46; - - protected $Name = 'Orientation2'; - - protected $FullName = 'Sony::MoreSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Orientation 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 180', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Rotate 90 CW', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropBottom.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropBottom.php deleted file mode 100644 index 2427804ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropBottom.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaCropBottom extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'PanoramaCropBottom'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Crop Bottom'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropLeft.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropLeft.php deleted file mode 100644 index d4eb0b81f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropLeft.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaCropLeft extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'PanoramaCropLeft'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Crop Left'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropRight.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropRight.php deleted file mode 100644 index 07cc881c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropRight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaCropRight extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'PanoramaCropRight'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Crop Right'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropTop.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropTop.php deleted file mode 100644 index 323508747..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaCropTop.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaCropTop extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'PanoramaCropTop'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Crop Top'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaDirection.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaDirection.php deleted file mode 100644 index cbef2ae2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaDirection.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaDirection extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'PanoramaDirection'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Direction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Left or Up', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Right or Down', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFrameHeight.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFrameHeight.php deleted file mode 100644 index ea314a207..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFrameHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaFrameHeight extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'PanoramaFrameHeight'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Frame Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFrameWidth.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFrameWidth.php deleted file mode 100644 index eb18493dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFrameWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaFrameWidth extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'PanoramaFrameWidth'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Frame Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFullHeight.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFullHeight.php deleted file mode 100644 index 504502220..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFullHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaFullHeight extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'PanoramaFullHeight'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Full Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFullWidth.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFullWidth.php deleted file mode 100644 index 4f96cd777..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaFullWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaFullWidth extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'PanoramaFullWidth'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Full Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSize3D.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSize3D.php deleted file mode 100644 index 2adccb28b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSize3D.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaSize3D extends AbstractTag -{ - - protected $Id = 56; - - protected $Name = 'PanoramaSize3D'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = '3D Panorama Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Wide', - ), - 3 => array( - 'Id' => 3, - 'Label' => '16:9', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSourceHeight.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSourceHeight.php deleted file mode 100644 index ab086f054..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSourceHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaSourceHeight extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'PanoramaSourceHeight'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Source Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSourceWidth.php b/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSourceWidth.php deleted file mode 100644 index f43879268..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PanoramaSourceWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramaSourceWidth extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'PanoramaSourceWidth'; - - protected $FullName = 'Sony::Panorama'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Panorama Source Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PictureEffect.php b/lib/PHPExiftool/Driver/Tag/Sony/PictureEffect.php deleted file mode 100644 index 2d249eb9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PictureEffect.php +++ /dev/null @@ -1,192 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureEffect extends AbstractTag -{ - - protected $Id = 8206; - - protected $Name = 'PictureEffect'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Picture Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Toy Camera', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pop Color', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Posterization', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Posterization B/W', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Retro Photo', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Soft High Key', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Partial Color (red)', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Partial Color (green)', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Partial Color (blue)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Partial Color (yellow)', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'High Contrast Monochrome', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Toy Camera (normal)', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Toy Camera (cool)', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Toy Camera (warm)', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Toy Camera (green)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Toy Camera (magenta)', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Soft Focus (low)', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Soft Focus', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Soft Focus (high)', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Miniature (auto)', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Miniature (top)', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Miniature (middle horizontal)', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Miniature (bottom)', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Miniature (left)', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Miniature (middle vertical)', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Miniature (right)', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'HDR Painting (low)', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'HDR Painting', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'HDR Painting (high)', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Rich-tone Monochrome', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'Water Color', - ), - 98 => array( - 'Id' => 98, - 'Label' => 'Water Color 2', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Illustration (low)', - ), - 113 => array( - 'Id' => 113, - 'Label' => 'Illustration', - ), - 114 => array( - 'Id' => 114, - 'Label' => 'Illustration (high)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PictureEffect2.php b/lib/PHPExiftool/Driver/Tag/Sony/PictureEffect2.php deleted file mode 100644 index 7ee0e9532..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PictureEffect2.php +++ /dev/null @@ -1,104 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PictureEffect2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PictureEffect2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Picture Effect 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Toy Camera', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Pop Color', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Posterization', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Retro Photo', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Soft High Key', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Partial Color', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'High Contrast Monochrome', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Soft Focus', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'HDR Painting', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Rich-tone Monochrome', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Miniature', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Water Color', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Illustration', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace1Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace1Position.php deleted file mode 100644 index 9828c6e14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace1Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace1Position extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'PotentialFace1Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 1 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace2Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace2Position.php deleted file mode 100644 index 15674b8d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace2Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace2Position extends AbstractTag -{ - - protected $Id = 21; - - protected $Name = 'PotentialFace2Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 2 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace3Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace3Position.php deleted file mode 100644 index 18b57c76a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace3Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace3Position extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'PotentialFace3Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 3 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace4Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace4Position.php deleted file mode 100644 index ffd3535fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace4Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace4Position extends AbstractTag -{ - - protected $Id = 41; - - protected $Name = 'PotentialFace4Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 4 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace5Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace5Position.php deleted file mode 100644 index 97875f09b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace5Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace5Position extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'PotentialFace5Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 5 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace6Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace6Position.php deleted file mode 100644 index cb189cab7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace6Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace6Position extends AbstractTag -{ - - protected $Id = 61; - - protected $Name = 'PotentialFace6Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 6 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace7Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace7Position.php deleted file mode 100644 index 1ee6c8f59..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace7Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace7Position extends AbstractTag -{ - - protected $Id = 71; - - protected $Name = 'PotentialFace7Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 7 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace8Position.php b/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace8Position.php deleted file mode 100644 index a057f7421..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PotentialFace8Position.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PotentialFace8Position extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'PotentialFace8Position'; - - protected $FullName = 'Sony::FaceInfoA'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Potential Face 8 Position'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImage.php b/lib/PHPExiftool/Driver/Tag/Sony/PreviewImage.php deleted file mode 100644 index 20b1b7444..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImage extends AbstractTag -{ - - protected $Id = 8193; - - protected $Name = 'PreviewImage'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Preview Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageLength.php deleted file mode 100644 index ca05b041d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Sony::Ericsson'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageSize.php b/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageSize.php deleted file mode 100644 index e7630af51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageSize.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageSize extends AbstractTag -{ - - protected $Id = 45100; - - protected $Name = 'PreviewImageSize'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Size'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageStart.php deleted file mode 100644 index 6a48a50a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PreviewImageStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Sony::Ericsson'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/PrioritySetupShutterRelease.php b/lib/PHPExiftool/Driver/Tag/Sony/PrioritySetupShutterRelease.php deleted file mode 100644 index 3cc40625c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/PrioritySetupShutterRelease.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrioritySetupShutterRelease extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'PrioritySetupShutterRelease'; - - protected $FullName = 'Sony::CameraSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Priority Setup Shutter Release'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'AF', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Release', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Quality.php b/lib/PHPExiftool/Driver/Tag/Sony/Quality.php deleted file mode 100644 index 38b147a19..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Quality.php +++ /dev/null @@ -1,132 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Quality'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Quality'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'RAW', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'CRAW', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'Extra Fine', - ), - 3 => array( - 'Id' => 32, - 'Label' => 'Fine', - ), - 4 => array( - 'Id' => 34, - 'Label' => 'RAW + JPEG', - ), - 5 => array( - 'Id' => 35, - 'Label' => 'CRAW + JPEG', - ), - 6 => array( - 'Id' => 48, - 'Label' => 'Standard', - ), - 7 => array( - 'Id' => 2, - 'Label' => 'RAW', - ), - 8 => array( - 'Id' => 4, - 'Label' => 'RAW + JPEG', - ), - 9 => array( - 'Id' => 6, - 'Label' => 'Fine', - ), - 10 => array( - 'Id' => 7, - 'Label' => 'Standard', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'RAW', - ), - 12 => array( - 'Id' => 1, - 'Label' => 'Super Fine', - ), - 13 => array( - 'Id' => 2, - 'Label' => 'Fine', - ), - 14 => array( - 'Id' => 3, - 'Label' => 'Standard', - ), - 15 => array( - 'Id' => 4, - 'Label' => 'Economy', - ), - 16 => array( - 'Id' => 5, - 'Label' => 'Extra Fine', - ), - 17 => array( - 'Id' => 6, - 'Label' => 'RAW + JPEG', - ), - 18 => array( - 'Id' => 7, - 'Label' => 'Compressed RAW', - ), - 19 => array( - 'Id' => 8, - 'Label' => 'Compressed RAW + JPEG', - ), - 20 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Quality2.php b/lib/PHPExiftool/Driver/Tag/Sony/Quality2.php deleted file mode 100644 index 92a6b07f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Quality2.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Quality2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Quality 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'JPEG', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'RAW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'RAW + JPEG', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'JPEG', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'RAW', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'RAW + JPEG', - ), - 6 => array( - 'Id' => 3, - 'Label' => 'JPEG + MPO', - ), - 7 => array( - 'Id' => 0, - 'Label' => 'JPEG', - ), - 8 => array( - 'Id' => 1, - 'Label' => 'RAW', - ), - 9 => array( - 'Id' => 2, - 'Label' => 'RAW + JPEG', - ), - 10 => array( - 'Id' => 3, - 'Label' => 'JPEG + MPO', - ), - 11 => array( - 'Id' => 0, - 'Label' => 'JPEG', - ), - 12 => array( - 'Id' => 1, - 'Label' => 'RAW', - ), - 13 => array( - 'Id' => 2, - 'Label' => 'RAW + JPEG', - ), - 14 => array( - 'Id' => 3, - 'Label' => 'JPEG + MPO', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Rating.php b/lib/PHPExiftool/Driver/Tag/Sony/Rating.php deleted file mode 100644 index 7bbc3344d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Rating.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 8194; - - protected $Name = 'Rating'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Rating'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/RedEyeReduction.php b/lib/PHPExiftool/Driver/Tag/Sony/RedEyeReduction.php deleted file mode 100644 index 811946206..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/RedEyeReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedEyeReduction extends AbstractTag -{ - - protected $Id = 40; - - protected $Name = 'RedEyeReduction'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Red Eye Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode.php b/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode.php deleted file mode 100644 index 308a917df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseMode extends AbstractTag -{ - - protected $Id = 45129; - - protected $Name = 'ReleaseMode'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Release Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Exposure Bracketing', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'White Balance Bracketing', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode2.php b/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode2.php deleted file mode 100644 index 2195e819f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode2.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseMode2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReleaseMode2'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Release Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous - Exposure Bracketing', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Continuous - White Balance Bracketing', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Continuous - Burst', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Single Frame - Capture During Movie', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Continuous - Sweep Panorama', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Continuous - Anti-Motion Blur, Hand-held Twilight', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Continuous - HDR', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Continuous - Background defocus', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Continuous - 3D Sweep Panorama', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Continuous - High Resolution Sweep Panorama', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Continuous - 3D Image', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Continuous - Burst 2', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Continuous - Speed/Advance Priority', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Continuous - Multi Frame NR', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'Single-frame - Exposure Bracketing', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Continuous Low', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Continuous - High Sensitivity', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Smile Shutter', - ), - 29 => array( - 'Id' => 29, - 'Label' => 'Continuous - Tele-zoom Advance Priority', - ), - 146 => array( - 'Id' => 146, - 'Label' => 'Single Frame - Movie Capture', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode3.php b/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode3.php deleted file mode 100644 index cd008d4d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ReleaseMode3.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseMode3 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ReleaseMode3'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Release Mode 3'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Continuous', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Continuous - Bracketing', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Continuous - Speed/Advance Priority', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Rotation.php b/lib/PHPExiftool/Driver/Tag/Sony/Rotation.php deleted file mode 100644 index 18267fd51..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Rotation.php +++ /dev/null @@ -1,72 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rotation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Rotation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Rotation'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rotate 90 CW', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rotate 270 CW', - ), - 3 => array( - 'Id' => 0, - 'Label' => 'Horizontal (normal)', - ), - 4 => array( - 'Id' => 1, - 'Label' => 'Rotate 270 CW', - ), - 5 => array( - 'Id' => 2, - 'Label' => 'Rotate 90 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Saturation.php b/lib/PHPExiftool/Driver/Tag/Sony/Saturation.php deleted file mode 100644 index c537cfa4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Saturation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Saturation'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SaturationSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/SaturationSetting.php deleted file mode 100644 index a4e3ea756..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SaturationSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SaturationSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Saturation Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SceneMode.php b/lib/PHPExiftool/Driver/Tag/Sony/SceneMode.php deleted file mode 100644 index 3a6de3be9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SceneMode.php +++ /dev/null @@ -1,148 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneMode extends AbstractTag -{ - - protected $Id = 45091; - - protected $Name = 'SceneMode'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Scene Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Portrait', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Text', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night Scene', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Sunset', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Sports', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Landscape', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Night Portrait', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Macro', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Super Macro', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Auto', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Night View/Portrait', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Sweep Panorama', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Handheld Night Shot', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Anti Motion Blur', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Cont. Priority AE', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Auto+', - ), - 23 => array( - 'Id' => 23, - 'Label' => '3D Sweep Panorama', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'Superior Auto', - ), - 25 => array( - 'Id' => 25, - 'Label' => 'High Sensitivity', - ), - 26 => array( - 'Id' => 26, - 'Label' => 'Fireworks', - ), - 27 => array( - 'Id' => 27, - 'Label' => 'Food', - ), - 28 => array( - 'Id' => 28, - 'Label' => 'Pet', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'HDR', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SensorTemperature.php b/lib/PHPExiftool/Driver/Tag/Sony/SensorTemperature.php deleted file mode 100644 index e1a9ea2a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SensorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensorTemperature extends AbstractTag -{ - - protected $Id = 'Capt:'; - - protected $Name = 'SensorTemperature'; - - protected $FullName = 'Sony::PIC'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sensor Temperature'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SequenceFileNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/SequenceFileNumber.php deleted file mode 100644 index 77af902e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SequenceFileNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceFileNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SequenceFileNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sequence File Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SequenceImageNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/SequenceImageNumber.php deleted file mode 100644 index d8e629c72..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SequenceImageNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceImageNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SequenceImageNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Sequence Image Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SequenceLength.php b/lib/PHPExiftool/Driver/Tag/Sony/SequenceLength.php deleted file mode 100644 index 589af0d31..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SequenceLength.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceLength extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SequenceLength'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sequence Length'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Continuous', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 shot', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 shots', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3 shots', - ), - 4 => array( - 'Id' => 4, - 'Label' => '4 shots', - ), - 5 => array( - 'Id' => 5, - 'Label' => '5 shots', - ), - 6 => array( - 'Id' => 6, - 'Label' => '6 shots', - ), - 7 => array( - 'Id' => 10, - 'Label' => '10 shots', - ), - 8 => array( - 'Id' => 100, - 'Label' => 'Continuous - iSweep Panorama', - ), - 9 => array( - 'Id' => 200, - 'Label' => 'Continuous - Sweep Panorama', - ), - 10 => array( - 'Id' => 0, - 'Label' => 'Continuous', - ), - 11 => array( - 'Id' => 1, - 'Label' => '1 file', - ), - 12 => array( - 'Id' => 2, - 'Label' => '2 files', - ), - 13 => array( - 'Id' => 3, - 'Label' => '3 files', - ), - 14 => array( - 'Id' => 5, - 'Label' => '5 files', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SequenceNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/SequenceNumber.php deleted file mode 100644 index 8f0ca0cab..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SequenceNumber.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SequenceNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SequenceNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sequence Number'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Single', - ), - 1 => array( - 'Id' => 255, - 'Label' => 'n/a', - ), - 2 => array( - 'Id' => 0, - 'Label' => 'Single', - ), - 3 => array( - 'Id' => 65535, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sharpness.php b/lib/PHPExiftool/Driver/Tag/Sony/Sharpness.php deleted file mode 100644 index a3a2a80df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SharpnessSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/SharpnessSetting.php deleted file mode 100644 index 4db69858e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SharpnessSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SharpnessSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8s'; - - protected $Writable = true; - - protected $Description = 'Sharpness Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ShotNumberSincePowerUp.php b/lib/PHPExiftool/Driver/Tag/Sony/ShotNumberSincePowerUp.php deleted file mode 100644 index 644101279..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ShotNumberSincePowerUp.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotNumberSincePowerUp extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShotNumberSincePowerUp'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'mixed'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Shot Number Since Power Up'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ShotNumberSincePowerUp2.php b/lib/PHPExiftool/Driver/Tag/Sony/ShotNumberSincePowerUp2.php deleted file mode 100644 index 04ec00f76..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ShotNumberSincePowerUp2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotNumberSincePowerUp2 extends AbstractTag -{ - - protected $Id = 512; - - protected $Name = 'ShotNumberSincePowerUp2'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Shot Number Since Power Up 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ShutterCount.php b/lib/PHPExiftool/Driver/Tag/Sony/ShutterCount.php deleted file mode 100644 index 8ec8bfc5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ShutterCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterCount extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShutterCount'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Shutter Count'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ShutterSpeedSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/ShutterSpeedSetting.php deleted file mode 100644 index 305338d9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ShutterSpeedSetting.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ShutterSpeedSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Shutter Speed Setting'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SmileShutter.php b/lib/PHPExiftool/Driver/Tag/Sony/SmileShutter.php deleted file mode 100644 index ea309ed79..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SmileShutter.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmileShutter extends AbstractTag -{ - - protected $Id = 49; - - protected $Name = 'SmileShutter'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Smile Shutter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Off', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SmileShutterMode.php b/lib/PHPExiftool/Driver/Tag/Sony/SmileShutterMode.php deleted file mode 100644 index f7387e1d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SmileShutterMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SmileShutterMode extends AbstractTag -{ - - protected $Id = 39; - - protected $Name = 'SmileShutterMode'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Smile Shutter Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 17 => array( - 'Id' => 17, - 'Label' => 'Slight Smile', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Normal Smile', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Big Smile', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SoftSkinEffect.php b/lib/PHPExiftool/Driver/Tag/Sony/SoftSkinEffect.php deleted file mode 100644 index 9bfea56df..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SoftSkinEffect.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SoftSkinEffect extends AbstractTag -{ - - protected $Id = 8207; - - protected $Name = 'SoftSkinEffect'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Soft Skin Effect'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mid', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'High', - ), - 4294967295 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9400.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9400.php deleted file mode 100644 index f8f588398..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9400.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9400 extends AbstractTag -{ - - protected $Id = 37888; - - protected $Name = 'Sony_0x9400'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9400'; - - protected $flag_Permanent = true; - - protected $Index = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9401.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9401.php deleted file mode 100644 index 17c02d9d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9401.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9401 extends AbstractTag -{ - - protected $Id = 37889; - - protected $Name = 'Sony_0x9401'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9401'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9402.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9402.php deleted file mode 100644 index e69f99ede..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9402.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9402 extends AbstractTag -{ - - protected $Id = 37890; - - protected $Name = 'Sony_0x9402'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9402'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9403.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9403.php deleted file mode 100644 index 6717f21c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9403.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9403 extends AbstractTag -{ - - protected $Id = 37891; - - protected $Name = 'Sony_0x9403'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9403'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9404.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9404.php deleted file mode 100644 index 5eff5dde6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9404.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9404 extends AbstractTag -{ - - protected $Id = 37892; - - protected $Name = 'Sony_0x9404'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9404'; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9405.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9405.php deleted file mode 100644 index 0626ef0bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9405.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9405 extends AbstractTag -{ - - protected $Id = 37893; - - protected $Name = 'Sony_0x9405'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9405'; - - protected $flag_Permanent = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9406.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9406.php deleted file mode 100644 index 5f5b51f93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9406.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9406 extends AbstractTag -{ - - protected $Id = 37894; - - protected $Name = 'Sony_0x9406'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9406'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9407.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9407.php deleted file mode 100644 index 0c7e7fa06..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9407.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9407 extends AbstractTag -{ - - protected $Id = 37895; - - protected $Name = 'Sony_0x9407'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9407'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9408.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9408.php deleted file mode 100644 index c697149b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9408.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9408 extends AbstractTag -{ - - protected $Id = 37896; - - protected $Name = 'Sony_0x9408'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9408'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9409.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9409.php deleted file mode 100644 index 008f5d26b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9409.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9409 extends AbstractTag -{ - - protected $Id = 37897; - - protected $Name = 'Sony_0x9409'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9409'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940a.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940a.php deleted file mode 100644 index 93e3b4ff7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940a.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x940a extends AbstractTag -{ - - protected $Id = 37898; - - protected $Name = 'Sony_0x940a'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x940a'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940b.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940b.php deleted file mode 100644 index 976149efe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940b.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x940b extends AbstractTag -{ - - protected $Id = 37899; - - protected $Name = 'Sony_0x940b'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x940b'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940c.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940c.php deleted file mode 100644 index 0d497a490..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940c.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x940c extends AbstractTag -{ - - protected $Id = 37900; - - protected $Name = 'Sony_0x940c'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x940c'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940d.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940d.php deleted file mode 100644 index 84b5e8cdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940d.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x940d extends AbstractTag -{ - - protected $Id = 37901; - - protected $Name = 'Sony_0x940d'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x940d'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940e.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940e.php deleted file mode 100644 index 89a953e14..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940e.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x940e extends AbstractTag -{ - - protected $Id = 37902; - - protected $Name = 'Sony_0x940e'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x940e'; - - protected $flag_Permanent = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940f.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940f.php deleted file mode 100644 index a550781b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x940f.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x940f extends AbstractTag -{ - - protected $Id = 37903; - - protected $Name = 'Sony_0x940f'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x940f'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9411.php b/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9411.php deleted file mode 100644 index 97c437ace..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Sony0x9411.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sony0x9411 extends AbstractTag -{ - - protected $Id = 37905; - - protected $Name = 'Sony_0x9411'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Sony 0x9411'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyDateTime.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyDateTime.php deleted file mode 100644 index 4bc80371a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyDateTime.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyDateTime extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SonyDateTime'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sony Date Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 'mixed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyDateTime2.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyDateTime2.php deleted file mode 100644 index ebe83cb8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyDateTime2.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyDateTime2 extends AbstractTag -{ - - protected $Id = 81; - - protected $Name = 'SonyDateTime2'; - - protected $FullName = 'Sony::Tag9050'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'undef'; - - protected $Writable = true; - - protected $Description = 'Sony Date Time 2'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - - protected $MaxLength = 6; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyExposureTime.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyExposureTime.php deleted file mode 100644 index e45c37c35..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyExposureTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyExposureTime extends AbstractTag -{ - - protected $Id = 58; - - protected $Name = 'SonyExposureTime'; - - protected $FullName = 'Sony::Tag9050'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sony Exposure Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyExposureTime2.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyExposureTime2.php deleted file mode 100644 index 38009e93a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyExposureTime2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyExposureTime2 extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'SonyExposureTime2'; - - protected $FullName = 'Sony::Tag9405b'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sony Exposure Time 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyFNumber.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyFNumber.php deleted file mode 100644 index 93b5d4b82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyFNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyFNumber extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SonyFNumber'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sony F Number'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyISO.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyISO.php deleted file mode 100644 index b0d360905..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SonyISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sony ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyImageHeight.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyImageHeight.php deleted file mode 100644 index e12edd98e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyImageHeight extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SonyImageHeight'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sony Image Height'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyImageSize.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyImageSize.php deleted file mode 100644 index 960b12655..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyImageSize.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyImageSize extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SonyImageSize'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'Sony Image Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 1, - 'Label' => 'Large', - ), - 1 => array( - 'Id' => 2, - 'Label' => 'Medium', - ), - 2 => array( - 'Id' => 3, - 'Label' => 'Small', - ), - 3 => array( - 'Id' => 21, - 'Label' => 'Large (3:2)', - ), - 4 => array( - 'Id' => 22, - 'Label' => 'Medium (3:2)', - ), - 5 => array( - 'Id' => 23, - 'Label' => 'Small (3:2)', - ), - 6 => array( - 'Id' => 25, - 'Label' => 'Large (16:9)', - ), - 7 => array( - 'Id' => 26, - 'Label' => 'Medium (16:9)', - ), - 8 => array( - 'Id' => 27, - 'Label' => 'Small (16:9)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyImageWidth.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyImageWidth.php deleted file mode 100644 index ae22c64d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyImageWidth extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'SonyImageWidth'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Sony Image Width'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyMaxApertureValue.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyMaxApertureValue.php deleted file mode 100644 index bdfa59d4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyMaxApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyMaxApertureValue extends AbstractTag -{ - - protected $Id = 22; - - protected $Name = 'SonyMaxApertureValue'; - - protected $FullName = 'Sony::Tag9405b'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sony Max Aperture Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SonyModelID.php b/lib/PHPExiftool/Driver/Tag/Sony/SonyModelID.php deleted file mode 100644 index b1ffd1bff..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SonyModelID.php +++ /dev/null @@ -1,268 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SonyModelID extends AbstractTag -{ - - protected $Id = 45057; - - protected $Name = 'SonyModelID'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Sony Model ID'; - - protected $flag_Permanent = true; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => 'DSC-R1', - ), - 256 => array( - 'Id' => 256, - 'Label' => 'DSLR-A100', - ), - 257 => array( - 'Id' => 257, - 'Label' => 'DSLR-A900', - ), - 258 => array( - 'Id' => 258, - 'Label' => 'DSLR-A700', - ), - 259 => array( - 'Id' => 259, - 'Label' => 'DSLR-A200', - ), - 260 => array( - 'Id' => 260, - 'Label' => 'DSLR-A350', - ), - 261 => array( - 'Id' => 261, - 'Label' => 'DSLR-A300', - ), - 262 => array( - 'Id' => 262, - 'Label' => 'DSLR-A900 (APS-C mode)', - ), - 263 => array( - 'Id' => 263, - 'Label' => 'DSLR-A380/A390', - ), - 264 => array( - 'Id' => 264, - 'Label' => 'DSLR-A330', - ), - 265 => array( - 'Id' => 265, - 'Label' => 'DSLR-A230', - ), - 266 => array( - 'Id' => 266, - 'Label' => 'DSLR-A290', - ), - 269 => array( - 'Id' => 269, - 'Label' => 'DSLR-A850', - ), - 270 => array( - 'Id' => 270, - 'Label' => 'DSLR-A850 (APS-C mode)', - ), - 273 => array( - 'Id' => 273, - 'Label' => 'DSLR-A550', - ), - 274 => array( - 'Id' => 274, - 'Label' => 'DSLR-A500', - ), - 275 => array( - 'Id' => 275, - 'Label' => 'DSLR-A450', - ), - 278 => array( - 'Id' => 278, - 'Label' => 'NEX-5', - ), - 279 => array( - 'Id' => 279, - 'Label' => 'NEX-3', - ), - 280 => array( - 'Id' => 280, - 'Label' => 'SLT-A33', - ), - 281 => array( - 'Id' => 281, - 'Label' => 'SLT-A55 / SLT-A55V', - ), - 282 => array( - 'Id' => 282, - 'Label' => 'DSLR-A560', - ), - 283 => array( - 'Id' => 283, - 'Label' => 'DSLR-A580', - ), - 284 => array( - 'Id' => 284, - 'Label' => 'NEX-C3', - ), - 285 => array( - 'Id' => 285, - 'Label' => 'SLT-A35', - ), - 286 => array( - 'Id' => 286, - 'Label' => 'SLT-A65 / SLT-A65V', - ), - 287 => array( - 'Id' => 287, - 'Label' => 'SLT-A77 / SLT-A77V', - ), - 288 => array( - 'Id' => 288, - 'Label' => 'NEX-5N', - ), - 289 => array( - 'Id' => 289, - 'Label' => 'NEX-7', - ), - 290 => array( - 'Id' => 290, - 'Label' => 'NEX-VG20E', - ), - 291 => array( - 'Id' => 291, - 'Label' => 'SLT-A37', - ), - 292 => array( - 'Id' => 292, - 'Label' => 'SLT-A57', - ), - 293 => array( - 'Id' => 293, - 'Label' => 'NEX-F3', - ), - 294 => array( - 'Id' => 294, - 'Label' => 'SLT-A99 / SLT-A99V', - ), - 295 => array( - 'Id' => 295, - 'Label' => 'NEX-6', - ), - 296 => array( - 'Id' => 296, - 'Label' => 'NEX-5R', - ), - 297 => array( - 'Id' => 297, - 'Label' => 'DSC-RX100', - ), - 298 => array( - 'Id' => 298, - 'Label' => 'DSC-RX1', - ), - 299 => array( - 'Id' => 299, - 'Label' => 'NEX-VG900', - ), - 300 => array( - 'Id' => 300, - 'Label' => 'NEX-VG30E', - ), - 302 => array( - 'Id' => 302, - 'Label' => 'ILCE-3000 / ILCE-3500', - ), - 303 => array( - 'Id' => 303, - 'Label' => 'SLT-A58', - ), - 305 => array( - 'Id' => 305, - 'Label' => 'NEX-3N', - ), - 306 => array( - 'Id' => 306, - 'Label' => 'ILCE-7', - ), - 307 => array( - 'Id' => 307, - 'Label' => 'NEX-5T', - ), - 308 => array( - 'Id' => 308, - 'Label' => 'DSC-RX100M2', - ), - 309 => array( - 'Id' => 309, - 'Label' => 'DSC-RX10', - ), - 310 => array( - 'Id' => 310, - 'Label' => 'DSC-RX1R', - ), - 311 => array( - 'Id' => 311, - 'Label' => 'ILCE-7R', - ), - 312 => array( - 'Id' => 312, - 'Label' => 'ILCE-6000', - ), - 313 => array( - 'Id' => 313, - 'Label' => 'ILCE-5000', - ), - 317 => array( - 'Id' => 317, - 'Label' => 'DSC-RX100M3', - ), - 318 => array( - 'Id' => 318, - 'Label' => 'ILCE-7S', - ), - 319 => array( - 'Id' => 319, - 'Label' => 'ILCA-77M2', - ), - 339 => array( - 'Id' => 339, - 'Label' => 'ILCE-5100', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/StopsAboveBaseISO.php b/lib/PHPExiftool/Driver/Tag/Sony/StopsAboveBaseISO.php deleted file mode 100644 index fea3434d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/StopsAboveBaseISO.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StopsAboveBaseISO extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'StopsAboveBaseISO'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Stops Above Base ISO'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SweepPanoramaDirection.php b/lib/PHPExiftool/Driver/Tag/Sony/SweepPanoramaDirection.php deleted file mode 100644 index 8726c4122..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SweepPanoramaDirection.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SweepPanoramaDirection extends AbstractTag -{ - - protected $Id = 51; - - protected $Name = 'SweepPanoramaDirection'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sweep Panorama Direction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Right', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Left', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Up', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Down', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/SweepPanoramaSize.php b/lib/PHPExiftool/Driver/Tag/Sony/SweepPanoramaSize.php deleted file mode 100644 index 28bb3a639..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/SweepPanoramaSize.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SweepPanoramaSize extends AbstractTag -{ - - protected $Id = 50; - - protected $Name = 'SweepPanoramaSize'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Sweep Panorama Size'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Standard', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Wide', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Tag0x2010.php b/lib/PHPExiftool/Driver/Tag/Sony/Tag0x2010.php deleted file mode 100644 index cf328eb0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Tag0x2010.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tag0x2010 extends AbstractTag -{ - - protected $Id = 8208; - - protected $Name = 'Tag_0x2010'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tag 0x2010'; - - protected $flag_Permanent = true; - - protected $Index = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/Teleconverter.php b/lib/PHPExiftool/Driver/Tag/Sony/Teleconverter.php deleted file mode 100644 index 4fb0ad4c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/Teleconverter.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Teleconverter extends AbstractTag -{ - - protected $Id = 261; - - protected $Name = 'Teleconverter'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Teleconverter'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Minolta/Sony AF 1.4x APO (D) (0x04)', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Minolta/Sony AF 2x APO (D) (0x05)', - ), - 72 => array( - 'Id' => 72, - 'Label' => 'Minolta/Sony AF 2x APO (D)', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Minolta AF 2x APO II', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Minolta AF 2x APO', - ), - 136 => array( - 'Id' => 136, - 'Label' => 'Minolta/Sony AF 1.4x APO (D)', - ), - 144 => array( - 'Id' => 144, - 'Label' => 'Minolta AF 1.4x APO II', - ), - 160 => array( - 'Id' => 160, - 'Label' => 'Minolta AF 1.4x APO', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/TempTest1.php b/lib/PHPExiftool/Driver/Tag/Sony/TempTest1.php deleted file mode 100644 index dfd6cbf1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/TempTest1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TempTest1 extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'TempTest1'; - - protected $FullName = 'Sony::Tag9402'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Temp Test 1'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/TempTest2.php b/lib/PHPExiftool/Driver/Tag/Sony/TempTest2.php deleted file mode 100644 index 3d5c15f70..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/TempTest2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TempTest2 extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'TempTest2'; - - protected $FullName = 'Sony::Tag9403'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Temp Test 2'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/TextInfo1.php b/lib/PHPExiftool/Driver/Tag/Sony/TextInfo1.php deleted file mode 100644 index 61c35d489..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/TextInfo1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextInfo1 extends AbstractTag -{ - - protected $Id = 'TextInfo1'; - - protected $Name = 'TextInfo1'; - - protected $FullName = 'Sony::PIC'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text Info 1'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/TextInfo2.php b/lib/PHPExiftool/Driver/Tag/Sony/TextInfo2.php deleted file mode 100644 index 953451c46..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/TextInfo2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextInfo2 extends AbstractTag -{ - - protected $Id = 'TextInfo2'; - - protected $Name = 'TextInfo2'; - - protected $FullName = 'Sony::PIC'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Text Info 2'; - - protected $flag_Binary = true; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/TiffMeteringImage.php b/lib/PHPExiftool/Driver/Tag/Sony/TiffMeteringImage.php deleted file mode 100644 index 3a08312ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/TiffMeteringImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TiffMeteringImage extends AbstractTag -{ - - protected $Id = 263; - - protected $Name = 'TiffMeteringImage'; - - protected $FullName = 'Sony::MoreInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Tiff Metering Image'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/VibrationReduction.php b/lib/PHPExiftool/Driver/Tag/Sony/VibrationReduction.php deleted file mode 100644 index 2115a8955..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/VibrationReduction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VibrationReduction extends AbstractTag -{ - - protected $Id = 'VR Enable C:'; - - protected $Name = 'VibrationReduction'; - - protected $FullName = 'Sony::PIC'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vibration Reduction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ViewingMode.php b/lib/PHPExiftool/Driver/Tag/Sony/ViewingMode.php deleted file mode 100644 index d8c9c2597..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ViewingMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingMode extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ViewingMode'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Viewing Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16 => array( - 'Id' => 16, - 'Label' => 'ViewFinder', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Focus Check Live View', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Quick AF Live View', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ViewingMode2.php b/lib/PHPExiftool/Driver/Tag/Sony/ViewingMode2.php deleted file mode 100644 index 64fa5937b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ViewingMode2.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewingMode2 extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ViewingMode2'; - - protected $FullName = 'Sony::CameraSettings3'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'Viewing Mode 2'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'n/a', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Viewfinder', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Focus Check Live View', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Quick AF Live View', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/VignettingCorrection.php b/lib/PHPExiftool/Driver/Tag/Sony/VignettingCorrection.php deleted file mode 100644 index 42e5e02a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/VignettingCorrection.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignettingCorrection extends AbstractTag -{ - - protected $Id = 8209; - - protected $Name = 'VignettingCorrection'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Vignetting Correction'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto', - ), - 4294967295 => array( - 'Id' => 4294967295, - 'Label' => 'n/a', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/WBRGBLevels.php b/lib/PHPExiftool/Driver/Tag/Sony/WBRGBLevels.php deleted file mode 100644 index 4781b6e0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/WBRGBLevels.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBRGBLevels extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WB_RGBLevels'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'WB RGB Levels'; - - protected $flag_Permanent = true; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/WBShiftABGM.php b/lib/PHPExiftool/Driver/Tag/Sony/WBShiftABGM.php deleted file mode 100644 index e9d7646de..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/WBShiftABGM.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WBShiftABGM extends AbstractTag -{ - - protected $Id = 8212; - - protected $Name = 'WBShiftAB_GM'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'WB Shift AB GM'; - - protected $flag_Permanent = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalance.php deleted file mode 100644 index 61db5c34a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalance.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Color Temperature/Color Filter', - ), - 2 => array( - 'Id' => 16, - 'Label' => 'Daylight', - ), - 3 => array( - 'Id' => 32, - 'Label' => 'Cloudy', - ), - 4 => array( - 'Id' => 48, - 'Label' => 'Shade', - ), - 5 => array( - 'Id' => 64, - 'Label' => 'Tungsten', - ), - 6 => array( - 'Id' => 80, - 'Label' => 'Flash', - ), - 7 => array( - 'Id' => 96, - 'Label' => 'Fluorescent', - ), - 8 => array( - 'Id' => 112, - 'Label' => 'Custom', - ), - 9 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 10 => array( - 'Id' => 4, - 'Label' => 'Custom', - ), - 11 => array( - 'Id' => 5, - 'Label' => 'Daylight', - ), - 12 => array( - 'Id' => 6, - 'Label' => 'Cloudy', - ), - 13 => array( - 'Id' => 7, - 'Label' => 'Cool White Fluorescent', - ), - 14 => array( - 'Id' => 8, - 'Label' => 'Day White Fluorescent', - ), - 15 => array( - 'Id' => 9, - 'Label' => 'Daylight Fluorescent', - ), - 16 => array( - 'Id' => 10, - 'Label' => 'Incandescent2', - ), - 17 => array( - 'Id' => 11, - 'Label' => 'Warm White Fluorescent', - ), - 18 => array( - 'Id' => 14, - 'Label' => 'Incandescent', - ), - 19 => array( - 'Id' => 15, - 'Label' => 'Flash', - ), - 20 => array( - 'Id' => 17, - 'Label' => 'Underwater 1 (Blue Water)', - ), - 21 => array( - 'Id' => 18, - 'Label' => 'Underwater 2 (Green Water)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceBracketing.php b/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceBracketing.php deleted file mode 100644 index 00dd01e88..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceBracketing.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceBracketing extends AbstractTag -{ - - protected $Id = 44; - - protected $Name = 'WhiteBalanceBracketing'; - - protected $FullName = 'Sony::FocusInfo'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'White Balance Bracketing'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceFineTune.php b/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceFineTune.php deleted file mode 100644 index 84cf947aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceFineTune.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceFineTune extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalanceFineTune'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'mixed'; - - protected $Writable = true; - - protected $Description = 'White Balance Fine Tune'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceSetting.php b/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceSetting.php deleted file mode 100644 index 1aa00cbc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/WhiteBalanceSetting.php +++ /dev/null @@ -1,252 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalanceSetting extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'WhiteBalanceSetting'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'White Balance Setting'; - - protected $flag_Permanent = true; - - protected $Values = array( - 16 => array( - 'Id' => 16, - 'Label' => 'Auto (-3)', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Auto (-2)', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Auto (-1)', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Auto (0)', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'Auto (+1)', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'Auto (+2)', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'Auto (+3)', - ), - 32 => array( - 'Id' => 32, - 'Label' => 'Daylight (-3)', - ), - 33 => array( - 'Id' => 33, - 'Label' => 'Daylight (-2)', - ), - 34 => array( - 'Id' => 34, - 'Label' => 'Daylight (-1)', - ), - 35 => array( - 'Id' => 35, - 'Label' => 'Daylight (0)', - ), - 36 => array( - 'Id' => 36, - 'Label' => 'Daylight (+1)', - ), - 37 => array( - 'Id' => 37, - 'Label' => 'Daylight (+2)', - ), - 38 => array( - 'Id' => 38, - 'Label' => 'Daylight (+3)', - ), - 48 => array( - 'Id' => 48, - 'Label' => 'Shade (-3)', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Shade (-2)', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Shade (-1)', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Shade (0)', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Shade (+1)', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Shade (+2)', - ), - 54 => array( - 'Id' => 54, - 'Label' => 'Shade (+3)', - ), - 64 => array( - 'Id' => 64, - 'Label' => 'Cloudy (-3)', - ), - 65 => array( - 'Id' => 65, - 'Label' => 'Cloudy (-2)', - ), - 66 => array( - 'Id' => 66, - 'Label' => 'Cloudy (-1)', - ), - 67 => array( - 'Id' => 67, - 'Label' => 'Cloudy (0)', - ), - 68 => array( - 'Id' => 68, - 'Label' => 'Cloudy (+1)', - ), - 69 => array( - 'Id' => 69, - 'Label' => 'Cloudy (+2)', - ), - 70 => array( - 'Id' => 70, - 'Label' => 'Cloudy (+3)', - ), - 80 => array( - 'Id' => 80, - 'Label' => 'Tungsten (-3)', - ), - 81 => array( - 'Id' => 81, - 'Label' => 'Tungsten (-2)', - ), - 82 => array( - 'Id' => 82, - 'Label' => 'Tungsten (-1)', - ), - 83 => array( - 'Id' => 83, - 'Label' => 'Tungsten (0)', - ), - 84 => array( - 'Id' => 84, - 'Label' => 'Tungsten (+1)', - ), - 85 => array( - 'Id' => 85, - 'Label' => 'Tungsten (+2)', - ), - 86 => array( - 'Id' => 86, - 'Label' => 'Tungsten (+3)', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'Fluorescent (-3)', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'Fluorescent (-2)', - ), - 98 => array( - 'Id' => 98, - 'Label' => 'Fluorescent (-1)', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'Fluorescent (0)', - ), - 100 => array( - 'Id' => 100, - 'Label' => 'Fluorescent (+1)', - ), - 101 => array( - 'Id' => 101, - 'Label' => 'Fluorescent (+2)', - ), - 102 => array( - 'Id' => 102, - 'Label' => 'Fluorescent (+3)', - ), - 112 => array( - 'Id' => 112, - 'Label' => 'Flash (-3)', - ), - 113 => array( - 'Id' => 113, - 'Label' => 'Flash (-2)', - ), - 114 => array( - 'Id' => 114, - 'Label' => 'Flash (-1)', - ), - 115 => array( - 'Id' => 115, - 'Label' => 'Flash (0)', - ), - 116 => array( - 'Id' => 116, - 'Label' => 'Flash (+1)', - ), - 117 => array( - 'Id' => 117, - 'Label' => 'Flash (+2)', - ), - 118 => array( - 'Id' => 118, - 'Label' => 'Flash (+3)', - ), - 163 => array( - 'Id' => 163, - 'Label' => 'Custom', - ), - 243 => array( - 'Id' => 243, - 'Label' => 'Color Temperature/Color Filter', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ZoneMatching.php b/lib/PHPExiftool/Driver/Tag/Sony/ZoneMatching.php deleted file mode 100644 index 0494df79d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ZoneMatching.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoneMatching extends AbstractTag -{ - - protected $Id = 45092; - - protected $Name = 'ZoneMatching'; - - protected $FullName = 'Sony::Main'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Zone Matching'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'ISO Setting Used', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'High Key', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Low Key', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Sony/ZoneMatchingValue.php b/lib/PHPExiftool/Driver/Tag/Sony/ZoneMatchingValue.php deleted file mode 100644 index db56ee47f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Sony/ZoneMatchingValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Sony; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZoneMatchingValue extends AbstractTag -{ - - protected $Id = 31; - - protected $Name = 'ZoneMatchingValue'; - - protected $FullName = 'Sony::CameraSettings'; - - protected $GroupName = 'Sony'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'Sony'; - - protected $g2 = 'Camera'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Zone Matching Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/BrightnessAdj.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/BrightnessAdj.php deleted file mode 100644 index be6ebc74c..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/BrightnessAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessAdj extends AbstractTag -{ - - protected $Id = 32792; - - protected $Name = 'BrightnessAdj'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Brightness Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorCorrection.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorCorrection.php deleted file mode 100644 index beb8e02ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorCorrection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorCorrection extends AbstractTag -{ - - protected $Id = 32789; - - protected $Name = 'ColorCorrection'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Correction'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorNoiseReduction.php deleted file mode 100644 index f339f5eb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorNoiseReduction.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorNoiseReduction extends AbstractTag -{ - - protected $Id = 32809; - - protected $Name = 'ColorNoiseReduction'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Color Noise Reduction'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorTemperatureAdj.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorTemperatureAdj.php deleted file mode 100644 index 61f13d566..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ColorTemperatureAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperatureAdj extends AbstractTag -{ - - protected $Id = 32787; - - protected $Name = 'ColorTemperatureAdj'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Color Temperature Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ContrastAdj.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ContrastAdj.php deleted file mode 100644 index c29145ea6..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ContrastAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContrastAdj extends AbstractTag -{ - - protected $Id = 32791; - - protected $Name = 'ContrastAdj'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Contrast Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/CreativeStyleWasChanged.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/CreativeStyleWasChanged.php deleted file mode 100644 index 15ec8e2c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/CreativeStyleWasChanged.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreativeStyleWasChanged extends AbstractTag -{ - - protected $Id = 32769; - - protected $Name = 'CreativeStyleWasChanged'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Creative Style Was Changed'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/CurrentVersion.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/CurrentVersion.php deleted file mode 100644 index 0d39d1a1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/CurrentVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CurrentVersion extends AbstractTag -{ - - protected $Id = 53248; - - protected $Name = 'CurrentVersion'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Current Version'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerHighlight.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerHighlight.php deleted file mode 100644 index 259d317cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerHighlight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRangeOptimizerHighlight extends AbstractTag -{ - - protected $Id = 32804; - - protected $Name = 'D-RangeOptimizerHighlight'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'D-Range Optimizer Highlight'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerMode.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerMode.php deleted file mode 100644 index 6ed777d98..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRangeOptimizerMode extends AbstractTag -{ - - protected $Id = 32802; - - protected $Name = 'D-RangeOptimizerMode'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'D-Range Optimizer Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Auto', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerShadow.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerShadow.php deleted file mode 100644 index 6f9dffb9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerShadow.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRangeOptimizerShadow extends AbstractTag -{ - - protected $Id = 32813; - - protected $Name = 'D-RangeOptimizerShadow'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'D-Range Optimizer Shadow'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerValue.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerValue.php deleted file mode 100644 index bcc8c7c51..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/DRangeOptimizerValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DRangeOptimizerValue extends AbstractTag -{ - - protected $Id = 32803; - - protected $Name = 'D-RangeOptimizerValue'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'D-Range Optimizer Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/EdgeNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/EdgeNoiseReduction.php deleted file mode 100644 index c68290f9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/EdgeNoiseReduction.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EdgeNoiseReduction extends AbstractTag -{ - - protected $Id = 32808; - - protected $Name = 'EdgeNoiseReduction'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Edge Noise Reduction'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/GrayPoint.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/GrayPoint.php deleted file mode 100644 index e3ae51a16..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/GrayPoint.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayPoint extends AbstractTag -{ - - protected $Id = 32801; - - protected $Name = 'GrayPoint'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Gray Point'; - - protected $flag_Permanent = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/HighlightColorDistortReduct.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/HighlightColorDistortReduct.php deleted file mode 100644 index d0a8ea28e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/HighlightColorDistortReduct.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighlightColorDistortReduct extends AbstractTag -{ - - protected $Id = 32806; - - protected $Name = 'HighlightColorDistortReduct'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Highlight Color Distort Reduct'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Advanced', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/HueAdj.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/HueAdj.php deleted file mode 100644 index 7ab556aa8..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/HueAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdj extends AbstractTag -{ - - protected $Id = 32793; - - protected $Name = 'HueAdj'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Hue Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCCreativeStyle.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCCreativeStyle.php deleted file mode 100644 index 43e2858b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCCreativeStyle.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IDCCreativeStyle extends AbstractTag -{ - - protected $Id = 32768; - - protected $Name = 'IDCCreativeStyle'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'IDC Creative Style'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Camera Setting', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Standard', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Real', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Vivid', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Adobe RGB', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'A100 Standard', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Neutral', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Portrait', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Landscape', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Clear', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Deep', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Light', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Sunset', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Night View', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'Autumn Leaves', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'B&W', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Sepia', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCPreviewLength.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCPreviewLength.php deleted file mode 100644 index 86eea5a1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCPreviewLength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IDCPreviewLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'IDCPreviewLength'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'IDC Preview Length'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCPreviewStart.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCPreviewStart.php deleted file mode 100644 index 1c9cb1e2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/IDCPreviewStart.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IDCPreviewStart extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'IDCPreviewStart'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'IDC Preview Start'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/NoiseReductionMode.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/NoiseReductionMode.php deleted file mode 100644 index 6c6024da7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/NoiseReductionMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReductionMode extends AbstractTag -{ - - protected $Id = 32798; - - protected $Name = 'NoiseReductionMode'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction Mode'; - - protected $flag_Permanent = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/NoiseReductionValue.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/NoiseReductionValue.php deleted file mode 100644 index 56b91cd9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/NoiseReductionValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReductionValue extends AbstractTag -{ - - protected $Id = 32807; - - protected $Name = 'NoiseReductionValue'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumCentralRadius.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumCentralRadius.php deleted file mode 100644 index 5ca01565a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumCentralRadius.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralIllumCentralRadius extends AbstractTag -{ - - protected $Id = 32816; - - protected $Name = 'PeripheralIllumCentralRadius'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Illum Central Radius'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumCentralValue.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumCentralValue.php deleted file mode 100644 index 9ae0646ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumCentralValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralIllumCentralValue extends AbstractTag -{ - - protected $Id = 32817; - - protected $Name = 'PeripheralIllumCentralValue'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Illum Central Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumPeriphValue.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumPeriphValue.php deleted file mode 100644 index 270168078..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/PeripheralIllumPeriphValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PeripheralIllumPeriphValue extends AbstractTag -{ - - protected $Id = 32818; - - protected $Name = 'PeripheralIllumPeriphValue'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Peripheral Illum Periph Value'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/PresetWhiteBalance.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/PresetWhiteBalance.php deleted file mode 100644 index d0cdc1da1..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/PresetWhiteBalance.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresetWhiteBalance extends AbstractTag -{ - - protected $Id = 32770; - - protected $Name = 'PresetWhiteBalance'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preset White Balance'; - - protected $flag_Permanent = true; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Camera Setting', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Color Temperature', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Specify Gray Point', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Daylight', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Cloudy', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Shade', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Cool White Fluorescent', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Day Light Fluorescent', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Day White Fluorescent', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Warm White Fluorescent', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Tungsten', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Flash', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/PresetWhiteBalanceAdj.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/PresetWhiteBalanceAdj.php deleted file mode 100644 index 24a2d4449..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/PresetWhiteBalanceAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresetWhiteBalanceAdj extends AbstractTag -{ - - protected $Id = 32788; - - protected $Name = 'PresetWhiteBalanceAdj'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Preset White Balance Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/SaturationAdj.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/SaturationAdj.php deleted file mode 100644 index e0bb5e3df..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/SaturationAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdj extends AbstractTag -{ - - protected $Id = 32790; - - protected $Name = 'SaturationAdj'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Saturation Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessAdj.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessAdj.php deleted file mode 100644 index 5c3a73d1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessAdj.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessAdj extends AbstractTag -{ - - protected $Id = 32794; - - protected $Name = 'SharpnessAdj'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Sharpness Adj'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessOvershoot.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessOvershoot.php deleted file mode 100644 index aa37ccdf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessOvershoot.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessOvershoot extends AbstractTag -{ - - protected $Id = 32795; - - protected $Name = 'SharpnessOvershoot'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Sharpness Overshoot'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessThreshold.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessThreshold.php deleted file mode 100644 index 2787621be..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessThreshold.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessThreshold extends AbstractTag -{ - - protected $Id = 32797; - - protected $Name = 'SharpnessThreshold'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Sharpness Threshold'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessUndershoot.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessUndershoot.php deleted file mode 100644 index ef05a5362..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/SharpnessUndershoot.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpnessUndershoot extends AbstractTag -{ - - protected $Id = 32796; - - protected $Name = 'SharpnessUndershoot'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = true; - - protected $Description = 'Sharpness Undershoot'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBlueX.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBlueX.php deleted file mode 100644 index 96f400952..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBlueX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveBlueX extends AbstractTag -{ - - protected $Id = 36867; - - protected $Name = 'ToneCurveBlueX'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Blue X'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBlueY.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBlueY.php deleted file mode 100644 index c766fca85..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBlueY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveBlueY extends AbstractTag -{ - - protected $Id = 36871; - - protected $Name = 'ToneCurveBlueY'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Blue Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBrightnessX.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBrightnessX.php deleted file mode 100644 index b59e6173b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBrightnessX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveBrightnessX extends AbstractTag -{ - - protected $Id = 36864; - - protected $Name = 'ToneCurveBrightnessX'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Brightness X'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBrightnessY.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBrightnessY.php deleted file mode 100644 index 651b273c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveBrightnessY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveBrightnessY extends AbstractTag -{ - - protected $Id = 36868; - - protected $Name = 'ToneCurveBrightnessY'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Brightness Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveGreenX.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveGreenX.php deleted file mode 100644 index a676c7f7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveGreenX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveGreenX extends AbstractTag -{ - - protected $Id = 36866; - - protected $Name = 'ToneCurveGreenX'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Green X'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveGreenY.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveGreenY.php deleted file mode 100644 index 76e43085e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveGreenY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveGreenY extends AbstractTag -{ - - protected $Id = 36870; - - protected $Name = 'ToneCurveGreenY'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Green Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveRedX.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveRedX.php deleted file mode 100644 index 611240f1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveRedX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveRedX extends AbstractTag -{ - - protected $Id = 36865; - - protected $Name = 'ToneCurveRedX'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Red X'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveRedY.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveRedY.php deleted file mode 100644 index fa85ce783..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/ToneCurveRedY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveRedY extends AbstractTag -{ - - protected $Id = 36869; - - protected $Name = 'ToneCurveRedY'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Red Y'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/VersionCreateDate.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/VersionCreateDate.php deleted file mode 100644 index ad6b22176..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/VersionCreateDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionCreateDate extends AbstractTag -{ - - protected $Id = 53504; - - protected $Name = 'VersionCreateDate'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Version Create Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SonyIDC/VersionModifyDate.php b/lib/PHPExiftool/Driver/Tag/SonyIDC/VersionModifyDate.php deleted file mode 100644 index a5b04fbba..000000000 --- a/lib/PHPExiftool/Driver/Tag/SonyIDC/VersionModifyDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SonyIDC; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionModifyDate extends AbstractTag -{ - - protected $Id = 53505; - - protected $Name = 'VersionModifyDate'; - - protected $FullName = 'SonyIDC::Main'; - - protected $GroupName = 'SonyIDC'; - - protected $g0 = 'MakerNotes'; - - protected $g1 = 'SonyIDC'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Version Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ApplicationData.php b/lib/PHPExiftool/Driver/Tag/Stim/ApplicationData.php deleted file mode 100644 index 1a1cac9a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ApplicationData.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApplicationData extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'ApplicationData'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application Data'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/AssumedDisplaySize.php b/lib/PHPExiftool/Driver/Tag/Stim/AssumedDisplaySize.php deleted file mode 100644 index 808565dca..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/AssumedDisplaySize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssumedDisplaySize extends AbstractTag -{ - - protected $Id = 12; - - protected $Name = 'AssumedDisplaySize'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Assumed Display Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/AssumedDistanceView.php b/lib/PHPExiftool/Driver/Tag/Stim/AssumedDistanceView.php deleted file mode 100644 index 61094e6a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/AssumedDistanceView.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AssumedDistanceView extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'AssumedDistanceView'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Assumed Distance View'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CameraArrangementInterval.php b/lib/PHPExiftool/Driver/Tag/Stim/CameraArrangementInterval.php deleted file mode 100644 index ddb481c25..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CameraArrangementInterval.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraArrangementInterval extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'CameraArrangementInterval'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Camera Arrangement Interval'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ConvergenceBaseImage.php b/lib/PHPExiftool/Driver/Tag/Stim/ConvergenceBaseImage.php deleted file mode 100644 index 74ba7a6d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ConvergenceBaseImage.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConvergenceBaseImage extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'ConvergenceBaseImage'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Convergence Base Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Left Viewpoint', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Right Viewpoint', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Equivalent for Both Viewpoints', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ConvergenceDistance.php b/lib/PHPExiftool/Driver/Tag/Stim/ConvergenceDistance.php deleted file mode 100644 index 083b38757..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ConvergenceDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConvergenceDistance extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'ConvergenceDistance'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Convergence Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropXCommonOffset.php b/lib/PHPExiftool/Driver/Tag/Stim/CropXCommonOffset.php deleted file mode 100644 index 7e78b209f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropXCommonOffset.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropXCommonOffset extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CropXCommonOffset'; - - protected $FullName = 'Stim::CropX'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Crop X Common Offset'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Common Offset Setting', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Individual Offset Setting', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropXOffset.php b/lib/PHPExiftool/Driver/Tag/Stim/CropXOffset.php deleted file mode 100644 index 331509f8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropXOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropXOffset extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'CropXOffset'; - - protected $FullName = 'Stim::CropX'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Crop X Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropXOffset2.php b/lib/PHPExiftool/Driver/Tag/Stim/CropXOffset2.php deleted file mode 100644 index 229ed786a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropXOffset2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropXOffset2 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'CropXOffset2'; - - protected $FullName = 'Stim::CropX'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Crop X Offset 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropXSize.php b/lib/PHPExiftool/Driver/Tag/Stim/CropXSize.php deleted file mode 100644 index 345a16bc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropXSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropXSize extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'CropXSize'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Crop X Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropXViewpointNumber.php b/lib/PHPExiftool/Driver/Tag/Stim/CropXViewpointNumber.php deleted file mode 100644 index b515f8ceb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropXViewpointNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropXViewpointNumber extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CropXViewpointNumber'; - - protected $FullName = 'Stim::CropX'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Crop X Viewpoint Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropXViewpointNumber2.php b/lib/PHPExiftool/Driver/Tag/Stim/CropXViewpointNumber2.php deleted file mode 100644 index 84bcce18d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropXViewpointNumber2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropXViewpointNumber2 extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'CropXViewpointNumber2'; - - protected $FullName = 'Stim::CropX'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Crop X Viewpoint Number 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropYCommonOffset.php b/lib/PHPExiftool/Driver/Tag/Stim/CropYCommonOffset.php deleted file mode 100644 index 22ebf628a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropYCommonOffset.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropYCommonOffset extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CropYCommonOffset'; - - protected $FullName = 'Stim::CropY'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Crop Y Common Offset'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Common Offset Setting', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Individual Offset Setting', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropYOffset.php b/lib/PHPExiftool/Driver/Tag/Stim/CropYOffset.php deleted file mode 100644 index ff4533ead..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropYOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropYOffset extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'CropYOffset'; - - protected $FullName = 'Stim::CropY'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Crop Y Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropYOffset2.php b/lib/PHPExiftool/Driver/Tag/Stim/CropYOffset2.php deleted file mode 100644 index 7a9fec70f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropYOffset2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropYOffset2 extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'CropYOffset2'; - - protected $FullName = 'Stim::CropY'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int32s'; - - protected $Writable = false; - - protected $Description = 'Crop Y Offset 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropYSize.php b/lib/PHPExiftool/Driver/Tag/Stim/CropYSize.php deleted file mode 100644 index 6bd8855bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropYSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropYSize extends AbstractTag -{ - - protected $Id = 6; - - protected $Name = 'CropYSize'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Crop Y Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropYViewpointNumber.php b/lib/PHPExiftool/Driver/Tag/Stim/CropYViewpointNumber.php deleted file mode 100644 index 9e706c411..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropYViewpointNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropYViewpointNumber extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'CropYViewpointNumber'; - - protected $FullName = 'Stim::CropY'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Crop Y Viewpoint Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/CropYViewpointNumber2.php b/lib/PHPExiftool/Driver/Tag/Stim/CropYViewpointNumber2.php deleted file mode 100644 index 1183ced00..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/CropYViewpointNumber2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropYViewpointNumber2 extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'CropYViewpointNumber2'; - - protected $FullName = 'Stim::CropY'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Crop Y Viewpoint Number 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ImageArrangement.php b/lib/PHPExiftool/Driver/Tag/Stim/ImageArrangement.php deleted file mode 100644 index e7922598a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ImageArrangement.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageArrangement extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ImageArrangement'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Arrangement'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Parallel View Alignment', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Cross View Alignment', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ImageRotation.php b/lib/PHPExiftool/Driver/Tag/Stim/ImageRotation.php deleted file mode 100644 index 3e1bfe7e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ImageRotation.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageRotation extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ImageRotation'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Image Rotation'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/InitialDisplayEffect.php b/lib/PHPExiftool/Driver/Tag/Stim/InitialDisplayEffect.php deleted file mode 100644 index 746dfe3f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/InitialDisplayEffect.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialDisplayEffect extends AbstractTag -{ - - protected $Id = 16; - - protected $Name = 'InitialDisplayEffect'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Initial Display Effect'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Off', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeDisparityFar.php b/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeDisparityFar.php deleted file mode 100644 index d1409f798..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeDisparityFar.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepresentativeDisparityFar extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'RepresentativeDisparityFar'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Representative Disparity Far'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeDisparityNear.php b/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeDisparityNear.php deleted file mode 100644 index f3a4ea125..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeDisparityNear.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepresentativeDisparityNear extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'RepresentativeDisparityNear'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Representative Disparity Near'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeImage.php b/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeImage.php deleted file mode 100644 index 5d2b745c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/RepresentativeImage.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RepresentativeImage extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'RepresentativeImage'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Representative Image'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Left Viewpoint', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Right Viewpoint', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ScalingFactor.php b/lib/PHPExiftool/Driver/Tag/Stim/ScalingFactor.php deleted file mode 100644 index 905de686a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ScalingFactor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScalingFactor extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ScalingFactor'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scaling Factor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ShootingCount.php b/lib/PHPExiftool/Driver/Tag/Stim/ShootingCount.php deleted file mode 100644 index 369b45079..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ShootingCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShootingCount extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'ShootingCount'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shooting Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/StimVersion.php b/lib/PHPExiftool/Driver/Tag/Stim/StimVersion.php deleted file mode 100644 index 8c210a768..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/StimVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StimVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'StimVersion'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Stim Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Stim/ViewType.php b/lib/PHPExiftool/Driver/Tag/Stim/ViewType.php deleted file mode 100644 index 1d71eac08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Stim/ViewType.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Stim; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ViewType extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'ViewType'; - - protected $FullName = 'Stim::Main'; - - protected $GroupName = 'Stim'; - - protected $g0 = 'Stim'; - - protected $g1 = 'Stim'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'View Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Pop-up Effect', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Pop-up Effect', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/ActiveArea.php b/lib/PHPExiftool/Driver/Tag/SubIFD/ActiveArea.php deleted file mode 100644 index f20108fab..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/ActiveArea.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ActiveArea extends AbstractTag -{ - - protected $Id = 50829; - - protected $Name = 'ActiveArea'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Active Area'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/AntiAliasStrength.php b/lib/PHPExiftool/Driver/Tag/SubIFD/AntiAliasStrength.php deleted file mode 100644 index c20c4b848..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/AntiAliasStrength.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AntiAliasStrength extends AbstractTag -{ - - protected $Id = 50738; - - protected $Name = 'AntiAliasStrength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Anti Alias Strength'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/BayerGreenSplit.php b/lib/PHPExiftool/Driver/Tag/SubIFD/BayerGreenSplit.php deleted file mode 100644 index 5a23ccd9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/BayerGreenSplit.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BayerGreenSplit extends AbstractTag -{ - - protected $Id = 50733; - - protected $Name = 'BayerGreenSplit'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Bayer Green Split'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/BestQualityScale.php b/lib/PHPExiftool/Driver/Tag/SubIFD/BestQualityScale.php deleted file mode 100644 index 749194fc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/BestQualityScale.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BestQualityScale extends AbstractTag -{ - - protected $Id = 50780; - - protected $Name = 'BestQualityScale'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Best Quality Scale'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevel.php b/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevel.php deleted file mode 100644 index 632a96f07..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevel extends AbstractTag -{ - - protected $Id = 50714; - - protected $Name = 'BlackLevel'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Black Level'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelDeltaH.php b/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelDeltaH.php deleted file mode 100644 index 97d3bd6ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelDeltaH.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevelDeltaH extends AbstractTag -{ - - protected $Id = 50715; - - protected $Name = 'BlackLevelDeltaH'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Black Level Delta H'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelDeltaV.php b/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelDeltaV.php deleted file mode 100644 index d51bf328a..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelDeltaV.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevelDeltaV extends AbstractTag -{ - - protected $Id = 50716; - - protected $Name = 'BlackLevelDeltaV'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64s'; - - protected $Writable = true; - - protected $Description = 'Black Level Delta V'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelRepeatDim.php b/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelRepeatDim.php deleted file mode 100644 index b8e550143..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/BlackLevelRepeatDim.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlackLevelRepeatDim extends AbstractTag -{ - - protected $Id = 50713; - - protected $Name = 'BlackLevelRepeatDim'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Black Level Repeat Dim'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/CFAPattern2.php b/lib/PHPExiftool/Driver/Tag/SubIFD/CFAPattern2.php deleted file mode 100644 index 9f0b02902..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/CFAPattern2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPattern2 extends AbstractTag -{ - - protected $Id = 33422; - - protected $Name = 'CFAPattern2'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int8u'; - - protected $Writable = true; - - protected $Description = 'CFA Pattern 2'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/CFARepeatPatternDim.php b/lib/PHPExiftool/Driver/Tag/SubIFD/CFARepeatPatternDim.php deleted file mode 100644 index 30ee76be4..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/CFARepeatPatternDim.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFARepeatPatternDim extends AbstractTag -{ - - protected $Id = 33421; - - protected $Name = 'CFARepeatPatternDim'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'CFA Repeat Pattern Dim'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/ChromaBlurRadius.php b/lib/PHPExiftool/Driver/Tag/SubIFD/ChromaBlurRadius.php deleted file mode 100644 index d01eaf795..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/ChromaBlurRadius.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaBlurRadius extends AbstractTag -{ - - protected $Id = 50737; - - protected $Name = 'ChromaBlurRadius'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Chroma Blur Radius'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultCropOrigin.php b/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultCropOrigin.php deleted file mode 100644 index abe46b21f..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultCropOrigin.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultCropOrigin extends AbstractTag -{ - - protected $Id = 50719; - - protected $Name = 'DefaultCropOrigin'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Default Crop Origin'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultCropSize.php b/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultCropSize.php deleted file mode 100644 index 404fde7ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultCropSize.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultCropSize extends AbstractTag -{ - - protected $Id = 50720; - - protected $Name = 'DefaultCropSize'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Default Crop Size'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultScale.php b/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultScale.php deleted file mode 100644 index 989d67dc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultScale.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultScale extends AbstractTag -{ - - protected $Id = 50718; - - protected $Name = 'DefaultScale'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Default Scale'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultUserCrop.php b/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultUserCrop.php deleted file mode 100644 index 1715a0c22..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/DefaultUserCrop.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefaultUserCrop extends AbstractTag -{ - - protected $Id = 51125; - - protected $Name = 'DefaultUserCrop'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Default User Crop'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/JpgFromRawLength.php b/lib/PHPExiftool/Driver/Tag/SubIFD/JpgFromRawLength.php deleted file mode 100644 index 2c83daa64..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/JpgFromRawLength.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRawLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'JpgFromRawLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Jpg From Raw Length'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Protected = true; - - protected $Index = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/JpgFromRawStart.php b/lib/PHPExiftool/Driver/Tag/SubIFD/JpgFromRawStart.php deleted file mode 100644 index 580c5ef45..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/JpgFromRawStart.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRawStart extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'JpgFromRawStart'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Jpg From Raw Start'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Protected = true; - - protected $Index = 5; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/LinearizationTable.php b/lib/PHPExiftool/Driver/Tag/SubIFD/LinearizationTable.php deleted file mode 100644 index 2283c222e..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/LinearizationTable.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinearizationTable extends AbstractTag -{ - - protected $Id = 50712; - - protected $Name = 'LinearizationTable'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int16u'; - - protected $Writable = true; - - protected $Description = 'Linearization Table'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/MaskedAreas.php b/lib/PHPExiftool/Driver/Tag/SubIFD/MaskedAreas.php deleted file mode 100644 index 0c1147a64..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/MaskedAreas.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaskedAreas extends AbstractTag -{ - - protected $Id = 50830; - - protected $Name = 'MaskedAreas'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Masked Areas'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - - protected $MaxLength = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/NoiseProfile.php b/lib/PHPExiftool/Driver/Tag/SubIFD/NoiseProfile.php deleted file mode 100644 index a64d776a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/NoiseProfile.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseProfile extends AbstractTag -{ - - protected $Id = 51041; - - protected $Name = 'NoiseProfile'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'double'; - - protected $Writable = true; - - protected $Description = 'Noise Profile'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/NoiseReductionApplied.php b/lib/PHPExiftool/Driver/Tag/SubIFD/NoiseReductionApplied.php deleted file mode 100644 index b0fb2da7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/NoiseReductionApplied.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NoiseReductionApplied extends AbstractTag -{ - - protected $Id = 50935; - - protected $Name = 'NoiseReductionApplied'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'rational64u'; - - protected $Writable = true; - - protected $Description = 'Noise Reduction Applied'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/ThumbnailLength.php b/lib/PHPExiftool/Driver/Tag/SubIFD/ThumbnailLength.php deleted file mode 100644 index 6d062592c..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/ThumbnailLength.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'ThumbnailLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Length'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Protected = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/ThumbnailOffset.php b/lib/PHPExiftool/Driver/Tag/SubIFD/ThumbnailOffset.php deleted file mode 100644 index edf03de35..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/ThumbnailOffset.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailOffset extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'ThumbnailOffset'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Offset'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Protected = true; - - protected $Index = 2; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD/WhiteLevel.php b/lib/PHPExiftool/Driver/Tag/SubIFD/WhiteLevel.php deleted file mode 100644 index 2596f3dba..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD/WhiteLevel.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteLevel extends AbstractTag -{ - - protected $Id = 50717; - - protected $Name = 'WhiteLevel'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'White Level'; - - protected $local_g1 = 'SubIFD'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD1/OtherImageLength.php b/lib/PHPExiftool/Driver/Tag/SubIFD1/OtherImageLength.php deleted file mode 100644 index c99a7cf93..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD1/OtherImageLength.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImageLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'OtherImageLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD1'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Other Image Length'; - - protected $local_g1 = 'SubIFD1'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - - protected $Index = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD1/OtherImageStart.php b/lib/PHPExiftool/Driver/Tag/SubIFD1/OtherImageStart.php deleted file mode 100644 index e345f89ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD1/OtherImageStart.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImageStart extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'OtherImageStart'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD1'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Other Image Start'; - - protected $local_g1 = 'SubIFD1'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - - protected $Index = 7; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD1/PreviewImageLength.php b/lib/PHPExiftool/Driver/Tag/SubIFD1/PreviewImageLength.php deleted file mode 100644 index 42739169b..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD1/PreviewImageLength.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageLength extends AbstractTag -{ - - protected $Id = 279; - - protected $Name = 'PreviewImageLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD1'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Length'; - - protected $local_g1 = 'SubIFD1'; - - protected $flag_Protected = true; - - protected $Index = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD1/PreviewImageStart.php b/lib/PHPExiftool/Driver/Tag/SubIFD1/PreviewImageStart.php deleted file mode 100644 index bced3c01c..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD1/PreviewImageStart.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreviewImageStart extends AbstractTag -{ - - protected $Id = 273; - - protected $Name = 'PreviewImageStart'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD1'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Preview Image Start'; - - protected $local_g1 = 'SubIFD1'; - - protected $flag_Protected = true; - - protected $Index = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD2/JpgFromRawLength.php b/lib/PHPExiftool/Driver/Tag/SubIFD2/JpgFromRawLength.php deleted file mode 100644 index e826a56cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD2/JpgFromRawLength.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRawLength extends AbstractTag -{ - - protected $Id = 279; - - protected $Name = 'JpgFromRawLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD2'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Jpg From Raw Length'; - - protected $local_g1 = 'SubIFD2'; - - protected $flag_Protected = true; - - protected $Index = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD2/JpgFromRawStart.php b/lib/PHPExiftool/Driver/Tag/SubIFD2/JpgFromRawStart.php deleted file mode 100644 index 8f276c482..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD2/JpgFromRawStart.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JpgFromRawStart extends AbstractTag -{ - - protected $Id = 273; - - protected $Name = 'JpgFromRawStart'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD2'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Jpg From Raw Start'; - - protected $local_g1 = 'SubIFD2'; - - protected $flag_Protected = true; - - protected $Index = 4; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD2/OtherImageLength.php b/lib/PHPExiftool/Driver/Tag/SubIFD2/OtherImageLength.php deleted file mode 100644 index 9ad29c4aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD2/OtherImageLength.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImageLength extends AbstractTag -{ - - protected $Id = 514; - - protected $Name = 'OtherImageLength'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD2'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Other Image Length'; - - protected $local_g1 = 'SubIFD2'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - - protected $Index = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/SubIFD2/OtherImageStart.php b/lib/PHPExiftool/Driver/Tag/SubIFD2/OtherImageStart.php deleted file mode 100644 index 6c3443a52..000000000 --- a/lib/PHPExiftool/Driver/Tag/SubIFD2/OtherImageStart.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\SubIFD2; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImageStart extends AbstractTag -{ - - protected $Id = 513; - - protected $Name = 'OtherImageStart'; - - protected $FullName = 'Exif::Main'; - - protected $GroupName = 'SubIFD2'; - - protected $g0 = 'EXIF'; - - protected $g1 = 'IFD0'; - - protected $g2 = 'Image'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Other Image Start'; - - protected $local_g1 = 'SubIFD2'; - - protected $flag_Permanent = true; - - protected $flag_Protected = true; - - protected $Index = 8; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/Theora/ColorSpace.php deleted file mode 100644 index 836553d57..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/ColorSpace.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 29; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Color Space'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Undefined', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Rec. 470M', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Rec. 470BG', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/FrameRate.php b/lib/PHPExiftool/Driver/Tag/Theora/FrameRate.php deleted file mode 100644 index 26400d939..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/FrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FrameRate extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'FrameRate'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'rational64u'; - - protected $Writable = false; - - protected $Description = 'Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/Theora/ImageHeight.php deleted file mode 100644 index 6ea273998..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/Theora/ImageWidth.php deleted file mode 100644 index aa50ffddc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/NominalVideoBitrate.php b/lib/PHPExiftool/Driver/Tag/Theora/NominalVideoBitrate.php deleted file mode 100644 index f0b8b6e54..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/NominalVideoBitrate.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalVideoBitrate extends AbstractTag -{ - - protected $Id = 30; - - protected $Name = 'NominalVideoBitrate'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Nominal Video Bitrate'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unspecified', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/PixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/Theora/PixelAspectRatio.php deleted file mode 100644 index 4a0a80601..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/PixelAspectRatio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelAspectRatio extends AbstractTag -{ - - protected $Id = 23; - - protected $Name = 'PixelAspectRatio'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Pixel Aspect Ratio'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/PixelFormat.php b/lib/PHPExiftool/Driver/Tag/Theora/PixelFormat.php deleted file mode 100644 index 062fda3c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/PixelFormat.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PixelFormat extends AbstractTag -{ - - protected $Id = 34; - - protected $Name = 'PixelFormat'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Pixel Format'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '4:2:0', - ), - 2 => array( - 'Id' => 2, - 'Label' => '4:2:2', - ), - 3 => array( - 'Id' => 3, - 'Label' => '4:4:4', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/Quality.php b/lib/PHPExiftool/Driver/Tag/Theora/Quality.php deleted file mode 100644 index 0087b8d93..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/Quality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Quality extends AbstractTag -{ - - protected $Id = 33; - - protected $Name = 'Quality'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Quality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/TheoraVersion.php b/lib/PHPExiftool/Driver/Tag/Theora/TheoraVersion.php deleted file mode 100644 index 70fa9aa82..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/TheoraVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TheoraVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'TheoraVersion'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Theora Version'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/XOffset.php b/lib/PHPExiftool/Driver/Tag/Theora/XOffset.php deleted file mode 100644 index 8e2e41ef5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/XOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XOffset extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'XOffset'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'X Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Theora/YOffset.php b/lib/PHPExiftool/Driver/Tag/Theora/YOffset.php deleted file mode 100644 index 1d4949efc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Theora/YOffset.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Theora; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YOffset extends AbstractTag -{ - - protected $Id = 14; - - protected $Name = 'YOffset'; - - protected $FullName = 'Theora::Identification'; - - protected $GroupName = 'Theora'; - - protected $g0 = 'Theora'; - - protected $g1 = 'Theora'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Y Offset'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Announce.php b/lib/PHPExiftool/Driver/Tag/Torrent/Announce.php deleted file mode 100644 index 72a4e8efe..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Announce.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Announce extends AbstractTag -{ - - protected $Id = 'announce'; - - protected $Name = 'Announce'; - - protected $FullName = 'Torrent::Main'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Announce'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/AnnounceList1.php b/lib/PHPExiftool/Driver/Tag/Torrent/AnnounceList1.php deleted file mode 100644 index 32492738f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/AnnounceList1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AnnounceList1 extends AbstractTag -{ - - protected $Id = 'announce-list'; - - protected $Name = 'AnnounceList1'; - - protected $FullName = 'Torrent::Main'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Announce List 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Comment.php b/lib/PHPExiftool/Driver/Tag/Torrent/Comment.php deleted file mode 100644 index 969a0bfc3..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'Torrent::Main'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/CreateDate.php b/lib/PHPExiftool/Driver/Tag/Torrent/CreateDate.php deleted file mode 100644 index 6d5f5969e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'creation date'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'Torrent::Main'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Creator.php b/lib/PHPExiftool/Driver/Tag/Torrent/Creator.php deleted file mode 100644 index 22d98d94d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Creator.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 'created by'; - - protected $Name = 'Creator'; - - protected $FullName = 'Torrent::Main'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Creator'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Encoding.php b/lib/PHPExiftool/Driver/Tag/Torrent/Encoding.php deleted file mode 100644 index 9840b85d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Encoding.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Encoding extends AbstractTag -{ - - protected $Id = 'encoding'; - - protected $Name = 'Encoding'; - - protected $FullName = 'Torrent::Main'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoding'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/File1Duration.php b/lib/PHPExiftool/Driver/Tag/Torrent/File1Duration.php deleted file mode 100644 index 914a12d5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/File1Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class File1Duration extends AbstractTag -{ - - protected $Id = 'file-duration'; - - protected $Name = 'File1Duration'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File 1 Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/File1Length.php b/lib/PHPExiftool/Driver/Tag/Torrent/File1Length.php deleted file mode 100644 index d0acc61c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/File1Length.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class File1Length extends AbstractTag -{ - - protected $Id = 'length'; - - protected $Name = 'File1Length'; - - protected $FullName = 'Torrent::Files'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File 1 Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/File1MD5Sum.php b/lib/PHPExiftool/Driver/Tag/Torrent/File1MD5Sum.php deleted file mode 100644 index ea96282e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/File1MD5Sum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class File1MD5Sum extends AbstractTag -{ - - protected $Id = 'md5sum'; - - protected $Name = 'File1MD5Sum'; - - protected $FullName = 'Torrent::Files'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File 1 MD5 Sum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/File1Media.php b/lib/PHPExiftool/Driver/Tag/Torrent/File1Media.php deleted file mode 100644 index 79510d22b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/File1Media.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class File1Media extends AbstractTag -{ - - protected $Id = 'file-media'; - - protected $Name = 'File1Media'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File 1 Media'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/File1Path.php b/lib/PHPExiftool/Driver/Tag/Torrent/File1Path.php deleted file mode 100644 index af1930467..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/File1Path.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class File1Path extends AbstractTag -{ - - protected $Id = 'path'; - - protected $Name = 'File1Path'; - - protected $FullName = 'Torrent::Files'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File 1 Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/File1PathUTF8.php b/lib/PHPExiftool/Driver/Tag/Torrent/File1PathUTF8.php deleted file mode 100644 index 08a24dfb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/File1PathUTF8.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class File1PathUTF8 extends AbstractTag -{ - - protected $Id = 'path.utf-8'; - - protected $Name = 'File1PathUTF-8'; - - protected $FullName = 'Torrent::Files'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'File 1 Path UTF-8'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Length.php b/lib/PHPExiftool/Driver/Tag/Torrent/Length.php deleted file mode 100644 index 837254cef..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Length.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Length extends AbstractTag -{ - - protected $Id = 'length'; - - protected $Name = 'Length'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/MD5Sum.php b/lib/PHPExiftool/Driver/Tag/Torrent/MD5Sum.php deleted file mode 100644 index 91f5569f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/MD5Sum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MD5Sum extends AbstractTag -{ - - protected $Id = 'md5sum'; - - protected $Name = 'MD5Sum'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MD5 Sum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Name.php b/lib/PHPExiftool/Driver/Tag/Torrent/Name.php deleted file mode 100644 index d80fdd9a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Name.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Name extends AbstractTag -{ - - protected $Id = 'name'; - - protected $Name = 'Name'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/NameUTF8.php b/lib/PHPExiftool/Driver/Tag/Torrent/NameUTF8.php deleted file mode 100644 index 880be89d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/NameUTF8.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NameUTF8 extends AbstractTag -{ - - protected $Id = 'name.utf-8'; - - protected $Name = 'NameUTF-8'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Name UTF-8'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/PieceLength.php b/lib/PHPExiftool/Driver/Tag/Torrent/PieceLength.php deleted file mode 100644 index 748df377a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/PieceLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PieceLength extends AbstractTag -{ - - protected $Id = 'piece length'; - - protected $Name = 'PieceLength'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Piece Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Pieces.php b/lib/PHPExiftool/Driver/Tag/Torrent/Pieces.php deleted file mode 100644 index 419e3bf04..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Pieces.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pieces extends AbstractTag -{ - - protected $Id = 'pieces'; - - protected $Name = 'Pieces'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pieces'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Private0.php b/lib/PHPExiftool/Driver/Tag/Torrent/Private0.php deleted file mode 100644 index 8c5a0ec11..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Private0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Private0 extends AbstractTag -{ - - protected $Id = 'private'; - - protected $Name = 'Private'; - - protected $FullName = 'Torrent::Info'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Private'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1AudioCodec.php b/lib/PHPExiftool/Driver/Tag/Torrent/Profile1AudioCodec.php deleted file mode 100644 index 7fdefd3cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1AudioCodec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Profile1AudioCodec extends AbstractTag -{ - - protected $Id = 'acodec'; - - protected $Name = 'Profile1AudioCodec'; - - protected $FullName = 'Torrent::Profiles'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile 1 Audio Codec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1Height.php b/lib/PHPExiftool/Driver/Tag/Torrent/Profile1Height.php deleted file mode 100644 index 61b57b06c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1Height.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Profile1Height extends AbstractTag -{ - - protected $Id = 'height'; - - protected $Name = 'Profile1Height'; - - protected $FullName = 'Torrent::Profiles'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile 1 Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1VideoCodec.php b/lib/PHPExiftool/Driver/Tag/Torrent/Profile1VideoCodec.php deleted file mode 100644 index 198077312..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1VideoCodec.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Profile1VideoCodec extends AbstractTag -{ - - protected $Id = 'vcodec'; - - protected $Name = 'Profile1VideoCodec'; - - protected $FullName = 'Torrent::Profiles'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile 1 Video Codec'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1Width.php b/lib/PHPExiftool/Driver/Tag/Torrent/Profile1Width.php deleted file mode 100644 index 31b26312f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/Profile1Width.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Profile1Width extends AbstractTag -{ - - protected $Id = 'width'; - - protected $Name = 'Profile1Width'; - - protected $FullName = 'Torrent::Profiles'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Profile 1 Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Torrent/URLList1.php b/lib/PHPExiftool/Driver/Tag/Torrent/URLList1.php deleted file mode 100644 index 8f97b9b94..000000000 --- a/lib/PHPExiftool/Driver/Tag/Torrent/URLList1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Torrent; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URLList1 extends AbstractTag -{ - - protected $Id = 'url-list'; - - protected $Name = 'URLList1'; - - protected $FullName = 'Torrent::Main'; - - protected $GroupName = 'Torrent'; - - protected $g0 = 'Torrent'; - - protected $g1 = 'Torrent'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'URL List 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/ChapterListTrackID.php b/lib/PHPExiftool/Driver/Tag/Track/ChapterListTrackID.php deleted file mode 100644 index 9e933685a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/ChapterListTrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChapterListTrackID extends AbstractTag -{ - - protected $Id = 'chap'; - - protected $Name = 'ChapterListTrackID'; - - protected $FullName = 'QuickTime::TrackRef'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Chapter List Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/CleanApertureDimensions.php b/lib/PHPExiftool/Driver/Tag/Track/CleanApertureDimensions.php deleted file mode 100644 index 52012854c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/CleanApertureDimensions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CleanApertureDimensions extends AbstractTag -{ - - protected $Id = 'clef'; - - protected $Name = 'CleanApertureDimensions'; - - protected $FullName = 'QuickTime::TrackAperture'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Clean Aperture Dimensions'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/ElementaryStreamTrack.php b/lib/PHPExiftool/Driver/Tag/Track/ElementaryStreamTrack.php deleted file mode 100644 index 430a1d466..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/ElementaryStreamTrack.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ElementaryStreamTrack extends AbstractTag -{ - - protected $Id = 'mpod'; - - protected $Name = 'ElementaryStreamTrack'; - - protected $FullName = 'QuickTime::TrackRef'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Elementary Stream Track'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/EncodedPixelsDimensions.php b/lib/PHPExiftool/Driver/Tag/Track/EncodedPixelsDimensions.php deleted file mode 100644 index f45fbd448..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/EncodedPixelsDimensions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedPixelsDimensions extends AbstractTag -{ - - protected $Id = 'enof'; - - protected $Name = 'EncodedPixelsDimensions'; - - protected $FullName = 'QuickTime::TrackAperture'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Encoded Pixels Dimensions'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/Track/ImageHeight.php deleted file mode 100644 index c11094f34..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 20; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/Track/ImageWidth.php deleted file mode 100644 index 3d3ac577d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/MatrixStructure.php b/lib/PHPExiftool/Driver/Tag/Track/MatrixStructure.php deleted file mode 100644 index 7321c6657..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/MatrixStructure.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MatrixStructure extends AbstractTag -{ - - protected $Id = 10; - - protected $Name = 'MatrixStructure'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed32s'; - - protected $Writable = false; - - protected $Description = 'Matrix Structure'; - - protected $MaxLength = 9; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/MediaCreateDate.php b/lib/PHPExiftool/Driver/Tag/Track/MediaCreateDate.php deleted file mode 100644 index 1d08a5bce..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/MediaCreateDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaCreateDate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'MediaCreateDate'; - - protected $FullName = 'QuickTime::MediaHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Media Create Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/MediaDuration.php b/lib/PHPExiftool/Driver/Tag/Track/MediaDuration.php deleted file mode 100644 index a636465dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/MediaDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaDuration extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'MediaDuration'; - - protected $FullName = 'QuickTime::MediaHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Media Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/MediaHeaderVersion.php b/lib/PHPExiftool/Driver/Tag/Track/MediaHeaderVersion.php deleted file mode 100644 index 0a7338eed..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/MediaHeaderVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaHeaderVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'MediaHeaderVersion'; - - protected $FullName = 'QuickTime::MediaHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Media Header Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/MediaLanguageCode.php b/lib/PHPExiftool/Driver/Tag/Track/MediaLanguageCode.php deleted file mode 100644 index 0129a0215..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/MediaLanguageCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaLanguageCode extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'MediaLanguageCode'; - - protected $FullName = 'QuickTime::MediaHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Media Language Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/MediaModifyDate.php b/lib/PHPExiftool/Driver/Tag/Track/MediaModifyDate.php deleted file mode 100644 index 9f010ddd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/MediaModifyDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaModifyDate extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'MediaModifyDate'; - - protected $FullName = 'QuickTime::MediaHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Media Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/MediaTimeScale.php b/lib/PHPExiftool/Driver/Tag/Track/MediaTimeScale.php deleted file mode 100644 index 44eeb8d09..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/MediaTimeScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaTimeScale extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'MediaTimeScale'; - - protected $FullName = 'QuickTime::MediaHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Media Time Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/NullMediaHeader.php b/lib/PHPExiftool/Driver/Tag/Track/NullMediaHeader.php deleted file mode 100644 index ab606e33b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/NullMediaHeader.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NullMediaHeader extends AbstractTag -{ - - protected $Id = 'nmhd'; - - protected $Name = 'NullMediaHeader'; - - protected $FullName = 'QuickTime::MediaInfo'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Null Media Header'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/ProductionApertureDimensions.php b/lib/PHPExiftool/Driver/Tag/Track/ProductionApertureDimensions.php deleted file mode 100644 index fb15eb300..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/ProductionApertureDimensions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductionApertureDimensions extends AbstractTag -{ - - protected $Id = 'prof'; - - protected $Name = 'ProductionApertureDimensions'; - - protected $FullName = 'QuickTime::TrackAperture'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'fixed32u'; - - protected $Writable = false; - - protected $Description = 'Production Aperture Dimensions'; - - protected $MaxLength = 3; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TimeCode.php b/lib/PHPExiftool/Driver/Tag/Track/TimeCode.php deleted file mode 100644 index 4931bd23a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TimeCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeCode extends AbstractTag -{ - - protected $Id = 'tmcd'; - - protected $Name = 'TimeCode'; - - protected $FullName = 'QuickTime::TrackRef'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Time Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TrackCreateDate.php b/lib/PHPExiftool/Driver/Tag/Track/TrackCreateDate.php deleted file mode 100644 index 41a097e7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TrackCreateDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackCreateDate extends AbstractTag -{ - - protected $Id = 1; - - protected $Name = 'TrackCreateDate'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Track Create Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TrackDuration.php b/lib/PHPExiftool/Driver/Tag/Track/TrackDuration.php deleted file mode 100644 index d9355bdbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TrackDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackDuration extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'TrackDuration'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Track Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TrackHeaderVersion.php b/lib/PHPExiftool/Driver/Tag/Track/TrackHeaderVersion.php deleted file mode 100644 index 9c3c00e8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TrackHeaderVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackHeaderVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'TrackHeaderVersion'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Track Header Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TrackID.php b/lib/PHPExiftool/Driver/Tag/Track/TrackID.php deleted file mode 100644 index f918067ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TrackID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackID extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'TrackID'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Track ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TrackLayer.php b/lib/PHPExiftool/Driver/Tag/Track/TrackLayer.php deleted file mode 100644 index 82c259f43..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TrackLayer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackLayer extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'TrackLayer'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Track Layer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TrackModifyDate.php b/lib/PHPExiftool/Driver/Tag/Track/TrackModifyDate.php deleted file mode 100644 index 24cf46f6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TrackModifyDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackModifyDate extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'TrackModifyDate'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int32u'; - - protected $Writable = true; - - protected $Description = 'Track Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Permanent = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/TrackVolume.php b/lib/PHPExiftool/Driver/Tag/Track/TrackVolume.php deleted file mode 100644 index 804d306a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/TrackVolume.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackVolume extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'TrackVolume'; - - protected $FullName = 'QuickTime::TrackHeader'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Track Volume'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Track/UUIDUnknown.php b/lib/PHPExiftool/Driver/Tag/Track/UUIDUnknown.php deleted file mode 100644 index 49afae315..000000000 --- a/lib/PHPExiftool/Driver/Tag/Track/UUIDUnknown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Track; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UUIDUnknown extends AbstractTag -{ - - protected $Id = 'uuid'; - - protected $Name = 'UUID-Unknown'; - - protected $FullName = 'QuickTime::Track'; - - protected $GroupName = 'Track#'; - - protected $g0 = 'QuickTime'; - - protected $g1 = 'Track#'; - - protected $g2 = 'Video'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'UUID-Unknown'; - - protected $flag_Binary = true; - - protected $Index = 1; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Actor.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Actor.php deleted file mode 100644 index 8e4241b88..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Actor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Actor extends AbstractTag -{ - - protected $Id = 'ACTOR'; - - protected $Name = 'Actor'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Actor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Album.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Album.php deleted file mode 100644 index 76a98d68e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'ALBUM'; - - protected $Name = 'Album'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Artist.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Artist.php deleted file mode 100644 index 05fb5e775..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Artist.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'ARTIST'; - - protected $Name = 'Artist'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/AudioChannels.php b/lib/PHPExiftool/Driver/Tag/Vorbis/AudioChannels.php deleted file mode 100644 index ffac16e21..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/AudioChannels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannels extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'AudioChannels'; - - protected $FullName = 'Vorbis::Identification'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Audio Channels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Comment.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Comment.php deleted file mode 100644 index 7ace758f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'COMMENT'; - - protected $Name = 'Comment'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Composer.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Composer.php deleted file mode 100644 index e88af507f..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Composer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'COMPOSER'; - - protected $Name = 'Composer'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Composer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Contact.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Contact.php deleted file mode 100644 index 0073d7474..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Contact.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contact extends AbstractTag -{ - - protected $Id = 'CONTACT'; - - protected $Name = 'Contact'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Contact'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Copyright.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Copyright.php deleted file mode 100644 index 2c26e1e3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'COPYRIGHT'; - - protected $Name = 'Copyright'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/CoverArt.php b/lib/PHPExiftool/Driver/Tag/Vorbis/CoverArt.php deleted file mode 100644 index 1b989003b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/CoverArt.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoverArt extends AbstractTag -{ - - protected $Id = 'COVERART'; - - protected $Name = 'CoverArt'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cover Art'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/CoverArtMIMEType.php b/lib/PHPExiftool/Driver/Tag/Vorbis/CoverArtMIMEType.php deleted file mode 100644 index 86ef47cc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/CoverArtMIMEType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoverArtMIMEType extends AbstractTag -{ - - protected $Id = 'COVERARTMIME'; - - protected $Name = 'CoverArtMIMEType'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cover Art MIME Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Date.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Date.php deleted file mode 100644 index 2bbce6262..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Date.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'DATE'; - - protected $Name = 'Date'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Description.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Description.php deleted file mode 100644 index f3fe7e0b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Description.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'DESCRIPTION'; - - protected $Name = 'Description'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Director.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Director.php deleted file mode 100644 index 61c9c7a08..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Director.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Director extends AbstractTag -{ - - protected $Id = 'DIRECTOR'; - - protected $Name = 'Director'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Director'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/EncodedBy.php b/lib/PHPExiftool/Driver/Tag/Vorbis/EncodedBy.php deleted file mode 100644 index f6e42aaec..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/EncodedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedBy extends AbstractTag -{ - - protected $Id = 'ENCODED_BY'; - - protected $Name = 'EncodedBy'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/EncodedUsing.php b/lib/PHPExiftool/Driver/Tag/Vorbis/EncodedUsing.php deleted file mode 100644 index 174065ee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/EncodedUsing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EncodedUsing extends AbstractTag -{ - - protected $Id = 'ENCODED_USING'; - - protected $Name = 'EncodedUsing'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Encoded Using'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Genre.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Genre.php deleted file mode 100644 index 44109053c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'GENRE'; - - protected $Name = 'Genre'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/ISRCNumber.php b/lib/PHPExiftool/Driver/Tag/Vorbis/ISRCNumber.php deleted file mode 100644 index 76ad938ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/ISRCNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISRCNumber extends AbstractTag -{ - - protected $Id = 'ISRC'; - - protected $Name = 'ISRCNumber'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'ISRC Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/License.php b/lib/PHPExiftool/Driver/Tag/Vorbis/License.php deleted file mode 100644 index 0196e2a3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/License.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class License extends AbstractTag -{ - - protected $Id = 'LICENSE'; - - protected $Name = 'License'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'License'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Location.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Location.php deleted file mode 100644 index 6b5986e3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Location.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 'LOCATION'; - - protected $Name = 'Location'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Location'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/MaximumBitrate.php b/lib/PHPExiftool/Driver/Tag/Vorbis/MaximumBitrate.php deleted file mode 100644 index 8aab623f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/MaximumBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaximumBitrate extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'MaximumBitrate'; - - protected $FullName = 'Vorbis::Identification'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Maximum Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/MinimumBitrate.php b/lib/PHPExiftool/Driver/Tag/Vorbis/MinimumBitrate.php deleted file mode 100644 index c3bb59feb..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/MinimumBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinimumBitrate extends AbstractTag -{ - - protected $Id = 17; - - protected $Name = 'MinimumBitrate'; - - protected $FullName = 'Vorbis::Identification'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Minimum Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/NominalBitrate.php b/lib/PHPExiftool/Driver/Tag/Vorbis/NominalBitrate.php deleted file mode 100644 index d3a77fd66..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/NominalBitrate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NominalBitrate extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'NominalBitrate'; - - protected $FullName = 'Vorbis::Identification'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Nominal Bitrate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Organization.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Organization.php deleted file mode 100644 index 9bb8efed6..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Organization.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Organization extends AbstractTag -{ - - protected $Id = 'ORGANIZATION'; - - protected $Name = 'Organization'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Organization'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Performer.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Performer.php deleted file mode 100644 index 24b4a9e01..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Performer.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Performer extends AbstractTag -{ - - protected $Id = 'PERFORMER'; - - protected $Name = 'Performer'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Performer'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Producer.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Producer.php deleted file mode 100644 index 709bf535e..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Producer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = 'PRODUCER'; - - protected $Name = 'Producer'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainAlbumGain.php b/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainAlbumGain.php deleted file mode 100644 index 0becffb0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainAlbumGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainAlbumGain extends AbstractTag -{ - - protected $Id = 'REPLAYGAIN_ALBUM_GAIN'; - - protected $Name = 'ReplayGainAlbumGain'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Album Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainAlbumPeak.php b/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainAlbumPeak.php deleted file mode 100644 index 0fdcdf76c..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainAlbumPeak.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainAlbumPeak extends AbstractTag -{ - - protected $Id = 'REPLAYGAIN_ALBUM_PEAK'; - - protected $Name = 'ReplayGainAlbumPeak'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Album Peak'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainTrackGain.php b/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainTrackGain.php deleted file mode 100644 index 115a0875a..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainTrackGain.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainTrackGain extends AbstractTag -{ - - protected $Id = 'REPLAYGAIN_TRACK_GAIN'; - - protected $Name = 'ReplayGainTrackGain'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Track Gain'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainTrackPeak.php b/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainTrackPeak.php deleted file mode 100644 index 8e4e2e8d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/ReplayGainTrackPeak.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReplayGainTrackPeak extends AbstractTag -{ - - protected $Id = 'REPLAYGAIN_TRACK_PEAK'; - - protected $Name = 'ReplayGainTrackPeak'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Replay Gain Track Peak'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/SampleRate.php b/lib/PHPExiftool/Driver/Tag/Vorbis/SampleRate.php deleted file mode 100644 index e3ebe98f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/SampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SampleRate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'SampleRate'; - - protected $FullName = 'Vorbis::Identification'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Title.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Title.php deleted file mode 100644 index b9d9046ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'TITLE'; - - protected $Name = 'Title'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/Vorbis/TrackNumber.php deleted file mode 100644 index 000e0fcd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = 'TRACKNUMBER'; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Vendor.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Vendor.php deleted file mode 100644 index 66ee42ab0..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Vendor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Vendor extends AbstractTag -{ - - protected $Id = 'vendor'; - - protected $Name = 'Vendor'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Vendor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/Version.php b/lib/PHPExiftool/Driver/Tag/Vorbis/Version.php deleted file mode 100644 index 946050c24..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/Version.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 'VERSION'; - - protected $Name = 'Version'; - - protected $FullName = 'Vorbis::Comments'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/Vorbis/VorbisVersion.php b/lib/PHPExiftool/Driver/Tag/Vorbis/VorbisVersion.php deleted file mode 100644 index 0e5e28a23..000000000 --- a/lib/PHPExiftool/Driver/Tag/Vorbis/VorbisVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\Vorbis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VorbisVersion extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'VorbisVersion'; - - protected $FullName = 'Vorbis::Identification'; - - protected $GroupName = 'Vorbis'; - - protected $g0 = 'Vorbis'; - - protected $g1 = 'Vorbis'; - - protected $g2 = 'Audio'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Vorbis Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/AppVersion.php b/lib/PHPExiftool/Driver/Tag/XML/AppVersion.php deleted file mode 100644 index 660f71f71..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/AppVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AppVersion extends AbstractTag -{ - - protected $Id = 'AppVersion'; - - protected $Name = 'AppVersion'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'App Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Application.php b/lib/PHPExiftool/Driver/Tag/XML/Application.php deleted file mode 100644 index 4a9884b0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Application.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Application extends AbstractTag -{ - - protected $Id = 'Application'; - - protected $Name = 'Application'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Application'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Author.php b/lib/PHPExiftool/Driver/Tag/XML/Author.php deleted file mode 100644 index 30bf28015..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'authors'; - - protected $Name = 'Author'; - - protected $FullName = 'iWork::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Cast.php b/lib/PHPExiftool/Driver/Tag/XML/Cast.php deleted file mode 100644 index e3a519a5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Cast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Cast extends AbstractTag -{ - - protected $Id = 'cast//name'; - - protected $Name = 'Cast'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Cast'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Category.php b/lib/PHPExiftool/Driver/Tag/XML/Category.php deleted file mode 100644 index 7dfb8c2df..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 'category'; - - protected $Name = 'Category'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Characters.php b/lib/PHPExiftool/Driver/Tag/XML/Characters.php deleted file mode 100644 index 5e6ea49de..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Characters.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Characters extends AbstractTag -{ - - protected $Id = 'Characters'; - - protected $Name = 'Characters'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/CharactersWithSpaces.php b/lib/PHPExiftool/Driver/Tag/XML/CharactersWithSpaces.php deleted file mode 100644 index 613643629..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/CharactersWithSpaces.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CharactersWithSpaces extends AbstractTag -{ - - protected $Id = 'CharactersWithSpaces'; - - protected $Name = 'CharactersWithSpaces'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Characters With Spaces'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/CheckedBy.php b/lib/PHPExiftool/Driver/Tag/XML/CheckedBy.php deleted file mode 100644 index 1a392b082..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/CheckedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CheckedBy extends AbstractTag -{ - - protected $Id = 'CheckedBy'; - - protected $Name = 'CheckedBy'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Checked By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Client.php b/lib/PHPExiftool/Driver/Tag/XML/Client.php deleted file mode 100644 index b689e1e08..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Client.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Client extends AbstractTag -{ - - protected $Id = 'Client'; - - protected $Name = 'Client'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Client'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Codirectors.php b/lib/PHPExiftool/Driver/Tag/XML/Codirectors.php deleted file mode 100644 index 66125e7e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Codirectors.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Codirectors extends AbstractTag -{ - - protected $Id = 'codirectors//name'; - - protected $Name = 'Codirectors'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Codirectors'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Comment.php b/lib/PHPExiftool/Driver/Tag/XML/Comment.php deleted file mode 100644 index bc1c87255..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 'comment'; - - protected $Name = 'Comment'; - - protected $FullName = 'iWork::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Company.php b/lib/PHPExiftool/Driver/Tag/XML/Company.php deleted file mode 100644 index 89f5cef17..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Company.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Company extends AbstractTag -{ - - protected $Id = 'Company'; - - protected $Name = 'Company'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Company'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Copyright.php b/lib/PHPExiftool/Driver/Tag/XML/Copyright.php deleted file mode 100644 index 366a89cf1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'iWork::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/CreateDate.php b/lib/PHPExiftool/Driver/Tag/XML/CreateDate.php deleted file mode 100644 index d3639c959..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'created'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/CreatedType.php b/lib/PHPExiftool/Driver/Tag/XML/CreatedType.php deleted file mode 100644 index d5442d317..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/CreatedType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatedType extends AbstractTag -{ - - protected $Id = 'createdType'; - - protected $Name = 'CreatedType'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Created Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/DateCompleted.php b/lib/PHPExiftool/Driver/Tag/XML/DateCompleted.php deleted file mode 100644 index 7d7f1b409..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/DateCompleted.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateCompleted extends AbstractTag -{ - - protected $Id = 'DateCompleted'; - - protected $Name = 'DateCompleted'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Date Completed'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/XML/DateTimeOriginal.php deleted file mode 100644 index a94631eee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'MetaDataList//DateTimeOriginal'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Department.php b/lib/PHPExiftool/Driver/Tag/XML/Department.php deleted file mode 100644 index 6583dc3a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Department.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Department extends AbstractTag -{ - - protected $Id = 'Department'; - - protected $Name = 'Department'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Department'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Destination.php b/lib/PHPExiftool/Driver/Tag/XML/Destination.php deleted file mode 100644 index 0c2c75fdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Destination.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Destination extends AbstractTag -{ - - protected $Id = 'Destination'; - - protected $Name = 'Destination'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Destination'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Directors.php b/lib/PHPExiftool/Driver/Tag/XML/Directors.php deleted file mode 100644 index d1e877f22..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Directors.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Directors extends AbstractTag -{ - - protected $Id = 'directors//name'; - - protected $Name = 'Directors'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Directors'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Disposition.php b/lib/PHPExiftool/Driver/Tag/XML/Disposition.php deleted file mode 100644 index d6a5dc938..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Disposition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Disposition extends AbstractTag -{ - - protected $Id = 'Disposition'; - - protected $Name = 'Disposition'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Disposition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Division.php b/lib/PHPExiftool/Driver/Tag/XML/Division.php deleted file mode 100644 index 55e1f853f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Division.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Division extends AbstractTag -{ - - protected $Id = 'Division'; - - protected $Name = 'Division'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Division'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/DocSecurity.php b/lib/PHPExiftool/Driver/Tag/XML/DocSecurity.php deleted file mode 100644 index 2d3763a86..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/DocSecurity.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocSecurity extends AbstractTag -{ - - protected $Id = 'DocSecurity'; - - protected $Name = 'DocSecurity'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Doc Security'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Password protected', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Read-only recommended', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Read-only enforced', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Locked for annotations', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/DocumentNumber.php b/lib/PHPExiftool/Driver/Tag/XML/DocumentNumber.php deleted file mode 100644 index f3db6a144..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/DocumentNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentNumber extends AbstractTag -{ - - protected $Id = 'DocumentNumber'; - - protected $Name = 'DocumentNumber'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Document Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Duration.php b/lib/PHPExiftool/Driver/Tag/XML/Duration.php deleted file mode 100644 index 5e1b326e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Duration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'MetaDataList//Duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Duration'; - - protected $local_g2 = 'Video'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Editor.php b/lib/PHPExiftool/Driver/Tag/XML/Editor.php deleted file mode 100644 index 514d67b28..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Editor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Editor extends AbstractTag -{ - - protected $Id = 'Editor'; - - protected $Name = 'Editor'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Editor'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/ForwardTo.php b/lib/PHPExiftool/Driver/Tag/XML/ForwardTo.php deleted file mode 100644 index 2a3fa898f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/ForwardTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ForwardTo extends AbstractTag -{ - - protected $Id = 'ForwardTo'; - - protected $Name = 'ForwardTo'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Forward To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/XML/GPSLatitude.php deleted file mode 100644 index 8a658191c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/GPSLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 'MetaDataList//Geolocation/Latitude'; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/XML/GPSLongitude.php deleted file mode 100644 index d5517abba..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/GPSLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 'MetaDataList//Geolocation/Longitude'; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/GPSMapDatum.php b/lib/PHPExiftool/Driver/Tag/XML/GPSMapDatum.php deleted file mode 100644 index fff3c0e87..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/GPSMapDatum.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMapDatum extends AbstractTag -{ - - protected $Id = 'MetaDataList//Geolocation/MapDatum'; - - protected $Name = 'GPSMapDatum'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'GPS Map Datum'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Group.php b/lib/PHPExiftool/Driver/Tag/XML/Group.php deleted file mode 100644 index 55d279f62..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Group.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Group extends AbstractTag -{ - - protected $Id = 'Group'; - - protected $Name = 'Group'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/HeadingPairs.php b/lib/PHPExiftool/Driver/Tag/XML/HeadingPairs.php deleted file mode 100644 index d7d32058c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/HeadingPairs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HeadingPairs extends AbstractTag -{ - - protected $Id = 'HeadingPairs'; - - protected $Name = 'HeadingPairs'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Heading Pairs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/HiddenSlides.php b/lib/PHPExiftool/Driver/Tag/XML/HiddenSlides.php deleted file mode 100644 index eca15e166..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/HiddenSlides.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HiddenSlides extends AbstractTag -{ - - protected $Id = 'HiddenSlides'; - - protected $Name = 'HiddenSlides'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hidden Slides'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/HyperlinkBase.php b/lib/PHPExiftool/Driver/Tag/XML/HyperlinkBase.php deleted file mode 100644 index 2f0227c7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/HyperlinkBase.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HyperlinkBase extends AbstractTag -{ - - protected $Id = 'HyperlinkBase'; - - protected $Name = 'HyperlinkBase'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hyperlink Base'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/HyperlinksChanged.php b/lib/PHPExiftool/Driver/Tag/XML/HyperlinksChanged.php deleted file mode 100644 index 30644e975..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/HyperlinksChanged.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HyperlinksChanged extends AbstractTag -{ - - protected $Id = 'HyperlinksChanged'; - - protected $Name = 'HyperlinksChanged'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Hyperlinks Changed'; - - protected $Values = array( - false => array( - 'Id' => false, - 'Label' => 'No', - ), - true => array( - 'Id' => true, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Keywords.php b/lib/PHPExiftool/Driver/Tag/XML/Keywords.php deleted file mode 100644 index d8ec05dbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Language.php b/lib/PHPExiftool/Driver/Tag/XML/Language.php deleted file mode 100644 index 27b124c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Language.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'Language'; - - protected $Name = 'Language'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Language'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/LastModifiedBy.php b/lib/PHPExiftool/Driver/Tag/XML/LastModifiedBy.php deleted file mode 100644 index b5e26ed45..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/LastModifiedBy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastModifiedBy extends AbstractTag -{ - - protected $Id = 'lastModifiedBy'; - - protected $Name = 'LastModifiedBy'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Modified By'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/LastPrinted.php b/lib/PHPExiftool/Driver/Tag/XML/LastPrinted.php deleted file mode 100644 index e4aa5d360..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/LastPrinted.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPrinted extends AbstractTag -{ - - protected $Id = 'lastPrinted'; - - protected $Name = 'LastPrinted'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Last Printed'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/LastUpdate.php b/lib/PHPExiftool/Driver/Tag/XML/LastUpdate.php deleted file mode 100644 index 45cce36fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/LastUpdate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastUpdate extends AbstractTag -{ - - protected $Id = 'lastUpdate'; - - protected $Name = 'LastUpdate'; - - protected $FullName = 'XMP::XML'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Unknown'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Last Update'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Lines.php b/lib/PHPExiftool/Driver/Tag/XML/Lines.php deleted file mode 100644 index d9b92dd3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Lines.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lines extends AbstractTag -{ - - protected $Id = 'Lines'; - - protected $Name = 'Lines'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Lines'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/LinksUpToDate.php b/lib/PHPExiftool/Driver/Tag/XML/LinksUpToDate.php deleted file mode 100644 index e5d14963c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/LinksUpToDate.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LinksUpToDate extends AbstractTag -{ - - protected $Id = 'LinksUpToDate'; - - protected $Name = 'LinksUpToDate'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Links Up To Date'; - - protected $Values = array( - false => array( - 'Id' => false, - 'Label' => 'No', - ), - true => array( - 'Id' => true, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/MMClips.php b/lib/PHPExiftool/Driver/Tag/XML/MMClips.php deleted file mode 100644 index 7dbf3a04b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/MMClips.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MMClips extends AbstractTag -{ - - protected $Id = 'MMClips'; - - protected $Name = 'MMClips'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'MM Clips'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Mailstop.php b/lib/PHPExiftool/Driver/Tag/XML/Mailstop.php deleted file mode 100644 index 711ffcba4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Mailstop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Mailstop extends AbstractTag -{ - - protected $Id = 'Mailstop'; - - protected $Name = 'Mailstop'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Mailstop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Manager.php b/lib/PHPExiftool/Driver/Tag/XML/Manager.php deleted file mode 100644 index a070e0a4c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Manager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manager extends AbstractTag -{ - - protected $Id = 'Manager'; - - protected $Name = 'Manager'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Manager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Matter.php b/lib/PHPExiftool/Driver/Tag/XML/Matter.php deleted file mode 100644 index 8d4355bf7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Matter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Matter extends AbstractTag -{ - - protected $Id = 'Matter'; - - protected $Name = 'Matter'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Matter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/ModifiedType.php b/lib/PHPExiftool/Driver/Tag/XML/ModifiedType.php deleted file mode 100644 index ead4605e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/ModifiedType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifiedType extends AbstractTag -{ - - protected $Id = 'modifiedType'; - - protected $Name = 'ModifiedType'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Modified Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/XML/ModifyDate.php deleted file mode 100644 index 067755aa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'modified'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Notes.php b/lib/PHPExiftool/Driver/Tag/XML/Notes.php deleted file mode 100644 index 6d191bfa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Notes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Notes extends AbstractTag -{ - - protected $Id = 'Notes'; - - protected $Name = 'Notes'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Office.php b/lib/PHPExiftool/Driver/Tag/XML/Office.php deleted file mode 100644 index eef687807..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Office.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Office extends AbstractTag -{ - - protected $Id = 'Office'; - - protected $Name = 'Office'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Office'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Owner.php b/lib/PHPExiftool/Driver/Tag/XML/Owner.php deleted file mode 100644 index 2b0ba08f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Owner.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Owner extends AbstractTag -{ - - protected $Id = 'Owner'; - - protected $Name = 'Owner'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Owner'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Pages.php b/lib/PHPExiftool/Driver/Tag/XML/Pages.php deleted file mode 100644 index 0a8bf32f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Pages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pages extends AbstractTag -{ - - protected $Id = 'Pages'; - - protected $Name = 'Pages'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Paragraphs.php b/lib/PHPExiftool/Driver/Tag/XML/Paragraphs.php deleted file mode 100644 index 9b4cfa63d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Paragraphs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Paragraphs extends AbstractTag -{ - - protected $Id = 'Paragraphs'; - - protected $Name = 'Paragraphs'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Paragraphs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/PresentationFormat.php b/lib/PHPExiftool/Driver/Tag/XML/PresentationFormat.php deleted file mode 100644 index cd311b533..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/PresentationFormat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PresentationFormat extends AbstractTag -{ - - protected $Id = 'PresentationFormat'; - - protected $Name = 'PresentationFormat'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Presentation Format'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Producers.php b/lib/PHPExiftool/Driver/Tag/XML/Producers.php deleted file mode 100644 index 3155a08a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Producers.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producers extends AbstractTag -{ - - protected $Id = 'producers//name'; - - protected $Name = 'Producers'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Producers'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Project.php b/lib/PHPExiftool/Driver/Tag/XML/Project.php deleted file mode 100644 index 48ed0fdd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Project.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Project extends AbstractTag -{ - - protected $Id = 'Project'; - - protected $Name = 'Project'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Project'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Projects.php b/lib/PHPExiftool/Driver/Tag/XML/Projects.php deleted file mode 100644 index af6bed61f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Projects.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Projects extends AbstractTag -{ - - protected $Id = 'projects'; - - protected $Name = 'Projects'; - - protected $FullName = 'iWork::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Projects'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Publisher.php b/lib/PHPExiftool/Driver/Tag/XML/Publisher.php deleted file mode 100644 index 1e18afce2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Publisher.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'Publisher'; - - protected $Name = 'Publisher'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Publisher'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Purpose.php b/lib/PHPExiftool/Driver/Tag/XML/Purpose.php deleted file mode 100644 index 561ee7f71..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Purpose.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Purpose extends AbstractTag -{ - - protected $Id = 'Purpose'; - - protected $Name = 'Purpose'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Purpose'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/ReceivedFrom.php b/lib/PHPExiftool/Driver/Tag/XML/ReceivedFrom.php deleted file mode 100644 index be61612ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/ReceivedFrom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReceivedFrom extends AbstractTag -{ - - protected $Id = 'ReceivedFrom'; - - protected $Name = 'ReceivedFrom'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Received From'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/RecordedBy.php b/lib/PHPExiftool/Driver/Tag/XML/RecordedBy.php deleted file mode 100644 index 83de3831f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/RecordedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedBy extends AbstractTag -{ - - protected $Id = 'RecordedBy'; - - protected $Name = 'RecordedBy'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Recorded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/RecordedDate.php b/lib/PHPExiftool/Driver/Tag/XML/RecordedDate.php deleted file mode 100644 index 3c33286b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/RecordedDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordedDate extends AbstractTag -{ - - protected $Id = 'RecordedDate'; - - protected $Name = 'RecordedDate'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = false; - - protected $Description = 'Recorded Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Reference.php b/lib/PHPExiftool/Driver/Tag/XML/Reference.php deleted file mode 100644 index 6152c0352..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Reference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference extends AbstractTag -{ - - protected $Id = 'Reference'; - - protected $Name = 'Reference'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/RevisionNumber.php b/lib/PHPExiftool/Driver/Tag/XML/RevisionNumber.php deleted file mode 100644 index e41948621..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/RevisionNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RevisionNumber extends AbstractTag -{ - - protected $Id = 'revision'; - - protected $Name = 'RevisionNumber'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Revision Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/ScaleCrop.php b/lib/PHPExiftool/Driver/Tag/XML/ScaleCrop.php deleted file mode 100644 index 77788bc63..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/ScaleCrop.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScaleCrop extends AbstractTag -{ - - protected $Id = 'ScaleCrop'; - - protected $Name = 'ScaleCrop'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Scale Crop'; - - protected $Values = array( - false => array( - 'Id' => false, - 'Label' => 'No', - ), - true => array( - 'Id' => true, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Screenwriters.php b/lib/PHPExiftool/Driver/Tag/XML/Screenwriters.php deleted file mode 100644 index f4a4926ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Screenwriters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Screenwriters extends AbstractTag -{ - - protected $Id = 'screenwriters//name'; - - protected $Name = 'Screenwriters'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Screenwriters'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/SharedDoc.php b/lib/PHPExiftool/Driver/Tag/XML/SharedDoc.php deleted file mode 100644 index 23ab16e52..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/SharedDoc.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharedDoc extends AbstractTag -{ - - protected $Id = 'SharedDoc'; - - protected $Name = 'SharedDoc'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Shared Doc'; - - protected $Values = array( - false => array( - 'Id' => false, - 'Label' => 'No', - ), - true => array( - 'Id' => true, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Slides.php b/lib/PHPExiftool/Driver/Tag/XML/Slides.php deleted file mode 100644 index 07d3245b9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Slides.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Slides extends AbstractTag -{ - - protected $Id = 'Slides'; - - protected $Name = 'Slides'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Slides'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Source.php b/lib/PHPExiftool/Driver/Tag/XML/Source.php deleted file mode 100644 index 5e8e86f68..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Source.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 'Source'; - - protected $Name = 'Source'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Source'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Status.php b/lib/PHPExiftool/Driver/Tag/XML/Status.php deleted file mode 100644 index d909ed199..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Status.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Status extends AbstractTag -{ - - protected $Id = 'Status'; - - protected $Name = 'Status'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Studio.php b/lib/PHPExiftool/Driver/Tag/XML/Studio.php deleted file mode 100644 index e667fc7a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Studio.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Studio extends AbstractTag -{ - - protected $Id = 'studio//name'; - - protected $Name = 'Studio'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Studio'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/TelephoneNumber.php b/lib/PHPExiftool/Driver/Tag/XML/TelephoneNumber.php deleted file mode 100644 index cb893c248..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/TelephoneNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TelephoneNumber extends AbstractTag -{ - - protected $Id = 'TelephoneNumber'; - - protected $Name = 'TelephoneNumber'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Telephone Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Template.php b/lib/PHPExiftool/Driver/Tag/XML/Template.php deleted file mode 100644 index f5df7195e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Template.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Template extends AbstractTag -{ - - protected $Id = 'Template'; - - protected $Name = 'Template'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Template'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Title.php b/lib/PHPExiftool/Driver/Tag/XML/Title.php deleted file mode 100644 index c80e725ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Title.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'title'; - - protected $Name = 'Title'; - - protected $FullName = 'iWork::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/TitlesOfParts.php b/lib/PHPExiftool/Driver/Tag/XML/TitlesOfParts.php deleted file mode 100644 index 04d684063..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/TitlesOfParts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TitlesOfParts extends AbstractTag -{ - - protected $Id = 'TitlesOfParts'; - - protected $Name = 'TitlesOfParts'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Titles Of Parts'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/TotalEditTime.php b/lib/PHPExiftool/Driver/Tag/XML/TotalEditTime.php deleted file mode 100644 index 621f50d57..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/TotalEditTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TotalEditTime extends AbstractTag -{ - - protected $Id = 'TotalTime'; - - protected $Name = 'TotalEditTime'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Total Edit Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Typist.php b/lib/PHPExiftool/Driver/Tag/XML/Typist.php deleted file mode 100644 index 8ef21f6c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Typist.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Typist extends AbstractTag -{ - - protected $Id = 'Typist'; - - protected $Name = 'Typist'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Typist'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/Words.php b/lib/PHPExiftool/Driver/Tag/XML/Words.php deleted file mode 100644 index aca69777b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/Words.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Words extends AbstractTag -{ - - protected $Id = 'Words'; - - protected $Name = 'Words'; - - protected $FullName = 'OOXML::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'XML'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Words'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XML/XMLFileType.php b/lib/PHPExiftool/Driver/Tag/XML/XMLFileType.php deleted file mode 100644 index a01c43804..000000000 --- a/lib/PHPExiftool/Driver/Tag/XML/XMLFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XML; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMLFileType extends AbstractTag -{ - - protected $Id = 'XMLFileType'; - - protected $Name = 'XMLFileType'; - - protected $FullName = 'PLIST::Main'; - - protected $GroupName = 'XML'; - - protected $g0 = 'PLIST'; - - protected $g1 = 'XML'; - - protected $g2 = 'Document'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'XML File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMP/XMP.php b/lib/PHPExiftool/Driver/Tag/XMP/XMP.php deleted file mode 100644 index 6ec4ef35f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMP/XMP.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMP extends AbstractTag -{ - - protected $Id = 'XMP'; - - protected $Name = 'XMP'; - - protected $FullName = 'Extra'; - - protected $GroupName = 'XMP'; - - protected $g0 = 'File'; - - protected $g1 = 'File'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = true; - - protected $Description = 'XMP'; - - protected $local_g0 = 'XMP'; - - protected $local_g1 = 'XMP'; - - protected $flag_Binary = true; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineA.php b/lib/PHPExiftool/Driver/Tag/XMPAas/AffineA.php deleted file mode 100644 index bf9c859af..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineA.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AffineA extends AbstractTag -{ - - protected $Id = 'AffineA'; - - protected $Name = 'AffineA'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Affine A'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineB.php b/lib/PHPExiftool/Driver/Tag/XMPAas/AffineB.php deleted file mode 100644 index 307343a39..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineB.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AffineB extends AbstractTag -{ - - protected $Id = 'AffineB'; - - protected $Name = 'AffineB'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Affine B'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineC.php b/lib/PHPExiftool/Driver/Tag/XMPAas/AffineC.php deleted file mode 100644 index 95b85fd60..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AffineC extends AbstractTag -{ - - protected $Id = 'AffineC'; - - protected $Name = 'AffineC'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Affine C'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineD.php b/lib/PHPExiftool/Driver/Tag/XMPAas/AffineD.php deleted file mode 100644 index 6ee1606d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineD.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AffineD extends AbstractTag -{ - - protected $Id = 'AffineD'; - - protected $Name = 'AffineD'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Affine D'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineX.php b/lib/PHPExiftool/Driver/Tag/XMPAas/AffineX.php deleted file mode 100644 index fb3246583..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AffineX extends AbstractTag -{ - - protected $Id = 'AffineX'; - - protected $Name = 'AffineX'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Affine X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineY.php b/lib/PHPExiftool/Driver/Tag/XMPAas/AffineY.php deleted file mode 100644 index 51b457bb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/AffineY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AffineY extends AbstractTag -{ - - protected $Id = 'AffineY'; - - protected $Name = 'AffineY'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Affine Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/CropH.php b/lib/PHPExiftool/Driver/Tag/XMPAas/CropH.php deleted file mode 100644 index e32ae7fda..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/CropH.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropH extends AbstractTag -{ - - protected $Id = 'CropH'; - - protected $Name = 'CropH'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Crop H'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/CropW.php b/lib/PHPExiftool/Driver/Tag/XMPAas/CropW.php deleted file mode 100644 index 78b3c05fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/CropW.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropW extends AbstractTag -{ - - protected $Id = 'CropW'; - - protected $Name = 'CropW'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Crop W'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/CropX.php b/lib/PHPExiftool/Driver/Tag/XMPAas/CropX.php deleted file mode 100644 index e305ec48a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/CropX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropX extends AbstractTag -{ - - protected $Id = 'CropX'; - - protected $Name = 'CropX'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Crop X'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/CropY.php b/lib/PHPExiftool/Driver/Tag/XMPAas/CropY.php deleted file mode 100644 index 4439e490a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/CropY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropY extends AbstractTag -{ - - protected $Id = 'CropY'; - - protected $Name = 'CropY'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Crop Y'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve0x.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve0x.php deleted file mode 100644 index 11af87bc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve0x.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve0x extends AbstractTag -{ - - protected $Id = 'Curve0x'; - - protected $Name = 'Curve0x'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 0x'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve0y.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve0y.php deleted file mode 100644 index 5440af59b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve0y.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve0y extends AbstractTag -{ - - protected $Id = 'Curve0y'; - - protected $Name = 'Curve0y'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 0y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve1x.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve1x.php deleted file mode 100644 index 214881b39..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve1x.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve1x extends AbstractTag -{ - - protected $Id = 'Curve1x'; - - protected $Name = 'Curve1x'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 1x'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve1y.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve1y.php deleted file mode 100644 index 10a296b5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve1y.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve1y extends AbstractTag -{ - - protected $Id = 'Curve1y'; - - protected $Name = 'Curve1y'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 1y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve2x.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve2x.php deleted file mode 100644 index a81a5e43d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve2x.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve2x extends AbstractTag -{ - - protected $Id = 'Curve2x'; - - protected $Name = 'Curve2x'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 2x'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve2y.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve2y.php deleted file mode 100644 index df6804d89..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve2y.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve2y extends AbstractTag -{ - - protected $Id = 'Curve2y'; - - protected $Name = 'Curve2y'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 2y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve3x.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve3x.php deleted file mode 100644 index f645bf694..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve3x.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve3x extends AbstractTag -{ - - protected $Id = 'Curve3x'; - - protected $Name = 'Curve3x'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 3x'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve3y.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve3y.php deleted file mode 100644 index 07592d08e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve3y.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve3y extends AbstractTag -{ - - protected $Id = 'Curve3y'; - - protected $Name = 'Curve3y'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 3y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve4x.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve4x.php deleted file mode 100644 index 158fae7f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve4x.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve4x extends AbstractTag -{ - - protected $Id = 'Curve4x'; - - protected $Name = 'Curve4x'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 4x'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve4y.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Curve4y.php deleted file mode 100644 index 5953e36e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Curve4y.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Curve4y extends AbstractTag -{ - - protected $Id = 'Curve4y'; - - protected $Name = 'Curve4y'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Curve 4y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Highlights.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Highlights.php deleted file mode 100644 index 254a22e2f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Highlights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Highlights extends AbstractTag -{ - - protected $Id = 'Highlights'; - - protected $Name = 'Highlights'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Highlights'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Shadows.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Shadows.php deleted file mode 100644 index 7e00226f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Shadows.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Shadows extends AbstractTag -{ - - protected $Id = 'Shadows'; - - protected $Name = 'Shadows'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Shadows'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAas/Vibrance.php b/lib/PHPExiftool/Driver/Tag/XMPAas/Vibrance.php deleted file mode 100644 index af6437eb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAas/Vibrance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAas; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Vibrance extends AbstractTag -{ - - protected $Id = 'Vibrance'; - - protected $Name = 'Vibrance'; - - protected $FullName = 'XMP::aas'; - - protected $GroupName = 'XMP-aas'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aas'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Vibrance'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Author.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Author.php deleted file mode 100644 index bb944cdb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Author.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'author'; - - protected $Name = 'Author'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Caption.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Caption.php deleted file mode 100644 index 271898485..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Caption.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Caption extends AbstractTag -{ - - protected $Id = 'caption'; - - protected $Name = 'Caption'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Caption'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Categories.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Categories.php deleted file mode 100644 index 218221df9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Categories.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Categories extends AbstractTag -{ - - protected $Id = 'categories'; - - protected $Name = 'Categories'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Categories'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/DPP.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/DPP.php deleted file mode 100644 index b89d85428..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/DPP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DPP extends AbstractTag -{ - - protected $Id = 'dpp'; - - protected $Name = 'DPP'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'DPP'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/DateTime.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/DateTime.php deleted file mode 100644 index 53817fc7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/DateTime.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTime extends AbstractTag -{ - - protected $Id = 'datetime'; - - protected $Name = 'DateTime'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date Time'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Keywords.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Keywords.php deleted file mode 100644 index d1f997cab..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Keywords.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keywords'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Notes.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Notes.php deleted file mode 100644 index 4d2da9f1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Notes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Notes extends AbstractTag -{ - - protected $Id = 'notes'; - - protected $Name = 'Notes'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Notes'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/RPP.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/RPP.php deleted file mode 100644 index 5b5350508..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/RPP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RPP extends AbstractTag -{ - - protected $Id = 'rpp'; - - protected $Name = 'RPP'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'RPP'; - - protected $flag_Binary = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Rating.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Rating.php deleted file mode 100644 index 3d82f8dc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Rating.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 'rating'; - - protected $Name = 'Rating'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Rating'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Rawrppused.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Rawrppused.php deleted file mode 100644 index 0a4346307..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Rawrppused.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rawrppused extends AbstractTag -{ - - protected $Id = 'rawrppused'; - - protected $Name = 'Rawrppused'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Rawrppused'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Tagged.php b/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Tagged.php deleted file mode 100644 index eee16a8c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAcdsee/Tagged.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAcdsee; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tagged extends AbstractTag -{ - - protected $Id = 'tagged'; - - protected $Name = 'Tagged'; - - protected $FullName = 'XMP::acdsee'; - - protected $GroupName = 'XMP-acdsee'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-acdsee'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Tagged'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAlbum/Notes.php b/lib/PHPExiftool/Driver/Tag/XMPAlbum/Notes.php deleted file mode 100644 index 04cc40cd6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAlbum/Notes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAlbum; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Notes extends AbstractTag -{ - - protected $Id = 'Notes'; - - protected $Name = 'Notes'; - - protected $FullName = 'XMP::Album'; - - protected $GroupName = 'XMP-album'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-album'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/AngleInfoRoll.php b/lib/PHPExiftool/Driver/Tag/XMPAppleFi/AngleInfoRoll.php deleted file mode 100644 index 6ed51e542..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/AngleInfoRoll.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAppleFi; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngleInfoRoll extends AbstractTag -{ - - protected $Id = 'AngleInfoRoll'; - - protected $Name = 'AngleInfoRoll'; - - protected $FullName = 'XMP::apple_fi'; - - protected $GroupName = 'XMP-apple-fi'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-apple-fi'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Angle Info Roll'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/AngleInfoYaw.php b/lib/PHPExiftool/Driver/Tag/XMPAppleFi/AngleInfoYaw.php deleted file mode 100644 index c3113c0b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/AngleInfoYaw.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAppleFi; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AngleInfoYaw extends AbstractTag -{ - - protected $Id = 'AngleInfoYaw'; - - protected $Name = 'AngleInfoYaw'; - - protected $FullName = 'XMP::apple_fi'; - - protected $GroupName = 'XMP-apple-fi'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-apple-fi'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Angle Info Yaw'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/ConfidenceLevel.php b/lib/PHPExiftool/Driver/Tag/XMPAppleFi/ConfidenceLevel.php deleted file mode 100644 index 69d716c9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/ConfidenceLevel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAppleFi; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConfidenceLevel extends AbstractTag -{ - - protected $Id = 'ConfidenceLevel'; - - protected $Name = 'ConfidenceLevel'; - - protected $FullName = 'XMP::apple_fi'; - - protected $GroupName = 'XMP-apple-fi'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-apple-fi'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Confidence Level'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/FaceID.php b/lib/PHPExiftool/Driver/Tag/XMPAppleFi/FaceID.php deleted file mode 100644 index c90d01142..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/FaceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAppleFi; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FaceID extends AbstractTag -{ - - protected $Id = 'FaceID'; - - protected $Name = 'FaceID'; - - protected $FullName = 'XMP::apple_fi'; - - protected $GroupName = 'XMP-apple-fi'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-apple-fi'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Face ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/TimeStamp.php b/lib/PHPExiftool/Driver/Tag/XMPAppleFi/TimeStamp.php deleted file mode 100644 index 8186e5fe6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAppleFi/TimeStamp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAppleFi; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeStamp extends AbstractTag -{ - - protected $Id = 'Timestamp'; - - protected $Name = 'TimeStamp'; - - protected $FullName = 'XMP::apple_fi'; - - protected $GroupName = 'XMP-apple-fi'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-apple-fi'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Time Stamp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/ApproximateFocusDistance.php b/lib/PHPExiftool/Driver/Tag/XMPAux/ApproximateFocusDistance.php deleted file mode 100644 index 5abfb7ac6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/ApproximateFocusDistance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApproximateFocusDistance extends AbstractTag -{ - - protected $Id = 'ApproximateFocusDistance'; - - protected $Name = 'ApproximateFocusDistance'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Approximate Focus Distance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/Firmware.php b/lib/PHPExiftool/Driver/Tag/XMPAux/Firmware.php deleted file mode 100644 index a557b1617..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/Firmware.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Firmware extends AbstractTag -{ - - protected $Id = 'Firmware'; - - protected $Name = 'Firmware'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Firmware'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/FlashCompensation.php b/lib/PHPExiftool/Driver/Tag/XMPAux/FlashCompensation.php deleted file mode 100644 index a56a45cac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/FlashCompensation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashCompensation extends AbstractTag -{ - - protected $Id = 'FlashCompensation'; - - protected $Name = 'FlashCompensation'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Flash Compensation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/ImageNumber.php b/lib/PHPExiftool/Driver/Tag/XMPAux/ImageNumber.php deleted file mode 100644 index 576bedd0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/ImageNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageNumber extends AbstractTag -{ - - protected $Id = 'ImageNumber'; - - protected $Name = 'ImageNumber'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/Lens.php b/lib/PHPExiftool/Driver/Tag/XMPAux/Lens.php deleted file mode 100644 index 13370f7ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/Lens.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lens extends AbstractTag -{ - - protected $Id = 'Lens'; - - protected $Name = 'Lens'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/LensID.php b/lib/PHPExiftool/Driver/Tag/XMPAux/LensID.php deleted file mode 100644 index aac14ca71..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/LensID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensID extends AbstractTag -{ - - protected $Id = 'LensID'; - - protected $Name = 'LensID'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/LensInfo.php b/lib/PHPExiftool/Driver/Tag/XMPAux/LensInfo.php deleted file mode 100644 index ed045a7f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/LensInfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensInfo extends AbstractTag -{ - - protected $Id = 'LensInfo'; - - protected $Name = 'LensInfo'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Info'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/XMPAux/LensSerialNumber.php deleted file mode 100644 index cff1de725..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/LensSerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 'LensSerialNumber'; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/OwnerName.php b/lib/PHPExiftool/Driver/Tag/XMPAux/OwnerName.php deleted file mode 100644 index 643b16a9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/OwnerName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerName extends AbstractTag -{ - - protected $Id = 'OwnerName'; - - protected $Name = 'OwnerName'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner Name'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPAux/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/XMPAux/SerialNumber.php deleted file mode 100644 index 07a3df3fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPAux/SerialNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPAux; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'SerialNumber'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'XMP::aux'; - - protected $GroupName = 'XMP-aux'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-aux'; - - protected $g2 = 'Camera'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/AttributionName.php b/lib/PHPExiftool/Driver/Tag/XMPCc/AttributionName.php deleted file mode 100644 index 0588f9880..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/AttributionName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttributionName extends AbstractTag -{ - - protected $Id = 'attributionName'; - - protected $Name = 'AttributionName'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Attribution Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/AttributionURL.php b/lib/PHPExiftool/Driver/Tag/XMPCc/AttributionURL.php deleted file mode 100644 index 27a0b9be5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/AttributionURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AttributionURL extends AbstractTag -{ - - protected $Id = 'attributionURL'; - - protected $Name = 'AttributionURL'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Attribution URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/DeprecatedOn.php b/lib/PHPExiftool/Driver/Tag/XMPCc/DeprecatedOn.php deleted file mode 100644 index f45478dbf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/DeprecatedOn.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeprecatedOn extends AbstractTag -{ - - protected $Id = 'deprecatedOn'; - - protected $Name = 'DeprecatedOn'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Deprecated On'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/Jurisdiction.php b/lib/PHPExiftool/Driver/Tag/XMPCc/Jurisdiction.php deleted file mode 100644 index e59bd5b89..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/Jurisdiction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Jurisdiction extends AbstractTag -{ - - protected $Id = 'jurisdiction'; - - protected $Name = 'Jurisdiction'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Jurisdiction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/LegalCode.php b/lib/PHPExiftool/Driver/Tag/XMPCc/LegalCode.php deleted file mode 100644 index 3e8925e6d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/LegalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LegalCode extends AbstractTag -{ - - protected $Id = 'legalcode'; - - protected $Name = 'LegalCode'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Legal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/License.php b/lib/PHPExiftool/Driver/Tag/XMPCc/License.php deleted file mode 100644 index 99010e32f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/License.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class License extends AbstractTag -{ - - protected $Id = 'license'; - - protected $Name = 'License'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'License'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/MorePermissions.php b/lib/PHPExiftool/Driver/Tag/XMPCc/MorePermissions.php deleted file mode 100644 index 725215101..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/MorePermissions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MorePermissions extends AbstractTag -{ - - protected $Id = 'morePermissions'; - - protected $Name = 'MorePermissions'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'More Permissions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/Permits.php b/lib/PHPExiftool/Driver/Tag/XMPCc/Permits.php deleted file mode 100644 index 3ab416f2b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/Permits.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Permits extends AbstractTag -{ - - protected $Id = 'permits'; - - protected $Name = 'Permits'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Permits'; - - protected $flag_List = true; - - protected $flag_Bag = true; - - protected $Values = array( - 'cc:DerivativeWorks' => array( - 'Id' => 'cc:DerivativeWorks', - 'Label' => 'Derivative Works', - ), - 'cc:Distribution' => array( - 'Id' => 'cc:Distribution', - 'Label' => 'Distribution', - ), - 'cc:Reproduction' => array( - 'Id' => 'cc:Reproduction', - 'Label' => 'Reproduction', - ), - 'cc:Sharing' => array( - 'Id' => 'cc:Sharing', - 'Label' => 'Sharing', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/Prohibits.php b/lib/PHPExiftool/Driver/Tag/XMPCc/Prohibits.php deleted file mode 100644 index 6a8b29239..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/Prohibits.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Prohibits extends AbstractTag -{ - - protected $Id = 'prohibits'; - - protected $Name = 'Prohibits'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Prohibits'; - - protected $flag_List = true; - - protected $flag_Bag = true; - - protected $Values = array( - 'cc:CommercialUse' => array( - 'Id' => 'cc:CommercialUse', - 'Label' => 'Commercial Use', - ), - 'cc:HighIncomeNationUse' => array( - 'Id' => 'cc:HighIncomeNationUse', - 'Label' => 'High Income Nation Use', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/Requires.php b/lib/PHPExiftool/Driver/Tag/XMPCc/Requires.php deleted file mode 100644 index 9cadd6ed5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/Requires.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Requires extends AbstractTag -{ - - protected $Id = 'requires'; - - protected $Name = 'Requires'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Requires'; - - protected $flag_List = true; - - protected $flag_Bag = true; - - protected $Values = array( - 'cc:Attribution' => array( - 'Id' => 'cc:Attribution', - 'Label' => 'Attribution', - ), - 'cc:Copyleft' => array( - 'Id' => 'cc:Copyleft', - 'Label' => 'Copyleft', - ), - 'cc:LesserCopyleft' => array( - 'Id' => 'cc:LesserCopyleft', - 'Label' => 'Lesser Copyleft', - ), - 'cc:Notice' => array( - 'Id' => 'cc:Notice', - 'Label' => 'Notice', - ), - 'cc:ShareAlike' => array( - 'Id' => 'cc:ShareAlike', - 'Label' => 'Share Alike', - ), - 'cc:SourceCode' => array( - 'Id' => 'cc:SourceCode', - 'Label' => 'Source Code', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCc/UseGuidelines.php b/lib/PHPExiftool/Driver/Tag/XMPCc/UseGuidelines.php deleted file mode 100644 index 879228f8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCc/UseGuidelines.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UseGuidelines extends AbstractTag -{ - - protected $Id = 'useGuidelines'; - - protected $Name = 'UseGuidelines'; - - protected $FullName = 'XMP::cc'; - - protected $GroupName = 'XMP-cc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cc'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Use Guidelines'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCell/CellGlobalID.php b/lib/PHPExiftool/Driver/Tag/XMPCell/CellGlobalID.php deleted file mode 100644 index 18cd4d7fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCell/CellGlobalID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCell; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CellGlobalID extends AbstractTag -{ - - protected $Id = 'cgi'; - - protected $Name = 'CellGlobalID'; - - protected $FullName = 'XMP::cell'; - - protected $GroupName = 'XMP-cell'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cell'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Cell Global ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCell/CellR.php b/lib/PHPExiftool/Driver/Tag/XMPCell/CellR.php deleted file mode 100644 index ec5542082..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCell/CellR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCell; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CellR extends AbstractTag -{ - - protected $Id = 'r'; - - protected $Name = 'CellR'; - - protected $FullName = 'XMP::cell'; - - protected $GroupName = 'XMP-cell'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cell'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Cell R'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCell/CellTowerID.php b/lib/PHPExiftool/Driver/Tag/XMPCell/CellTowerID.php deleted file mode 100644 index a5f1c00f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCell/CellTowerID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCell; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CellTowerID extends AbstractTag -{ - - protected $Id = 'cellid'; - - protected $Name = 'CellTowerID'; - - protected $FullName = 'XMP::cell'; - - protected $GroupName = 'XMP-cell'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cell'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Cell Tower ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCell/LocationAreaCode.php b/lib/PHPExiftool/Driver/Tag/XMPCell/LocationAreaCode.php deleted file mode 100644 index ea234c6ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCell/LocationAreaCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCell; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationAreaCode extends AbstractTag -{ - - protected $Id = 'lac'; - - protected $Name = 'LocationAreaCode'; - - protected $FullName = 'XMP::cell'; - - protected $GroupName = 'XMP-cell'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cell'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Area Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCell/MobileCountryCode.php b/lib/PHPExiftool/Driver/Tag/XMPCell/MobileCountryCode.php deleted file mode 100644 index d1bcffa09..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCell/MobileCountryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCell; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MobileCountryCode extends AbstractTag -{ - - protected $Id = 'mcc'; - - protected $Name = 'MobileCountryCode'; - - protected $FullName = 'XMP::cell'; - - protected $GroupName = 'XMP-cell'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cell'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Mobile Country Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCell/MobileNetworkCode.php b/lib/PHPExiftool/Driver/Tag/XMPCell/MobileNetworkCode.php deleted file mode 100644 index e21c66425..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCell/MobileNetworkCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCell; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MobileNetworkCode extends AbstractTag -{ - - protected $Id = 'mnc'; - - protected $Name = 'MobileNetworkCode'; - - protected $FullName = 'XMP::cell'; - - protected $GroupName = 'XMP-cell'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-cell'; - - protected $g2 = 'Location'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Mobile Network Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/AlreadyApplied.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/AlreadyApplied.php deleted file mode 100644 index c66943073..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/AlreadyApplied.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlreadyApplied extends AbstractTag -{ - - protected $Id = 'AlreadyApplied'; - - protected $Name = 'AlreadyApplied'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Already Applied'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoBrightness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoBrightness.php deleted file mode 100644 index fd1241b5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoBrightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoBrightness extends AbstractTag -{ - - protected $Id = 'AutoBrightness'; - - protected $Name = 'AutoBrightness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Auto Brightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoContrast.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoContrast.php deleted file mode 100644 index df782c62c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoContrast extends AbstractTag -{ - - protected $Id = 'AutoContrast'; - - protected $Name = 'AutoContrast'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Auto Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoExposure.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoExposure.php deleted file mode 100644 index 7245d6be2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoExposure extends AbstractTag -{ - - protected $Id = 'AutoExposure'; - - protected $Name = 'AutoExposure'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Auto Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoLateralCA.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoLateralCA.php deleted file mode 100644 index 15748b300..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoLateralCA.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoLateralCA extends AbstractTag -{ - - protected $Id = 'AutoLateralCA'; - - protected $Name = 'AutoLateralCA'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Auto Lateral CA'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoShadows.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoShadows.php deleted file mode 100644 index 9f1bc4853..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoShadows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoShadows extends AbstractTag -{ - - protected $Id = 'AutoShadows'; - - protected $Name = 'AutoShadows'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Auto Shadows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoWhiteVersion.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoWhiteVersion.php deleted file mode 100644 index b79763cc0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/AutoWhiteVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AutoWhiteVersion extends AbstractTag -{ - - protected $Id = 'AutoWhiteVersion'; - - protected $Name = 'AutoWhiteVersion'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Auto White Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Blacks2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Blacks2012.php deleted file mode 100644 index 535dd4599..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Blacks2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Blacks2012 extends AbstractTag -{ - - protected $Id = 'Blacks2012'; - - protected $Name = 'Blacks2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Blacks 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/BlueHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/BlueHue.php deleted file mode 100644 index 55b64566a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/BlueHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueHue extends AbstractTag -{ - - protected $Id = 'BlueHue'; - - protected $Name = 'BlueHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Blue Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/BlueSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/BlueSaturation.php deleted file mode 100644 index 553530f47..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/BlueSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BlueSaturation extends AbstractTag -{ - - protected $Id = 'BlueSaturation'; - - protected $Name = 'BlueSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Blue Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Brightness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Brightness.php deleted file mode 100644 index 9314d1695..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Brightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Brightness extends AbstractTag -{ - - protected $Id = 'Brightness'; - - protected $Name = 'Brightness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Brightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CameraProfile.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CameraProfile.php deleted file mode 100644 index c3827d5c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CameraProfile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraProfile extends AbstractTag -{ - - protected $Id = 'CameraProfile'; - - protected $Name = 'CameraProfile'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Profile'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CameraProfileDigest.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CameraProfileDigest.php deleted file mode 100644 index 24bfdcbdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CameraProfileDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraProfileDigest extends AbstractTag -{ - - protected $Id = 'CameraProfileDigest'; - - protected $Name = 'CameraProfileDigest'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Profile Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ChromaticAberrationB.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ChromaticAberrationB.php deleted file mode 100644 index 0b62b7e26..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ChromaticAberrationB.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationB extends AbstractTag -{ - - protected $Id = 'ChromaticAberrationB'; - - protected $Name = 'ChromaticAberrationB'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration B'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ChromaticAberrationR.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ChromaticAberrationR.php deleted file mode 100644 index b59edfb8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ChromaticAberrationR.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChromaticAberrationR extends AbstractTag -{ - - protected $Id = 'ChromaticAberrationR'; - - protected $Name = 'ChromaticAberrationR'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Chromatic Aberration R'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrActive.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrActive.php deleted file mode 100644 index 5b7aa732d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrActive.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrActive extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionActive'; - - protected $Name = 'CircGradBasedCorrActive'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Active'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrAmount.php deleted file mode 100644 index 61553fa2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrAmount extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionAmount'; - - protected $Name = 'CircGradBasedCorrAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrBrightness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrBrightness.php deleted file mode 100644 index 0de853085..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrBrightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrBrightness extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalBrightness'; - - protected $Name = 'CircGradBasedCorrBrightness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Brightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrClarity.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrClarity.php deleted file mode 100644 index 2da13ee51..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrClarity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrClarity extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalClarity'; - - protected $Name = 'CircGradBasedCorrClarity'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Clarity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrClarity2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrClarity2012.php deleted file mode 100644 index f6be7fc70..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrClarity2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrClarity2012 extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalClarity2012'; - - protected $Name = 'CircGradBasedCorrClarity2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Clarity 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrContrast.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrContrast.php deleted file mode 100644 index 5c2325b75..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrContrast extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalContrast'; - - protected $Name = 'CircGradBasedCorrContrast'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrContrast2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrContrast2012.php deleted file mode 100644 index 3f582286a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrContrast2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrContrast2012 extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalContrast2012'; - - protected $Name = 'CircGradBasedCorrContrast2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Contrast 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrDefringe.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrDefringe.php deleted file mode 100644 index 72d056a52..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrDefringe.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrDefringe extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalDefringe'; - - protected $Name = 'CircGradBasedCorrDefringe'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Defringe'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrExposure.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrExposure.php deleted file mode 100644 index e4ae4be75..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrExposure extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalExposure'; - - protected $Name = 'CircGradBasedCorrExposure'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrExposure2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrExposure2012.php deleted file mode 100644 index 7c9495a37..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrExposure2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrExposure2012 extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalExposure2012'; - - protected $Name = 'CircGradBasedCorrExposure2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Exposure 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrHighlights2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrHighlights2012.php deleted file mode 100644 index 76cd25276..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrHighlights2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrHighlights2012 extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalHighlights2012'; - - protected $Name = 'CircGradBasedCorrHighlights2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Highlights 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrHue.php deleted file mode 100644 index 67265ea7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrHue extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalToningHue'; - - protected $Name = 'CircGradBasedCorrHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrLuminanceNoise.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrLuminanceNoise.php deleted file mode 100644 index b095a775f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrLuminanceNoise.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrLuminanceNoise extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalLuminanceNoise'; - - protected $Name = 'CircGradBasedCorrLuminanceNoise'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Luminance Noise'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskAlpha.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskAlpha.php deleted file mode 100644 index c3e96dee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskAlpha.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskAlpha extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksAlpha'; - - protected $Name = 'CircGradBasedCorrMaskAlpha'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Alpha'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskAngle.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskAngle.php deleted file mode 100644 index 6c0dc43ff..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskAngle extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksAngle'; - - protected $Name = 'CircGradBasedCorrMaskAngle'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskBottom.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskBottom.php deleted file mode 100644 index 309b31efa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskBottom extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksBottom'; - - protected $Name = 'CircGradBasedCorrMaskBottom'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskCenterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskCenterValue.php deleted file mode 100644 index 6f9037a7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskCenterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskCenterValue extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksCenterValue'; - - protected $Name = 'CircGradBasedCorrMaskCenterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Center Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskCenterWeight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskCenterWeight.php deleted file mode 100644 index 85094530e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskCenterWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskCenterWeight extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'; - - protected $Name = 'CircGradBasedCorrMaskCenterWeight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Center Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskDabs.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskDabs.php deleted file mode 100644 index 67bfc744b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskDabs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskDabs extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksDabs'; - - protected $Name = 'CircGradBasedCorrMaskDabs'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Dabs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFeather.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFeather.php deleted file mode 100644 index 24cf1d1c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFeather.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskFeather extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksFeather'; - - protected $Name = 'CircGradBasedCorrMaskFeather'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Feather'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFlipped.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFlipped.php deleted file mode 100644 index 71bafc548..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFlipped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskFlipped extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksFlipped'; - - protected $Name = 'CircGradBasedCorrMaskFlipped'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Flipped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFlow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFlow.php deleted file mode 100644 index 0014e51b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFlow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskFlow extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksFlow'; - - protected $Name = 'CircGradBasedCorrMaskFlow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Flow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFullX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFullX.php deleted file mode 100644 index b4ced3ea6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFullX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskFullX extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksFullX'; - - protected $Name = 'CircGradBasedCorrMaskFullX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Full X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFullY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFullY.php deleted file mode 100644 index 59dbfb741..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskFullY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskFullY extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksFullY'; - - protected $Name = 'CircGradBasedCorrMaskFullY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Full Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskLeft.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskLeft.php deleted file mode 100644 index 3e5e08e6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskLeft extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksLeft'; - - protected $Name = 'CircGradBasedCorrMaskLeft'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskMidpoint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskMidpoint.php deleted file mode 100644 index 57cefc000..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskMidpoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskMidpoint extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksMidpoint'; - - protected $Name = 'CircGradBasedCorrMaskMidpoint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Midpoint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskPerimeterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskPerimeterValue.php deleted file mode 100644 index 5a0e0bfb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskPerimeterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskPerimeterValue extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'; - - protected $Name = 'CircGradBasedCorrMaskPerimeterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Perimeter Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRadius.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRadius.php deleted file mode 100644 index ce87c5855..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRadius.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskRadius extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksRadius'; - - protected $Name = 'CircGradBasedCorrMaskRadius'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Radius'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRight.php deleted file mode 100644 index b53219ac1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskRight extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksRight'; - - protected $Name = 'CircGradBasedCorrMaskRight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRoundness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRoundness.php deleted file mode 100644 index 8fda8cdb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskRoundness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskRoundness extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksRoundness'; - - protected $Name = 'CircGradBasedCorrMaskRoundness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Roundness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskSizeX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskSizeX.php deleted file mode 100644 index 12e352641..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskSizeX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskSizeX extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksSizeX'; - - protected $Name = 'CircGradBasedCorrMaskSizeX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Size X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskSizeY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskSizeY.php deleted file mode 100644 index 63880c190..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskSizeY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskSizeY extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksSizeY'; - - protected $Name = 'CircGradBasedCorrMaskSizeY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Size Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskTop.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskTop.php deleted file mode 100644 index 051c7be02..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskTop extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksTop'; - - protected $Name = 'CircGradBasedCorrMaskTop'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskValue.php deleted file mode 100644 index a7ae944a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskValue extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksMaskValue'; - - protected $Name = 'CircGradBasedCorrMaskValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskVersion.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskVersion.php deleted file mode 100644 index 7a3ebea0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskVersion extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksVersion'; - - protected $Name = 'CircGradBasedCorrMaskVersion'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskWhat.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskWhat.php deleted file mode 100644 index 7ca0d336f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskWhat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskWhat extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksWhat'; - - protected $Name = 'CircGradBasedCorrMaskWhat'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask What'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskX.php deleted file mode 100644 index dcc799d4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskX extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksX'; - - protected $Name = 'CircGradBasedCorrMaskX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskY.php deleted file mode 100644 index 6e3d73015..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskY extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksY'; - - protected $Name = 'CircGradBasedCorrMaskY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskZeroX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskZeroX.php deleted file mode 100644 index 55dd4232b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskZeroX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskZeroX extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksZeroX'; - - protected $Name = 'CircGradBasedCorrMaskZeroX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Zero X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskZeroY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskZeroY.php deleted file mode 100644 index 5fbedbe7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMaskZeroY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMaskZeroY extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasksZeroY'; - - protected $Name = 'CircGradBasedCorrMaskZeroY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Mask Zero Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMasks.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMasks.php deleted file mode 100644 index 40c972a53..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMasks.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMasks extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsCorrectionMasks'; - - protected $Name = 'CircGradBasedCorrMasks'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Masks'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMoire.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMoire.php deleted file mode 100644 index 0aadd5530..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrMoire.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrMoire extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalMoire'; - - protected $Name = 'CircGradBasedCorrMoire'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Moire'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrSaturation.php deleted file mode 100644 index 237680000..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrSaturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'CircGradBasedCorrSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrShadows2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrShadows2012.php deleted file mode 100644 index 595d5331f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrShadows2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrShadows2012 extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalShadows2012'; - - protected $Name = 'CircGradBasedCorrShadows2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Shadows 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrSharpness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrSharpness.php deleted file mode 100644 index 19ccb4d7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrSharpness extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalSharpness'; - - protected $Name = 'CircGradBasedCorrSharpness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrTemperature.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrTemperature.php deleted file mode 100644 index 3d2337b39..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrTemperature extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalTemperature'; - - protected $Name = 'CircGradBasedCorrTemperature'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrTint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrTint.php deleted file mode 100644 index 6e3543eaa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrTint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrTint extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsLocalTint'; - - protected $Name = 'CircGradBasedCorrTint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrWhat.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrWhat.php deleted file mode 100644 index 29dc4621d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircGradBasedCorrWhat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircGradBasedCorrWhat extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrectionsWhat'; - - protected $Name = 'CircGradBasedCorrWhat'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Circ Grad Based Corr What'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircularGradientBasedCorrections.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CircularGradientBasedCorrections.php deleted file mode 100644 index cef1b9a1e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CircularGradientBasedCorrections.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CircularGradientBasedCorrections extends AbstractTag -{ - - protected $Id = 'CircularGradientBasedCorrections'; - - protected $Name = 'CircularGradientBasedCorrections'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Circular Gradient Based Corrections'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Clarity.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Clarity.php deleted file mode 100644 index ce4c4e2a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Clarity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Clarity extends AbstractTag -{ - - protected $Id = 'Clarity'; - - protected $Name = 'Clarity'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Clarity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Clarity2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Clarity2012.php deleted file mode 100644 index cb59bdabc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Clarity2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Clarity2012 extends AbstractTag -{ - - protected $Id = 'Clarity2012'; - - protected $Name = 'Clarity2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Clarity 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReduction.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReduction.php deleted file mode 100644 index 39e376cb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReduction.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorNoiseReduction extends AbstractTag -{ - - protected $Id = 'ColorNoiseReduction'; - - protected $Name = 'ColorNoiseReduction'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Color Noise Reduction'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReductionDetail.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReductionDetail.php deleted file mode 100644 index 87f73582c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReductionDetail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorNoiseReductionDetail extends AbstractTag -{ - - protected $Id = 'ColorNoiseReductionDetail'; - - protected $Name = 'ColorNoiseReductionDetail'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Color Noise Reduction Detail'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReductionSmoothness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReductionSmoothness.php deleted file mode 100644 index 402b1cda9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorNoiseReductionSmoothness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorNoiseReductionSmoothness extends AbstractTag -{ - - protected $Id = 'ColorNoiseReductionSmoothness'; - - protected $Name = 'ColorNoiseReductionSmoothness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Color Noise Reduction Smoothness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorTemperature.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorTemperature.php deleted file mode 100644 index 940cb8d37..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ColorTemperature.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorTemperature extends AbstractTag -{ - - protected $Id = 'Temperature'; - - protected $Name = 'ColorTemperature'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Color Temperature'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Contrast.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Contrast.php deleted file mode 100644 index 034962a4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Contrast.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'Contrast'; - - protected $Name = 'Contrast'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Contrast2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Contrast2012.php deleted file mode 100644 index be95f7a30..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Contrast2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast2012 extends AbstractTag -{ - - protected $Id = 'Contrast2012'; - - protected $Name = 'Contrast2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Contrast 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ConvertToGrayscale.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ConvertToGrayscale.php deleted file mode 100644 index 8950d421f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ConvertToGrayscale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ConvertToGrayscale extends AbstractTag -{ - - protected $Id = 'ConvertToGrayscale'; - - protected $Name = 'ConvertToGrayscale'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Convert To Grayscale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Converter.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Converter.php deleted file mode 100644 index 2388692ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Converter.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Converter extends AbstractTag -{ - - protected $Id = 'Converter'; - - protected $Name = 'Converter'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Converter'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropAngle.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropAngle.php deleted file mode 100644 index c3e60bb83..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropAngle extends AbstractTag -{ - - protected $Id = 'CropAngle'; - - protected $Name = 'CropAngle'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Crop Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropBottom.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropBottom.php deleted file mode 100644 index a8858ed2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropBottom extends AbstractTag -{ - - protected $Id = 'CropBottom'; - - protected $Name = 'CropBottom'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Crop Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropConstrainToWarp.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropConstrainToWarp.php deleted file mode 100644 index 9b3b0b8e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropConstrainToWarp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropConstrainToWarp extends AbstractTag -{ - - protected $Id = 'CropConstrainToWarp'; - - protected $Name = 'CropConstrainToWarp'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Crop Constrain To Warp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropHeight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropHeight.php deleted file mode 100644 index 2ba85f4b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropHeight extends AbstractTag -{ - - protected $Id = 'CropHeight'; - - protected $Name = 'CropHeight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Crop Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropLeft.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropLeft.php deleted file mode 100644 index 9b978ba34..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropLeft extends AbstractTag -{ - - protected $Id = 'CropLeft'; - - protected $Name = 'CropLeft'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Crop Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropRight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropRight.php deleted file mode 100644 index df7d65454..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropRight extends AbstractTag -{ - - protected $Id = 'CropRight'; - - protected $Name = 'CropRight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Crop Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropTop.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropTop.php deleted file mode 100644 index aa198ab75..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropTop extends AbstractTag -{ - - protected $Id = 'CropTop'; - - protected $Name = 'CropTop'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Crop Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropUnit.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropUnit.php deleted file mode 100644 index 8998d6d9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropUnit.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropUnit extends AbstractTag -{ - - protected $Id = 'CropUnit'; - - protected $Name = 'CropUnit'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Crop Unit'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'pixels', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'inches', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropUnits.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropUnits.php deleted file mode 100644 index f2bd62e55..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropUnits.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropUnits extends AbstractTag -{ - - protected $Id = 'CropUnits'; - - protected $Name = 'CropUnits'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Crop Units'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'pixels', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'inches', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropWidth.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/CropWidth.php deleted file mode 100644 index fc3e8b656..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/CropWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CropWidth extends AbstractTag -{ - - protected $Id = 'CropWidth'; - - protected $Name = 'CropWidth'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Crop Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Defringe.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Defringe.php deleted file mode 100644 index 325ecc867..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Defringe.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Defringe extends AbstractTag -{ - - protected $Id = 'Defringe'; - - protected $Name = 'Defringe'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Defringe'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenAmount.php deleted file mode 100644 index f6bef4eab..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefringeGreenAmount extends AbstractTag -{ - - protected $Id = 'DefringeGreenAmount'; - - protected $Name = 'DefringeGreenAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Defringe Green Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenHueHi.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenHueHi.php deleted file mode 100644 index c65eade94..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenHueHi.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefringeGreenHueHi extends AbstractTag -{ - - protected $Id = 'DefringeGreenHueHi'; - - protected $Name = 'DefringeGreenHueHi'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Defringe Green Hue Hi'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenHueLo.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenHueLo.php deleted file mode 100644 index e92eeda14..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringeGreenHueLo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefringeGreenHueLo extends AbstractTag -{ - - protected $Id = 'DefringeGreenHueLo'; - - protected $Name = 'DefringeGreenHueLo'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Defringe Green Hue Lo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleAmount.php deleted file mode 100644 index a267854d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefringePurpleAmount extends AbstractTag -{ - - protected $Id = 'DefringePurpleAmount'; - - protected $Name = 'DefringePurpleAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Defringe Purple Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleHueHi.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleHueHi.php deleted file mode 100644 index 056b75df0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleHueHi.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefringePurpleHueHi extends AbstractTag -{ - - protected $Id = 'DefringePurpleHueHi'; - - protected $Name = 'DefringePurpleHueHi'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Defringe Purple Hue Hi'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleHueLo.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleHueLo.php deleted file mode 100644 index 15ca36ff5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/DefringePurpleHueLo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DefringePurpleHueLo extends AbstractTag -{ - - protected $Id = 'DefringePurpleHueLo'; - - protected $Name = 'DefringePurpleHueLo'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Defringe Purple Hue Lo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Exposure.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Exposure.php deleted file mode 100644 index ce4f2fadf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Exposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Exposure extends AbstractTag -{ - - protected $Id = 'Exposure'; - - protected $Name = 'Exposure'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Exposure2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Exposure2012.php deleted file mode 100644 index a9d4ede42..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Exposure2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Exposure2012 extends AbstractTag -{ - - protected $Id = 'Exposure2012'; - - protected $Name = 'Exposure2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Exposure 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/FillLight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/FillLight.php deleted file mode 100644 index 4e8f9a77a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/FillLight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FillLight extends AbstractTag -{ - - protected $Id = 'FillLight'; - - protected $Name = 'FillLight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Fill Light'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrActive.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrActive.php deleted file mode 100644 index 076c25ab2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrActive.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrActive extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionActive'; - - protected $Name = 'GradientBasedCorrActive'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Active'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrAmount.php deleted file mode 100644 index 200248ce8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrAmount extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionAmount'; - - protected $Name = 'GradientBasedCorrAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrBrightness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrBrightness.php deleted file mode 100644 index 2588e01d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrBrightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrBrightness extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalBrightness'; - - protected $Name = 'GradientBasedCorrBrightness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Brightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrClarity.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrClarity.php deleted file mode 100644 index 45ea09640..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrClarity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrClarity extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalClarity'; - - protected $Name = 'GradientBasedCorrClarity'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Clarity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrClarity2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrClarity2012.php deleted file mode 100644 index 277ff0e8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrClarity2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrClarity2012 extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalClarity2012'; - - protected $Name = 'GradientBasedCorrClarity2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Clarity 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrContrast.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrContrast.php deleted file mode 100644 index 365eb533a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrContrast extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalContrast'; - - protected $Name = 'GradientBasedCorrContrast'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrContrast2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrContrast2012.php deleted file mode 100644 index d2f9b4d30..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrContrast2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrContrast2012 extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalContrast2012'; - - protected $Name = 'GradientBasedCorrContrast2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Contrast 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrDefringe.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrDefringe.php deleted file mode 100644 index 9ff17da14..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrDefringe.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrDefringe extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalDefringe'; - - protected $Name = 'GradientBasedCorrDefringe'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Defringe'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrExposure.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrExposure.php deleted file mode 100644 index 4c5521ed1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrExposure extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalExposure'; - - protected $Name = 'GradientBasedCorrExposure'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrExposure2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrExposure2012.php deleted file mode 100644 index fb23f80f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrExposure2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrExposure2012 extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalExposure2012'; - - protected $Name = 'GradientBasedCorrExposure2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Exposure 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrHighlights2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrHighlights2012.php deleted file mode 100644 index 3c4baf78d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrHighlights2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrHighlights2012 extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalHighlights2012'; - - protected $Name = 'GradientBasedCorrHighlights2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Highlights 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrHue.php deleted file mode 100644 index 094171938..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrHue extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalToningHue'; - - protected $Name = 'GradientBasedCorrHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrLuminanceNoise.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrLuminanceNoise.php deleted file mode 100644 index 7bcf0b671..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrLuminanceNoise.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrLuminanceNoise extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalLuminanceNoise'; - - protected $Name = 'GradientBasedCorrLuminanceNoise'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Luminance Noise'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskAlpha.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskAlpha.php deleted file mode 100644 index c55954aae..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskAlpha.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskAlpha extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksAlpha'; - - protected $Name = 'GradientBasedCorrMaskAlpha'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Alpha'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskAngle.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskAngle.php deleted file mode 100644 index bfcc42967..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskAngle extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksAngle'; - - protected $Name = 'GradientBasedCorrMaskAngle'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskBottom.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskBottom.php deleted file mode 100644 index fd22e3931..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskBottom extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksBottom'; - - protected $Name = 'GradientBasedCorrMaskBottom'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskCenterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskCenterValue.php deleted file mode 100644 index 86e93f648..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskCenterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskCenterValue extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksCenterValue'; - - protected $Name = 'GradientBasedCorrMaskCenterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Center Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskCenterWeight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskCenterWeight.php deleted file mode 100644 index d1c397746..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskCenterWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskCenterWeight extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksCenterWeight'; - - protected $Name = 'GradientBasedCorrMaskCenterWeight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Center Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskDabs.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskDabs.php deleted file mode 100644 index a16ba3a78..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskDabs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskDabs extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksDabs'; - - protected $Name = 'GradientBasedCorrMaskDabs'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Dabs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFeather.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFeather.php deleted file mode 100644 index 1a43b5783..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFeather.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskFeather extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksFeather'; - - protected $Name = 'GradientBasedCorrMaskFeather'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Feather'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFlipped.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFlipped.php deleted file mode 100644 index ebeaab77b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFlipped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskFlipped extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksFlipped'; - - protected $Name = 'GradientBasedCorrMaskFlipped'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Flipped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFlow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFlow.php deleted file mode 100644 index 5a8c809d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFlow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskFlow extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksFlow'; - - protected $Name = 'GradientBasedCorrMaskFlow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Flow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFullX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFullX.php deleted file mode 100644 index 48ec826dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFullX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskFullX extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksFullX'; - - protected $Name = 'GradientBasedCorrMaskFullX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Full X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFullY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFullY.php deleted file mode 100644 index ec3ebfc85..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskFullY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskFullY extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksFullY'; - - protected $Name = 'GradientBasedCorrMaskFullY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Full Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskLeft.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskLeft.php deleted file mode 100644 index 3ada205e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskLeft extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksLeft'; - - protected $Name = 'GradientBasedCorrMaskLeft'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskMidpoint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskMidpoint.php deleted file mode 100644 index 3eac84740..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskMidpoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskMidpoint extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksMidpoint'; - - protected $Name = 'GradientBasedCorrMaskMidpoint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Midpoint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskPerimeterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskPerimeterValue.php deleted file mode 100644 index 4a7e9e615..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskPerimeterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskPerimeterValue extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksPerimeterValue'; - - protected $Name = 'GradientBasedCorrMaskPerimeterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Perimeter Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRadius.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRadius.php deleted file mode 100644 index 33e94d3ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRadius.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskRadius extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksRadius'; - - protected $Name = 'GradientBasedCorrMaskRadius'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Radius'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRight.php deleted file mode 100644 index 6480f32ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskRight extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksRight'; - - protected $Name = 'GradientBasedCorrMaskRight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRoundness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRoundness.php deleted file mode 100644 index fa05be214..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskRoundness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskRoundness extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksRoundness'; - - protected $Name = 'GradientBasedCorrMaskRoundness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Roundness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskSizeX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskSizeX.php deleted file mode 100644 index 726d049a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskSizeX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskSizeX extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksSizeX'; - - protected $Name = 'GradientBasedCorrMaskSizeX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Size X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskSizeY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskSizeY.php deleted file mode 100644 index 93cd72f00..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskSizeY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskSizeY extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksSizeY'; - - protected $Name = 'GradientBasedCorrMaskSizeY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Size Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskTop.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskTop.php deleted file mode 100644 index f535de9d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskTop extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksTop'; - - protected $Name = 'GradientBasedCorrMaskTop'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskValue.php deleted file mode 100644 index 7280b91c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskValue extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksMaskValue'; - - protected $Name = 'GradientBasedCorrMaskValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskVersion.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskVersion.php deleted file mode 100644 index f2b7cd870..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskVersion extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksVersion'; - - protected $Name = 'GradientBasedCorrMaskVersion'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskWhat.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskWhat.php deleted file mode 100644 index 0378cc952..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskWhat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskWhat extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksWhat'; - - protected $Name = 'GradientBasedCorrMaskWhat'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask What'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskX.php deleted file mode 100644 index 2ff0b7a3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskX extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksX'; - - protected $Name = 'GradientBasedCorrMaskX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskY.php deleted file mode 100644 index 156776a13..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskY extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksY'; - - protected $Name = 'GradientBasedCorrMaskY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskZeroX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskZeroX.php deleted file mode 100644 index feb8bae8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskZeroX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskZeroX extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksZeroX'; - - protected $Name = 'GradientBasedCorrMaskZeroX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Zero X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskZeroY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskZeroY.php deleted file mode 100644 index 8ab0782d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMaskZeroY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMaskZeroY extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasksZeroY'; - - protected $Name = 'GradientBasedCorrMaskZeroY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Mask Zero Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMasks.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMasks.php deleted file mode 100644 index 0899a80f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMasks.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMasks extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsCorrectionMasks'; - - protected $Name = 'GradientBasedCorrMasks'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Masks'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMoire.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMoire.php deleted file mode 100644 index a9664466e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrMoire.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrMoire extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalMoire'; - - protected $Name = 'GradientBasedCorrMoire'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Moire'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrSaturation.php deleted file mode 100644 index 6e2b62a6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrSaturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'GradientBasedCorrSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrShadows2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrShadows2012.php deleted file mode 100644 index 3afae4917..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrShadows2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrShadows2012 extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalShadows2012'; - - protected $Name = 'GradientBasedCorrShadows2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Shadows 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrSharpness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrSharpness.php deleted file mode 100644 index 15908f037..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrSharpness extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalSharpness'; - - protected $Name = 'GradientBasedCorrSharpness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrTemperature.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrTemperature.php deleted file mode 100644 index 8a450fe44..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrTemperature extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalTemperature'; - - protected $Name = 'GradientBasedCorrTemperature'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrTint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrTint.php deleted file mode 100644 index 66a7728c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrTint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrTint extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsLocalTint'; - - protected $Name = 'GradientBasedCorrTint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrWhat.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrWhat.php deleted file mode 100644 index 55c012dc5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrWhat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrWhat extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrectionsWhat'; - - protected $Name = 'GradientBasedCorrWhat'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corr What'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrections.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrections.php deleted file mode 100644 index b7797af8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GradientBasedCorrections.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GradientBasedCorrections extends AbstractTag -{ - - protected $Id = 'GradientBasedCorrections'; - - protected $Name = 'GradientBasedCorrections'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Gradient Based Corrections'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainAmount.php deleted file mode 100644 index 2c9f8aa8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrainAmount extends AbstractTag -{ - - protected $Id = 'GrainAmount'; - - protected $Name = 'GrainAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Grain Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainFrequency.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainFrequency.php deleted file mode 100644 index d84ca447c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainFrequency.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrainFrequency extends AbstractTag -{ - - protected $Id = 'GrainFrequency'; - - protected $Name = 'GrainFrequency'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Grain Frequency'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainSize.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainSize.php deleted file mode 100644 index 0257a13d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrainSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrainSize extends AbstractTag -{ - - protected $Id = 'GrainSize'; - - protected $Name = 'GrainSize'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Grain Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerAqua.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerAqua.php deleted file mode 100644 index 8678c71c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerAqua.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerAqua extends AbstractTag -{ - - protected $Id = 'GrayMixerAqua'; - - protected $Name = 'GrayMixerAqua'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Aqua'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerBlue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerBlue.php deleted file mode 100644 index e90ab3c5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerBlue extends AbstractTag -{ - - protected $Id = 'GrayMixerBlue'; - - protected $Name = 'GrayMixerBlue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerGreen.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerGreen.php deleted file mode 100644 index 54ed4c00f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerGreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerGreen extends AbstractTag -{ - - protected $Id = 'GrayMixerGreen'; - - protected $Name = 'GrayMixerGreen'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Green'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerMagenta.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerMagenta.php deleted file mode 100644 index e530ae657..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerMagenta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerMagenta extends AbstractTag -{ - - protected $Id = 'GrayMixerMagenta'; - - protected $Name = 'GrayMixerMagenta'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Magenta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerOrange.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerOrange.php deleted file mode 100644 index d16f7761a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerOrange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerOrange extends AbstractTag -{ - - protected $Id = 'GrayMixerOrange'; - - protected $Name = 'GrayMixerOrange'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Orange'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerPurple.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerPurple.php deleted file mode 100644 index ac0fc91e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerPurple.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerPurple extends AbstractTag -{ - - protected $Id = 'GrayMixerPurple'; - - protected $Name = 'GrayMixerPurple'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Purple'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerRed.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerRed.php deleted file mode 100644 index a62eb9f05..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerRed extends AbstractTag -{ - - protected $Id = 'GrayMixerRed'; - - protected $Name = 'GrayMixerRed'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerYellow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerYellow.php deleted file mode 100644 index 91d92d897..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GrayMixerYellow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GrayMixerYellow extends AbstractTag -{ - - protected $Id = 'GrayMixerYellow'; - - protected $Name = 'GrayMixerYellow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gray Mixer Yellow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GreenHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GreenHue.php deleted file mode 100644 index c3863bee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GreenHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenHue extends AbstractTag -{ - - protected $Id = 'GreenHue'; - - protected $Name = 'GreenHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Green Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/GreenSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/GreenSaturation.php deleted file mode 100644 index dcc0cb44e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/GreenSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GreenSaturation extends AbstractTag -{ - - protected $Id = 'GreenSaturation'; - - protected $Name = 'GreenSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Green Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HasCrop.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HasCrop.php deleted file mode 100644 index fd93fca1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HasCrop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasCrop extends AbstractTag -{ - - protected $Id = 'HasCrop'; - - protected $Name = 'HasCrop'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Has Crop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HasSettings.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HasSettings.php deleted file mode 100644 index 7820d4fc7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HasSettings.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasSettings extends AbstractTag -{ - - protected $Id = 'HasSettings'; - - protected $Name = 'HasSettings'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Has Settings'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HighlightRecovery.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HighlightRecovery.php deleted file mode 100644 index a49a7be49..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HighlightRecovery.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighlightRecovery extends AbstractTag -{ - - protected $Id = 'HighlightRecovery'; - - protected $Name = 'HighlightRecovery'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Highlight Recovery'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Highlights2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Highlights2012.php deleted file mode 100644 index b4a655378..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Highlights2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Highlights2012 extends AbstractTag -{ - - protected $Id = 'Highlights2012'; - - protected $Name = 'Highlights2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Highlights 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentAqua.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentAqua.php deleted file mode 100644 index 96fd26f68..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentAqua.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentAqua extends AbstractTag -{ - - protected $Id = 'HueAdjustmentAqua'; - - protected $Name = 'HueAdjustmentAqua'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Aqua'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentBlue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentBlue.php deleted file mode 100644 index 440334839..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentBlue extends AbstractTag -{ - - protected $Id = 'HueAdjustmentBlue'; - - protected $Name = 'HueAdjustmentBlue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentGreen.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentGreen.php deleted file mode 100644 index 390379e09..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentGreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentGreen extends AbstractTag -{ - - protected $Id = 'HueAdjustmentGreen'; - - protected $Name = 'HueAdjustmentGreen'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Green'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentMagenta.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentMagenta.php deleted file mode 100644 index 8b9688502..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentMagenta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentMagenta extends AbstractTag -{ - - protected $Id = 'HueAdjustmentMagenta'; - - protected $Name = 'HueAdjustmentMagenta'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Magenta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentOrange.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentOrange.php deleted file mode 100644 index 93aa9ebb8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentOrange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentOrange extends AbstractTag -{ - - protected $Id = 'HueAdjustmentOrange'; - - protected $Name = 'HueAdjustmentOrange'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Orange'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentPurple.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentPurple.php deleted file mode 100644 index f18d21b06..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentPurple.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentPurple extends AbstractTag -{ - - protected $Id = 'HueAdjustmentPurple'; - - protected $Name = 'HueAdjustmentPurple'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Purple'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentRed.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentRed.php deleted file mode 100644 index 57bcf168e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentRed extends AbstractTag -{ - - protected $Id = 'HueAdjustmentRed'; - - protected $Name = 'HueAdjustmentRed'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentYellow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentYellow.php deleted file mode 100644 index 4df4f77d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/HueAdjustmentYellow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HueAdjustmentYellow extends AbstractTag -{ - - protected $Id = 'HueAdjustmentYellow'; - - protected $Name = 'HueAdjustmentYellow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Hue Adjustment Yellow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/IncrementalTemperature.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/IncrementalTemperature.php deleted file mode 100644 index 67191e8f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/IncrementalTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncrementalTemperature extends AbstractTag -{ - - protected $Id = 'IncrementalTemperature'; - - protected $Name = 'IncrementalTemperature'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Incremental Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/IncrementalTint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/IncrementalTint.php deleted file mode 100644 index 1a05fbf5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/IncrementalTint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IncrementalTint extends AbstractTag -{ - - protected $Id = 'IncrementalTint'; - - protected $Name = 'IncrementalTint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Incremental Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensManualDistortionAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensManualDistortionAmount.php deleted file mode 100644 index 98af0b162..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensManualDistortionAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensManualDistortionAmount extends AbstractTag -{ - - protected $Id = 'LensManualDistortionAmount'; - - protected $Name = 'LensManualDistortionAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Lens Manual Distortion Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileChromaticAberrationScale.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileChromaticAberrationScale.php deleted file mode 100644 index 1f9474c10..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileChromaticAberrationScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileChromaticAberrationScale extends AbstractTag -{ - - protected $Id = 'LensProfileChromaticAberrationScale'; - - protected $Name = 'LensProfileChromaticAberrationScale'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Chromatic Aberration Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileDigest.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileDigest.php deleted file mode 100644 index 105048263..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileDigest extends AbstractTag -{ - - protected $Id = 'LensProfileDigest'; - - protected $Name = 'LensProfileDigest'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileDistortionScale.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileDistortionScale.php deleted file mode 100644 index bed377686..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileDistortionScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileDistortionScale extends AbstractTag -{ - - protected $Id = 'LensProfileDistortionScale'; - - protected $Name = 'LensProfileDistortionScale'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Distortion Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileEnable.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileEnable.php deleted file mode 100644 index eb67b0b6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileEnable.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileEnable extends AbstractTag -{ - - protected $Id = 'LensProfileEnable'; - - protected $Name = 'LensProfileEnable'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Enable'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileFilename.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileFilename.php deleted file mode 100644 index c05ca56e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileFilename.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileFilename extends AbstractTag -{ - - protected $Id = 'LensProfileFilename'; - - protected $Name = 'LensProfileFilename'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Filename'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileName.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileName.php deleted file mode 100644 index 1515b29e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileName extends AbstractTag -{ - - protected $Id = 'LensProfileName'; - - protected $Name = 'LensProfileName'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileSetup.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileSetup.php deleted file mode 100644 index 7c2ce69b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileSetup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileSetup extends AbstractTag -{ - - protected $Id = 'LensProfileSetup'; - - protected $Name = 'LensProfileSetup'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Setup'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileVignettingScale.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileVignettingScale.php deleted file mode 100644 index 6e934695e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LensProfileVignettingScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensProfileVignettingScale extends AbstractTag -{ - - protected $Id = 'LensProfileVignettingScale'; - - protected $Name = 'LensProfileVignettingScale'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Lens Profile Vignetting Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentAqua.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentAqua.php deleted file mode 100644 index 6ac94d559..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentAqua.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentAqua extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentAqua'; - - protected $Name = 'LuminanceAdjustmentAqua'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Aqua'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentBlue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentBlue.php deleted file mode 100644 index 5b577f98e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentBlue extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentBlue'; - - protected $Name = 'LuminanceAdjustmentBlue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentGreen.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentGreen.php deleted file mode 100644 index db44c1826..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentGreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentGreen extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentGreen'; - - protected $Name = 'LuminanceAdjustmentGreen'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Green'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentMagenta.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentMagenta.php deleted file mode 100644 index 4b892c11e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentMagenta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentMagenta extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentMagenta'; - - protected $Name = 'LuminanceAdjustmentMagenta'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Magenta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentOrange.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentOrange.php deleted file mode 100644 index 9cb0a0c11..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentOrange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentOrange extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentOrange'; - - protected $Name = 'LuminanceAdjustmentOrange'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Orange'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentPurple.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentPurple.php deleted file mode 100644 index 916cd3f28..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentPurple.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentPurple extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentPurple'; - - protected $Name = 'LuminanceAdjustmentPurple'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Purple'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentRed.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentRed.php deleted file mode 100644 index fb5bcdd0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentRed extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentRed'; - - protected $Name = 'LuminanceAdjustmentRed'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentYellow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentYellow.php deleted file mode 100644 index 7a32f21d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceAdjustmentYellow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceAdjustmentYellow extends AbstractTag -{ - - protected $Id = 'LuminanceAdjustmentYellow'; - - protected $Name = 'LuminanceAdjustmentYellow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Adjustment Yellow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceNoiseReductionContrast.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceNoiseReductionContrast.php deleted file mode 100644 index 5a86676f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceNoiseReductionContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceNoiseReductionContrast extends AbstractTag -{ - - protected $Id = 'LuminanceNoiseReductionContrast'; - - protected $Name = 'LuminanceNoiseReductionContrast'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Noise Reduction Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceNoiseReductionDetail.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceNoiseReductionDetail.php deleted file mode 100644 index c62e7698c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceNoiseReductionDetail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceNoiseReductionDetail extends AbstractTag -{ - - protected $Id = 'LuminanceNoiseReductionDetail'; - - protected $Name = 'LuminanceNoiseReductionDetail'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Noise Reduction Detail'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceSmoothing.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceSmoothing.php deleted file mode 100644 index 214cabb65..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/LuminanceSmoothing.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LuminanceSmoothing extends AbstractTag -{ - - protected $Id = 'LuminanceSmoothing'; - - protected $Name = 'LuminanceSmoothing'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Luminance Smoothing'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/MoireFilter.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/MoireFilter.php deleted file mode 100644 index c03e2d46a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/MoireFilter.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MoireFilter extends AbstractTag -{ - - protected $Id = 'MoireFilter'; - - protected $Name = 'MoireFilter'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Moire Filter'; - - protected $Values = array( - 'Off' => array( - 'Id' => 'Off', - 'Label' => 'Off', - ), - 'On' => array( - 'Id' => 'On', - 'Label' => 'On', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintBasedCorrectionMasks.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintBasedCorrectionMasks.php deleted file mode 100644 index 0f1847d69..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintBasedCorrectionMasks.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintBasedCorrectionMasks extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasks'; - - protected $Name = 'PaintBasedCorrectionMasks'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Paint Based Correction Masks'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintBasedCorrections.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintBasedCorrections.php deleted file mode 100644 index d8bbdc52b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintBasedCorrections.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintBasedCorrections extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrections'; - - protected $Name = 'PaintBasedCorrections'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Paint Based Corrections'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionActive.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionActive.php deleted file mode 100644 index 19af674b4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionActive.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionActive extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionActive'; - - protected $Name = 'PaintCorrectionActive'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Active'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionAmount.php deleted file mode 100644 index 882ac6f23..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionAmount extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionAmount'; - - protected $Name = 'PaintCorrectionAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionBrightness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionBrightness.php deleted file mode 100644 index 1145be95c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionBrightness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionBrightness extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalBrightness'; - - protected $Name = 'PaintCorrectionBrightness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Brightness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionClarity.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionClarity.php deleted file mode 100644 index 2c6a0f0c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionClarity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionClarity extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalClarity'; - - protected $Name = 'PaintCorrectionClarity'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Clarity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionClarity2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionClarity2012.php deleted file mode 100644 index 12db46343..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionClarity2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionClarity2012 extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalClarity2012'; - - protected $Name = 'PaintCorrectionClarity2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Clarity 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionContrast.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionContrast.php deleted file mode 100644 index d5cee62d2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionContrast extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalContrast'; - - protected $Name = 'PaintCorrectionContrast'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionContrast2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionContrast2012.php deleted file mode 100644 index 4d76476eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionContrast2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionContrast2012 extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalContrast2012'; - - protected $Name = 'PaintCorrectionContrast2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Contrast 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionDefringe.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionDefringe.php deleted file mode 100644 index 87df7e230..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionDefringe.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionDefringe extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalDefringe'; - - protected $Name = 'PaintCorrectionDefringe'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Defringe'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionExposure.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionExposure.php deleted file mode 100644 index 67eae470d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionExposure.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionExposure extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalExposure'; - - protected $Name = 'PaintCorrectionExposure'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Exposure'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionExposure2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionExposure2012.php deleted file mode 100644 index 73d29c3e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionExposure2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionExposure2012 extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalExposure2012'; - - protected $Name = 'PaintCorrectionExposure2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Exposure 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionHighlights2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionHighlights2012.php deleted file mode 100644 index 14e41bbb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionHighlights2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionHighlights2012 extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalHighlights2012'; - - protected $Name = 'PaintCorrectionHighlights2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Highlights 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionHue.php deleted file mode 100644 index c02bad2b1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionHue extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalToningHue'; - - protected $Name = 'PaintCorrectionHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionLuminanceNoise.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionLuminanceNoise.php deleted file mode 100644 index b8257aea2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionLuminanceNoise.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionLuminanceNoise extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalLuminanceNoise'; - - protected $Name = 'PaintCorrectionLuminanceNoise'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Luminance Noise'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskAlpha.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskAlpha.php deleted file mode 100644 index 93f791e2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskAlpha.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskAlpha extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksAlpha'; - - protected $Name = 'PaintCorrectionMaskAlpha'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Alpha'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskAngle.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskAngle.php deleted file mode 100644 index 01d1b862f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskAngle extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksAngle'; - - protected $Name = 'PaintCorrectionMaskAngle'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskBottom.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskBottom.php deleted file mode 100644 index 653626c72..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskBottom extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksBottom'; - - protected $Name = 'PaintCorrectionMaskBottom'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskCenterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskCenterValue.php deleted file mode 100644 index 9cc455a48..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskCenterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskCenterValue extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksCenterValue'; - - protected $Name = 'PaintCorrectionMaskCenterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Center Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskCenterWeight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskCenterWeight.php deleted file mode 100644 index 187750131..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskCenterWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskCenterWeight extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksCenterWeight'; - - protected $Name = 'PaintCorrectionMaskCenterWeight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Center Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskDabs.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskDabs.php deleted file mode 100644 index 7210103bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskDabs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskDabs extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksDabs'; - - protected $Name = 'PaintCorrectionMaskDabs'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Dabs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFeather.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFeather.php deleted file mode 100644 index f0345a182..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFeather.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskFeather extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksFeather'; - - protected $Name = 'PaintCorrectionMaskFeather'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Feather'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFlipped.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFlipped.php deleted file mode 100644 index 82b606e35..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFlipped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskFlipped extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksFlipped'; - - protected $Name = 'PaintCorrectionMaskFlipped'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Flipped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFlow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFlow.php deleted file mode 100644 index 1911fc2ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFlow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskFlow extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksFlow'; - - protected $Name = 'PaintCorrectionMaskFlow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Flow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFullX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFullX.php deleted file mode 100644 index 2a3bf1c4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFullX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskFullX extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksFullX'; - - protected $Name = 'PaintCorrectionMaskFullX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Full X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFullY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFullY.php deleted file mode 100644 index 5243cab89..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskFullY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskFullY extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksFullY'; - - protected $Name = 'PaintCorrectionMaskFullY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Full Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskLeft.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskLeft.php deleted file mode 100644 index 407359405..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskLeft extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksLeft'; - - protected $Name = 'PaintCorrectionMaskLeft'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskMidpoint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskMidpoint.php deleted file mode 100644 index 2b2424937..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskMidpoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskMidpoint extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksMidpoint'; - - protected $Name = 'PaintCorrectionMaskMidpoint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Midpoint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskPerimeterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskPerimeterValue.php deleted file mode 100644 index 5d791aa94..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskPerimeterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskPerimeterValue extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksPerimeterValue'; - - protected $Name = 'PaintCorrectionMaskPerimeterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Perimeter Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRadius.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRadius.php deleted file mode 100644 index 050e9e11a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRadius.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskRadius extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksRadius'; - - protected $Name = 'PaintCorrectionMaskRadius'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Radius'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRight.php deleted file mode 100644 index 7548f678e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskRight extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksRight'; - - protected $Name = 'PaintCorrectionMaskRight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRoundness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRoundness.php deleted file mode 100644 index beb92ddd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskRoundness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskRoundness extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksRoundness'; - - protected $Name = 'PaintCorrectionMaskRoundness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Roundness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskSizeX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskSizeX.php deleted file mode 100644 index 342e3727b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskSizeX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskSizeX extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksSizeX'; - - protected $Name = 'PaintCorrectionMaskSizeX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Size X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskSizeY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskSizeY.php deleted file mode 100644 index e43f0e4a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskSizeY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskSizeY extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksSizeY'; - - protected $Name = 'PaintCorrectionMaskSizeY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Size Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskTop.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskTop.php deleted file mode 100644 index af4fd331a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskTop extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksTop'; - - protected $Name = 'PaintCorrectionMaskTop'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskValue.php deleted file mode 100644 index 84201f49d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskValue extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksMaskValue'; - - protected $Name = 'PaintCorrectionMaskValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskVersion.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskVersion.php deleted file mode 100644 index 53be7bcb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskVersion extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksVersion'; - - protected $Name = 'PaintCorrectionMaskVersion'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskWhat.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskWhat.php deleted file mode 100644 index b39c80b35..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskWhat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskWhat extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksWhat'; - - protected $Name = 'PaintCorrectionMaskWhat'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask What'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskX.php deleted file mode 100644 index 7f4c396ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskX extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksX'; - - protected $Name = 'PaintCorrectionMaskX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskY.php deleted file mode 100644 index e2ad43e31..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskY extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksY'; - - protected $Name = 'PaintCorrectionMaskY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskZeroX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskZeroX.php deleted file mode 100644 index 0bf8f6620..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskZeroX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskZeroX extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksZeroX'; - - protected $Name = 'PaintCorrectionMaskZeroX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Zero X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskZeroY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskZeroY.php deleted file mode 100644 index 13cf5e84a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMaskZeroY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMaskZeroY extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsCorrectionMasksZeroY'; - - protected $Name = 'PaintCorrectionMaskZeroY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Mask Zero Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMoire.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMoire.php deleted file mode 100644 index 012d5e15e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionMoire.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionMoire extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalMoire'; - - protected $Name = 'PaintCorrectionMoire'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Moire'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionSaturation.php deleted file mode 100644 index b7b15f055..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionSaturation extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'PaintCorrectionSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionShadows2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionShadows2012.php deleted file mode 100644 index 3dec10274..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionShadows2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionShadows2012 extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalShadows2012'; - - protected $Name = 'PaintCorrectionShadows2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Shadows 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionSharpness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionSharpness.php deleted file mode 100644 index 7582f39c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionSharpness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionSharpness extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalSharpness'; - - protected $Name = 'PaintCorrectionSharpness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Sharpness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionTemperature.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionTemperature.php deleted file mode 100644 index 749b9d2d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionTemperature.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionTemperature extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalTemperature'; - - protected $Name = 'PaintCorrectionTemperature'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Temperature'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionTint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionTint.php deleted file mode 100644 index 0b1dd4d5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionTint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionTint extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsLocalTint'; - - protected $Name = 'PaintCorrectionTint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Paint Correction Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionWhat.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionWhat.php deleted file mode 100644 index 79ff145bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PaintCorrectionWhat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PaintCorrectionWhat extends AbstractTag -{ - - protected $Id = 'PaintBasedCorrectionsWhat'; - - protected $Name = 'PaintCorrectionWhat'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Paint Correction What'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricDarks.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricDarks.php deleted file mode 100644 index 5f44d45e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricDarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParametricDarks extends AbstractTag -{ - - protected $Id = 'ParametricDarks'; - - protected $Name = 'ParametricDarks'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Parametric Darks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricHighlightSplit.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricHighlightSplit.php deleted file mode 100644 index 9b67f22f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricHighlightSplit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParametricHighlightSplit extends AbstractTag -{ - - protected $Id = 'ParametricHighlightSplit'; - - protected $Name = 'ParametricHighlightSplit'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Parametric Highlight Split'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricHighlights.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricHighlights.php deleted file mode 100644 index f2b36c01b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricHighlights.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParametricHighlights extends AbstractTag -{ - - protected $Id = 'ParametricHighlights'; - - protected $Name = 'ParametricHighlights'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Parametric Highlights'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricLights.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricLights.php deleted file mode 100644 index d03fe65a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricLights.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParametricLights extends AbstractTag -{ - - protected $Id = 'ParametricLights'; - - protected $Name = 'ParametricLights'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Parametric Lights'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricMidtoneSplit.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricMidtoneSplit.php deleted file mode 100644 index 6c5249186..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricMidtoneSplit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParametricMidtoneSplit extends AbstractTag -{ - - protected $Id = 'ParametricMidtoneSplit'; - - protected $Name = 'ParametricMidtoneSplit'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Parametric Midtone Split'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricShadowSplit.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricShadowSplit.php deleted file mode 100644 index 092f5dc5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricShadowSplit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParametricShadowSplit extends AbstractTag -{ - - protected $Id = 'ParametricShadowSplit'; - - protected $Name = 'ParametricShadowSplit'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Parametric Shadow Split'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricShadows.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricShadows.php deleted file mode 100644 index 99bb02381..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ParametricShadows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParametricShadows extends AbstractTag -{ - - protected $Id = 'ParametricShadows'; - - protected $Name = 'ParametricShadows'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Parametric Shadows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveAspect.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveAspect.php deleted file mode 100644 index 3017bc59e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveAspect.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerspectiveAspect extends AbstractTag -{ - - protected $Id = 'PerspectiveAspect'; - - protected $Name = 'PerspectiveAspect'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Perspective Aspect'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveHorizontal.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveHorizontal.php deleted file mode 100644 index e0b3abf1c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveHorizontal.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerspectiveHorizontal extends AbstractTag -{ - - protected $Id = 'PerspectiveHorizontal'; - - protected $Name = 'PerspectiveHorizontal'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Perspective Horizontal'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveRotate.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveRotate.php deleted file mode 100644 index 17ea49ba8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveRotate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerspectiveRotate extends AbstractTag -{ - - protected $Id = 'PerspectiveRotate'; - - protected $Name = 'PerspectiveRotate'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Perspective Rotate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveScale.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveScale.php deleted file mode 100644 index 30cf5a79b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerspectiveScale extends AbstractTag -{ - - protected $Id = 'PerspectiveScale'; - - protected $Name = 'PerspectiveScale'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Perspective Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveUpright.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveUpright.php deleted file mode 100644 index d429d514a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveUpright.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerspectiveUpright extends AbstractTag -{ - - protected $Id = 'PerspectiveUpright'; - - protected $Name = 'PerspectiveUpright'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Perspective Upright'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveVertical.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveVertical.php deleted file mode 100644 index c05e6890b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PerspectiveVertical.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PerspectiveVertical extends AbstractTag -{ - - protected $Id = 'PerspectiveVertical'; - - protected $Name = 'PerspectiveVertical'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Perspective Vertical'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteAmount.php deleted file mode 100644 index 6bc5022ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostCropVignetteAmount extends AbstractTag -{ - - protected $Id = 'PostCropVignetteAmount'; - - protected $Name = 'PostCropVignetteAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Post Crop Vignette Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteFeather.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteFeather.php deleted file mode 100644 index 886eef8a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteFeather.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostCropVignetteFeather extends AbstractTag -{ - - protected $Id = 'PostCropVignetteFeather'; - - protected $Name = 'PostCropVignetteFeather'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Post Crop Vignette Feather'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteHighlightContrast.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteHighlightContrast.php deleted file mode 100644 index 8a602a97d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteHighlightContrast.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostCropVignetteHighlightContrast extends AbstractTag -{ - - protected $Id = 'PostCropVignetteHighlightContrast'; - - protected $Name = 'PostCropVignetteHighlightContrast'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Post Crop Vignette Highlight Contrast'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteMidpoint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteMidpoint.php deleted file mode 100644 index 969ec247e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteMidpoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostCropVignetteMidpoint extends AbstractTag -{ - - protected $Id = 'PostCropVignetteMidpoint'; - - protected $Name = 'PostCropVignetteMidpoint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Post Crop Vignette Midpoint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteRoundness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteRoundness.php deleted file mode 100644 index 48f360035..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteRoundness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostCropVignetteRoundness extends AbstractTag -{ - - protected $Id = 'PostCropVignetteRoundness'; - - protected $Name = 'PostCropVignetteRoundness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Post Crop Vignette Roundness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteStyle.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteStyle.php deleted file mode 100644 index 3443eaa80..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/PostCropVignetteStyle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PostCropVignetteStyle extends AbstractTag -{ - - protected $Id = 'PostCropVignetteStyle'; - - protected $Name = 'PostCropVignetteStyle'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Post Crop Vignette Style'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ProcessVersion.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ProcessVersion.php deleted file mode 100644 index 8600f28d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ProcessVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProcessVersion extends AbstractTag -{ - - protected $Id = 'ProcessVersion'; - - protected $Name = 'ProcessVersion'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Process Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RawFileName.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RawFileName.php deleted file mode 100644 index 05544dd60..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RawFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RawFileName extends AbstractTag -{ - - protected $Id = 'RawFileName'; - - protected $Name = 'RawFileName'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Raw File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RedEyeInfo.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RedEyeInfo.php deleted file mode 100644 index 4956d4a8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RedEyeInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedEyeInfo extends AbstractTag -{ - - protected $Id = 'RedEyeInfo'; - - protected $Name = 'RedEyeInfo'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Red Eye Info'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RedHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RedHue.php deleted file mode 100644 index 2fda523bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RedHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedHue extends AbstractTag -{ - - protected $Id = 'RedHue'; - - protected $Name = 'RedHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Red Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RedSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RedSaturation.php deleted file mode 100644 index 18c911b3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RedSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RedSaturation extends AbstractTag -{ - - protected $Id = 'RedSaturation'; - - protected $Name = 'RedSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Red Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaFeather.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaFeather.php deleted file mode 100644 index 9cacb6c0d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaFeather.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaFeather extends AbstractTag -{ - - protected $Id = 'RetouchAreasFeather'; - - protected $Name = 'RetouchAreaFeather'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Feather'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskAlpha.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskAlpha.php deleted file mode 100644 index 144625c18..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskAlpha.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskAlpha extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksAlpha'; - - protected $Name = 'RetouchAreaMaskAlpha'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Alpha'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskAngle.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskAngle.php deleted file mode 100644 index 6c3d33693..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskAngle extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksAngle'; - - protected $Name = 'RetouchAreaMaskAngle'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskBottom.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskBottom.php deleted file mode 100644 index f7b66a466..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskBottom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskBottom extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksBottom'; - - protected $Name = 'RetouchAreaMaskBottom'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Bottom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskCenterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskCenterValue.php deleted file mode 100644 index 9ca045b42..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskCenterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskCenterValue extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksCenterValue'; - - protected $Name = 'RetouchAreaMaskCenterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Center Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskCenterWeight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskCenterWeight.php deleted file mode 100644 index e5807b75e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskCenterWeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskCenterWeight extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksCenterWeight'; - - protected $Name = 'RetouchAreaMaskCenterWeight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Center Weight'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskDabs.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskDabs.php deleted file mode 100644 index 701587883..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskDabs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskDabs extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksDabs'; - - protected $Name = 'RetouchAreaMaskDabs'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Dabs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFeather.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFeather.php deleted file mode 100644 index cf67a148c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFeather.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskFeather extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksFeather'; - - protected $Name = 'RetouchAreaMaskFeather'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Feather'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFlipped.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFlipped.php deleted file mode 100644 index 02b0b8175..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFlipped.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskFlipped extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksFlipped'; - - protected $Name = 'RetouchAreaMaskFlipped'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Flipped'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFlow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFlow.php deleted file mode 100644 index 66085fd81..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFlow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskFlow extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksFlow'; - - protected $Name = 'RetouchAreaMaskFlow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Flow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFullX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFullX.php deleted file mode 100644 index 4fafb48c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFullX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskFullX extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksFullX'; - - protected $Name = 'RetouchAreaMaskFullX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Full X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFullY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFullY.php deleted file mode 100644 index 063b8828d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskFullY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskFullY extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksFullY'; - - protected $Name = 'RetouchAreaMaskFullY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Full Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskLeft.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskLeft.php deleted file mode 100644 index add8def9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskLeft extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksLeft'; - - protected $Name = 'RetouchAreaMaskLeft'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskMidpoint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskMidpoint.php deleted file mode 100644 index 84b29efde..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskMidpoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskMidpoint extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksMidpoint'; - - protected $Name = 'RetouchAreaMaskMidpoint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Midpoint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskPerimeterValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskPerimeterValue.php deleted file mode 100644 index 9be1acb4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskPerimeterValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskPerimeterValue extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksPerimeterValue'; - - protected $Name = 'RetouchAreaMaskPerimeterValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Perimeter Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRadius.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRadius.php deleted file mode 100644 index 73f41027f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRadius.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskRadius extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksRadius'; - - protected $Name = 'RetouchAreaMaskRadius'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Radius'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRight.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRight.php deleted file mode 100644 index 935686cb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskRight extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksRight'; - - protected $Name = 'RetouchAreaMaskRight'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Right'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRoundness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRoundness.php deleted file mode 100644 index ac557c304..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskRoundness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskRoundness extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksRoundness'; - - protected $Name = 'RetouchAreaMaskRoundness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Roundness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskSizeX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskSizeX.php deleted file mode 100644 index 8c8f27035..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskSizeX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskSizeX extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksSizeX'; - - protected $Name = 'RetouchAreaMaskSizeX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Size X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskSizeY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskSizeY.php deleted file mode 100644 index acb9406ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskSizeY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskSizeY extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksSizeY'; - - protected $Name = 'RetouchAreaMaskSizeY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Size Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskTop.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskTop.php deleted file mode 100644 index 1d7cc784c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskTop extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksTop'; - - protected $Name = 'RetouchAreaMaskTop'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskValue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskValue.php deleted file mode 100644 index bf729bb7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskValue extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksMaskValue'; - - protected $Name = 'RetouchAreaMaskValue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskVersion.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskVersion.php deleted file mode 100644 index ebb3f55e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskVersion extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksVersion'; - - protected $Name = 'RetouchAreaMaskVersion'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskWhat.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskWhat.php deleted file mode 100644 index 73da60104..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskWhat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskWhat extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksWhat'; - - protected $Name = 'RetouchAreaMaskWhat'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask What'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskX.php deleted file mode 100644 index 390991ade..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskX extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksX'; - - protected $Name = 'RetouchAreaMaskX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskY.php deleted file mode 100644 index 59f96194e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskY extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksY'; - - protected $Name = 'RetouchAreaMaskY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskZeroX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskZeroX.php deleted file mode 100644 index 0f7d84b5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskZeroX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskZeroX extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksZeroX'; - - protected $Name = 'RetouchAreaMaskZeroX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Zero X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskZeroY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskZeroY.php deleted file mode 100644 index 9019f64c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMaskZeroY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMaskZeroY extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasksZeroY'; - - protected $Name = 'RetouchAreaMaskZeroY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Mask Zero Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMasks.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMasks.php deleted file mode 100644 index 21ad02ae8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMasks.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMasks extends AbstractTag -{ - - protected $Id = 'RetouchAreasMasks'; - - protected $Name = 'RetouchAreaMasks'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Masks'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMethod.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMethod.php deleted file mode 100644 index 789dad2be..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaMethod extends AbstractTag -{ - - protected $Id = 'RetouchAreasMethod'; - - protected $Name = 'RetouchAreaMethod'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaOffsetY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaOffsetY.php deleted file mode 100644 index d86e0ddd1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaOffsetY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaOffsetY extends AbstractTag -{ - - protected $Id = 'RetouchAreasOffsetY'; - - protected $Name = 'RetouchAreaOffsetY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Offset Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaOpacity.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaOpacity.php deleted file mode 100644 index 04a92d867..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaOpacity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaOpacity extends AbstractTag -{ - - protected $Id = 'RetouchAreasOpacity'; - - protected $Name = 'RetouchAreaOpacity'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Opacity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSeed.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSeed.php deleted file mode 100644 index 8065dfdad..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaSeed extends AbstractTag -{ - - protected $Id = 'RetouchAreasSeed'; - - protected $Name = 'RetouchAreaSeed'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Seed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSourceState.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSourceState.php deleted file mode 100644 index 258360caa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSourceState.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaSourceState extends AbstractTag -{ - - protected $Id = 'RetouchAreasSourceState'; - - protected $Name = 'RetouchAreaSourceState'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Source State'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSourceX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSourceX.php deleted file mode 100644 index a31c2394b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSourceX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaSourceX extends AbstractTag -{ - - protected $Id = 'RetouchAreasSourceX'; - - protected $Name = 'RetouchAreaSourceX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Source X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSpotType.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSpotType.php deleted file mode 100644 index c42545149..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreaSpotType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreaSpotType extends AbstractTag -{ - - protected $Id = 'RetouchAreasSpotType'; - - protected $Name = 'RetouchAreaSpotType'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Retouch Area Spot Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreas.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreas.php deleted file mode 100644 index e0907cb11..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchAreas.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchAreas extends AbstractTag -{ - - protected $Id = 'RetouchAreas'; - - protected $Name = 'RetouchAreas'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Retouch Areas'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchInfo.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchInfo.php deleted file mode 100644 index b2b7bd398..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/RetouchInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RetouchInfo extends AbstractTag -{ - - protected $Id = 'RetouchInfo'; - - protected $Name = 'RetouchInfo'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Retouch Info'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Saturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Saturation.php deleted file mode 100644 index 7d252440d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Saturation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'Saturation'; - - protected $Name = 'Saturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentAqua.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentAqua.php deleted file mode 100644 index eee72fdda..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentAqua.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentAqua extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentAqua'; - - protected $Name = 'SaturationAdjustmentAqua'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Aqua'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentBlue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentBlue.php deleted file mode 100644 index 8a8758ab3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentBlue extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentBlue'; - - protected $Name = 'SaturationAdjustmentBlue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentGreen.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentGreen.php deleted file mode 100644 index 5802472e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentGreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentGreen extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentGreen'; - - protected $Name = 'SaturationAdjustmentGreen'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Green'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentMagenta.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentMagenta.php deleted file mode 100644 index ceeb7d461..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentMagenta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentMagenta extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentMagenta'; - - protected $Name = 'SaturationAdjustmentMagenta'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Magenta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentOrange.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentOrange.php deleted file mode 100644 index 9dd0fe731..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentOrange.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentOrange extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentOrange'; - - protected $Name = 'SaturationAdjustmentOrange'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Orange'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentPurple.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentPurple.php deleted file mode 100644 index 61edee673..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentPurple.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentPurple extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentPurple'; - - protected $Name = 'SaturationAdjustmentPurple'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Purple'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentRed.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentRed.php deleted file mode 100644 index 947e26a76..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentRed extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentRed'; - - protected $Name = 'SaturationAdjustmentRed'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentYellow.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentYellow.php deleted file mode 100644 index 73fdbfe6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SaturationAdjustmentYellow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaturationAdjustmentYellow extends AbstractTag -{ - - protected $Id = 'SaturationAdjustmentYellow'; - - protected $Name = 'SaturationAdjustmentYellow'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation Adjustment Yellow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ShadowTint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ShadowTint.php deleted file mode 100644 index 35e54f145..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ShadowTint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShadowTint extends AbstractTag -{ - - protected $Id = 'ShadowTint'; - - protected $Name = 'ShadowTint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Shadow Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Shadows.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Shadows.php deleted file mode 100644 index 263862f7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Shadows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Shadows extends AbstractTag -{ - - protected $Id = 'Shadows'; - - protected $Name = 'Shadows'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Shadows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Shadows2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Shadows2012.php deleted file mode 100644 index eb9460f7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Shadows2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Shadows2012 extends AbstractTag -{ - - protected $Id = 'Shadows2012'; - - protected $Name = 'Shadows2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Shadows 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenDetail.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenDetail.php deleted file mode 100644 index 0975c13a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenDetail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpenDetail extends AbstractTag -{ - - protected $Id = 'SharpenDetail'; - - protected $Name = 'SharpenDetail'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Sharpen Detail'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenEdgeMasking.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenEdgeMasking.php deleted file mode 100644 index 695bc11d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenEdgeMasking.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpenEdgeMasking extends AbstractTag -{ - - protected $Id = 'SharpenEdgeMasking'; - - protected $Name = 'SharpenEdgeMasking'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Sharpen Edge Masking'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenRadius.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenRadius.php deleted file mode 100644 index 9a2a4ad2c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SharpenRadius.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SharpenRadius extends AbstractTag -{ - - protected $Id = 'SharpenRadius'; - - protected $Name = 'SharpenRadius'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Sharpen Radius'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Sharpness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Sharpness.php deleted file mode 100644 index 010c38149..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Sharpness.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'Sharpness'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Smoothness.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Smoothness.php deleted file mode 100644 index 3c9f71eea..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Smoothness.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Smoothness extends AbstractTag -{ - - protected $Id = 'Smoothness'; - - protected $Name = 'Smoothness'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Smoothness'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningBalance.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningBalance.php deleted file mode 100644 index 3bc9b4c5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningBalance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SplitToningBalance extends AbstractTag -{ - - protected $Id = 'SplitToningBalance'; - - protected $Name = 'SplitToningBalance'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Split Toning Balance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningHighlightHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningHighlightHue.php deleted file mode 100644 index 1f7c73921..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningHighlightHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SplitToningHighlightHue extends AbstractTag -{ - - protected $Id = 'SplitToningHighlightHue'; - - protected $Name = 'SplitToningHighlightHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Split Toning Highlight Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningHighlightSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningHighlightSaturation.php deleted file mode 100644 index 40eafcc21..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningHighlightSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SplitToningHighlightSaturation extends AbstractTag -{ - - protected $Id = 'SplitToningHighlightSaturation'; - - protected $Name = 'SplitToningHighlightSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Split Toning Highlight Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningShadowHue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningShadowHue.php deleted file mode 100644 index 1477b18df..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningShadowHue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SplitToningShadowHue extends AbstractTag -{ - - protected $Id = 'SplitToningShadowHue'; - - protected $Name = 'SplitToningShadowHue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Split Toning Shadow Hue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningShadowSaturation.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningShadowSaturation.php deleted file mode 100644 index 2f8aa3ee6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/SplitToningShadowSaturation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SplitToningShadowSaturation extends AbstractTag -{ - - protected $Id = 'SplitToningShadowSaturation'; - - protected $Name = 'SplitToningShadowSaturation'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Split Toning Shadow Saturation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Tint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Tint.php deleted file mode 100644 index ad9b9a72e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Tint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tint extends AbstractTag -{ - - protected $Id = 'Tint'; - - protected $Name = 'Tint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurve.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurve.php deleted file mode 100644 index 4b127306b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurve.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurve extends AbstractTag -{ - - protected $Id = 'ToneCurve'; - - protected $Name = 'ToneCurve'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveBlue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveBlue.php deleted file mode 100644 index d5b6afac8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveBlue.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveBlue extends AbstractTag -{ - - protected $Id = 'ToneCurveBlue'; - - protected $Name = 'ToneCurveBlue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Blue'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveGreen.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveGreen.php deleted file mode 100644 index 4ecd94eb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveGreen.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveGreen extends AbstractTag -{ - - protected $Id = 'ToneCurveGreen'; - - protected $Name = 'ToneCurveGreen'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Green'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveName.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveName.php deleted file mode 100644 index 362541b4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveName.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveName extends AbstractTag -{ - - protected $Id = 'ToneCurveName'; - - protected $Name = 'ToneCurveName'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Name'; - - protected $Values = array( - 'Custom' => array( - 'Id' => 'Custom', - 'Label' => 'Custom', - ), - 'Linear' => array( - 'Id' => 'Linear', - 'Label' => 'Linear', - ), - 'Medium Contrast' => array( - 'Id' => 'Medium Contrast', - 'Label' => 'Medium Contrast', - ), - 'Strong Contrast' => array( - 'Id' => 'Strong Contrast', - 'Label' => 'Strong Contrast', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveName2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveName2012.php deleted file mode 100644 index b550f9118..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveName2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveName2012 extends AbstractTag -{ - - protected $Id = 'ToneCurveName2012'; - - protected $Name = 'ToneCurveName2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Name 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012.php deleted file mode 100644 index cb44b6a05..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurvePV2012 extends AbstractTag -{ - - protected $Id = 'ToneCurvePV2012'; - - protected $Name = 'ToneCurvePV2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve PV2012'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Blue.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Blue.php deleted file mode 100644 index 45453afff..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Blue.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurvePV2012Blue extends AbstractTag -{ - - protected $Id = 'ToneCurvePV2012Blue'; - - protected $Name = 'ToneCurvePV2012Blue'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve PV2012 Blue'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Green.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Green.php deleted file mode 100644 index 12cc3286f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Green.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurvePV2012Green extends AbstractTag -{ - - protected $Id = 'ToneCurvePV2012Green'; - - protected $Name = 'ToneCurvePV2012Green'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve PV2012 Green'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Red.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Red.php deleted file mode 100644 index 07a08f5ab..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurvePV2012Red.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurvePV2012Red extends AbstractTag -{ - - protected $Id = 'ToneCurvePV2012Red'; - - protected $Name = 'ToneCurvePV2012Red'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve PV2012 Red'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveRed.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveRed.php deleted file mode 100644 index 46d9c37ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/ToneCurveRed.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ToneCurveRed extends AbstractTag -{ - - protected $Id = 'ToneCurveRed'; - - protected $Name = 'ToneCurveRed'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tone Curve Red'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterMode.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterMode.php deleted file mode 100644 index b8c47f2ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightCenterMode extends AbstractTag -{ - - protected $Id = 'UprightCenterMode'; - - protected $Name = 'UprightCenterMode'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Upright Center Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterNormX.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterNormX.php deleted file mode 100644 index c34044c79..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterNormX.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightCenterNormX extends AbstractTag -{ - - protected $Id = 'UprightCenterNormX'; - - protected $Name = 'UprightCenterNormX'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Upright Center Norm X'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterNormY.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterNormY.php deleted file mode 100644 index f8f051e97..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightCenterNormY.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightCenterNormY extends AbstractTag -{ - - protected $Id = 'UprightCenterNormY'; - - protected $Name = 'UprightCenterNormY'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Upright Center Norm Y'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightDependentDigest.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightDependentDigest.php deleted file mode 100644 index 7e2e497bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightDependentDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightDependentDigest extends AbstractTag -{ - - protected $Id = 'UprightDependentDigest'; - - protected $Name = 'UprightDependentDigest'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Upright Dependent Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightFocalLength35mm.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightFocalLength35mm.php deleted file mode 100644 index 86e9fc5ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightFocalLength35mm.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightFocalLength35mm extends AbstractTag -{ - - protected $Id = 'UprightFocalLength35mm'; - - protected $Name = 'UprightFocalLength35mm'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Upright Focal Length 35mm'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightFocalMode.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightFocalMode.php deleted file mode 100644 index 6886e248b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightFocalMode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightFocalMode extends AbstractTag -{ - - protected $Id = 'UprightFocalMode'; - - protected $Name = 'UprightFocalMode'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Upright Focal Mode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightPreview.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightPreview.php deleted file mode 100644 index 7804fa835..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightPreview.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightPreview extends AbstractTag -{ - - protected $Id = 'UprightPreview'; - - protected $Name = 'UprightPreview'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Upright Preview'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform0.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform0.php deleted file mode 100644 index f22c18e0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightTransform0 extends AbstractTag -{ - - protected $Id = 'UprightTransform_0'; - - protected $Name = 'UprightTransform_0'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Upright Transform 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform1.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform1.php deleted file mode 100644 index 976cdb0bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightTransform1 extends AbstractTag -{ - - protected $Id = 'UprightTransform_1'; - - protected $Name = 'UprightTransform_1'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Upright Transform 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform2.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform2.php deleted file mode 100644 index 8645391a4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform2.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightTransform2 extends AbstractTag -{ - - protected $Id = 'UprightTransform_2'; - - protected $Name = 'UprightTransform_2'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Upright Transform 2'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform3.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform3.php deleted file mode 100644 index a5a201cff..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform3.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightTransform3 extends AbstractTag -{ - - protected $Id = 'UprightTransform_3'; - - protected $Name = 'UprightTransform_3'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Upright Transform 3'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform4.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform4.php deleted file mode 100644 index c21c17eb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransform4.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightTransform4 extends AbstractTag -{ - - protected $Id = 'UprightTransform_4'; - - protected $Name = 'UprightTransform_4'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Upright Transform 4'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransformCount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransformCount.php deleted file mode 100644 index 91ee0beb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightTransformCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightTransformCount extends AbstractTag -{ - - protected $Id = 'UprightTransformCount'; - - protected $Name = 'UprightTransformCount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Upright Transform Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightVersion.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightVersion.php deleted file mode 100644 index c45447a4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/UprightVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UprightVersion extends AbstractTag -{ - - protected $Id = 'UprightVersion'; - - protected $Name = 'UprightVersion'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Upright Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Version.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Version.php deleted file mode 100644 index bc1a5ab69..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Version.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Version extends AbstractTag -{ - - protected $Id = 'Version'; - - protected $Name = 'Version'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Vibrance.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Vibrance.php deleted file mode 100644 index b429a6fb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Vibrance.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Vibrance extends AbstractTag -{ - - protected $Id = 'Vibrance'; - - protected $Name = 'Vibrance'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Vibrance'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/VignetteAmount.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/VignetteAmount.php deleted file mode 100644 index 72bad3456..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/VignetteAmount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignetteAmount extends AbstractTag -{ - - protected $Id = 'VignetteAmount'; - - protected $Name = 'VignetteAmount'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Vignette Amount'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/VignetteMidpoint.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/VignetteMidpoint.php deleted file mode 100644 index 1f5234606..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/VignetteMidpoint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VignetteMidpoint extends AbstractTag -{ - - protected $Id = 'VignetteMidpoint'; - - protected $Name = 'VignetteMidpoint'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Vignette Midpoint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/WhiteBalance.php deleted file mode 100644 index ff591dbc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/WhiteBalance.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'WhiteBalance'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $flag_Avoid = true; - - protected $Values = array( - 'As Shot' => array( - 'Id' => 'As Shot', - 'Label' => 'As Shot', - ), - 'Auto' => array( - 'Id' => 'Auto', - 'Label' => 'Auto', - ), - 'Cloudy' => array( - 'Id' => 'Cloudy', - 'Label' => 'Cloudy', - ), - 'Custom' => array( - 'Id' => 'Custom', - 'Label' => 'Custom', - ), - 'Daylight' => array( - 'Id' => 'Daylight', - 'Label' => 'Daylight', - ), - 'Flash' => array( - 'Id' => 'Flash', - 'Label' => 'Flash', - ), - 'Fluorescent' => array( - 'Id' => 'Fluorescent', - 'Label' => 'Fluorescent', - ), - 'Shade' => array( - 'Id' => 'Shade', - 'Label' => 'Shade', - ), - 'Tungsten' => array( - 'Id' => 'Tungsten', - 'Label' => 'Tungsten', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPCrs/Whites2012.php b/lib/PHPExiftool/Driver/Tag/XMPCrs/Whites2012.php deleted file mode 100644 index 02622c587..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPCrs/Whites2012.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPCrs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Whites2012 extends AbstractTag -{ - - protected $Id = 'Whites2012'; - - protected $Name = 'Whites2012'; - - protected $FullName = 'XMP::crs'; - - protected $GroupName = 'XMP-crs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-crs'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Whites 2012'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/EquipmentInstitution.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/EquipmentInstitution.php deleted file mode 100644 index ecf5ee52b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/EquipmentInstitution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EquipmentInstitution extends AbstractTag -{ - - protected $Id = 'EquipmentInstitution'; - - protected $Name = 'EquipmentInstitution'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Equipment Institution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/EquipmentManufacturer.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/EquipmentManufacturer.php deleted file mode 100644 index 37962f54a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/EquipmentManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EquipmentManufacturer extends AbstractTag -{ - - protected $Id = 'EquipmentManufacturer'; - - protected $Name = 'EquipmentManufacturer'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Equipment Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientBirthDate.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientBirthDate.php deleted file mode 100644 index d29a8600e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientBirthDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientBirthDate extends AbstractTag -{ - - protected $Id = 'PatientDOB'; - - protected $Name = 'PatientBirthDate'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Patient Birth Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientID.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientID.php deleted file mode 100644 index 982468fe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientID extends AbstractTag -{ - - protected $Id = 'PatientID'; - - protected $Name = 'PatientID'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Patient ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientName.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientName.php deleted file mode 100644 index c6b6dd11c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientName extends AbstractTag -{ - - protected $Id = 'PatientName'; - - protected $Name = 'PatientName'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Patient Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientSex.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientSex.php deleted file mode 100644 index 4d116c067..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/PatientSex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PatientSex extends AbstractTag -{ - - protected $Id = 'PatientSex'; - - protected $Name = 'PatientSex'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Patient Sex'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesDateTime.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesDateTime.php deleted file mode 100644 index ad13365fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesDateTime extends AbstractTag -{ - - protected $Id = 'SeriesDateTime'; - - protected $Name = 'SeriesDateTime'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Series Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesDescription.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesDescription.php deleted file mode 100644 index 2d45f4068..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesDescription extends AbstractTag -{ - - protected $Id = 'SeriesDescription'; - - protected $Name = 'SeriesDescription'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Series Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesModality.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesModality.php deleted file mode 100644 index e9900de93..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesModality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesModality extends AbstractTag -{ - - protected $Id = 'SeriesModality'; - - protected $Name = 'SeriesModality'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Series Modality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesNumber.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesNumber.php deleted file mode 100644 index 7beea8517..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/SeriesNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SeriesNumber extends AbstractTag -{ - - protected $Id = 'SeriesNumber'; - - protected $Name = 'SeriesNumber'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Series Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyDateTime.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyDateTime.php deleted file mode 100644 index 4ccd1e761..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyDateTime extends AbstractTag -{ - - protected $Id = 'StudyDateTime'; - - protected $Name = 'StudyDateTime'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Study Date Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyDescription.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyDescription.php deleted file mode 100644 index d41d77125..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyDescription extends AbstractTag -{ - - protected $Id = 'StudyDescription'; - - protected $Name = 'StudyDescription'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Study Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyID.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyID.php deleted file mode 100644 index ddb8ed8fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyID extends AbstractTag -{ - - protected $Id = 'StudyID'; - - protected $Name = 'StudyID'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Study ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyPhysician.php b/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyPhysician.php deleted file mode 100644 index 486c79b49..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDICOM/StudyPhysician.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDICOM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StudyPhysician extends AbstractTag -{ - - protected $Id = 'StudyPhysician'; - - protected $Name = 'StudyPhysician'; - - protected $FullName = 'XMP::DICOM'; - - protected $GroupName = 'XMP-DICOM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-DICOM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Study Physician'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Contributor.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Contributor.php deleted file mode 100644 index 5ddb573db..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Contributor.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contributor extends AbstractTag -{ - - protected $Id = 'contributor'; - - protected $Name = 'Contributor'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Contributor'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Coverage.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Coverage.php deleted file mode 100644 index 58287f90f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Coverage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Coverage extends AbstractTag -{ - - protected $Id = 'coverage'; - - protected $Name = 'Coverage'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Coverage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Creator.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Creator.php deleted file mode 100644 index 9920e5219..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Creator.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 'creator'; - - protected $Name = 'Creator'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Date.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Date.php deleted file mode 100644 index e40b9e736..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Date.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'date'; - - protected $Name = 'Date'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Description.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Description.php deleted file mode 100644 index 90b7fa44f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'description'; - - protected $Name = 'Description'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Description'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Format.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Format.php deleted file mode 100644 index b19e79bb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Format.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Format extends AbstractTag -{ - - protected $Id = 'format'; - - protected $Name = 'Format'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Format'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Identifier.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Identifier.php deleted file mode 100644 index d90d0d3b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Identifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Identifier extends AbstractTag -{ - - protected $Id = 'identifier'; - - protected $Name = 'Identifier'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identifier'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Language.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Language.php deleted file mode 100644 index 88a92b727..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Language.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Language extends AbstractTag -{ - - protected $Id = 'language'; - - protected $Name = 'Language'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Language'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Publisher.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Publisher.php deleted file mode 100644 index 6245f7e78..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Publisher.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Publisher extends AbstractTag -{ - - protected $Id = 'publisher'; - - protected $Name = 'Publisher'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Publisher'; - - protected $local_g2 = 'Author'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Relation.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Relation.php deleted file mode 100644 index bc42d789b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Relation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Relation extends AbstractTag -{ - - protected $Id = 'relation'; - - protected $Name = 'Relation'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Relation'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Rights.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Rights.php deleted file mode 100644 index 53fc08e03..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Rights.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rights extends AbstractTag -{ - - protected $Id = 'rights'; - - protected $Name = 'Rights'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Rights'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Source.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Source.php deleted file mode 100644 index 40acdd414..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Source.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 'source'; - - protected $Name = 'Source'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Source'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Subject.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Subject.php deleted file mode 100644 index 0528893a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Subject.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subject'; - - protected $local_g2 = 'Image'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Title.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Title.php deleted file mode 100644 index ffc75fd70..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Title.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'title'; - - protected $Name = 'Title'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Title'; - - protected $local_g2 = 'Image'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDc/Type.php b/lib/PHPExiftool/Driver/Tag/XMPDc/Type.php deleted file mode 100644 index 310b3109a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDc/Type.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Type extends AbstractTag -{ - - protected $Id = 'type'; - - protected $Name = 'Type'; - - protected $FullName = 'XMP::dc'; - - protected $GroupName = 'XMP-dc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Type'; - - protected $local_g2 = 'Image'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/CRC32.php b/lib/PHPExiftool/Driver/Tag/XMPDex/CRC32.php deleted file mode 100644 index 20597b379..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/CRC32.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CRC32 extends AbstractTag -{ - - protected $Id = 'crc32'; - - protected $Name = 'CRC32'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'CRC32'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/FFID.php b/lib/PHPExiftool/Driver/Tag/XMPDex/FFID.php deleted file mode 100644 index f5d11ca04..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/FFID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FFID extends AbstractTag -{ - - protected $Id = 'ffid'; - - protected $Name = 'FFID'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'FFID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/LicenseType.php b/lib/PHPExiftool/Driver/Tag/XMPDex/LicenseType.php deleted file mode 100644 index e9f49e27e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/LicenseType.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseType extends AbstractTag -{ - - protected $Id = 'licensetype'; - - protected $Name = 'LicenseType'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'License Type'; - - protected $Values = array( - 'adware' => array( - 'Id' => 'adware', - 'Label' => 'Adware', - ), - 'commercial' => array( - 'Id' => 'commercial', - 'Label' => 'Commercial', - ), - 'demo' => array( - 'Id' => 'demo', - 'Label' => 'Demo', - ), - 'freeware' => array( - 'Id' => 'freeware', - 'Label' => 'Freeware', - ), - 'open source' => array( - 'Id' => 'open source', - 'Label' => 'Open Source', - ), - 'public domain' => array( - 'Id' => 'public domain', - 'Label' => 'Public Domain', - ), - 'shareware' => array( - 'Id' => 'shareware', - 'Label' => 'Shareware', - ), - 'unknown' => array( - 'Id' => 'unknown', - 'Label' => 'Unknown', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/OS.php b/lib/PHPExiftool/Driver/Tag/XMPDex/OS.php deleted file mode 100644 index f30a7b77a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/OS.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OS extends AbstractTag -{ - - protected $Id = 'os'; - - protected $Name = 'OS'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'OS'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/Rating.php b/lib/PHPExiftool/Driver/Tag/XMPDex/Rating.php deleted file mode 100644 index d43d2078b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/Rating.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 'rating'; - - protected $Name = 'Rating'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rating'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/Revision.php b/lib/PHPExiftool/Driver/Tag/XMPDex/Revision.php deleted file mode 100644 index 86bbeccc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/Revision.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Revision extends AbstractTag -{ - - protected $Id = 'revision'; - - protected $Name = 'Revision'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Revision'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/ShortDescription.php b/lib/PHPExiftool/Driver/Tag/XMPDex/ShortDescription.php deleted file mode 100644 index d5acce871..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/ShortDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShortDescription extends AbstractTag -{ - - protected $Id = 'shortdescription'; - - protected $Name = 'ShortDescription'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Short Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDex/Source.php b/lib/PHPExiftool/Driver/Tag/XMPDex/Source.php deleted file mode 100644 index 6b087ad4d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDex/Source.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDex; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 'source'; - - protected $Name = 'Source'; - - protected $FullName = 'XMP::dex'; - - protected $GroupName = 'XMP-dex'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dex'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Source'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/CaptionsAuthorNames.php b/lib/PHPExiftool/Driver/Tag/XMPDigiKam/CaptionsAuthorNames.php deleted file mode 100644 index ccef7581d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/CaptionsAuthorNames.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDigiKam; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionsAuthorNames extends AbstractTag -{ - - protected $Id = 'CaptionsAuthorNames'; - - protected $Name = 'CaptionsAuthorNames'; - - protected $FullName = 'XMP::digiKam'; - - protected $GroupName = 'XMP-digiKam'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-digiKam'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Captions Author Names'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/CaptionsDateTimeStamps.php b/lib/PHPExiftool/Driver/Tag/XMPDigiKam/CaptionsDateTimeStamps.php deleted file mode 100644 index b34a1f399..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/CaptionsDateTimeStamps.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDigiKam; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionsDateTimeStamps extends AbstractTag -{ - - protected $Id = 'CaptionsDateTimeStamps'; - - protected $Name = 'CaptionsDateTimeStamps'; - - protected $FullName = 'XMP::digiKam'; - - protected $GroupName = 'XMP-digiKam'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-digiKam'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Captions Date Time Stamps'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/ColorLabel.php b/lib/PHPExiftool/Driver/Tag/XMPDigiKam/ColorLabel.php deleted file mode 100644 index 93a882404..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/ColorLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDigiKam; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorLabel extends AbstractTag -{ - - protected $Id = 'ColorLabel'; - - protected $Name = 'ColorLabel'; - - protected $FullName = 'XMP::digiKam'; - - protected $GroupName = 'XMP-digiKam'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-digiKam'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Color Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/PickLabel.php b/lib/PHPExiftool/Driver/Tag/XMPDigiKam/PickLabel.php deleted file mode 100644 index a73fa82b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/PickLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDigiKam; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PickLabel extends AbstractTag -{ - - protected $Id = 'PickLabel'; - - protected $Name = 'PickLabel'; - - protected $FullName = 'XMP::digiKam'; - - protected $GroupName = 'XMP-digiKam'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-digiKam'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Pick Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/TagsList.php b/lib/PHPExiftool/Driver/Tag/XMPDigiKam/TagsList.php deleted file mode 100644 index f660b856b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDigiKam/TagsList.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDigiKam; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagsList extends AbstractTag -{ - - protected $Id = 'TagsList'; - - protected $Name = 'TagsList'; - - protected $FullName = 'XMP::digiKam'; - - protected $GroupName = 'XMP-digiKam'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-digiKam'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tags List'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCContinent.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCContinent.php deleted file mode 100644 index e777f316f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCContinent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCContinent extends AbstractTag -{ - - protected $Id = 'dctermsLocationContinent'; - - protected $Name = 'DCContinent'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Continent'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCoordinatePrecision.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCoordinatePrecision.php deleted file mode 100644 index 4ade57a31..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCoordinatePrecision.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCCoordinatePrecision extends AbstractTag -{ - - protected $Id = 'dctermsLocationCoordinatePrecision'; - - protected $Name = 'DCCoordinatePrecision'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Coordinate Precision'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCoordinateUncertaintyInMeters.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCoordinateUncertaintyInMeters.php deleted file mode 100644 index c423eefdc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCoordinateUncertaintyInMeters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCCoordinateUncertaintyInMeters extends AbstractTag -{ - - protected $Id = 'dctermsLocationCoordinateUncertaintyInMeters'; - - protected $Name = 'DCCoordinateUncertaintyInMeters'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Coordinate Uncertainty In Meters'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCountry.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCountry.php deleted file mode 100644 index 0fbe7a05d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCountry.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCCountry extends AbstractTag -{ - - protected $Id = 'dctermsLocationCountry'; - - protected $Name = 'DCCountry'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Country'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCountryCode.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCountryCode.php deleted file mode 100644 index 8e4976324..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCountryCode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCCountryCode extends AbstractTag -{ - - protected $Id = 'dctermsLocationCountryCode'; - - protected $Name = 'DCCountryCode'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Country Code'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCounty.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCounty.php deleted file mode 100644 index 20e9f39cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCCounty.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCCounty extends AbstractTag -{ - - protected $Id = 'dctermsLocationCounty'; - - protected $Name = 'DCCounty'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC County'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCDecimalLatitude.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCDecimalLatitude.php deleted file mode 100644 index c686a00d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCDecimalLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCDecimalLatitude extends AbstractTag -{ - - protected $Id = 'dctermsLocationDecimalLatitude'; - - protected $Name = 'DCDecimalLatitude'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Decimal Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCDecimalLongitude.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCDecimalLongitude.php deleted file mode 100644 index ccc00c25e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCDecimalLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCDecimalLongitude extends AbstractTag -{ - - protected $Id = 'dctermsLocationDecimalLongitude'; - - protected $Name = 'DCDecimalLongitude'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Decimal Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCEvent.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCEvent.php deleted file mode 100644 index 60eeb21b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCEvent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCEvent extends AbstractTag -{ - - protected $Id = 'Event'; - - protected $Name = 'DCEvent'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'DC Event'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintSRS.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintSRS.php deleted file mode 100644 index 1bf48409e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintSRS.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCFootprintSRS extends AbstractTag -{ - - protected $Id = 'dctermsLocationFootprintSRS'; - - protected $Name = 'DCFootprintSRS'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Footprint SRS'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintSpatialFit.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintSpatialFit.php deleted file mode 100644 index 7afd058bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintSpatialFit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCFootprintSpatialFit extends AbstractTag -{ - - protected $Id = 'dctermsLocationFootprintSpatialFit'; - - protected $Name = 'DCFootprintSpatialFit'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Footprint Spatial Fit'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintWKT.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintWKT.php deleted file mode 100644 index a0812b4b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCFootprintWKT.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCFootprintWKT extends AbstractTag -{ - - protected $Id = 'dctermsLocationFootprintWKT'; - - protected $Name = 'DCFootprintWKT'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Footprint WKT'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeodeticDatum.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeodeticDatum.php deleted file mode 100644 index 096936e3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeodeticDatum.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCGeodeticDatum extends AbstractTag -{ - - protected $Id = 'dctermsLocationGeodeticDatum'; - - protected $Name = 'DCGeodeticDatum'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Geodetic Datum'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceProtocol.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceProtocol.php deleted file mode 100644 index 3e2c136bc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceProtocol.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCGeoreferenceProtocol extends AbstractTag -{ - - protected $Id = 'dctermsLocationGeoreferenceProtocol'; - - protected $Name = 'DCGeoreferenceProtocol'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Georeference Protocol'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceRemarks.php deleted file mode 100644 index ea3b40302..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceRemarks.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCGeoreferenceRemarks extends AbstractTag -{ - - protected $Id = 'dctermsLocationGeoreferenceRemarks'; - - protected $Name = 'DCGeoreferenceRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Georeference Remarks'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceSources.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceSources.php deleted file mode 100644 index a233d2e69..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceSources.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCGeoreferenceSources extends AbstractTag -{ - - protected $Id = 'dctermsLocationGeoreferenceSources'; - - protected $Name = 'DCGeoreferenceSources'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Georeference Sources'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceVerificationStatus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceVerificationStatus.php deleted file mode 100644 index df7aca3c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferenceVerificationStatus.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCGeoreferenceVerificationStatus extends AbstractTag -{ - - protected $Id = 'dctermsLocationGeoreferenceVerificationStatus'; - - protected $Name = 'DCGeoreferenceVerificationStatus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Georeference Verification Status'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferencedBy.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferencedBy.php deleted file mode 100644 index 2b6aec500..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferencedBy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCGeoreferencedBy extends AbstractTag -{ - - protected $Id = 'dctermsLocationGeoreferencedBy'; - - protected $Name = 'DCGeoreferencedBy'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Georeferenced By'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferencedDate.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferencedDate.php deleted file mode 100644 index 53f168377..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCGeoreferencedDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCGeoreferencedDate extends AbstractTag -{ - - protected $Id = 'dctermsLocationGeoreferencedDate'; - - protected $Name = 'DCGeoreferencedDate'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Georeferenced Date'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCHigherGeography.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCHigherGeography.php deleted file mode 100644 index 910ff1d78..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCHigherGeography.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCHigherGeography extends AbstractTag -{ - - protected $Id = 'dctermsLocationHigherGeography'; - - protected $Name = 'DCHigherGeography'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Higher Geography'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCHigherGeographyID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCHigherGeographyID.php deleted file mode 100644 index b40b125fd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCHigherGeographyID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCHigherGeographyID extends AbstractTag -{ - - protected $Id = 'dctermsLocationHigherGeographyID'; - - protected $Name = 'DCHigherGeographyID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Higher Geography ID'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCIsland.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCIsland.php deleted file mode 100644 index cfd7c9fa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCIsland.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCIsland extends AbstractTag -{ - - protected $Id = 'dctermsLocationIsland'; - - protected $Name = 'DCIsland'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Island'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCIslandGroup.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCIslandGroup.php deleted file mode 100644 index 0caef3996..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCIslandGroup.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCIslandGroup extends AbstractTag -{ - - protected $Id = 'dctermsLocationIslandGroup'; - - protected $Name = 'DCIslandGroup'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Island Group'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocality.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocality.php deleted file mode 100644 index 8cc47a64a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCLocality extends AbstractTag -{ - - protected $Id = 'dctermsLocationLocality'; - - protected $Name = 'DCLocality'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Locality'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationAccordingTo.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationAccordingTo.php deleted file mode 100644 index 278c0815e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationAccordingTo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCLocationAccordingTo extends AbstractTag -{ - - protected $Id = 'dctermsLocationLocationAccordingTo'; - - protected $Name = 'DCLocationAccordingTo'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Location According To'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationID.php deleted file mode 100644 index 62c7eb2e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCLocationID extends AbstractTag -{ - - protected $Id = 'dctermsLocationLocationID'; - - protected $Name = 'DCLocationID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Location ID'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationRemarks.php deleted file mode 100644 index 73870e359..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCLocationRemarks.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCLocationRemarks extends AbstractTag -{ - - protected $Id = 'dctermsLocationLocationRemarks'; - - protected $Name = 'DCLocationRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Location Remarks'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumDepthInMeters.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumDepthInMeters.php deleted file mode 100644 index 5c121f158..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumDepthInMeters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCMaximumDepthInMeters extends AbstractTag -{ - - protected $Id = 'dctermsLocationMaximumDepthInMeters'; - - protected $Name = 'DCMaximumDepthInMeters'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Maximum Depth In Meters'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumDistanceAboveSurfaceInMeters.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumDistanceAboveSurfaceInMeters.php deleted file mode 100644 index c1c4de6e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumDistanceAboveSurfaceInMeters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCMaximumDistanceAboveSurfaceInMeters extends AbstractTag -{ - - protected $Id = 'dctermsLocationMaximumDistanceAboveSurfaceInMeters'; - - protected $Name = 'DCMaximumDistanceAboveSurfaceInMeters'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Maximum Distance Above Surface In Meters'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumElevationInMeters.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumElevationInMeters.php deleted file mode 100644 index d4107362c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMaximumElevationInMeters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCMaximumElevationInMeters extends AbstractTag -{ - - protected $Id = 'dctermsLocationMaximumElevationInMeters'; - - protected $Name = 'DCMaximumElevationInMeters'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Maximum Elevation In Meters'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumDepthInMeters.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumDepthInMeters.php deleted file mode 100644 index f020d2fb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumDepthInMeters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCMinimumDepthInMeters extends AbstractTag -{ - - protected $Id = 'dctermsLocationMinimumDepthInMeters'; - - protected $Name = 'DCMinimumDepthInMeters'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Minimum Depth In Meters'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumDistanceAboveSurfaceInMeters.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumDistanceAboveSurfaceInMeters.php deleted file mode 100644 index 2f660631e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumDistanceAboveSurfaceInMeters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCMinimumDistanceAboveSurfaceInMeters extends AbstractTag -{ - - protected $Id = 'dctermsLocationMinimumDistanceAboveSurfaceInMeters'; - - protected $Name = 'DCMinimumDistanceAboveSurfaceInMeters'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Minimum Distance Above Surface In Meters'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumElevationInMeters.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumElevationInMeters.php deleted file mode 100644 index 91e239b6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMinimumElevationInMeters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCMinimumElevationInMeters extends AbstractTag -{ - - protected $Id = 'dctermsLocationMinimumElevationInMeters'; - - protected $Name = 'DCMinimumElevationInMeters'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Minimum Elevation In Meters'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMunicipality.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMunicipality.php deleted file mode 100644 index 45b0d3518..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCMunicipality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCMunicipality extends AbstractTag -{ - - protected $Id = 'dctermsLocationMunicipality'; - - protected $Name = 'DCMunicipality'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Municipality'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCPointRadiusSpatialFit.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCPointRadiusSpatialFit.php deleted file mode 100644 index 912ce77d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCPointRadiusSpatialFit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCPointRadiusSpatialFit extends AbstractTag -{ - - protected $Id = 'dctermsLocationPointRadiusSpatialFit'; - - protected $Name = 'DCPointRadiusSpatialFit'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Point Radius Spatial Fit'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCStateProvince.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCStateProvince.php deleted file mode 100644 index 18c11b52b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCStateProvince.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCStateProvince extends AbstractTag -{ - - protected $Id = 'dctermsLocationStateProvince'; - - protected $Name = 'DCStateProvince'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC State Province'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCTermsLocation.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCTermsLocation.php deleted file mode 100644 index 7b94032a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCTermsLocation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCTermsLocation extends AbstractTag -{ - - protected $Id = 'dctermsLocation'; - - protected $Name = 'DCTermsLocation'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'DC Terms Location'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimCoordinateSystem.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimCoordinateSystem.php deleted file mode 100644 index e38ac7594..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimCoordinateSystem.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimCoordinateSystem extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimCoordinateSystem'; - - protected $Name = 'DCVerbatimCoordinateSystem'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim Coordinate System'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimCoordinates.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimCoordinates.php deleted file mode 100644 index 21ce621f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimCoordinates.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimCoordinates extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimCoordinates'; - - protected $Name = 'DCVerbatimCoordinates'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim Coordinates'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimDepth.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimDepth.php deleted file mode 100644 index 3669786d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimDepth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimDepth extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimDepth'; - - protected $Name = 'DCVerbatimDepth'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim Depth'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimElevation.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimElevation.php deleted file mode 100644 index 6828e6c0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimElevation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimElevation extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimElevation'; - - protected $Name = 'DCVerbatimElevation'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim Elevation'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLatitude.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLatitude.php deleted file mode 100644 index 446bb7d95..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimLatitude extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimLatitude'; - - protected $Name = 'DCVerbatimLatitude'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLocality.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLocality.php deleted file mode 100644 index 9b0f74732..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLocality.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimLocality extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimLocality'; - - protected $Name = 'DCVerbatimLocality'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim Locality'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLongitude.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLongitude.php deleted file mode 100644 index 956d4b8d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimLongitude extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimLongitude'; - - protected $Name = 'DCVerbatimLongitude'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimSRS.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimSRS.php deleted file mode 100644 index b37b55122..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCVerbatimSRS.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCVerbatimSRS extends AbstractTag -{ - - protected $Id = 'dctermsLocationVerbatimSRS'; - - protected $Name = 'DCVerbatimSRS'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Verbatim SRS'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCWaterBody.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DCWaterBody.php deleted file mode 100644 index 205976305..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DCWaterBody.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DCWaterBody extends AbstractTag -{ - - protected $Id = 'dctermsLocationWaterBody'; - - protected $Name = 'DCWaterBody'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DC Water Body'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/DateIdentified.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/DateIdentified.php deleted file mode 100644 index a7ccc6fe6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/DateIdentified.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateIdentified extends AbstractTag -{ - - protected $Id = 'IdentificationDateIdentified'; - - protected $Name = 'DateIdentified'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date Identified'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestAgeOrLowestStage.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestAgeOrLowestStage.php deleted file mode 100644 index 1b7dbccfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestAgeOrLowestStage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EarliestAgeOrLowestStage extends AbstractTag -{ - - protected $Id = 'GeologicalContextEarliestAgeOrLowestStage'; - - protected $Name = 'EarliestAgeOrLowestStage'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Earliest Age Or Lowest Stage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEonOrLowestEonothem.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEonOrLowestEonothem.php deleted file mode 100644 index 24e6746af..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEonOrLowestEonothem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EarliestEonOrLowestEonothem extends AbstractTag -{ - - protected $Id = 'GeologicalContextEarliestEonOrLowestEonothem'; - - protected $Name = 'EarliestEonOrLowestEonothem'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Earliest Eon Or Lowest Eonothem'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEpochOrLowestSeries.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEpochOrLowestSeries.php deleted file mode 100644 index 167463f70..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEpochOrLowestSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EarliestEpochOrLowestSeries extends AbstractTag -{ - - protected $Id = 'GeologicalContextEarliestEpochOrLowestSeries'; - - protected $Name = 'EarliestEpochOrLowestSeries'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Earliest Epoch Or Lowest Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEraOrLowestErathem.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEraOrLowestErathem.php deleted file mode 100644 index a143a89f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestEraOrLowestErathem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EarliestEraOrLowestErathem extends AbstractTag -{ - - protected $Id = 'GeologicalContextEarliestEraOrLowestErathem'; - - protected $Name = 'EarliestEraOrLowestErathem'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Earliest Era Or Lowest Erathem'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestPeriodOrLowestSystem.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestPeriodOrLowestSystem.php deleted file mode 100644 index 1d7ebe5dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EarliestPeriodOrLowestSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EarliestPeriodOrLowestSystem extends AbstractTag -{ - - protected $Id = 'GeologicalContextEarliestPeriodOrLowestSystem'; - - protected $Name = 'EarliestPeriodOrLowestSystem'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Earliest Period Or Lowest System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventDay.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventDay.php deleted file mode 100644 index 222305aae..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventDay.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventDay extends AbstractTag -{ - - protected $Id = 'EventDay'; - - protected $Name = 'EventDay'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Event Day'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventEarliestDate.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventEarliestDate.php deleted file mode 100644 index 8eb23070a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventEarliestDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventEarliestDate extends AbstractTag -{ - - protected $Id = 'EventEarliestDate'; - - protected $Name = 'EventEarliestDate'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Event Earliest Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventEndDayOfYear.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventEndDayOfYear.php deleted file mode 100644 index 80ff453be..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventEndDayOfYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventEndDayOfYear extends AbstractTag -{ - - protected $Id = 'EventEndDayOfYear'; - - protected $Name = 'EventEndDayOfYear'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Event End Day Of Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventFieldNotes.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventFieldNotes.php deleted file mode 100644 index c931ba7eb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventFieldNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventFieldNotes extends AbstractTag -{ - - protected $Id = 'EventFieldNotes'; - - protected $Name = 'EventFieldNotes'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event Field Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventFieldNumber.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventFieldNumber.php deleted file mode 100644 index 148dfd422..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventFieldNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventFieldNumber extends AbstractTag -{ - - protected $Id = 'EventFieldNumber'; - - protected $Name = 'EventFieldNumber'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event Field Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventHabitat.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventHabitat.php deleted file mode 100644 index c096172f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventHabitat.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventHabitat extends AbstractTag -{ - - protected $Id = 'EventHabitat'; - - protected $Name = 'EventHabitat'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event Habitat'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventID.php deleted file mode 100644 index 498037994..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventID extends AbstractTag -{ - - protected $Id = 'EventEventID'; - - protected $Name = 'EventID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventLatestDate.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventLatestDate.php deleted file mode 100644 index 99826db12..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventLatestDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventLatestDate extends AbstractTag -{ - - protected $Id = 'EventLatestDate'; - - protected $Name = 'EventLatestDate'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Event Latest Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventMonth.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventMonth.php deleted file mode 100644 index 0aafb12ce..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventMonth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventMonth extends AbstractTag -{ - - protected $Id = 'EventMonth'; - - protected $Name = 'EventMonth'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Event Month'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventRemarks.php deleted file mode 100644 index 49d1bd038..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventRemarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventRemarks extends AbstractTag -{ - - protected $Id = 'EventEventRemarks'; - - protected $Name = 'EventRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Event Remarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventSamplingEffort.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventSamplingEffort.php deleted file mode 100644 index bd1a49204..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventSamplingEffort.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventSamplingEffort extends AbstractTag -{ - - protected $Id = 'EventSamplingEffort'; - - protected $Name = 'EventSamplingEffort'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event Sampling Effort'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventSamplingProtocol.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventSamplingProtocol.php deleted file mode 100644 index 46bc9b994..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventSamplingProtocol.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventSamplingProtocol extends AbstractTag -{ - - protected $Id = 'EventSamplingProtocol'; - - protected $Name = 'EventSamplingProtocol'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event Sampling Protocol'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventStartDayOfYear.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventStartDayOfYear.php deleted file mode 100644 index 7ec5d33ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventStartDayOfYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventStartDayOfYear extends AbstractTag -{ - - protected $Id = 'EventStartDayOfYear'; - - protected $Name = 'EventStartDayOfYear'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Event Start Day Of Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventTime.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventTime.php deleted file mode 100644 index 3fe36b540..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventTime extends AbstractTag -{ - - protected $Id = 'EventEventTime'; - - protected $Name = 'EventTime'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Event Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventVerbatimEventDate.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventVerbatimEventDate.php deleted file mode 100644 index 87aeb4778..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventVerbatimEventDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventVerbatimEventDate extends AbstractTag -{ - - protected $Id = 'EventVerbatimEventDate'; - - protected $Name = 'EventVerbatimEventDate'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event Verbatim Event Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventYear.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/EventYear.php deleted file mode 100644 index 53f6554f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/EventYear.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EventYear extends AbstractTag -{ - - protected $Id = 'EventYear'; - - protected $Name = 'EventYear'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Event Year'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContext.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContext.php deleted file mode 100644 index dbac53957..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContext.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeologicalContext extends AbstractTag -{ - - protected $Id = 'GeologicalContext'; - - protected $Name = 'GeologicalContext'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Geological Context'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextBed.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextBed.php deleted file mode 100644 index edf93890d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextBed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeologicalContextBed extends AbstractTag -{ - - protected $Id = 'GeologicalContextBed'; - - protected $Name = 'GeologicalContextBed'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Geological Context Bed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextFormation.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextFormation.php deleted file mode 100644 index 4f4d49bb2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextFormation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeologicalContextFormation extends AbstractTag -{ - - protected $Id = 'GeologicalContextFormation'; - - protected $Name = 'GeologicalContextFormation'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Geological Context Formation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextGroup.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextGroup.php deleted file mode 100644 index 4579fcdf2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextGroup.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeologicalContextGroup extends AbstractTag -{ - - protected $Id = 'GeologicalContextGroup'; - - protected $Name = 'GeologicalContextGroup'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Geological Context Group'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextID.php deleted file mode 100644 index 176f547fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeologicalContextID extends AbstractTag -{ - - protected $Id = 'GeologicalContextGeologicalContextID'; - - protected $Name = 'GeologicalContextID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Geological Context ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextMember.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextMember.php deleted file mode 100644 index 139bd8f4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/GeologicalContextMember.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GeologicalContextMember extends AbstractTag -{ - - protected $Id = 'GeologicalContextMember'; - - protected $Name = 'GeologicalContextMember'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Geological Context Member'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/HighestBiostratigraphicZone.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/HighestBiostratigraphicZone.php deleted file mode 100644 index 1e06f4218..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/HighestBiostratigraphicZone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HighestBiostratigraphicZone extends AbstractTag -{ - - protected $Id = 'GeologicalContextHighestBiostratigraphicZone'; - - protected $Name = 'HighestBiostratigraphicZone'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Highest Biostratigraphic Zone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/Identification.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/Identification.php deleted file mode 100644 index 236eb36c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/Identification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Identification extends AbstractTag -{ - - protected $Id = 'Identification'; - - protected $Name = 'Identification'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Identification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationID.php deleted file mode 100644 index 4ec428406..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationID extends AbstractTag -{ - - protected $Id = 'IdentificationIdentificationID'; - - protected $Name = 'IdentificationID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identification ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationQualifier.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationQualifier.php deleted file mode 100644 index c6372f663..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationQualifier.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationQualifier extends AbstractTag -{ - - protected $Id = 'IdentificationIdentificationQualifier'; - - protected $Name = 'IdentificationQualifier'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identification Qualifier'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationReferences.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationReferences.php deleted file mode 100644 index f147e9521..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationReferences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationReferences extends AbstractTag -{ - - protected $Id = 'IdentificationIdentificationReferences'; - - protected $Name = 'IdentificationReferences'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identification References'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationRemarks.php deleted file mode 100644 index d7061eff6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationRemarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationRemarks extends AbstractTag -{ - - protected $Id = 'IdentificationIdentificationRemarks'; - - protected $Name = 'IdentificationRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identification Remarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationVerificationStatus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationVerificationStatus.php deleted file mode 100644 index 09211093d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentificationVerificationStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentificationVerificationStatus extends AbstractTag -{ - - protected $Id = 'IdentificationIdentificationVerificationStatus'; - - protected $Name = 'IdentificationVerificationStatus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identification Verification Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentifiedBy.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentifiedBy.php deleted file mode 100644 index 109705281..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/IdentifiedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IdentifiedBy extends AbstractTag -{ - - protected $Id = 'IdentificationIdentifiedBy'; - - protected $Name = 'IdentifiedBy'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identified By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestAgeOrHighestStage.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestAgeOrHighestStage.php deleted file mode 100644 index 53a6dee8d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestAgeOrHighestStage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LatestAgeOrHighestStage extends AbstractTag -{ - - protected $Id = 'GeologicalContextLatestAgeOrHighestStage'; - - protected $Name = 'LatestAgeOrHighestStage'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Latest Age Or Highest Stage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEonOrHighestEonothem.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEonOrHighestEonothem.php deleted file mode 100644 index 3c129fc6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEonOrHighestEonothem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LatestEonOrHighestEonothem extends AbstractTag -{ - - protected $Id = 'GeologicalContextLatestEonOrHighestEonothem'; - - protected $Name = 'LatestEonOrHighestEonothem'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Latest Eon Or Highest Eonothem'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEpochOrHighestSeries.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEpochOrHighestSeries.php deleted file mode 100644 index 22cacef00..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEpochOrHighestSeries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LatestEpochOrHighestSeries extends AbstractTag -{ - - protected $Id = 'GeologicalContextLatestEpochOrHighestSeries'; - - protected $Name = 'LatestEpochOrHighestSeries'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Latest Epoch Or Highest Series'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEraOrHighestErathem.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEraOrHighestErathem.php deleted file mode 100644 index 2bd7a3fcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestEraOrHighestErathem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LatestEraOrHighestErathem extends AbstractTag -{ - - protected $Id = 'GeologicalContextLatestEraOrHighestErathem'; - - protected $Name = 'LatestEraOrHighestErathem'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Latest Era Or Highest Erathem'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestPeriodOrHighestSystem.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestPeriodOrHighestSystem.php deleted file mode 100644 index ce9ffed9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/LatestPeriodOrHighestSystem.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LatestPeriodOrHighestSystem extends AbstractTag -{ - - protected $Id = 'GeologicalContextLatestPeriodOrHighestSystem'; - - protected $Name = 'LatestPeriodOrHighestSystem'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Latest Period Or Highest System'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/LithostratigraphicTerms.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/LithostratigraphicTerms.php deleted file mode 100644 index 747d31880..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/LithostratigraphicTerms.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LithostratigraphicTerms extends AbstractTag -{ - - protected $Id = 'GeologicalContextLithostratigraphicTerms'; - - protected $Name = 'LithostratigraphicTerms'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lithostratigraphic Terms'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/LowestBiostratigraphicZone.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/LowestBiostratigraphicZone.php deleted file mode 100644 index f3ef2f6c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/LowestBiostratigraphicZone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LowestBiostratigraphicZone extends AbstractTag -{ - - protected $Id = 'GeologicalContextLowestBiostratigraphicZone'; - - protected $Name = 'LowestBiostratigraphicZone'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lowest Biostratigraphic Zone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementAccuracy.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementAccuracy.php deleted file mode 100644 index 1afabfbec..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementAccuracy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementAccuracy extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementAccuracy'; - - protected $Name = 'MeasurementAccuracy'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement Accuracy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementDeterminedBy.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementDeterminedBy.php deleted file mode 100644 index 0bf917d26..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementDeterminedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementDeterminedBy extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementDeterminedBy'; - - protected $Name = 'MeasurementDeterminedBy'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement Determined By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementDeterminedDate.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementDeterminedDate.php deleted file mode 100644 index 90cfd91c1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementDeterminedDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementDeterminedDate extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementDeterminedDate'; - - protected $Name = 'MeasurementDeterminedDate'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Measurement Determined Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementID.php deleted file mode 100644 index d90179bab..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementID extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementID'; - - protected $Name = 'MeasurementID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementMethod.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementMethod.php deleted file mode 100644 index 7df4e8185..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementMethod.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementMethod extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementMethod'; - - protected $Name = 'MeasurementMethod'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement Method'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementOrFact.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementOrFact.php deleted file mode 100644 index b6ac77d97..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementOrFact.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementOrFact extends AbstractTag -{ - - protected $Id = 'MeasurementOrFact'; - - protected $Name = 'MeasurementOrFact'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Measurement Or Fact'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementRemarks.php deleted file mode 100644 index 2926ac93c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementRemarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementRemarks extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementRemarks'; - - protected $Name = 'MeasurementRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement Remarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementType.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementType.php deleted file mode 100644 index f472200f7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementType extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementType'; - - protected $Name = 'MeasurementType'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementUnit.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementUnit.php deleted file mode 100644 index 8024659e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementUnit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementUnit extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementUnit'; - - protected $Name = 'MeasurementUnit'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement Unit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementValue.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementValue.php deleted file mode 100644 index cb11b8825..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/MeasurementValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeasurementValue extends AbstractTag -{ - - protected $Id = 'MeasurementOrFactMeasurementValue'; - - protected $Name = 'MeasurementValue'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Measurement Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/Occurrence.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/Occurrence.php deleted file mode 100644 index f175cc28e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/Occurrence.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Occurrence extends AbstractTag -{ - - protected $Id = 'Occurrence'; - - protected $Name = 'Occurrence'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Occurrence'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedMedia.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedMedia.php deleted file mode 100644 index 43f4b3f7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedMedia.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceAssociatedMedia extends AbstractTag -{ - - protected $Id = 'OccurrenceAssociatedMedia'; - - protected $Name = 'OccurrenceAssociatedMedia'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Associated Media'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedOccurrences.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedOccurrences.php deleted file mode 100644 index edfcffccc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedOccurrences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceAssociatedOccurrences extends AbstractTag -{ - - protected $Id = 'OccurrenceAssociatedOccurrences'; - - protected $Name = 'OccurrenceAssociatedOccurrences'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Associated Occurrences'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedReferences.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedReferences.php deleted file mode 100644 index 06fee6110..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedReferences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceAssociatedReferences extends AbstractTag -{ - - protected $Id = 'OccurrenceAssociatedReferences'; - - protected $Name = 'OccurrenceAssociatedReferences'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Associated References'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedSequences.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedSequences.php deleted file mode 100644 index 600ca23ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedSequences.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceAssociatedSequences extends AbstractTag -{ - - protected $Id = 'OccurrenceAssociatedSequences'; - - protected $Name = 'OccurrenceAssociatedSequences'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Associated Sequences'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedTaxa.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedTaxa.php deleted file mode 100644 index e644bb9a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceAssociatedTaxa.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceAssociatedTaxa extends AbstractTag -{ - - protected $Id = 'OccurrenceAssociatedTaxa'; - - protected $Name = 'OccurrenceAssociatedTaxa'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Associated Taxa'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceBehavior.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceBehavior.php deleted file mode 100644 index 06a9a881d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceBehavior.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceBehavior extends AbstractTag -{ - - protected $Id = 'OccurrenceBehavior'; - - protected $Name = 'OccurrenceBehavior'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Behavior'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceCatalogNumber.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceCatalogNumber.php deleted file mode 100644 index 230f98dba..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceCatalogNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceCatalogNumber extends AbstractTag -{ - - protected $Id = 'OccurrenceCatalogNumber'; - - protected $Name = 'OccurrenceCatalogNumber'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Catalog Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceDetails.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceDetails.php deleted file mode 100644 index fee5b33a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceDetails.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceDetails extends AbstractTag -{ - - protected $Id = 'OccurrenceOccurrenceDetails'; - - protected $Name = 'OccurrenceDetails'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Details'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceDisposition.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceDisposition.php deleted file mode 100644 index 87f13a072..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceDisposition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceDisposition extends AbstractTag -{ - - protected $Id = 'OccurrenceDisposition'; - - protected $Name = 'OccurrenceDisposition'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Disposition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceEstablishmentMeans.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceEstablishmentMeans.php deleted file mode 100644 index eb635fbe9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceEstablishmentMeans.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceEstablishmentMeans extends AbstractTag -{ - - protected $Id = 'OccurrenceEstablishmentMeans'; - - protected $Name = 'OccurrenceEstablishmentMeans'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Establishment Means'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceID.php deleted file mode 100644 index d749bc928..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceID extends AbstractTag -{ - - protected $Id = 'OccurrenceOccurrenceID'; - - protected $Name = 'OccurrenceID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceIndividualCount.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceIndividualCount.php deleted file mode 100644 index d2df485ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceIndividualCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceIndividualCount extends AbstractTag -{ - - protected $Id = 'OccurrenceIndividualCount'; - - protected $Name = 'OccurrenceIndividualCount'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Individual Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceIndividualID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceIndividualID.php deleted file mode 100644 index 8ef5fa7ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceIndividualID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceIndividualID extends AbstractTag -{ - - protected $Id = 'OccurrenceIndividualID'; - - protected $Name = 'OccurrenceIndividualID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Individual ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceLifeStage.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceLifeStage.php deleted file mode 100644 index c6a479a7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceLifeStage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceLifeStage extends AbstractTag -{ - - protected $Id = 'OccurrenceLifeStage'; - - protected $Name = 'OccurrenceLifeStage'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Life Stage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceOtherCatalogNumbers.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceOtherCatalogNumbers.php deleted file mode 100644 index fe9d6f673..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceOtherCatalogNumbers.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceOtherCatalogNumbers extends AbstractTag -{ - - protected $Id = 'OccurrenceOtherCatalogNumbers'; - - protected $Name = 'OccurrenceOtherCatalogNumbers'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Other Catalog Numbers'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrencePreparations.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrencePreparations.php deleted file mode 100644 index 0c91b17e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrencePreparations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrencePreparations extends AbstractTag -{ - - protected $Id = 'OccurrencePreparations'; - - protected $Name = 'OccurrencePreparations'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Preparations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrencePreviousIdentifications.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrencePreviousIdentifications.php deleted file mode 100644 index 65d99ecdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrencePreviousIdentifications.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrencePreviousIdentifications extends AbstractTag -{ - - protected $Id = 'OccurrencePreviousIdentifications'; - - protected $Name = 'OccurrencePreviousIdentifications'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Previous Identifications'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRecordNumber.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRecordNumber.php deleted file mode 100644 index 14efdc5c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRecordNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceRecordNumber extends AbstractTag -{ - - protected $Id = 'OccurrenceRecordNumber'; - - protected $Name = 'OccurrenceRecordNumber'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Record Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRecordedBy.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRecordedBy.php deleted file mode 100644 index 1c6365752..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRecordedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceRecordedBy extends AbstractTag -{ - - protected $Id = 'OccurrenceRecordedBy'; - - protected $Name = 'OccurrenceRecordedBy'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Recorded By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRemarks.php deleted file mode 100644 index 248adf70d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceRemarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceRemarks extends AbstractTag -{ - - protected $Id = 'OccurrenceOccurrenceRemarks'; - - protected $Name = 'OccurrenceRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Remarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceReproductiveCondition.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceReproductiveCondition.php deleted file mode 100644 index fec4d77ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceReproductiveCondition.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceReproductiveCondition extends AbstractTag -{ - - protected $Id = 'OccurrenceReproductiveCondition'; - - protected $Name = 'OccurrenceReproductiveCondition'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Reproductive Condition'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceSex.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceSex.php deleted file mode 100644 index e5b7e4867..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceSex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceSex extends AbstractTag -{ - - protected $Id = 'OccurrenceSex'; - - protected $Name = 'OccurrenceSex'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Sex'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceStatus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceStatus.php deleted file mode 100644 index 34e96a537..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/OccurrenceStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OccurrenceStatus extends AbstractTag -{ - - protected $Id = 'OccurrenceOccurrenceStatus'; - - protected $Name = 'OccurrenceStatus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Occurrence Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/Record.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/Record.php deleted file mode 100644 index 853318b2a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/Record.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Record extends AbstractTag -{ - - protected $Id = 'Record'; - - protected $Name = 'Record'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Record'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordBasisOfRecord.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordBasisOfRecord.php deleted file mode 100644 index 0ab42d875..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordBasisOfRecord.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordBasisOfRecord extends AbstractTag -{ - - protected $Id = 'RecordBasisOfRecord'; - - protected $Name = 'RecordBasisOfRecord'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Basis Of Record'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordCollectionCode.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordCollectionCode.php deleted file mode 100644 index daa134930..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordCollectionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordCollectionCode extends AbstractTag -{ - - protected $Id = 'RecordCollectionCode'; - - protected $Name = 'RecordCollectionCode'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Collection Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordCollectionID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordCollectionID.php deleted file mode 100644 index 08595f27a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordCollectionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordCollectionID extends AbstractTag -{ - - protected $Id = 'RecordCollectionID'; - - protected $Name = 'RecordCollectionID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Collection ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDataGeneralizations.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDataGeneralizations.php deleted file mode 100644 index df5c7a6d4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDataGeneralizations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordDataGeneralizations extends AbstractTag -{ - - protected $Id = 'RecordDataGeneralizations'; - - protected $Name = 'RecordDataGeneralizations'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Data Generalizations'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDatasetID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDatasetID.php deleted file mode 100644 index 6da029bfd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDatasetID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordDatasetID extends AbstractTag -{ - - protected $Id = 'RecordDatasetID'; - - protected $Name = 'RecordDatasetID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Dataset ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDatasetName.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDatasetName.php deleted file mode 100644 index efa0e89a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDatasetName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordDatasetName extends AbstractTag -{ - - protected $Id = 'RecordDatasetName'; - - protected $Name = 'RecordDatasetName'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Dataset Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDynamicProperties.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDynamicProperties.php deleted file mode 100644 index 255dbaf89..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordDynamicProperties.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordDynamicProperties extends AbstractTag -{ - - protected $Id = 'RecordDynamicProperties'; - - protected $Name = 'RecordDynamicProperties'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Dynamic Properties'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInformationWithheld.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInformationWithheld.php deleted file mode 100644 index 682091b80..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInformationWithheld.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordInformationWithheld extends AbstractTag -{ - - protected $Id = 'RecordInformationWithheld'; - - protected $Name = 'RecordInformationWithheld'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Information Withheld'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInstitutionCode.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInstitutionCode.php deleted file mode 100644 index 75343a1fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInstitutionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordInstitutionCode extends AbstractTag -{ - - protected $Id = 'RecordInstitutionCode'; - - protected $Name = 'RecordInstitutionCode'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Institution Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInstitutionID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInstitutionID.php deleted file mode 100644 index 26a78415b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordInstitutionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordInstitutionID extends AbstractTag -{ - - protected $Id = 'RecordInstitutionID'; - - protected $Name = 'RecordInstitutionID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Institution ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordOwnerInstitutionCode.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordOwnerInstitutionCode.php deleted file mode 100644 index 84197e8bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RecordOwnerInstitutionCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecordOwnerInstitutionCode extends AbstractTag -{ - - protected $Id = 'RecordOwnerInstitutionCode'; - - protected $Name = 'RecordOwnerInstitutionCode'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Record Owner Institution Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelatedResourceID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RelatedResourceID.php deleted file mode 100644 index a0bf37377..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelatedResourceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedResourceID extends AbstractTag -{ - - protected $Id = 'ResourceRelationshipRelatedResourceID'; - - protected $Name = 'RelatedResourceID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Resource ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipAccordingTo.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipAccordingTo.php deleted file mode 100644 index e929ece7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipAccordingTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelationshipAccordingTo extends AbstractTag -{ - - protected $Id = 'ResourceRelationshipRelationshipAccordingTo'; - - protected $Name = 'RelationshipAccordingTo'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Relationship According To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipEstablishedDate.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipEstablishedDate.php deleted file mode 100644 index c4abf720e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipEstablishedDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelationshipEstablishedDate extends AbstractTag -{ - - protected $Id = 'ResourceRelationshipRelationshipEstablishedDate'; - - protected $Name = 'RelationshipEstablishedDate'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Relationship Established Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipOfResource.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipOfResource.php deleted file mode 100644 index ec22c10cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipOfResource.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelationshipOfResource extends AbstractTag -{ - - protected $Id = 'ResourceRelationshipRelationshipOfResource'; - - protected $Name = 'RelationshipOfResource'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Relationship Of Resource'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipRemarks.php deleted file mode 100644 index 9b4a25e50..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/RelationshipRemarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelationshipRemarks extends AbstractTag -{ - - protected $Id = 'ResourceRelationshipRelationshipRemarks'; - - protected $Name = 'RelationshipRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Relationship Remarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceID.php deleted file mode 100644 index 5c0e34823..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResourceID extends AbstractTag -{ - - protected $Id = 'ResourceRelationshipResourceID'; - - protected $Name = 'ResourceID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Resource ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceRelationship.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceRelationship.php deleted file mode 100644 index accecaee5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceRelationship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResourceRelationship extends AbstractTag -{ - - protected $Id = 'ResourceRelationship'; - - protected $Name = 'ResourceRelationship'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Resource Relationship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceRelationshipID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceRelationshipID.php deleted file mode 100644 index 8bfcb5a40..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/ResourceRelationshipID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResourceRelationshipID extends AbstractTag -{ - - protected $Id = 'ResourceRelationshipResourceRelationshipID'; - - protected $Name = 'ResourceRelationshipID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Resource Relationship ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/Taxon.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/Taxon.php deleted file mode 100644 index da5dee13f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/Taxon.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Taxon extends AbstractTag -{ - - protected $Id = 'Taxon'; - - protected $Name = 'Taxon'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Taxon'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonAcceptedNameUsage.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonAcceptedNameUsage.php deleted file mode 100644 index 038cd1c81..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonAcceptedNameUsage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonAcceptedNameUsage extends AbstractTag -{ - - protected $Id = 'TaxonAcceptedNameUsage'; - - protected $Name = 'TaxonAcceptedNameUsage'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Accepted Name Usage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonAcceptedNameUsageID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonAcceptedNameUsageID.php deleted file mode 100644 index 4a4461eda..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonAcceptedNameUsageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonAcceptedNameUsageID extends AbstractTag -{ - - protected $Id = 'TaxonAcceptedNameUsageID'; - - protected $Name = 'TaxonAcceptedNameUsageID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Accepted Name Usage ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonClass.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonClass.php deleted file mode 100644 index 0e0d868df..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonClass extends AbstractTag -{ - - protected $Id = 'TaxonClass'; - - protected $Name = 'TaxonClass'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonConceptID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonConceptID.php deleted file mode 100644 index 333c21654..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonConceptID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonConceptID extends AbstractTag -{ - - protected $Id = 'TaxonTaxonConceptID'; - - protected $Name = 'TaxonConceptID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Concept ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonFamily.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonFamily.php deleted file mode 100644 index 1554a5487..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonFamily.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonFamily extends AbstractTag -{ - - protected $Id = 'TaxonFamily'; - - protected $Name = 'TaxonFamily'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Family'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonGenus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonGenus.php deleted file mode 100644 index 92d6311e2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonGenus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonGenus extends AbstractTag -{ - - protected $Id = 'TaxonGenus'; - - protected $Name = 'TaxonGenus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Genus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonHigherClassification.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonHigherClassification.php deleted file mode 100644 index 5ec16cde0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonHigherClassification.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonHigherClassification extends AbstractTag -{ - - protected $Id = 'TaxonHigherClassification'; - - protected $Name = 'TaxonHigherClassification'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Higher Classification'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonID.php deleted file mode 100644 index 27892289e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonID extends AbstractTag -{ - - protected $Id = 'TaxonTaxonID'; - - protected $Name = 'TaxonID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonInfraspecificEpithet.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonInfraspecificEpithet.php deleted file mode 100644 index 82a1e59ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonInfraspecificEpithet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonInfraspecificEpithet extends AbstractTag -{ - - protected $Id = 'TaxonInfraspecificEpithet'; - - protected $Name = 'TaxonInfraspecificEpithet'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Infraspecific Epithet'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonKingdom.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonKingdom.php deleted file mode 100644 index 646ea6d7e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonKingdom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonKingdom extends AbstractTag -{ - - protected $Id = 'TaxonKingdom'; - - protected $Name = 'TaxonKingdom'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Kingdom'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNameAccordingTo.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNameAccordingTo.php deleted file mode 100644 index d5e4aea66..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNameAccordingTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonNameAccordingTo extends AbstractTag -{ - - protected $Id = 'TaxonNameAccordingTo'; - - protected $Name = 'TaxonNameAccordingTo'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Name According To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNameAccordingToID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNameAccordingToID.php deleted file mode 100644 index 3747732c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNameAccordingToID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonNameAccordingToID extends AbstractTag -{ - - protected $Id = 'TaxonNameAccordingToID'; - - protected $Name = 'TaxonNameAccordingToID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Name According To ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedIn.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedIn.php deleted file mode 100644 index 544d3f53d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedIn.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonNamePublishedIn extends AbstractTag -{ - - protected $Id = 'TaxonNamePublishedIn'; - - protected $Name = 'TaxonNamePublishedIn'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Name Published In'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedInID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedInID.php deleted file mode 100644 index a70fb5b6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedInID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonNamePublishedInID extends AbstractTag -{ - - protected $Id = 'TaxonNamePublishedInID'; - - protected $Name = 'TaxonNamePublishedInID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Name Published In ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedInYear.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedInYear.php deleted file mode 100644 index 9f19bc47f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNamePublishedInYear.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonNamePublishedInYear extends AbstractTag -{ - - protected $Id = 'TaxonNamePublishedInYear'; - - protected $Name = 'TaxonNamePublishedInYear'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Name Published In Year'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNomenclaturalCode.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNomenclaturalCode.php deleted file mode 100644 index 8ce6ac030..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNomenclaturalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonNomenclaturalCode extends AbstractTag -{ - - protected $Id = 'TaxonNomenclaturalCode'; - - protected $Name = 'TaxonNomenclaturalCode'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Nomenclatural Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNomenclaturalStatus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNomenclaturalStatus.php deleted file mode 100644 index 80e302959..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonNomenclaturalStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonNomenclaturalStatus extends AbstractTag -{ - - protected $Id = 'TaxonNomenclaturalStatus'; - - protected $Name = 'TaxonNomenclaturalStatus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Nomenclatural Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOrder.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOrder.php deleted file mode 100644 index 019a3d8ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOrder.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonOrder extends AbstractTag -{ - - protected $Id = 'TaxonOrder'; - - protected $Name = 'TaxonOrder'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Order'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOriginalNameUsage.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOriginalNameUsage.php deleted file mode 100644 index 05d7eed10..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOriginalNameUsage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonOriginalNameUsage extends AbstractTag -{ - - protected $Id = 'TaxonOriginalNameUsage'; - - protected $Name = 'TaxonOriginalNameUsage'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Original Name Usage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOriginalNameUsageID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOriginalNameUsageID.php deleted file mode 100644 index 60af1aac6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonOriginalNameUsageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonOriginalNameUsageID extends AbstractTag -{ - - protected $Id = 'TaxonOriginalNameUsageID'; - - protected $Name = 'TaxonOriginalNameUsageID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Original Name Usage ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonParentNameUsage.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonParentNameUsage.php deleted file mode 100644 index b612b713d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonParentNameUsage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonParentNameUsage extends AbstractTag -{ - - protected $Id = 'TaxonParentNameUsage'; - - protected $Name = 'TaxonParentNameUsage'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Parent Name Usage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonParentNameUsageID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonParentNameUsageID.php deleted file mode 100644 index 9c461e177..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonParentNameUsageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonParentNameUsageID extends AbstractTag -{ - - protected $Id = 'TaxonParentNameUsageID'; - - protected $Name = 'TaxonParentNameUsageID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Parent Name Usage ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonPhylum.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonPhylum.php deleted file mode 100644 index 337d5a055..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonPhylum.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonPhylum extends AbstractTag -{ - - protected $Id = 'TaxonPhylum'; - - protected $Name = 'TaxonPhylum'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Phylum'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonRank.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonRank.php deleted file mode 100644 index 330d31ddc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonRank.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonRank extends AbstractTag -{ - - protected $Id = 'TaxonTaxonRank'; - - protected $Name = 'TaxonRank'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Rank'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonRemarks.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonRemarks.php deleted file mode 100644 index b6a5977ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonRemarks.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonRemarks extends AbstractTag -{ - - protected $Id = 'TaxonTaxonRemarks'; - - protected $Name = 'TaxonRemarks'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Remarks'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificName.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificName.php deleted file mode 100644 index 0d918c384..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonScientificName extends AbstractTag -{ - - protected $Id = 'TaxonScientificName'; - - protected $Name = 'TaxonScientificName'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Scientific Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificNameAuthorship.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificNameAuthorship.php deleted file mode 100644 index ed211611d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificNameAuthorship.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonScientificNameAuthorship extends AbstractTag -{ - - protected $Id = 'TaxonScientificNameAuthorship'; - - protected $Name = 'TaxonScientificNameAuthorship'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Scientific Name Authorship'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificNameID.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificNameID.php deleted file mode 100644 index 251b16e6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonScientificNameID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonScientificNameID extends AbstractTag -{ - - protected $Id = 'TaxonScientificNameID'; - - protected $Name = 'TaxonScientificNameID'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Scientific Name ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonSpecificEpithet.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonSpecificEpithet.php deleted file mode 100644 index 5e3328c00..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonSpecificEpithet.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonSpecificEpithet extends AbstractTag -{ - - protected $Id = 'TaxonSpecificEpithet'; - - protected $Name = 'TaxonSpecificEpithet'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Specific Epithet'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonSubgenus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonSubgenus.php deleted file mode 100644 index f150904a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonSubgenus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonSubgenus extends AbstractTag -{ - - protected $Id = 'TaxonSubgenus'; - - protected $Name = 'TaxonSubgenus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Subgenus'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonTaxonomicStatus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonTaxonomicStatus.php deleted file mode 100644 index 5de83ee1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonTaxonomicStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonTaxonomicStatus extends AbstractTag -{ - - protected $Id = 'TaxonTaxonomicStatus'; - - protected $Name = 'TaxonTaxonomicStatus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Taxonomic Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonVerbatimTaxonRank.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonVerbatimTaxonRank.php deleted file mode 100644 index b18502c34..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonVerbatimTaxonRank.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonVerbatimTaxonRank extends AbstractTag -{ - - protected $Id = 'TaxonVerbatimTaxonRank'; - - protected $Name = 'TaxonVerbatimTaxonRank'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Taxon Verbatim Taxon Rank'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonVernacularName.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonVernacularName.php deleted file mode 100644 index da31b6853..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TaxonVernacularName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TaxonVernacularName extends AbstractTag -{ - - protected $Id = 'TaxonVernacularName'; - - protected $Name = 'TaxonVernacularName'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Taxon Vernacular Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPDwc/TypeStatus.php b/lib/PHPExiftool/Driver/Tag/XMPDwc/TypeStatus.php deleted file mode 100644 index 12110bf22..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPDwc/TypeStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPDwc; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TypeStatus extends AbstractTag -{ - - protected $Id = 'IdentificationTypeStatus'; - - protected $Name = 'TypeStatus'; - - protected $FullName = 'DarwinCore::Main'; - - protected $GroupName = 'XMP-dwc'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-dwc'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Type Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ApertureValue.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ApertureValue.php deleted file mode 100644 index 141079979..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ApertureValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApertureValue extends AbstractTag -{ - - protected $Id = 'ApertureValue'; - - protected $Name = 'ApertureValue'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Aperture Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/BrightnessValue.php b/lib/PHPExiftool/Driver/Tag/XMPExif/BrightnessValue.php deleted file mode 100644 index 966362be3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/BrightnessValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BrightnessValue extends AbstractTag -{ - - protected $Id = 'BrightnessValue'; - - protected $Name = 'BrightnessValue'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Brightness Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPattern.php b/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPattern.php deleted file mode 100644 index 914baa698..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPattern.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPattern extends AbstractTag -{ - - protected $Id = 'CFAPattern'; - - protected $Name = 'CFAPattern'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'CFA Pattern'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternColumns.php b/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternColumns.php deleted file mode 100644 index 3cfd3fab6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPatternColumns extends AbstractTag -{ - - protected $Id = 'CFAPatternColumns'; - - protected $Name = 'CFAPatternColumns'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'CFA Pattern Columns'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternRows.php b/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternRows.php deleted file mode 100644 index 3e8f173d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternRows.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPatternRows extends AbstractTag -{ - - protected $Id = 'CFAPatternRows'; - - protected $Name = 'CFAPatternRows'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'CFA Pattern Rows'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternValues.php b/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternValues.php deleted file mode 100644 index 650c91d4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/CFAPatternValues.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CFAPatternValues extends AbstractTag -{ - - protected $Id = 'CFAPatternValues'; - - protected $Name = 'CFAPatternValues'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'CFA Pattern Values'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ColorSpace.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ColorSpace.php deleted file mode 100644 index 88a0ec7c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ColorSpace.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorSpace extends AbstractTag -{ - - protected $Id = 'ColorSpace'; - - protected $Name = 'ColorSpace'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Color Space'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'sRGB', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Adobe RGB', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Uncalibrated', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ComponentsConfiguration.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ComponentsConfiguration.php deleted file mode 100644 index d3366e33f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ComponentsConfiguration.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComponentsConfiguration extends AbstractTag -{ - - protected $Id = 'ComponentsConfiguration'; - - protected $Name = 'ComponentsConfiguration'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Components Configuration'; - - protected $flag_List = true; - - protected $flag_Seq = true; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '-', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Y', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Cb', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Cr', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'R', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'G', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'B', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/CompressedBitsPerPixel.php b/lib/PHPExiftool/Driver/Tag/XMPExif/CompressedBitsPerPixel.php deleted file mode 100644 index 11da8482b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/CompressedBitsPerPixel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedBitsPerPixel extends AbstractTag -{ - - protected $Id = 'CompressedBitsPerPixel'; - - protected $Name = 'CompressedBitsPerPixel'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Compressed Bits Per Pixel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/Contrast.php b/lib/PHPExiftool/Driver/Tag/XMPExif/Contrast.php deleted file mode 100644 index 29a21c23a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/Contrast.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Contrast extends AbstractTag -{ - - protected $Id = 'Contrast'; - - protected $Name = 'Contrast'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Contrast'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/CustomRendered.php b/lib/PHPExiftool/Driver/Tag/XMPExif/CustomRendered.php deleted file mode 100644 index 879753b7b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/CustomRendered.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CustomRendered extends AbstractTag -{ - - protected $Id = 'CustomRendered'; - - protected $Name = 'CustomRendered'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Custom Rendered'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Custom', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/DateTimeDigitized.php b/lib/PHPExiftool/Driver/Tag/XMPExif/DateTimeDigitized.php deleted file mode 100644 index ed0afa98c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/DateTimeDigitized.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeDigitized extends AbstractTag -{ - - protected $Id = 'DateTimeDigitized'; - - protected $Name = 'DateTimeDigitized'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date/Time Digitized'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/DateTimeOriginal.php b/lib/PHPExiftool/Driver/Tag/XMPExif/DateTimeOriginal.php deleted file mode 100644 index 53d395e25..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/DateTimeOriginal.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTimeOriginal extends AbstractTag -{ - - protected $Id = 'DateTimeOriginal'; - - protected $Name = 'DateTimeOriginal'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date/Time Original'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescription.php b/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescription.php deleted file mode 100644 index 5f7e7f4db..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSettingDescription extends AbstractTag -{ - - protected $Id = 'DeviceSettingDescription'; - - protected $Name = 'DeviceSettingDescription'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Device Setting Description'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionColumns.php b/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionColumns.php deleted file mode 100644 index c449282c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionColumns.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSettingDescriptionColumns extends AbstractTag -{ - - protected $Id = 'DeviceSettingDescriptionColumns'; - - protected $Name = 'DeviceSettingDescriptionColumns'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Device Setting Description Columns'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionRows.php b/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionRows.php deleted file mode 100644 index bcbd0f43f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionRows.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSettingDescriptionRows extends AbstractTag -{ - - protected $Id = 'DeviceSettingDescriptionRows'; - - protected $Name = 'DeviceSettingDescriptionRows'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Device Setting Description Rows'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionSettings.php b/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionSettings.php deleted file mode 100644 index b376ac882..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/DeviceSettingDescriptionSettings.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DeviceSettingDescriptionSettings extends AbstractTag -{ - - protected $Id = 'DeviceSettingDescriptionSettings'; - - protected $Name = 'DeviceSettingDescriptionSettings'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Device Setting Description Settings'; - - protected $local_g2 = 'Camera'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/DigitalZoomRatio.php b/lib/PHPExiftool/Driver/Tag/XMPExif/DigitalZoomRatio.php deleted file mode 100644 index 2a3c8f81d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/DigitalZoomRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalZoomRatio extends AbstractTag -{ - - protected $Id = 'DigitalZoomRatio'; - - protected $Name = 'DigitalZoomRatio'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Digital Zoom Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExifImageHeight.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExifImageHeight.php deleted file mode 100644 index 83b4ae7ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExifImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifImageHeight extends AbstractTag -{ - - protected $Id = 'PixelYDimension'; - - protected $Name = 'ExifImageHeight'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Exif Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExifImageWidth.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExifImageWidth.php deleted file mode 100644 index da5186340..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExifImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifImageWidth extends AbstractTag -{ - - protected $Id = 'PixelXDimension'; - - protected $Name = 'ExifImageWidth'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Exif Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExifVersion.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExifVersion.php deleted file mode 100644 index 52fbdcb50..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExifVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExifVersion extends AbstractTag -{ - - protected $Id = 'ExifVersion'; - - protected $Name = 'ExifVersion'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Exif Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureCompensation.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureCompensation.php deleted file mode 100644 index c1a01b5e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureCompensation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureCompensation extends AbstractTag -{ - - protected $Id = 'ExposureBiasValue'; - - protected $Name = 'ExposureCompensation'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Exposure Compensation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureIndex.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureIndex.php deleted file mode 100644 index 863195b68..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureIndex extends AbstractTag -{ - - protected $Id = 'ExposureIndex'; - - protected $Name = 'ExposureIndex'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Exposure Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureMode.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureMode.php deleted file mode 100644 index b50b96876..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureMode extends AbstractTag -{ - - protected $Id = 'ExposureMode'; - - protected $Name = 'ExposureMode'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Exposure Mode'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Auto bracket', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureProgram.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureProgram.php deleted file mode 100644 index 851731ded..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureProgram.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureProgram extends AbstractTag -{ - - protected $Id = 'ExposureProgram'; - - protected $Name = 'ExposureProgram'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Exposure Program'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Not Defined', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Program AE', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Aperture-priority AE', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Shutter speed priority AE', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Creative (Slow speed)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Action (High speed)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Portrait', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Landscape', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureTime.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureTime.php deleted file mode 100644 index 54450687b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ExposureTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureTime extends AbstractTag -{ - - protected $Id = 'ExposureTime'; - - protected $Name = 'ExposureTime'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Exposure Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FNumber.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FNumber.php deleted file mode 100644 index f84c872a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FNumber extends AbstractTag -{ - - protected $Id = 'FNumber'; - - protected $Name = 'FNumber'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'F Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FileSource.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FileSource.php deleted file mode 100644 index 4498cb228..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FileSource.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileSource extends AbstractTag -{ - - protected $Id = 'FileSource'; - - protected $Name = 'FileSource'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'File Source'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Film Scanner', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Reflection Print Scanner', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Digital Camera', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/Flash.php b/lib/PHPExiftool/Driver/Tag/XMPExif/Flash.php deleted file mode 100644 index f8b248366..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/Flash.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flash extends AbstractTag -{ - - protected $Id = 'Flash'; - - protected $Name = 'Flash'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Flash'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashEnergy.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FlashEnergy.php deleted file mode 100644 index 7a7747ec6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashEnergy.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashEnergy extends AbstractTag -{ - - protected $Id = 'FlashEnergy'; - - protected $Name = 'FlashEnergy'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Flash Energy'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashFired.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FlashFired.php deleted file mode 100644 index 49b7ada01..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashFired.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFired extends AbstractTag -{ - - protected $Id = 'FlashFired'; - - protected $Name = 'FlashFired'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Flash Fired'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - False => array( - 'Id' => False, - 'Label' => False, - ), - True => array( - 'Id' => True, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashFunction.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FlashFunction.php deleted file mode 100644 index 00504b8a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashFunction.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashFunction extends AbstractTag -{ - - protected $Id = 'FlashFunction'; - - protected $Name = 'FlashFunction'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Flash Function'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - False => array( - 'Id' => False, - 'Label' => False, - ), - True => array( - 'Id' => True, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashMode.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FlashMode.php deleted file mode 100644 index 8557970d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashMode.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashMode extends AbstractTag -{ - - protected $Id = 'FlashMode'; - - protected $Name = 'FlashMode'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Flash Mode'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'On', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Off', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Auto', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashRedEyeMode.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FlashRedEyeMode.php deleted file mode 100644 index 1f1ae6530..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashRedEyeMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashRedEyeMode extends AbstractTag -{ - - protected $Id = 'FlashRedEyeMode'; - - protected $Name = 'FlashRedEyeMode'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Flash Red Eye Mode'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - False => array( - 'Id' => False, - 'Label' => False, - ), - True => array( - 'Id' => True, - 'Label' => True, - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashReturn.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FlashReturn.php deleted file mode 100644 index bc075a39a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashReturn.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashReturn extends AbstractTag -{ - - protected $Id = 'FlashReturn'; - - protected $Name = 'FlashReturn'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Flash Return'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No return detection', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Return not detected', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Return detected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashpixVersion.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FlashpixVersion.php deleted file mode 100644 index f83a867f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FlashpixVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashpixVersion extends AbstractTag -{ - - protected $Id = 'FlashpixVersion'; - - protected $Name = 'FlashpixVersion'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flashpix Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalLength.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FocalLength.php deleted file mode 100644 index 111917725..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalLength.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLength extends AbstractTag -{ - - protected $Id = 'FocalLength'; - - protected $Name = 'FocalLength'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Focal Length'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalLengthIn35mmFormat.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FocalLengthIn35mmFormat.php deleted file mode 100644 index dd76e87d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalLengthIn35mmFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalLengthIn35mmFormat extends AbstractTag -{ - - protected $Id = 'FocalLengthIn35mmFilm'; - - protected $Name = 'FocalLengthIn35mmFormat'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Focal Length In 35mm Format'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneResolutionUnit.php deleted file mode 100644 index dc4ed276f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneResolutionUnit.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneResolutionUnit extends AbstractTag -{ - - protected $Id = 'FocalPlaneResolutionUnit'; - - protected $Name = 'FocalPlaneResolutionUnit'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Focal Plane Resolution Unit'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'inches', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'cm', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'mm', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'um', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneXResolution.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneXResolution.php deleted file mode 100644 index 7078ebbaa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneXResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneXResolution extends AbstractTag -{ - - protected $Id = 'FocalPlaneXResolution'; - - protected $Name = 'FocalPlaneXResolution'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Focal Plane X Resolution'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneYResolution.php b/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneYResolution.php deleted file mode 100644 index f122a3a63..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/FocalPlaneYResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FocalPlaneYResolution extends AbstractTag -{ - - protected $Id = 'FocalPlaneYResolution'; - - protected $Name = 'FocalPlaneYResolution'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Focal Plane Y Resolution'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAltitude.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAltitude.php deleted file mode 100644 index 9cab5281b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAltitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitude extends AbstractTag -{ - - protected $Id = 'GPSAltitude'; - - protected $Name = 'GPSAltitude'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPS Altitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAltitudeRef.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAltitudeRef.php deleted file mode 100644 index f9164a9de..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAltitudeRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAltitudeRef extends AbstractTag -{ - - protected $Id = 'GPSAltitudeRef'; - - protected $Name = 'GPSAltitudeRef'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'GPS Altitude Ref'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Above Sea Level', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Below Sea Level', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAreaInformation.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAreaInformation.php deleted file mode 100644 index a13aceebf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSAreaInformation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSAreaInformation extends AbstractTag -{ - - protected $Id = 'GPSAreaInformation'; - - protected $Name = 'GPSAreaInformation'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Area Information'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDOP.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDOP.php deleted file mode 100644 index 7a2c22804..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDOP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDOP extends AbstractTag -{ - - protected $Id = 'GPSDOP'; - - protected $Name = 'GPSDOP'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPSDOP'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDateTime.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDateTime.php deleted file mode 100644 index 2410ce996..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDateTime extends AbstractTag -{ - - protected $Id = 'GPSTimeStamp'; - - protected $Name = 'GPSDateTime'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'GPS Date/Time'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestBearing.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestBearing.php deleted file mode 100644 index a349cd9a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestBearing.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestBearing extends AbstractTag -{ - - protected $Id = 'GPSDestBearing'; - - protected $Name = 'GPSDestBearing'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Bearing'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestBearingRef.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestBearingRef.php deleted file mode 100644 index e602c80fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestBearingRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestBearingRef extends AbstractTag -{ - - protected $Id = 'GPSDestBearingRef'; - - protected $Name = 'GPSDestBearingRef'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Bearing Ref'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 'M' => array( - 'Id' => 'M', - 'Label' => 'Magnetic North', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'True North', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestDistance.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestDistance.php deleted file mode 100644 index 9a3abc448..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestDistance extends AbstractTag -{ - - protected $Id = 'GPSDestDistance'; - - protected $Name = 'GPSDestDistance'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Distance'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestDistanceRef.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestDistanceRef.php deleted file mode 100644 index e33484feb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestDistanceRef.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestDistanceRef extends AbstractTag -{ - - protected $Id = 'GPSDestDistanceRef'; - - protected $Name = 'GPSDestDistanceRef'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Distance Ref'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 'K' => array( - 'Id' => 'K', - 'Label' => 'Kilometers', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'Miles', - ), - 'N' => array( - 'Id' => 'N', - 'Label' => 'Nautical Miles', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestLatitude.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestLatitude.php deleted file mode 100644 index 88667bc26..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestLatitude extends AbstractTag -{ - - protected $Id = 'GPSDestLatitude'; - - protected $Name = 'GPSDestLatitude'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestLongitude.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestLongitude.php deleted file mode 100644 index 5e8d9f48e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDestLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDestLongitude extends AbstractTag -{ - - protected $Id = 'GPSDestLongitude'; - - protected $Name = 'GPSDestLongitude'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Dest Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDifferential.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDifferential.php deleted file mode 100644 index ca00a436e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSDifferential.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSDifferential extends AbstractTag -{ - - protected $Id = 'GPSDifferential'; - - protected $Name = 'GPSDifferential'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'GPS Differential'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'No Correction', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Differential Corrected', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSHPositioningError.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSHPositioningError.php deleted file mode 100644 index db99a9452..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSHPositioningError.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSHPositioningError extends AbstractTag -{ - - protected $Id = 'GPSHPositioningError'; - - protected $Name = 'GPSHPositioningError'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPS Horizontal Positioning Error'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSImgDirection.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSImgDirection.php deleted file mode 100644 index 8505465ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSImgDirection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSImgDirection extends AbstractTag -{ - - protected $Id = 'GPSImgDirection'; - - protected $Name = 'GPSImgDirection'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPS Img Direction'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSImgDirectionRef.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSImgDirectionRef.php deleted file mode 100644 index 61f51aad2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSImgDirectionRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSImgDirectionRef extends AbstractTag -{ - - protected $Id = 'GPSImgDirectionRef'; - - protected $Name = 'GPSImgDirectionRef'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Img Direction Ref'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 'M' => array( - 'Id' => 'M', - 'Label' => 'Magnetic North', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'True North', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSLatitude.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSLatitude.php deleted file mode 100644 index b0d9251d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSLatitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLatitude extends AbstractTag -{ - - protected $Id = 'GPSLatitude'; - - protected $Name = 'GPSLatitude'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Latitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSLongitude.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSLongitude.php deleted file mode 100644 index fbe8e70c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSLongitude.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSLongitude extends AbstractTag -{ - - protected $Id = 'GPSLongitude'; - - protected $Name = 'GPSLongitude'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Longitude'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSMapDatum.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSMapDatum.php deleted file mode 100644 index 911aa85c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSMapDatum.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMapDatum extends AbstractTag -{ - - protected $Id = 'GPSMapDatum'; - - protected $Name = 'GPSMapDatum'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Map Datum'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSMeasureMode.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSMeasureMode.php deleted file mode 100644 index 0fffba3a8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSMeasureMode.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSMeasureMode extends AbstractTag -{ - - protected $Id = 'GPSMeasureMode'; - - protected $Name = 'GPSMeasureMode'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'GPS Measure Mode'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 2 => array( - 'Id' => 2, - 'Label' => '2-Dimensional', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3-Dimensional', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSProcessingMethod.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSProcessingMethod.php deleted file mode 100644 index 2ee4b148d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSProcessingMethod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSProcessingMethod extends AbstractTag -{ - - protected $Id = 'GPSProcessingMethod'; - - protected $Name = 'GPSProcessingMethod'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Processing Method'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSatellites.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSatellites.php deleted file mode 100644 index 8862c1c20..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSatellites.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSatellites extends AbstractTag -{ - - protected $Id = 'GPSSatellites'; - - protected $Name = 'GPSSatellites'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Satellites'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSpeed.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSpeed.php deleted file mode 100644 index f08ea19a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSpeed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSpeed extends AbstractTag -{ - - protected $Id = 'GPSSpeed'; - - protected $Name = 'GPSSpeed'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPS Speed'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSpeedRef.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSpeedRef.php deleted file mode 100644 index 9c7b10f3a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSSpeedRef.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSSpeedRef extends AbstractTag -{ - - protected $Id = 'GPSSpeedRef'; - - protected $Name = 'GPSSpeedRef'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Speed Ref'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 'K' => array( - 'Id' => 'K', - 'Label' => 'km/h', - ), - 'M' => array( - 'Id' => 'M', - 'Label' => 'mph', - ), - 'N' => array( - 'Id' => 'N', - 'Label' => 'knots', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSStatus.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSStatus.php deleted file mode 100644 index c8b09da7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSStatus.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSStatus extends AbstractTag -{ - - protected $Id = 'GPSStatus'; - - protected $Name = 'GPSStatus'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Status'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 'A' => array( - 'Id' => 'A', - 'Label' => 'Measurement Active', - ), - 'V' => array( - 'Id' => 'V', - 'Label' => 'Measurement Void', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSTrack.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSTrack.php deleted file mode 100644 index 17d3fa390..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSTrack.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSTrack extends AbstractTag -{ - - protected $Id = 'GPSTrack'; - - protected $Name = 'GPSTrack'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'GPS Track'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSTrackRef.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSTrackRef.php deleted file mode 100644 index f703027f8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSTrackRef.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSTrackRef extends AbstractTag -{ - - protected $Id = 'GPSTrackRef'; - - protected $Name = 'GPSTrackRef'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Track Ref'; - - protected $local_g2 = 'Location'; - - protected $Values = array( - 'M' => array( - 'Id' => 'M', - 'Label' => 'Magnetic North', - ), - 'T' => array( - 'Id' => 'T', - 'Label' => 'True North', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSVersionID.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GPSVersionID.php deleted file mode 100644 index 40f463457..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GPSVersionID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GPSVersionID extends AbstractTag -{ - - protected $Id = 'GPSVersionID'; - - protected $Name = 'GPSVersionID'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'GPS Version ID'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/GainControl.php b/lib/PHPExiftool/Driver/Tag/XMPExif/GainControl.php deleted file mode 100644 index 5d1ce0c56..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/GainControl.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class GainControl extends AbstractTag -{ - - protected $Id = 'GainControl'; - - protected $Name = 'GainControl'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Gain Control'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low gain up', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High gain up', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Low gain down', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'High gain down', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ISO.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ISO.php deleted file mode 100644 index a15e7a3e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ISO.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISO extends AbstractTag -{ - - protected $Id = 'ISOSpeedRatings'; - - protected $Name = 'ISO'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'ISO'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ImageUniqueID.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ImageUniqueID.php deleted file mode 100644 index e3a9b3616..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ImageUniqueID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageUniqueID extends AbstractTag -{ - - protected $Id = 'ImageUniqueID'; - - protected $Name = 'ImageUniqueID'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Unique ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/LightSource.php b/lib/PHPExiftool/Driver/Tag/XMPExif/LightSource.php deleted file mode 100644 index 9a760b87a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/LightSource.php +++ /dev/null @@ -1,136 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LightSource extends AbstractTag -{ - - protected $Id = 'LightSource'; - - protected $Name = 'LightSource'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Light Source'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Daylight', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Fluorescent', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Tungsten (Incandescent)', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Flash', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Fine Weather', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Cloudy', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'Shade', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'Daylight Fluorescent', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Day White Fluorescent', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'Cool White Fluorescent', - ), - 15 => array( - 'Id' => 15, - 'Label' => 'White Fluorescent', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Warm White Fluorescent', - ), - 17 => array( - 'Id' => 17, - 'Label' => 'Standard Light A', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'Standard Light B', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'Standard Light C', - ), - 20 => array( - 'Id' => 20, - 'Label' => 'D55', - ), - 21 => array( - 'Id' => 21, - 'Label' => 'D65', - ), - 22 => array( - 'Id' => 22, - 'Label' => 'D75', - ), - 23 => array( - 'Id' => 23, - 'Label' => 'D50', - ), - 24 => array( - 'Id' => 24, - 'Label' => 'ISO Studio Tungsten', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/MakerNote.php b/lib/PHPExiftool/Driver/Tag/XMPExif/MakerNote.php deleted file mode 100644 index f684b408a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/MakerNote.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MakerNote extends AbstractTag -{ - - protected $Id = 'MakerNote'; - - protected $Name = 'MakerNote'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Maker Note'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/MaxApertureValue.php b/lib/PHPExiftool/Driver/Tag/XMPExif/MaxApertureValue.php deleted file mode 100644 index 491eaa392..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/MaxApertureValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxApertureValue extends AbstractTag -{ - - protected $Id = 'MaxApertureValue'; - - protected $Name = 'MaxApertureValue'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Max Aperture Value'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/MeteringMode.php b/lib/PHPExiftool/Driver/Tag/XMPExif/MeteringMode.php deleted file mode 100644 index 57945132d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/MeteringMode.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MeteringMode extends AbstractTag -{ - - protected $Id = 'MeteringMode'; - - protected $Name = 'MeteringMode'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Metering Mode'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Average', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Center-weighted average', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Spot', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Multi-spot', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Multi-segment', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Partial', - ), - 255 => array( - 'Id' => 255, - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/NativeDigest.php b/lib/PHPExiftool/Driver/Tag/XMPExif/NativeDigest.php deleted file mode 100644 index ddbc40aed..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/NativeDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NativeDigest extends AbstractTag -{ - - protected $Id = 'NativeDigest'; - - protected $Name = 'NativeDigest'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Native Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFColumns.php b/lib/PHPExiftool/Driver/Tag/XMPExif/OECFColumns.php deleted file mode 100644 index 9aced77cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFColumns.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OECFColumns extends AbstractTag -{ - - protected $Id = 'OECFColumns'; - - protected $Name = 'OECFColumns'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'OECF Columns'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFNames.php b/lib/PHPExiftool/Driver/Tag/XMPExif/OECFNames.php deleted file mode 100644 index 519e098e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFNames.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OECFNames extends AbstractTag -{ - - protected $Id = 'OECFNames'; - - protected $Name = 'OECFNames'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'OECF Names'; - - protected $local_g2 = 'Camera'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFRows.php b/lib/PHPExiftool/Driver/Tag/XMPExif/OECFRows.php deleted file mode 100644 index eee91adca..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFRows.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OECFRows extends AbstractTag -{ - - protected $Id = 'OECFRows'; - - protected $Name = 'OECFRows'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'OECF Rows'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFValues.php b/lib/PHPExiftool/Driver/Tag/XMPExif/OECFValues.php deleted file mode 100644 index a04fa1ba7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/OECFValues.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OECFValues extends AbstractTag -{ - - protected $Id = 'OECFValues'; - - protected $Name = 'OECFValues'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'OECF Values'; - - protected $local_g2 = 'Camera'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/OptoElectricConvFactor.php b/lib/PHPExiftool/Driver/Tag/XMPExif/OptoElectricConvFactor.php deleted file mode 100644 index 482fc7e16..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/OptoElectricConvFactor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptoElectricConvFactor extends AbstractTag -{ - - protected $Id = 'OECF'; - - protected $Name = 'Opto-ElectricConvFactor'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Opto-Electric Conv Factor'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/RelatedSoundFile.php b/lib/PHPExiftool/Driver/Tag/XMPExif/RelatedSoundFile.php deleted file mode 100644 index fb93fbe32..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/RelatedSoundFile.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelatedSoundFile extends AbstractTag -{ - - protected $Id = 'RelatedSoundFile'; - - protected $Name = 'RelatedSoundFile'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Related Sound File'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/Saturation.php b/lib/PHPExiftool/Driver/Tag/XMPExif/Saturation.php deleted file mode 100644 index 1baf0381d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/Saturation.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Saturation extends AbstractTag -{ - - protected $Id = 'Saturation'; - - protected $Name = 'Saturation'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Saturation'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Low', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'High', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SceneCaptureType.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SceneCaptureType.php deleted file mode 100644 index c21db4676..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SceneCaptureType.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneCaptureType extends AbstractTag -{ - - protected $Id = 'SceneCaptureType'; - - protected $Name = 'SceneCaptureType'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Scene Capture Type'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Standard', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Landscape', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Portrait', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Night', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SceneType.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SceneType.php deleted file mode 100644 index d91c54419..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SceneType.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SceneType extends AbstractTag -{ - - protected $Id = 'SceneType'; - - protected $Name = 'SceneType'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Scene Type'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Directly photographed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SensingMethod.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SensingMethod.php deleted file mode 100644 index 061727a97..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SensingMethod.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensingMethod extends AbstractTag -{ - - protected $Id = 'SensingMethod'; - - protected $Name = 'SensingMethod'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Sensing Method'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Monochrome area', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'One-chip color area', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Two-chip color area', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Three-chip color area', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Color sequential area', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Monochrome linear', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Trilinear', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Color sequential linear', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/Sharpness.php b/lib/PHPExiftool/Driver/Tag/XMPExif/Sharpness.php deleted file mode 100644 index 8c842294f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/Sharpness.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Sharpness extends AbstractTag -{ - - protected $Id = 'Sharpness'; - - protected $Name = 'Sharpness'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Sharpness'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Normal', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Soft', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Hard', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/ShutterSpeedValue.php b/lib/PHPExiftool/Driver/Tag/XMPExif/ShutterSpeedValue.php deleted file mode 100644 index ffa4ed7b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/ShutterSpeedValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShutterSpeedValue extends AbstractTag -{ - - protected $Id = 'ShutterSpeedValue'; - - protected $Name = 'ShutterSpeedValue'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Shutter Speed Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponse.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponse.php deleted file mode 100644 index 88d173a29..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponse.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialFrequencyResponse extends AbstractTag -{ - - protected $Id = 'SpatialFrequencyResponse'; - - protected $Name = 'SpatialFrequencyResponse'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Spatial Frequency Response'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseColumns.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseColumns.php deleted file mode 100644 index 72b4faac1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseColumns.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialFrequencyResponseColumns extends AbstractTag -{ - - protected $Id = 'SpatialFrequencyResponseColumns'; - - protected $Name = 'SpatialFrequencyResponseColumns'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Spatial Frequency Response Columns'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseNames.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseNames.php deleted file mode 100644 index 3461233ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseNames.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialFrequencyResponseNames extends AbstractTag -{ - - protected $Id = 'SpatialFrequencyResponseNames'; - - protected $Name = 'SpatialFrequencyResponseNames'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Spatial Frequency Response Names'; - - protected $local_g2 = 'Camera'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseRows.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseRows.php deleted file mode 100644 index 4f9bc1f88..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseRows.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialFrequencyResponseRows extends AbstractTag -{ - - protected $Id = 'SpatialFrequencyResponseRows'; - - protected $Name = 'SpatialFrequencyResponseRows'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Spatial Frequency Response Rows'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseValues.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseValues.php deleted file mode 100644 index 863df450f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SpatialFrequencyResponseValues.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpatialFrequencyResponseValues extends AbstractTag -{ - - protected $Id = 'SpatialFrequencyResponseValues'; - - protected $Name = 'SpatialFrequencyResponseValues'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Spatial Frequency Response Values'; - - protected $local_g2 = 'Camera'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SpectralSensitivity.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SpectralSensitivity.php deleted file mode 100644 index dd52662fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SpectralSensitivity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpectralSensitivity extends AbstractTag -{ - - protected $Id = 'SpectralSensitivity'; - - protected $Name = 'SpectralSensitivity'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Spectral Sensitivity'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectArea.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectArea.php deleted file mode 100644 index 5e444932f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectArea.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectArea extends AbstractTag -{ - - protected $Id = 'SubjectArea'; - - protected $Name = 'SubjectArea'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Subject Area'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectDistance.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectDistance.php deleted file mode 100644 index 30efe56ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectDistance.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistance extends AbstractTag -{ - - protected $Id = 'SubjectDistance'; - - protected $Name = 'SubjectDistance'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Subject Distance'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectDistanceRange.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectDistanceRange.php deleted file mode 100644 index d99397c0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectDistanceRange.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectDistanceRange extends AbstractTag -{ - - protected $Id = 'SubjectDistanceRange'; - - protected $Name = 'SubjectDistanceRange'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Subject Distance Range'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Macro', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Close', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Distant', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectLocation.php b/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectLocation.php deleted file mode 100644 index 4cb985e04..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/SubjectLocation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectLocation extends AbstractTag -{ - - protected $Id = 'SubjectLocation'; - - protected $Name = 'SubjectLocation'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Subject Location'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/UserComment.php b/lib/PHPExiftool/Driver/Tag/XMPExif/UserComment.php deleted file mode 100644 index 50845059f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/UserComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserComment extends AbstractTag -{ - - protected $Id = 'UserComment'; - - protected $Name = 'UserComment'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'User Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExif/WhiteBalance.php b/lib/PHPExiftool/Driver/Tag/XMPExif/WhiteBalance.php deleted file mode 100644 index 424909362..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExif/WhiteBalance.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExif; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhiteBalance extends AbstractTag -{ - - protected $Id = 'WhiteBalance'; - - protected $Name = 'WhiteBalance'; - - protected $FullName = 'XMP::exif'; - - protected $GroupName = 'XMP-exif'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exif'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'White Balance'; - - protected $local_g2 = 'Camera'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Auto', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Manual', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/Gamma.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/Gamma.php deleted file mode 100644 index 38bdb589b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/Gamma.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Gamma extends AbstractTag -{ - - protected $Id = 'Gamma'; - - protected $Name = 'Gamma'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Gamma'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeed.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeed.php deleted file mode 100644 index 1ccc7bac6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeed extends AbstractTag -{ - - protected $Id = 'ISOSpeed'; - - protected $Name = 'ISOSpeed'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'ISO Speed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeedLatitudeyyy.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeedLatitudeyyy.php deleted file mode 100644 index 72f13ee78..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeedLatitudeyyy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeedLatitudeyyy extends AbstractTag -{ - - protected $Id = 'ISOSpeedLatitudeyyy'; - - protected $Name = 'ISOSpeedLatitudeyyy'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'ISO Speed Latitude yyy'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeedLatitudezzz.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeedLatitudezzz.php deleted file mode 100644 index da0edd394..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/ISOSpeedLatitudezzz.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISOSpeedLatitudezzz extends AbstractTag -{ - - protected $Id = 'ISOSpeedLatitudezzz'; - - protected $Name = 'ISOSpeedLatitudezzz'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'ISO Speed Latitude zzz'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/InteropIndex.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/InteropIndex.php deleted file mode 100644 index f91bd082d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/InteropIndex.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InteropIndex extends AbstractTag -{ - - protected $Id = 'InteroperabilityIndex'; - - protected $Name = 'InteropIndex'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Interoperability Index'; - - protected $Values = array( - 'R03' => array( - 'Id' => 'R03', - 'Label' => 'R03 - DCF option file (Adobe RGB)', - ), - 'R98' => array( - 'Id' => 'R98', - 'Label' => 'R98 - DCF basic file (sRGB)', - ), - 'THM' => array( - 'Id' => 'THM', - 'Label' => 'THM - DCF thumbnail file', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensInfo.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensInfo.php deleted file mode 100644 index a87d1ce7a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensInfo extends AbstractTag -{ - - protected $Id = 'LensSpecification'; - - protected $Name = 'LensInfo'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Lens Info'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensMake.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensMake.php deleted file mode 100644 index 013e9ce6c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensMake.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensMake extends AbstractTag -{ - - protected $Id = 'LensMake'; - - protected $Name = 'LensMake'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Make'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensModel.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensModel.php deleted file mode 100644 index 9417af199..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 'LensModel'; - - protected $Name = 'LensModel'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensSerialNumber.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensSerialNumber.php deleted file mode 100644 index 5a13ff62e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/LensSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensSerialNumber extends AbstractTag -{ - - protected $Id = 'LensSerialNumber'; - - protected $Name = 'LensSerialNumber'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/OwnerName.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/OwnerName.php deleted file mode 100644 index c9d3399fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/OwnerName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OwnerName extends AbstractTag -{ - - protected $Id = 'CameraOwnerName'; - - protected $Name = 'OwnerName'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/PhotographicSensitivity.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/PhotographicSensitivity.php deleted file mode 100644 index e0b61b1dd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/PhotographicSensitivity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotographicSensitivity extends AbstractTag -{ - - protected $Id = 'PhotographicSensitivity'; - - protected $Name = 'PhotographicSensitivity'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Photographic Sensitivity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/RecommendedExposureIndex.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/RecommendedExposureIndex.php deleted file mode 100644 index b9466eb24..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/RecommendedExposureIndex.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RecommendedExposureIndex extends AbstractTag -{ - - protected $Id = 'RecommendedExposureIndex'; - - protected $Name = 'RecommendedExposureIndex'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Recommended Exposure Index'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/SensitivityType.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/SensitivityType.php deleted file mode 100644 index 6a1a5e0cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/SensitivityType.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SensitivityType extends AbstractTag -{ - - protected $Id = 'SensitivityType'; - - protected $Name = 'SensitivityType'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Sensitivity Type'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Unknown', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Standard Output Sensitivity', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Recommended Exposure Index', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'ISO Speed', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Standard Output Sensitivity and Recommended Exposure Index', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Standard Output Sensitivity and ISO Speed', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Recommended Exposure Index and ISO Speed', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Standard Output Sensitivity, Recommended Exposure Index and ISO Speed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/SerialNumber.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/SerialNumber.php deleted file mode 100644 index eba5d2aa1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/SerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SerialNumber extends AbstractTag -{ - - protected $Id = 'BodySerialNumber'; - - protected $Name = 'SerialNumber'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExifEX/StandardOutputSensitivity.php b/lib/PHPExiftool/Driver/Tag/XMPExifEX/StandardOutputSensitivity.php deleted file mode 100644 index 737bdebad..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExifEX/StandardOutputSensitivity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExifEX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StandardOutputSensitivity extends AbstractTag -{ - - protected $Id = 'StandardOutputSensitivity'; - - protected $Name = 'StandardOutputSensitivity'; - - protected $FullName = 'XMP::exifEX'; - - protected $GroupName = 'XMP-exifEX'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-exifEX'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Standard Output Sensitivity'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/CatalogSets.php b/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/CatalogSets.php deleted file mode 100644 index a71d615bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/CatalogSets.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExpressionmedia; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CatalogSets extends AbstractTag -{ - - protected $Id = 'CatalogSets'; - - protected $Name = 'CatalogSets'; - - protected $FullName = 'XMP::ExpressionMedia'; - - protected $GroupName = 'XMP-expressionmedia'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-expressionmedia'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Catalog Sets'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/Event.php b/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/Event.php deleted file mode 100644 index 6c7085430..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/Event.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExpressionmedia; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Event extends AbstractTag -{ - - protected $Id = 'Event'; - - protected $Name = 'Event'; - - protected $FullName = 'XMP::ExpressionMedia'; - - protected $GroupName = 'XMP-expressionmedia'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-expressionmedia'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/People.php b/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/People.php deleted file mode 100644 index 86228d63f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/People.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExpressionmedia; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class People extends AbstractTag -{ - - protected $Id = 'People'; - - protected $Name = 'People'; - - protected $FullName = 'XMP::ExpressionMedia'; - - protected $GroupName = 'XMP-expressionmedia'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-expressionmedia'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'People'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/Status.php b/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/Status.php deleted file mode 100644 index 834fb9ee3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExpressionmedia/Status.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExpressionmedia; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Status extends AbstractTag -{ - - protected $Id = 'Status'; - - protected $Name = 'Status'; - - protected $FullName = 'XMP::ExpressionMedia'; - - protected $GroupName = 'XMP-expressionmedia'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-expressionmedia'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Status'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/Approved.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/Approved.php deleted file mode 100644 index 2e7c60c18..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/Approved.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Approved extends AbstractTag -{ - - protected $Id = 'Approved'; - - protected $Name = 'Approved'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Approved'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/ApprovedBy.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/ApprovedBy.php deleted file mode 100644 index 90e334f77..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/ApprovedBy.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ApprovedBy extends AbstractTag -{ - - protected $Id = 'ApprovedBy'; - - protected $Name = 'ApprovedBy'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Approved By'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/ClientName.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/ClientName.php deleted file mode 100644 index fe0ea652b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/ClientName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ClientName extends AbstractTag -{ - - protected $Id = 'ClientName'; - - protected $Name = 'ClientName'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Client Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/JobName.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/JobName.php deleted file mode 100644 index 271df73fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/JobName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobName extends AbstractTag -{ - - protected $Id = 'JobName'; - - protected $Name = 'JobName'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Job Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/JobStatus.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/JobStatus.php deleted file mode 100644 index dca7f6c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/JobStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobStatus extends AbstractTag -{ - - protected $Id = 'JobStatus'; - - protected $Name = 'JobStatus'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Job Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/RoutedTo.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/RoutedTo.php deleted file mode 100644 index 7001a995b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/RoutedTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoutedTo extends AbstractTag -{ - - protected $Id = 'RoutedTo'; - - protected $Name = 'RoutedTo'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Routed To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/RoutingNotes.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/RoutingNotes.php deleted file mode 100644 index 4d9a1bfd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/RoutingNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RoutingNotes extends AbstractTag -{ - - protected $Id = 'RoutingNotes'; - - protected $Name = 'RoutingNotes'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Routing Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPExtensis/WorkToDo.php b/lib/PHPExiftool/Driver/Tag/XMPExtensis/WorkToDo.php deleted file mode 100644 index a1c9d0c51..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPExtensis/WorkToDo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPExtensis; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WorkToDo extends AbstractTag -{ - - protected $Id = 'WorkToDo'; - - protected $Name = 'WorkToDo'; - - protected $FullName = 'XMP::extensis'; - - protected $GroupName = 'XMP-extensis'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-extensis'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Work To Do'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPFpv/RichTextComment.php b/lib/PHPExiftool/Driver/Tag/XMPFpv/RichTextComment.php deleted file mode 100644 index 1524753fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPFpv/RichTextComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPFpv; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RichTextComment extends AbstractTag -{ - - protected $Id = 'RichTextComment'; - - protected $Name = 'RichTextComment'; - - protected $FullName = 'XMP::fpv'; - - protected $GroupName = 'XMP-fpv'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-fpv'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rich Text Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/CaptureSoftware.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/CaptureSoftware.php deleted file mode 100644 index 5b410e16d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/CaptureSoftware.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptureSoftware extends AbstractTag -{ - - protected $Id = 'CaptureSoftware'; - - protected $Name = 'CaptureSoftware'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Capture Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaImageHeightPixels.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaImageHeightPixels.php deleted file mode 100644 index 4f28a676e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaImageHeightPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedAreaImageHeightPixels extends AbstractTag -{ - - protected $Id = 'CroppedAreaImageHeightPixels'; - - protected $Name = 'CroppedAreaImageHeightPixels'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Cropped Area Image Height Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaImageWidthPixels.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaImageWidthPixels.php deleted file mode 100644 index cf2ca5a8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaImageWidthPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedAreaImageWidthPixels extends AbstractTag -{ - - protected $Id = 'CroppedAreaImageWidthPixels'; - - protected $Name = 'CroppedAreaImageWidthPixels'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Cropped Area Image Width Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaLeftPixels.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaLeftPixels.php deleted file mode 100644 index 05f483242..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaLeftPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedAreaLeftPixels extends AbstractTag -{ - - protected $Id = 'CroppedAreaLeftPixels'; - - protected $Name = 'CroppedAreaLeftPixels'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Cropped Area Left Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaTopPixels.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaTopPixels.php deleted file mode 100644 index 2d71a61ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/CroppedAreaTopPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CroppedAreaTopPixels extends AbstractTag -{ - - protected $Id = 'CroppedAreaTopPixels'; - - protected $Name = 'CroppedAreaTopPixels'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Cropped Area Top Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/ExposureLockUsed.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/ExposureLockUsed.php deleted file mode 100644 index 3b0bd7528..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/ExposureLockUsed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExposureLockUsed extends AbstractTag -{ - - protected $Id = 'ExposureLockUsed'; - - protected $Name = 'ExposureLockUsed'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Exposure Lock Used'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/FirstPhotoDate.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/FirstPhotoDate.php deleted file mode 100644 index 2aeabbd53..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/FirstPhotoDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstPhotoDate extends AbstractTag -{ - - protected $Id = 'FirstPhotoDate'; - - protected $Name = 'FirstPhotoDate'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'First Photo Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/FullPanoHeightPixels.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/FullPanoHeightPixels.php deleted file mode 100644 index 05384b8e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/FullPanoHeightPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullPanoHeightPixels extends AbstractTag -{ - - protected $Id = 'FullPanoHeightPixels'; - - protected $Name = 'FullPanoHeightPixels'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Full Pano Height Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/FullPanoWidthPixels.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/FullPanoWidthPixels.php deleted file mode 100644 index 25ba94012..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/FullPanoWidthPixels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FullPanoWidthPixels extends AbstractTag -{ - - protected $Id = 'FullPanoWidthPixels'; - - protected $Name = 'FullPanoWidthPixels'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Full Pano Width Pixels'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialHorizontalFOVDegrees.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialHorizontalFOVDegrees.php deleted file mode 100644 index 97b32bc70..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialHorizontalFOVDegrees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialHorizontalFOVDegrees extends AbstractTag -{ - - protected $Id = 'InitialHorizontalFOVDegrees'; - - protected $Name = 'InitialHorizontalFOVDegrees'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Initial Horizontal FOV Degrees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewHeadingDegrees.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewHeadingDegrees.php deleted file mode 100644 index b9c7740d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewHeadingDegrees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialViewHeadingDegrees extends AbstractTag -{ - - protected $Id = 'InitialViewHeadingDegrees'; - - protected $Name = 'InitialViewHeadingDegrees'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Initial View Heading Degrees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewPitchDegrees.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewPitchDegrees.php deleted file mode 100644 index e557c6ebc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewPitchDegrees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialViewPitchDegrees extends AbstractTag -{ - - protected $Id = 'InitialViewPitchDegrees'; - - protected $Name = 'InitialViewPitchDegrees'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Initial View Pitch Degrees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewRollDegrees.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewRollDegrees.php deleted file mode 100644 index 470b94720..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/InitialViewRollDegrees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InitialViewRollDegrees extends AbstractTag -{ - - protected $Id = 'InitialViewRollDegrees'; - - protected $Name = 'InitialViewRollDegrees'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Initial View Roll Degrees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectHeight.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectHeight.php deleted file mode 100644 index bef7bb39f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestValidInteriorRectHeight extends AbstractTag -{ - - protected $Id = 'LargestValidInteriorRectHeight'; - - protected $Name = 'LargestValidInteriorRectHeight'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Largest Valid Interior Rect Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectLeft.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectLeft.php deleted file mode 100644 index 0c523e6bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectLeft.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestValidInteriorRectLeft extends AbstractTag -{ - - protected $Id = 'LargestValidInteriorRectLeft'; - - protected $Name = 'LargestValidInteriorRectLeft'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Largest Valid Interior Rect Left'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectTop.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectTop.php deleted file mode 100644 index 258f6b737..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectTop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestValidInteriorRectTop extends AbstractTag -{ - - protected $Id = 'LargestValidInteriorRectTop'; - - protected $Name = 'LargestValidInteriorRectTop'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Largest Valid Interior Rect Top'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectWidth.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectWidth.php deleted file mode 100644 index 42806571b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/LargestValidInteriorRectWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LargestValidInteriorRectWidth extends AbstractTag -{ - - protected $Id = 'LargestValidInteriorRectWidth'; - - protected $Name = 'LargestValidInteriorRectWidth'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Largest Valid Interior Rect Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/LastPhotoDate.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/LastPhotoDate.php deleted file mode 100644 index 674d7747f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/LastPhotoDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastPhotoDate extends AbstractTag -{ - - protected $Id = 'LastPhotoDate'; - - protected $Name = 'LastPhotoDate'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Last Photo Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/PoseHeadingDegrees.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/PoseHeadingDegrees.php deleted file mode 100644 index e9a360093..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/PoseHeadingDegrees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PoseHeadingDegrees extends AbstractTag -{ - - protected $Id = 'PoseHeadingDegrees'; - - protected $Name = 'PoseHeadingDegrees'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Pose Heading Degrees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/PosePitchDegrees.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/PosePitchDegrees.php deleted file mode 100644 index f7eb1376c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/PosePitchDegrees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PosePitchDegrees extends AbstractTag -{ - - protected $Id = 'PosePitchDegrees'; - - protected $Name = 'PosePitchDegrees'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Pose Pitch Degrees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/PoseRollDegrees.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/PoseRollDegrees.php deleted file mode 100644 index 9d4a4df8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/PoseRollDegrees.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PoseRollDegrees extends AbstractTag -{ - - protected $Id = 'PoseRollDegrees'; - - protected $Name = 'PoseRollDegrees'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Pose Roll Degrees'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/ProjectionType.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/ProjectionType.php deleted file mode 100644 index 2eaaf7017..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/ProjectionType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectionType extends AbstractTag -{ - - protected $Id = 'ProjectionType'; - - protected $Name = 'ProjectionType'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Projection Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/SourcePhotosCount.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/SourcePhotosCount.php deleted file mode 100644 index 87d0f649e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/SourcePhotosCount.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SourcePhotosCount extends AbstractTag -{ - - protected $Id = 'SourcePhotosCount'; - - protected $Name = 'SourcePhotosCount'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Source Photos Count'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/StitchingSoftware.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/StitchingSoftware.php deleted file mode 100644 index 56482bce6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/StitchingSoftware.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StitchingSoftware extends AbstractTag -{ - - protected $Id = 'StitchingSoftware'; - - protected $Name = 'StitchingSoftware'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Stitching Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGPano/UsePanoramaViewer.php b/lib/PHPExiftool/Driver/Tag/XMPGPano/UsePanoramaViewer.php deleted file mode 100644 index b73dab20c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGPano/UsePanoramaViewer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGPano; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsePanoramaViewer extends AbstractTag -{ - - protected $Id = 'UsePanoramaViewer'; - - protected $Name = 'UsePanoramaViewer'; - - protected $FullName = 'XMP::GPano'; - - protected $GroupName = 'XMP-GPano'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-GPano'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Use Panorama Viewer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGetty/OriginalFilename.php b/lib/PHPExiftool/Driver/Tag/XMPGetty/OriginalFilename.php deleted file mode 100644 index 9b2af2ebe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGetty/OriginalFilename.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGetty; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalFilename extends AbstractTag -{ - - protected $Id = 'OriginalFilename'; - - protected $Name = 'OriginalFilename'; - - protected $FullName = 'XMP::GettyImages'; - - protected $GroupName = 'XMP-getty'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-getty'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original Filename'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGetty/ParentMEID.php b/lib/PHPExiftool/Driver/Tag/XMPGetty/ParentMEID.php deleted file mode 100644 index 2e251c1f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGetty/ParentMEID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGetty; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentMEID extends AbstractTag -{ - - protected $Id = 'ParentMEID'; - - protected $Name = 'ParentMEID'; - - protected $FullName = 'XMP::GettyImages'; - - protected $GroupName = 'XMP-getty'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-getty'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Parent MEID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPGetty/Personality.php b/lib/PHPExiftool/Driver/Tag/XMPGetty/Personality.php deleted file mode 100644 index 499757165..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPGetty/Personality.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPGetty; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Personality extends AbstractTag -{ - - protected $Id = 'Personality'; - - protected $Name = 'Personality'; - - protected $FullName = 'XMP::GettyImages'; - - protected $GroupName = 'XMP-getty'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-getty'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Personality'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/ImageRef.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/ImageRef.php deleted file mode 100644 index a6a53ca6f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/ImageRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageRef extends AbstractTag -{ - - protected $Id = 'ImageRef'; - - protected $Name = 'ImageRef'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName1.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName1.php deleted file mode 100644 index 56889c935..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelName1 extends AbstractTag -{ - - protected $Id = 'TagStructureLabelName'; - - protected $Name = 'LabelName1'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label Name 1'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName2.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName2.php deleted file mode 100644 index c8525cf16..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelName2 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsLabelName'; - - protected $Name = 'LabelName2'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label Name 2'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName3.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName3.php deleted file mode 100644 index 983748576..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelName3 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsLabelName'; - - protected $Name = 'LabelName3'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label Name 3'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName4.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName4.php deleted file mode 100644 index abb07992c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelName4 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsLabelName'; - - protected $Name = 'LabelName4'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label Name 4'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName5.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName5.php deleted file mode 100644 index bbd8607e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelName5 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'; - - protected $Name = 'LabelName5'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label Name 5'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName6.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName6.php deleted file mode 100644 index 1e9d6797c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/LabelName6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LabelName6 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'; - - protected $Name = 'LabelName6'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label Name 6'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference1.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference1.php deleted file mode 100644 index 2d4da4cbd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentReference1 extends AbstractTag -{ - - protected $Id = 'TagStructureParentReference'; - - protected $Name = 'ParentReference1'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Parent Reference 1'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference2.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference2.php deleted file mode 100644 index 8edd70420..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentReference2 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsParentReference'; - - protected $Name = 'ParentReference2'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Parent Reference 2'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference3.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference3.php deleted file mode 100644 index d76a15446..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentReference3 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsParentReference'; - - protected $Name = 'ParentReference3'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Parent Reference 3'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference4.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference4.php deleted file mode 100644 index 2f7133e20..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentReference4 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsParentReference'; - - protected $Name = 'ParentReference4'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Parent Reference 4'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference5.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference5.php deleted file mode 100644 index 4485c3541..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentReference5 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'; - - protected $Name = 'ParentReference5'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Parent Reference 5'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference6.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference6.php deleted file mode 100644 index 6396f925d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/ParentReference6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ParentReference6 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'; - - protected $Name = 'ParentReference6'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Parent Reference 6'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference1.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference1.php deleted file mode 100644 index 6c30eade3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference1 extends AbstractTag -{ - - protected $Id = 'TagStructureReference'; - - protected $Name = 'Reference1'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reference 1'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference2.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference2.php deleted file mode 100644 index f379b34bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference2 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsReference'; - - protected $Name = 'Reference2'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reference 2'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference3.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference3.php deleted file mode 100644 index 67f11c5c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference3 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsReference'; - - protected $Name = 'Reference3'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reference 3'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference4.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference4.php deleted file mode 100644 index 929fa25d5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference4 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsReference'; - - protected $Name = 'Reference4'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reference 4'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference5.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference5.php deleted file mode 100644 index 2997f7c5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference5 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'; - - protected $Name = 'Reference5'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reference 5'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference6.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference6.php deleted file mode 100644 index a7f4bf76c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/Reference6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reference6 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'; - - protected $Name = 'Reference6'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reference 6'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLabels4.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLabels4.php deleted file mode 100644 index 68e48331d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLabels4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubLabels4 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabels'; - - protected $Name = 'SubLabels4'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Sub Labels 4'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLabels5.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLabels5.php deleted file mode 100644 index d7365707e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLabels5.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubLabels5 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'; - - protected $Name = 'SubLabels5'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Sub Labels 5'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables1.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables1.php deleted file mode 100644 index 254d4b1c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubLables1 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabels'; - - protected $Name = 'SubLables1'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Sub Lables 1'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables2.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables2.php deleted file mode 100644 index 2b22d51c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubLables2 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabels'; - - protected $Name = 'SubLables2'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Sub Lables 2'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables3.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables3.php deleted file mode 100644 index 4cfd855d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubLables3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubLables3 extends AbstractTag -{ - - protected $Id = 'TagStructureSubLabelsSubLabelsSubLabels'; - - protected $Name = 'SubLables3'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Sub Lables 3'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersionFileName.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersionFileName.php deleted file mode 100644 index a89c036cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersionFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubVersionFileName extends AbstractTag -{ - - protected $Id = 'SubVersionsFileName'; - - protected $Name = 'SubVersionFileName'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sub Version File Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersionReference.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersionReference.php deleted file mode 100644 index 80ad98a8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersionReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubVersionReference extends AbstractTag -{ - - protected $Id = 'SubVersionsVersRef'; - - protected $Name = 'SubVersionReference'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sub Version Reference'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersions.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersions.php deleted file mode 100644 index 336dc7d93..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/SubVersions.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubVersions extends AbstractTag -{ - - protected $Id = 'SubVersions'; - - protected $Name = 'SubVersions'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Sub Versions'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIcs/TagStructure.php b/lib/PHPExiftool/Driver/Tag/XMPIcs/TagStructure.php deleted file mode 100644 index 691b7ce00..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIcs/TagStructure.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIcs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TagStructure extends AbstractTag -{ - - protected $Id = 'TagStructure'; - - protected $Name = 'TagStructure'; - - protected $FullName = 'XMP::ics'; - - protected $GroupName = 'XMP-ics'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-ics'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Tag Structure'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CountryCode.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CountryCode.php deleted file mode 100644 index ed15c9b28..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CountryCode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryCode extends AbstractTag -{ - - protected $Id = 'CountryCode'; - - protected $Name = 'CountryCode'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Country Code'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorAddress.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorAddress.php deleted file mode 100644 index c52382fed..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorAddress.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorAddress extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiAdrExtadr'; - - protected $Name = 'CreatorAddress'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Address'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorCity.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorCity.php deleted file mode 100644 index 7dae5610f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorCity.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorCity extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiAdrCity'; - - protected $Name = 'CreatorCity'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator City'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorContactInfo.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorContactInfo.php deleted file mode 100644 index 3b9371297..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorContactInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorContactInfo extends AbstractTag -{ - - protected $Id = 'CreatorContactInfo'; - - protected $Name = 'CreatorContactInfo'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Creator Contact Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorCountry.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorCountry.php deleted file mode 100644 index 91147ecbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorCountry.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorCountry extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiAdrCtry'; - - protected $Name = 'CreatorCountry'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Country'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorPostalCode.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorPostalCode.php deleted file mode 100644 index 041fe1acb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorPostalCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorPostalCode extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiAdrPcode'; - - protected $Name = 'CreatorPostalCode'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Postal Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorRegion.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorRegion.php deleted file mode 100644 index 9ef450341..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorRegion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorRegion extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiAdrRegion'; - - protected $Name = 'CreatorRegion'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Region'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkEmail.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkEmail.php deleted file mode 100644 index bb0a6d335..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkEmail.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorWorkEmail extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiEmailWork'; - - protected $Name = 'CreatorWorkEmail'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Work Email'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkTelephone.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkTelephone.php deleted file mode 100644 index 2cc71b97c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkTelephone.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorWorkTelephone extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiTelWork'; - - protected $Name = 'CreatorWorkTelephone'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Work Telephone'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkURL.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkURL.php deleted file mode 100644 index d43aaeef8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/CreatorWorkURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorWorkURL extends AbstractTag -{ - - protected $Id = 'CreatorContactInfoCiUrlWork'; - - protected $Name = 'CreatorWorkURL'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Work URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/IntellectualGenre.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/IntellectualGenre.php deleted file mode 100644 index f8ec39848..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/IntellectualGenre.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntellectualGenre extends AbstractTag -{ - - protected $Id = 'IntellectualGenre'; - - protected $Name = 'IntellectualGenre'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Intellectual Genre'; - - protected $local_g2 = 'Other'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/Location.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/Location.php deleted file mode 100644 index 55f8ccf80..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/Location.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 'Location'; - - protected $Name = 'Location'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/Scene.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/Scene.php deleted file mode 100644 index 64cb741ed..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/Scene.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Scene extends AbstractTag -{ - - protected $Id = 'Scene'; - - protected $Name = 'Scene'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Scene'; - - protected $local_g2 = 'Other'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/SubjectCode.php b/lib/PHPExiftool/Driver/Tag/XMPIptcCore/SubjectCode.php deleted file mode 100644 index 29437551c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcCore/SubjectCode.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcCore; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SubjectCode extends AbstractTag -{ - - protected $Id = 'SubjectCode'; - - protected $Name = 'SubjectCode'; - - protected $FullName = 'XMP::iptcCore'; - - protected $GroupName = 'XMP-iptcCore'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcCore'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subject Code'; - - protected $local_g2 = 'Other'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/AdditionalModelInformation.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/AdditionalModelInformation.php deleted file mode 100644 index 4fff4d740..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/AdditionalModelInformation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdditionalModelInformation extends AbstractTag -{ - - protected $Id = 'AddlModelInfo'; - - protected $Name = 'AdditionalModelInformation'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Additional Model Information'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkCopyrightNotice.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkCopyrightNotice.php deleted file mode 100644 index 53ecf0702..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkCopyrightNotice.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtworkCopyrightNotice extends AbstractTag -{ - - protected $Id = 'ArtworkOrObjectAOCopyrightNotice'; - - protected $Name = 'ArtworkCopyrightNotice'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artwork Copyright Notice'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkCreator.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkCreator.php deleted file mode 100644 index 37a6511fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkCreator.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtworkCreator extends AbstractTag -{ - - protected $Id = 'ArtworkOrObjectAOCreator'; - - protected $Name = 'ArtworkCreator'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artwork Creator'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkDateCreated.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkDateCreated.php deleted file mode 100644 index 421156069..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkDateCreated.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtworkDateCreated extends AbstractTag -{ - - protected $Id = 'ArtworkOrObjectAODateCreated'; - - protected $Name = 'ArtworkDateCreated'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Artwork Date Created'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkOrObject.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkOrObject.php deleted file mode 100644 index d9016a8fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkOrObject.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtworkOrObject extends AbstractTag -{ - - protected $Id = 'ArtworkOrObject'; - - protected $Name = 'ArtworkOrObject'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Artwork Or Object'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkSource.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkSource.php deleted file mode 100644 index baab2f5cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkSource.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtworkSource extends AbstractTag -{ - - protected $Id = 'ArtworkOrObjectAOSource'; - - protected $Name = 'ArtworkSource'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artwork Source'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkSourceInventoryNo.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkSourceInventoryNo.php deleted file mode 100644 index 6beaa7ce7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkSourceInventoryNo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtworkSourceInventoryNo extends AbstractTag -{ - - protected $Id = 'ArtworkOrObjectAOSourceInvNo'; - - protected $Name = 'ArtworkSourceInventoryNo'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artwork Source Inventory No'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkTitle.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkTitle.php deleted file mode 100644 index d65653ffb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ArtworkTitle.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArtworkTitle extends AbstractTag -{ - - protected $Id = 'ArtworkOrObjectAOTitle'; - - protected $Name = 'ArtworkTitle'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Artwork Title'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ControlledVocabularyTerm.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ControlledVocabularyTerm.php deleted file mode 100644 index 8c336e5f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ControlledVocabularyTerm.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ControlledVocabularyTerm extends AbstractTag -{ - - protected $Id = 'CVterm'; - - protected $Name = 'ControlledVocabularyTerm'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Controlled Vocabulary Term'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalImageGUID.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalImageGUID.php deleted file mode 100644 index 2a9f41432..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalImageGUID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalImageGUID extends AbstractTag -{ - - protected $Id = 'DigImageGUID'; - - protected $Name = 'DigitalImageGUID'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Digital Image GUID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalSourceFileType.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalSourceFileType.php deleted file mode 100644 index 12550b317..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalSourceFileType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSourceFileType extends AbstractTag -{ - - protected $Id = 'DigitalSourcefileType'; - - protected $Name = 'DigitalSourceFileType'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Digital Source File Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalSourceType.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalSourceType.php deleted file mode 100644 index 5d455254f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/DigitalSourceType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DigitalSourceType extends AbstractTag -{ - - protected $Id = 'DigitalSourceType'; - - protected $Name = 'DigitalSourceType'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Digital Source Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/Event.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/Event.php deleted file mode 100644 index b6b222c0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/Event.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Event extends AbstractTag -{ - - protected $Id = 'Event'; - - protected $Name = 'Event'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Event'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/IPTCLastEdited.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/IPTCLastEdited.php deleted file mode 100644 index 5154b1d4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/IPTCLastEdited.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IPTCLastEdited extends AbstractTag -{ - - protected $Id = 'IptcLastEdited'; - - protected $Name = 'IPTCLastEdited'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'IPTC Last Edited'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreated.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreated.php deleted file mode 100644 index eb0f7f3c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreated.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationCreated extends AbstractTag -{ - - protected $Id = 'LocationCreated'; - - protected $Name = 'LocationCreated'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Location Created'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCity.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCity.php deleted file mode 100644 index 5335ef606..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCity.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationCreatedCity extends AbstractTag -{ - - protected $Id = 'LocationCreatedCity'; - - protected $Name = 'LocationCreatedCity'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Created City'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCountryCode.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCountryCode.php deleted file mode 100644 index 503cec963..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCountryCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationCreatedCountryCode extends AbstractTag -{ - - protected $Id = 'LocationCreatedCountryCode'; - - protected $Name = 'LocationCreatedCountryCode'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Created Country Code'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCountryName.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCountryName.php deleted file mode 100644 index 4b6e55e91..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedCountryName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationCreatedCountryName extends AbstractTag -{ - - protected $Id = 'LocationCreatedCountryName'; - - protected $Name = 'LocationCreatedCountryName'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Created Country Name'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedProvinceState.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedProvinceState.php deleted file mode 100644 index bff17a144..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedProvinceState.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationCreatedProvinceState extends AbstractTag -{ - - protected $Id = 'LocationCreatedProvinceState'; - - protected $Name = 'LocationCreatedProvinceState'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Created Province State'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedSublocation.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedSublocation.php deleted file mode 100644 index 774079b8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedSublocation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationCreatedSublocation extends AbstractTag -{ - - protected $Id = 'LocationCreatedSublocation'; - - protected $Name = 'LocationCreatedSublocation'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Created Sublocation'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedWorldRegion.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedWorldRegion.php deleted file mode 100644 index 1a6470d62..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationCreatedWorldRegion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationCreatedWorldRegion extends AbstractTag -{ - - protected $Id = 'LocationCreatedWorldRegion'; - - protected $Name = 'LocationCreatedWorldRegion'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Created World Region'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShown.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShown.php deleted file mode 100644 index 99e6fbfad..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShown.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationShown extends AbstractTag -{ - - protected $Id = 'LocationShown'; - - protected $Name = 'LocationShown'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Location Shown'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCity.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCity.php deleted file mode 100644 index 776f0358c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCity.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationShownCity extends AbstractTag -{ - - protected $Id = 'LocationShownCity'; - - protected $Name = 'LocationShownCity'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Shown City'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCountryCode.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCountryCode.php deleted file mode 100644 index 77e553410..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCountryCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationShownCountryCode extends AbstractTag -{ - - protected $Id = 'LocationShownCountryCode'; - - protected $Name = 'LocationShownCountryCode'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Shown Country Code'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCountryName.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCountryName.php deleted file mode 100644 index 0f997cd1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownCountryName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationShownCountryName extends AbstractTag -{ - - protected $Id = 'LocationShownCountryName'; - - protected $Name = 'LocationShownCountryName'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Shown Country Name'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownProvinceState.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownProvinceState.php deleted file mode 100644 index cac3345d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownProvinceState.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationShownProvinceState extends AbstractTag -{ - - protected $Id = 'LocationShownProvinceState'; - - protected $Name = 'LocationShownProvinceState'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Shown Province State'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownSublocation.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownSublocation.php deleted file mode 100644 index 43b7fe325..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownSublocation.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationShownSublocation extends AbstractTag -{ - - protected $Id = 'LocationShownSublocation'; - - protected $Name = 'LocationShownSublocation'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Shown Sublocation'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownWorldRegion.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownWorldRegion.php deleted file mode 100644 index 85607c58a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/LocationShownWorldRegion.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LocationShownWorldRegion extends AbstractTag -{ - - protected $Id = 'LocationShownWorldRegion'; - - protected $Name = 'LocationShownWorldRegion'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location Shown World Region'; - - protected $local_g2 = 'Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/MaxAvailHeight.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/MaxAvailHeight.php deleted file mode 100644 index 1a35dbbcd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/MaxAvailHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAvailHeight extends AbstractTag -{ - - protected $Id = 'MaxAvailHeight'; - - protected $Name = 'MaxAvailHeight'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Max Avail Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/MaxAvailWidth.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/MaxAvailWidth.php deleted file mode 100644 index 08234ed86..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/MaxAvailWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxAvailWidth extends AbstractTag -{ - - protected $Id = 'MaxAvailWidth'; - - protected $Name = 'MaxAvailWidth'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Max Avail Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ModelAge.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ModelAge.php deleted file mode 100644 index d9c0a1a07..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/ModelAge.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelAge extends AbstractTag -{ - - protected $Id = 'ModelAge'; - - protected $Name = 'ModelAge'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Model Age'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/OrganisationInImageCode.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/OrganisationInImageCode.php deleted file mode 100644 index 718e79616..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/OrganisationInImageCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganisationInImageCode extends AbstractTag -{ - - protected $Id = 'OrganisationInImageCode'; - - protected $Name = 'OrganisationInImageCode'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Organisation In Image Code'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/OrganisationInImageName.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/OrganisationInImageName.php deleted file mode 100644 index fe062efdf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/OrganisationInImageName.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OrganisationInImageName extends AbstractTag -{ - - protected $Id = 'OrganisationInImageName'; - - protected $Name = 'OrganisationInImageName'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Organisation In Image Name'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/PersonInImage.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/PersonInImage.php deleted file mode 100644 index ec337bfa0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/PersonInImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PersonInImage extends AbstractTag -{ - - protected $Id = 'PersonInImage'; - - protected $Name = 'PersonInImage'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Person In Image'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryID.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryID.php deleted file mode 100644 index 6b9a6a5a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegistryID extends AbstractTag -{ - - protected $Id = 'RegistryId'; - - protected $Name = 'RegistryID'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Registry ID'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryItemID.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryItemID.php deleted file mode 100644 index 3d0444bc9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryItemID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegistryItemID extends AbstractTag -{ - - protected $Id = 'RegistryIdRegItemId'; - - protected $Name = 'RegistryItemID'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Registry Item ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryOrganisationID.php b/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryOrganisationID.php deleted file mode 100644 index c87854c81..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPIptcExt/RegistryOrganisationID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPIptcExt; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegistryOrganisationID extends AbstractTag -{ - - protected $Id = 'RegistryIdRegOrgId'; - - protected $Name = 'RegistryOrganisationID'; - - protected $FullName = 'XMP::iptcExt'; - - protected $GroupName = 'XMP-iptcExt'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-iptcExt'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Registry Organisation ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPLr/HierarchicalSubject.php b/lib/PHPExiftool/Driver/Tag/XMPLr/HierarchicalSubject.php deleted file mode 100644 index a324bf407..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPLr/HierarchicalSubject.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPLr; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalSubject extends AbstractTag -{ - - protected $Id = 'hierarchicalSubject'; - - protected $Name = 'HierarchicalSubject'; - - protected $FullName = 'XMP::Lightroom'; - - protected $GroupName = 'XMP-lr'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-lr'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Subject'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPLr/PrivateRTKInfo.php b/lib/PHPExiftool/Driver/Tag/XMPLr/PrivateRTKInfo.php deleted file mode 100644 index a904e1144..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPLr/PrivateRTKInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPLr; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrivateRTKInfo extends AbstractTag -{ - - protected $Id = 'privateRTKInfo'; - - protected $Name = 'PrivateRTKInfo'; - - protected $FullName = 'XMP::Lightroom'; - - protected $GroupName = 'XMP-lr'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-lr'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Private RTK Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoDateRegionsValid.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoDateRegionsValid.php deleted file mode 100644 index c93a76767..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoDateRegionsValid.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionInfoDateRegionsValid extends AbstractTag -{ - - protected $Id = 'RegionInfoDateRegionsValid'; - - protected $Name = 'RegionInfoDateRegionsValid'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Region Info Date Regions Valid'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoMP.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoMP.php deleted file mode 100644 index a64140ccc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoMP.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionInfoMP extends AbstractTag -{ - - protected $Id = 'RegionInfo'; - - protected $Name = 'RegionInfoMP'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Region Info MP'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoRegions.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoRegions.php deleted file mode 100644 index 78a40e146..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionInfoRegions.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionInfoRegions extends AbstractTag -{ - - protected $Id = 'RegionInfoRegions'; - - protected $Name = 'RegionInfoRegions'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Region Info Regions'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonDisplayName.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonDisplayName.php deleted file mode 100644 index 013d25ede..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonDisplayName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionPersonDisplayName extends AbstractTag -{ - - protected $Id = 'RegionInfoRegionsPersonDisplayName'; - - protected $Name = 'RegionPersonDisplayName'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Person Display Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonEmailDigest.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonEmailDigest.php deleted file mode 100644 index 098de1e9b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonEmailDigest.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionPersonEmailDigest extends AbstractTag -{ - - protected $Id = 'RegionInfoRegionsPersonEmailDigest'; - - protected $Name = 'RegionPersonEmailDigest'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Person Email Digest'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonLiveIdCID.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonLiveIdCID.php deleted file mode 100644 index f8a4e2cd4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonLiveIdCID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionPersonLiveIdCID extends AbstractTag -{ - - protected $Id = 'RegionInfoRegionsPersonLiveIdCID'; - - protected $Name = 'RegionPersonLiveIdCID'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Person Live Id CID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonSourceID.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonSourceID.php deleted file mode 100644 index 5302839e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionPersonSourceID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionPersonSourceID extends AbstractTag -{ - - protected $Id = 'RegionInfoRegionsPersonSourceID'; - - protected $Name = 'RegionPersonSourceID'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Person Source ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionRectangle.php b/lib/PHPExiftool/Driver/Tag/XMPMP/RegionRectangle.php deleted file mode 100644 index b46e8574c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP/RegionRectangle.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionRectangle extends AbstractTag -{ - - protected $Id = 'RegionInfoRegionsRectangle'; - - protected $Name = 'RegionRectangle'; - - protected $FullName = 'Microsoft::MP'; - - protected $GroupName = 'XMP-MP'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Rectangle'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchCameraMotion.php b/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchCameraMotion.php deleted file mode 100644 index 1a3cd3e3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchCameraMotion.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchCameraMotion extends AbstractTag -{ - - protected $Id = 'PanoramicStitchCameraMotion'; - - protected $Name = 'PanoramicStitchCameraMotion'; - - protected $FullName = 'Microsoft::MP1'; - - protected $GroupName = 'XMP-MP1'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP1'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Camera Motion'; - - protected $Values = array( - '3DRotation' => array( - 'Id' => '3DRotation', - 'Label' => '3D Rotation', - ), - 'Affine' => array( - 'Id' => 'Affine', - 'Label' => 'Affine', - ), - 'Homography' => array( - 'Id' => 'Homography', - 'Label' => 'Homography', - ), - 'RigidScale' => array( - 'Id' => 'RigidScale', - 'Label' => 'Rigid Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchMapType.php b/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchMapType.php deleted file mode 100644 index 1a2f55368..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchMapType.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchMapType extends AbstractTag -{ - - protected $Id = 'PanoramicStitchMapType'; - - protected $Name = 'PanoramicStitchMapType'; - - protected $FullName = 'Microsoft::MP1'; - - protected $GroupName = 'XMP-MP1'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP1'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Map Type'; - - protected $Values = array( - 'Horizontal-Cylindrical' => array( - 'Id' => 'Horizontal-Cylindrical', - 'Label' => 'Horizontal Cylindrical', - ), - 'Horizontal-Spherical' => array( - 'Id' => 'Horizontal-Spherical', - 'Label' => 'Horizontal Spherical', - ), - 'Perspective' => array( - 'Id' => 'Perspective', - 'Label' => 'Perspective', - ), - 'Vertical-Cylindrical' => array( - 'Id' => 'Vertical-Cylindrical', - 'Label' => 'Vertical Cylindrical', - ), - 'Vertical-Spherical' => array( - 'Id' => 'Vertical-Spherical', - 'Label' => 'Vertical Spherical', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchPhi0.php b/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchPhi0.php deleted file mode 100644 index 6c2aaf38c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchPhi0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchPhi0 extends AbstractTag -{ - - protected $Id = 'PanoramicStitchPhi0'; - - protected $Name = 'PanoramicStitchPhi0'; - - protected $FullName = 'Microsoft::MP1'; - - protected $GroupName = 'XMP-MP1'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP1'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Phi 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchPhi1.php b/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchPhi1.php deleted file mode 100644 index 813c672a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchPhi1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchPhi1 extends AbstractTag -{ - - protected $Id = 'PanoramicStitchPhi1'; - - protected $Name = 'PanoramicStitchPhi1'; - - protected $FullName = 'Microsoft::MP1'; - - protected $GroupName = 'XMP-MP1'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP1'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Phi 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchTheta0.php b/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchTheta0.php deleted file mode 100644 index 328b54bbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchTheta0.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchTheta0 extends AbstractTag -{ - - protected $Id = 'PanoramicStitchTheta0'; - - protected $Name = 'PanoramicStitchTheta0'; - - protected $FullName = 'Microsoft::MP1'; - - protected $GroupName = 'XMP-MP1'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP1'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Theta 0'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchTheta1.php b/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchTheta1.php deleted file mode 100644 index 6d9db8bac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMP1/PanoramicStitchTheta1.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMP1; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PanoramicStitchTheta1 extends AbstractTag -{ - - protected $Id = 'PanoramicStitchTheta1'; - - protected $Name = 'PanoramicStitchTheta1'; - - protected $FullName = 'Microsoft::MP1'; - - protected $GroupName = 'XMP-MP1'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-MP1'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Panoramic Stitch Theta 1'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMediapro/CatalogSets.php b/lib/PHPExiftool/Driver/Tag/XMPMediapro/CatalogSets.php deleted file mode 100644 index 17d0a9c90..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMediapro/CatalogSets.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMediapro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CatalogSets extends AbstractTag -{ - - protected $Id = 'CatalogSets'; - - protected $Name = 'CatalogSets'; - - protected $FullName = 'XMP::MediaPro'; - - protected $GroupName = 'XMP-mediapro'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mediapro'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Catalog Sets'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMediapro/Event.php b/lib/PHPExiftool/Driver/Tag/XMPMediapro/Event.php deleted file mode 100644 index df86bd1e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMediapro/Event.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMediapro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Event extends AbstractTag -{ - - protected $Id = 'Event'; - - protected $Name = 'Event'; - - protected $FullName = 'XMP::MediaPro'; - - protected $GroupName = 'XMP-mediapro'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mediapro'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMediapro/Location.php b/lib/PHPExiftool/Driver/Tag/XMPMediapro/Location.php deleted file mode 100644 index 8e10678e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMediapro/Location.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMediapro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 'Location'; - - protected $Name = 'Location'; - - protected $FullName = 'XMP::MediaPro'; - - protected $GroupName = 'XMP-mediapro'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mediapro'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location'; - - protected $local_g2 = 'Location'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMediapro/People.php b/lib/PHPExiftool/Driver/Tag/XMPMediapro/People.php deleted file mode 100644 index d0a0d80bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMediapro/People.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMediapro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class People extends AbstractTag -{ - - protected $Id = 'People'; - - protected $Name = 'People'; - - protected $FullName = 'XMP::MediaPro'; - - protected $GroupName = 'XMP-mediapro'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mediapro'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'People'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMediapro/Status.php b/lib/PHPExiftool/Driver/Tag/XMPMediapro/Status.php deleted file mode 100644 index ab161c3c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMediapro/Status.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMediapro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Status extends AbstractTag -{ - - protected $Id = 'Status'; - - protected $Name = 'Status'; - - protected $FullName = 'XMP::MediaPro'; - - protected $GroupName = 'XMP-mediapro'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mediapro'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMediapro/UserFields.php b/lib/PHPExiftool/Driver/Tag/XMPMediapro/UserFields.php deleted file mode 100644 index 8aecb33c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMediapro/UserFields.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMediapro; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UserFields extends AbstractTag -{ - - protected $Id = 'UserFields'; - - protected $Name = 'UserFields'; - - protected $FullName = 'XMP::MediaPro'; - - protected $GroupName = 'XMP-mediapro'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mediapro'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'User Fields'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/CameraSerialNumber.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/CameraSerialNumber.php deleted file mode 100644 index 10fa05ae6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/CameraSerialNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraSerialNumber extends AbstractTag -{ - - protected $Id = 'CameraSerialNumber'; - - protected $Name = 'CameraSerialNumber'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Serial Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/DateAcquired.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/DateAcquired.php deleted file mode 100644 index ee1302fcb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/DateAcquired.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateAcquired extends AbstractTag -{ - - protected $Id = 'DateAcquired'; - - protected $Name = 'DateAcquired'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date Acquired'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/FlashManufacturer.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/FlashManufacturer.php deleted file mode 100644 index 7dd21ee19..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/FlashManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashManufacturer extends AbstractTag -{ - - protected $Id = 'FlashManufacturer'; - - protected $Name = 'FlashManufacturer'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/FlashModel.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/FlashModel.php deleted file mode 100644 index 592e8ed22..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/FlashModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FlashModel extends AbstractTag -{ - - protected $Id = 'FlashModel'; - - protected $Name = 'FlashModel'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Flash Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LastKeywordIPTC.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LastKeywordIPTC.php deleted file mode 100644 index e7fe99113..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LastKeywordIPTC.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastKeywordIPTC extends AbstractTag -{ - - protected $Id = 'LastKeywordIPTC'; - - protected $Name = 'LastKeywordIPTC'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Last Keyword IPTC'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LastKeywordXMP.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LastKeywordXMP.php deleted file mode 100644 index 318fe6101..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LastKeywordXMP.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastKeywordXMP extends AbstractTag -{ - - protected $Id = 'LastKeywordXMP'; - - protected $Name = 'LastKeywordXMP'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Last Keyword XMP'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LensManufacturer.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LensManufacturer.php deleted file mode 100644 index 376d64625..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LensManufacturer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensManufacturer extends AbstractTag -{ - - protected $Id = 'LensManufacturer'; - - protected $Name = 'LensManufacturer'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Manufacturer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LensModel.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LensModel.php deleted file mode 100644 index 9f870f0f6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/LensModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LensModel extends AbstractTag -{ - - protected $Id = 'LensModel'; - - protected $Name = 'LensModel'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lens Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/RatingPercent.php b/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/RatingPercent.php deleted file mode 100644 index cdc224227..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMicrosoft/RatingPercent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMicrosoft; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RatingPercent extends AbstractTag -{ - - protected $Id = 'Rating'; - - protected $Name = 'RatingPercent'; - - protected $FullName = 'Microsoft::XMP'; - - protected $GroupName = 'XMP-microsoft'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-microsoft'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rating Percent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgColl/CollectionName.php b/lib/PHPExiftool/Driver/Tag/XMPMwgColl/CollectionName.php deleted file mode 100644 index c7f907f9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgColl/CollectionName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgColl; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollectionName extends AbstractTag -{ - - protected $Id = 'CollectionsCollectionName'; - - protected $Name = 'CollectionName'; - - protected $FullName = 'MWG::Collections'; - - protected $GroupName = 'XMP-mwg-coll'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-coll'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Collection Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgColl/CollectionURI.php b/lib/PHPExiftool/Driver/Tag/XMPMwgColl/CollectionURI.php deleted file mode 100644 index c0728fb69..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgColl/CollectionURI.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgColl; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CollectionURI extends AbstractTag -{ - - protected $Id = 'CollectionsCollectionURI'; - - protected $Name = 'CollectionURI'; - - protected $FullName = 'MWG::Collections'; - - protected $GroupName = 'XMP-mwg-coll'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-coll'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Collection URI'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgColl/Collections.php b/lib/PHPExiftool/Driver/Tag/XMPMwgColl/Collections.php deleted file mode 100644 index b77a3013d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgColl/Collections.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgColl; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Collections extends AbstractTag -{ - - protected $Id = 'Collections'; - - protected $Name = 'Collections'; - - protected $FullName = 'MWG::Collections'; - - protected $GroupName = 'XMP-mwg-coll'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-coll'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Collections'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords.php deleted file mode 100644 index 8a00d3b52..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchy'; - - protected $Name = 'HierarchicalKeywords'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1.php deleted file mode 100644 index 7220fb363..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords1 extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyKeyword'; - - protected $Name = 'HierarchicalKeywords1'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 1'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1Applied.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1Applied.php deleted file mode 100644 index a462d7c6e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1Applied.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords1Applied extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyApplied'; - - protected $Name = 'HierarchicalKeywords1Applied'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 1 Applied'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1Children.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1Children.php deleted file mode 100644 index c95541e0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords1Children.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords1Children extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildren'; - - protected $Name = 'HierarchicalKeywords1Children'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 1 Children'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2.php deleted file mode 100644 index d5dab3ddc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords2 extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenKeyword'; - - protected $Name = 'HierarchicalKeywords2'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 2'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2Applied.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2Applied.php deleted file mode 100644 index 296e1f0af..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2Applied.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords2Applied extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenApplied'; - - protected $Name = 'HierarchicalKeywords2Applied'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 2 Applied'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2Children.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2Children.php deleted file mode 100644 index 796bed68c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords2Children.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords2Children extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildren'; - - protected $Name = 'HierarchicalKeywords2Children'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 2 Children'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3.php deleted file mode 100644 index cece167e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords3 extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenKeyword'; - - protected $Name = 'HierarchicalKeywords3'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 3'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3Applied.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3Applied.php deleted file mode 100644 index 4a739bba8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3Applied.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords3Applied extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenApplied'; - - protected $Name = 'HierarchicalKeywords3Applied'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 3 Applied'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3Children.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3Children.php deleted file mode 100644 index c7e35ab63..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords3Children.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords3Children extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildren'; - - protected $Name = 'HierarchicalKeywords3Children'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 3 Children'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4.php deleted file mode 100644 index d3066af79..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords4 extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenKeyword'; - - protected $Name = 'HierarchicalKeywords4'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 4'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4Applied.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4Applied.php deleted file mode 100644 index d4befda17..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4Applied.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords4Applied extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenApplied'; - - protected $Name = 'HierarchicalKeywords4Applied'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 4 Applied'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4Children.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4Children.php deleted file mode 100644 index ade2acb9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords4Children.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords4Children extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenChildren'; - - protected $Name = 'HierarchicalKeywords4Children'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 4 Children'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5.php deleted file mode 100644 index 7af931180..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords5 extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenChildrenKeyword'; - - protected $Name = 'HierarchicalKeywords5'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 5'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5Applied.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5Applied.php deleted file mode 100644 index 3793031e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5Applied.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords5Applied extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenChildrenApplied'; - - protected $Name = 'HierarchicalKeywords5Applied'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 5 Applied'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5Children.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5Children.php deleted file mode 100644 index 22f1c9884..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords5Children.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords5Children extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenChildrenChildren'; - - protected $Name = 'HierarchicalKeywords5Children'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 5 Children'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords6.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords6.php deleted file mode 100644 index e075e6866..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords6.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords6 extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenKeyword'; - - protected $Name = 'HierarchicalKeywords6'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 6'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords6Applied.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords6Applied.php deleted file mode 100644 index 8c95728e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/HierarchicalKeywords6Applied.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HierarchicalKeywords6Applied extends AbstractTag -{ - - protected $Id = 'KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenApplied'; - - protected $Name = 'HierarchicalKeywords6Applied'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Hierarchical Keywords 6 Applied'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/KeywordInfo.php b/lib/PHPExiftool/Driver/Tag/XMPMwgKw/KeywordInfo.php deleted file mode 100644 index aaa60f5e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgKw/KeywordInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgKw; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KeywordInfo extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'KeywordInfo'; - - protected $FullName = 'MWG::Keywords'; - - protected $GroupName = 'XMP-mwg-kw'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-kw'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Keyword Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensions.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensions.php deleted file mode 100644 index 74127154c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAppliedToDimensions extends AbstractTag -{ - - protected $Id = 'RegionsAppliedToDimensions'; - - protected $Name = 'RegionAppliedToDimensions'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Region Applied To Dimensions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsH.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsH.php deleted file mode 100644 index c9664acfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsH.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAppliedToDimensionsH extends AbstractTag -{ - - protected $Id = 'RegionsAppliedToDimensionsH'; - - protected $Name = 'RegionAppliedToDimensionsH'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Region Applied To Dimensions H'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsUnit.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsUnit.php deleted file mode 100644 index d642c0d9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsUnit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAppliedToDimensionsUnit extends AbstractTag -{ - - protected $Id = 'RegionsAppliedToDimensionsUnit'; - - protected $Name = 'RegionAppliedToDimensionsUnit'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Applied To Dimensions Unit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsW.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsW.php deleted file mode 100644 index 192205922..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAppliedToDimensionsW.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAppliedToDimensionsW extends AbstractTag -{ - - protected $Id = 'RegionsAppliedToDimensionsW'; - - protected $Name = 'RegionAppliedToDimensionsW'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Region Applied To Dimensions W'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionArea.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionArea.php deleted file mode 100644 index e2072d4a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionArea.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionArea extends AbstractTag -{ - - protected $Id = 'RegionsRegionListArea'; - - protected $Name = 'RegionArea'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Region Area'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaD.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaD.php deleted file mode 100644 index 8d59ffc74..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaD.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAreaD extends AbstractTag -{ - - protected $Id = 'RegionsRegionListAreaD'; - - protected $Name = 'RegionAreaD'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Region Area D'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaH.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaH.php deleted file mode 100644 index aeb7aae56..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaH.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAreaH extends AbstractTag -{ - - protected $Id = 'RegionsRegionListAreaH'; - - protected $Name = 'RegionAreaH'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Region Area H'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaUnit.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaUnit.php deleted file mode 100644 index 2d767c4fe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaUnit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAreaUnit extends AbstractTag -{ - - protected $Id = 'RegionsRegionListAreaUnit'; - - protected $Name = 'RegionAreaUnit'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Area Unit'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaW.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaW.php deleted file mode 100644 index 068023271..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaW.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAreaW extends AbstractTag -{ - - protected $Id = 'RegionsRegionListAreaW'; - - protected $Name = 'RegionAreaW'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Region Area W'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaX.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaX.php deleted file mode 100644 index f661a428c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaX.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAreaX extends AbstractTag -{ - - protected $Id = 'RegionsRegionListAreaX'; - - protected $Name = 'RegionAreaX'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Region Area X'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaY.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaY.php deleted file mode 100644 index 0e336bbf0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionAreaY.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionAreaY extends AbstractTag -{ - - protected $Id = 'RegionsRegionListAreaY'; - - protected $Name = 'RegionAreaY'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Region Area Y'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionBarCodeValue.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionBarCodeValue.php deleted file mode 100644 index 6f7bc6af9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionBarCodeValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionBarCodeValue extends AbstractTag -{ - - protected $Id = 'RegionsRegionListBarCodeValue'; - - protected $Name = 'RegionBarCodeValue'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Bar Code Value'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionDescription.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionDescription.php deleted file mode 100644 index 904034096..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionDescription.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionDescription extends AbstractTag -{ - - protected $Id = 'RegionsRegionListDescription'; - - protected $Name = 'RegionDescription'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Description'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionExtensions.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionExtensions.php deleted file mode 100644 index 275b7cc01..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionExtensions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionExtensions extends AbstractTag -{ - - protected $Id = 'RegionsRegionListExtensions'; - - protected $Name = 'RegionExtensions'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Region Extensions'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionFocusUsage.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionFocusUsage.php deleted file mode 100644 index 25ebfaa75..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionFocusUsage.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionFocusUsage extends AbstractTag -{ - - protected $Id = 'RegionsRegionListFocusUsage'; - - protected $Name = 'RegionFocusUsage'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Focus Usage'; - - protected $flag_List = true; - - protected $Values = array( - 'EvaluatedNotUsed' => array( - 'Id' => 'EvaluatedNotUsed', - 'Label' => 'Evaluated, Not Used', - ), - 'EvaluatedUsed' => array( - 'Id' => 'EvaluatedUsed', - 'Label' => 'Evaluated, Used', - ), - 'NotEvaluatedNotUsed' => array( - 'Id' => 'NotEvaluatedNotUsed', - 'Label' => 'Not Evaluated, Not Used', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionInfo.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionInfo.php deleted file mode 100644 index 0a858ccd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionInfo extends AbstractTag -{ - - protected $Id = 'Regions'; - - protected $Name = 'RegionInfo'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Region Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionList.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionList.php deleted file mode 100644 index 798c52205..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionList.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionList extends AbstractTag -{ - - protected $Id = 'RegionsRegionList'; - - protected $Name = 'RegionList'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Region List'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionName.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionName.php deleted file mode 100644 index d3dc1e27b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionName extends AbstractTag -{ - - protected $Id = 'RegionsRegionListName'; - - protected $Name = 'RegionName'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionSeeAlso.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionSeeAlso.php deleted file mode 100644 index 2560537ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionSeeAlso.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionSeeAlso extends AbstractTag -{ - - protected $Id = 'RegionsRegionListSeeAlso'; - - protected $Name = 'RegionSeeAlso'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region See Also'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionType.php b/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionType.php deleted file mode 100644 index 65470f1a7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPMwgRs/RegionType.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPMwgRs; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionType extends AbstractTag -{ - - protected $Id = 'RegionsRegionListType'; - - protected $Name = 'RegionType'; - - protected $FullName = 'MWG::Regions'; - - protected $GroupName = 'XMP-mwg-rs'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-mwg-rs'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Region Type'; - - protected $flag_List = true; - - protected $Values = array( - 'BarCode' => array( - 'Id' => 'BarCode', - 'Label' => 'BarCode', - ), - 'Face' => array( - 'Id' => 'Face', - 'Label' => 'Face', - ), - 'Focus' => array( - 'Id' => 'Focus', - 'Label' => 'Focus', - ), - 'Pet' => array( - 'Id' => 'Pet', - 'Label' => 'Pet', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Author.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Author.php deleted file mode 100644 index e7bfa6880..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Author.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'Author'; - - protected $Name = 'Author'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Copyright.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Copyright.php deleted file mode 100644 index f323b336b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'Copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/CreationDate.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/CreationDate.php deleted file mode 100644 index 54afdc038..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/CreationDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationDate extends AbstractTag -{ - - protected $Id = 'CreationDate'; - - protected $Name = 'CreationDate'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Creation Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Creator.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Creator.php deleted file mode 100644 index e7fc7bd20..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Creator.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Creator extends AbstractTag -{ - - protected $Id = 'Creator'; - - protected $Name = 'Creator'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Keywords.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Keywords.php deleted file mode 100644 index 1d5c3eb90..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Keywords.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keywords'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Marked.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Marked.php deleted file mode 100644 index 499a149f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Marked.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Marked extends AbstractTag -{ - - protected $Id = 'Marked'; - - protected $Name = 'Marked'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Marked'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/ModDate.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/ModDate.php deleted file mode 100644 index cbdc8f01b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/ModDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModDate extends AbstractTag -{ - - protected $Id = 'ModDate'; - - protected $Name = 'ModDate'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Mod Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/PDFVersion.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/PDFVersion.php deleted file mode 100644 index a0136ab73..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/PDFVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PDFVersion extends AbstractTag -{ - - protected $Id = 'PDFVersion'; - - protected $Name = 'PDFVersion'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'PDF Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Producer.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Producer.php deleted file mode 100644 index 3d78f5484..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Producer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Producer extends AbstractTag -{ - - protected $Id = 'Producer'; - - protected $Name = 'Producer'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Producer'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Subject.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Subject.php deleted file mode 100644 index c9af18076..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Subject.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'Subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subject'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Title.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Title.php deleted file mode 100644 index 71e1b5292..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Title.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'Title'; - - protected $Name = 'Title'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Title'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPdf/Trapped.php b/lib/PHPExiftool/Driver/Tag/XMPPdf/Trapped.php deleted file mode 100644 index 5feefeb96..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPdf/Trapped.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Trapped extends AbstractTag -{ - - protected $Id = 'Trapped'; - - protected $Name = 'Trapped'; - - protected $FullName = 'XMP::pdf'; - - protected $GroupName = 'XMP-pdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pdf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Trapped'; - - protected $Values = array( - False => array( - 'Id' => False, - 'Label' => False, - ), - True => array( - 'Id' => True, - 'Label' => True, - ), - 'Unknown' => array( - 'Id' => 'Unknown', - 'Label' => 'Unknown', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/ColorClass.php b/lib/PHPExiftool/Driver/Tag/XMPPhotomech/ColorClass.php deleted file mode 100644 index 4d91c8304..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/ColorClass.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotomech; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorClass extends AbstractTag -{ - - protected $Id = 'ColorClass'; - - protected $Name = 'ColorClass'; - - protected $FullName = 'PhotoMechanic::XMP'; - - protected $GroupName = 'XMP-photomech'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photomech'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Color Class'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0 (None)', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 (Winner)', - ), - 2 => array( - 'Id' => 2, - 'Label' => '2 (Winner alt)', - ), - 3 => array( - 'Id' => 3, - 'Label' => '3 (Superior)', - ), - 4 => array( - 'Id' => 4, - 'Label' => '4 (Superior alt)', - ), - 5 => array( - 'Id' => 5, - 'Label' => '5 (Typical)', - ), - 6 => array( - 'Id' => 6, - 'Label' => '6 (Typical alt)', - ), - 7 => array( - 'Id' => 7, - 'Label' => '7 (Extras)', - ), - 8 => array( - 'Id' => 8, - 'Label' => '8 (Trash)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/CountryCode.php b/lib/PHPExiftool/Driver/Tag/XMPPhotomech/CountryCode.php deleted file mode 100644 index bf44d86f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/CountryCode.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotomech; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CountryCode extends AbstractTag -{ - - protected $Id = 'CountryCode'; - - protected $Name = 'CountryCode'; - - protected $FullName = 'PhotoMechanic::XMP'; - - protected $GroupName = 'XMP-photomech'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photomech'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Country Code'; - - protected $local_g2 = 'Location'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/EditStatus.php b/lib/PHPExiftool/Driver/Tag/XMPPhotomech/EditStatus.php deleted file mode 100644 index 8593f635c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/EditStatus.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotomech; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EditStatus extends AbstractTag -{ - - protected $Id = 'EditStatus'; - - protected $Name = 'EditStatus'; - - protected $FullName = 'PhotoMechanic::XMP'; - - protected $GroupName = 'XMP-photomech'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photomech'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Edit Status'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/PMVersion.php b/lib/PHPExiftool/Driver/Tag/XMPPhotomech/PMVersion.php deleted file mode 100644 index 9cd046711..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/PMVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotomech; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PMVersion extends AbstractTag -{ - - protected $Id = 'PMVersion'; - - protected $Name = 'PMVersion'; - - protected $FullName = 'PhotoMechanic::XMP'; - - protected $GroupName = 'XMP-photomech'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photomech'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'PM Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/Prefs.php b/lib/PHPExiftool/Driver/Tag/XMPPhotomech/Prefs.php deleted file mode 100644 index 537331895..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/Prefs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotomech; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Prefs extends AbstractTag -{ - - protected $Id = 'Prefs'; - - protected $Name = 'Prefs'; - - protected $FullName = 'PhotoMechanic::XMP'; - - protected $GroupName = 'XMP-photomech'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photomech'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Prefs'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/Tagged.php b/lib/PHPExiftool/Driver/Tag/XMPPhotomech/Tagged.php deleted file mode 100644 index f8bb2fe57..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/Tagged.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotomech; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tagged extends AbstractTag -{ - - protected $Id = 'Tagged'; - - protected $Name = 'Tagged'; - - protected $FullName = 'PhotoMechanic::XMP'; - - protected $GroupName = 'XMP-photomech'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photomech'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Tagged'; - - protected $Values = array( - False => array( - 'Id' => False, - 'Label' => 'No', - ), - True => array( - 'Id' => True, - 'Label' => 'Yes', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/TimeCreated.php b/lib/PHPExiftool/Driver/Tag/XMPPhotomech/TimeCreated.php deleted file mode 100644 index 44a117a5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotomech/TimeCreated.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotomech; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeCreated extends AbstractTag -{ - - protected $Id = 'TimeCreated'; - - protected $Name = 'TimeCreated'; - - protected $FullName = 'PhotoMechanic::XMP'; - - protected $GroupName = 'XMP-photomech'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photomech'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time Created'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/AuthorsPosition.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/AuthorsPosition.php deleted file mode 100644 index e73e9f482..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/AuthorsPosition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AuthorsPosition extends AbstractTag -{ - - protected $Id = 'AuthorsPosition'; - - protected $Name = 'AuthorsPosition'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Authors Position'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/CaptionWriter.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/CaptionWriter.php deleted file mode 100644 index 0e5515983..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/CaptionWriter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CaptionWriter extends AbstractTag -{ - - protected $Id = 'CaptionWriter'; - - protected $Name = 'CaptionWriter'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Caption Writer'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Category.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Category.php deleted file mode 100644 index b310573f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Category.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Category extends AbstractTag -{ - - protected $Id = 'Category'; - - protected $Name = 'Category'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Category'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/City.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/City.php deleted file mode 100644 index 8379b22fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/City.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class City extends AbstractTag -{ - - protected $Id = 'City'; - - protected $Name = 'City'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'City'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/ColorMode.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/ColorMode.php deleted file mode 100644 index d7a59c7aa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/ColorMode.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorMode extends AbstractTag -{ - - protected $Id = 'ColorMode'; - - protected $Name = 'ColorMode'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Color Mode'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'Bitmap', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Grayscale', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Indexed', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'RGB', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'CMYK', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Multichannel', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Duotone', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Lab', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Country.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Country.php deleted file mode 100644 index e544f7227..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Country.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Country extends AbstractTag -{ - - protected $Id = 'Country'; - - protected $Name = 'Country'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Country'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Credit.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Credit.php deleted file mode 100644 index c9da1316f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Credit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Credit extends AbstractTag -{ - - protected $Id = 'Credit'; - - protected $Name = 'Credit'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Credit'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DateCreated.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DateCreated.php deleted file mode 100644 index bfd141812..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DateCreated.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateCreated extends AbstractTag -{ - - protected $Id = 'DateCreated'; - - protected $Name = 'DateCreated'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date Created'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DocumentAncestorID.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DocumentAncestorID.php deleted file mode 100644 index c7fb576ec..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DocumentAncestorID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentAncestorID extends AbstractTag -{ - - protected $Id = 'DocumentAncestorsAncestorID'; - - protected $Name = 'DocumentAncestorID'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Document Ancestor ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DocumentAncestors.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DocumentAncestors.php deleted file mode 100644 index f99ab16c6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/DocumentAncestors.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentAncestors extends AbstractTag -{ - - protected $Id = 'DocumentAncestors'; - - protected $Name = 'DocumentAncestors'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Document Ancestors'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/EmbeddedXMPDigest.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/EmbeddedXMPDigest.php deleted file mode 100644 index 414283bac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/EmbeddedXMPDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbeddedXMPDigest extends AbstractTag -{ - - protected $Id = 'EmbeddedXMPDigest'; - - protected $Name = 'EmbeddedXMPDigest'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Embedded XMP Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Headline.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Headline.php deleted file mode 100644 index ddd477e98..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Headline.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Headline extends AbstractTag -{ - - protected $Id = 'Headline'; - - protected $Name = 'Headline'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Headline'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/History.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/History.php deleted file mode 100644 index 63f256195..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/History.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class History extends AbstractTag -{ - - protected $Id = 'History'; - - protected $Name = 'History'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'History'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/ICCProfileName.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/ICCProfileName.php deleted file mode 100644 index 6e2711e28..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/ICCProfileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ICCProfileName extends AbstractTag -{ - - protected $Id = 'ICCProfile'; - - protected $Name = 'ICCProfileName'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'ICC Profile Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Instructions.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Instructions.php deleted file mode 100644 index 1f370b4c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Instructions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Instructions extends AbstractTag -{ - - protected $Id = 'Instructions'; - - protected $Name = 'Instructions'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Instructions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/LegacyIPTCDigest.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/LegacyIPTCDigest.php deleted file mode 100644 index adecdaf8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/LegacyIPTCDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LegacyIPTCDigest extends AbstractTag -{ - - protected $Id = 'LegacyIPTCDigest'; - - protected $Name = 'LegacyIPTCDigest'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Legacy IPTC Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/SidecarForExtension.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/SidecarForExtension.php deleted file mode 100644 index 3ded770b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/SidecarForExtension.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SidecarForExtension extends AbstractTag -{ - - protected $Id = 'SidecarForExtension'; - - protected $Name = 'SidecarForExtension'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Sidecar For Extension'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Source.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Source.php deleted file mode 100644 index 04c658033..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Source.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Source extends AbstractTag -{ - - protected $Id = 'Source'; - - protected $Name = 'Source'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Source'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/State.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/State.php deleted file mode 100644 index 1db4f0022..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/State.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class State extends AbstractTag -{ - - protected $Id = 'State'; - - protected $Name = 'State'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'State'; - - protected $local_g2 = 'Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/SupplementalCategories.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/SupplementalCategories.php deleted file mode 100644 index 02f5a3701..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/SupplementalCategories.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SupplementalCategories extends AbstractTag -{ - - protected $Id = 'SupplementalCategories'; - - protected $Name = 'SupplementalCategories'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Supplemental Categories'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayerName.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayerName.php deleted file mode 100644 index 6b8494051..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayerName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextLayerName extends AbstractTag -{ - - protected $Id = 'TextLayersLayerName'; - - protected $Name = 'TextLayerName'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Text Layer Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayerText.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayerText.php deleted file mode 100644 index 0ee9d0d37..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayerText.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextLayerText extends AbstractTag -{ - - protected $Id = 'TextLayersLayerText'; - - protected $Name = 'TextLayerText'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Text Layer Text'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayers.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayers.php deleted file mode 100644 index 5595fe780..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TextLayers.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TextLayers extends AbstractTag -{ - - protected $Id = 'TextLayers'; - - protected $Name = 'TextLayers'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Text Layers'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TransmissionReference.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TransmissionReference.php deleted file mode 100644 index db9cc9b41..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/TransmissionReference.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransmissionReference extends AbstractTag -{ - - protected $Id = 'TransmissionReference'; - - protected $Name = 'TransmissionReference'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Transmission Reference'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Urgency.php b/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Urgency.php deleted file mode 100644 index 6046fa6ac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPhotoshop/Urgency.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPhotoshop; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Urgency extends AbstractTag -{ - - protected $Id = 'Urgency'; - - protected $Name = 'Urgency'; - - protected $FullName = 'XMP::photoshop'; - - protected $GroupName = 'XMP-photoshop'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-photoshop'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Urgency'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '0 (reserved)', - ), - 1 => array( - 'Id' => 1, - 'Label' => '1 (most urgent)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 2, - ), - 3 => array( - 'Id' => 3, - 'Label' => 3, - ), - 4 => array( - 'Id' => 4, - 'Label' => 4, - ), - 5 => array( - 'Id' => 5, - 'Label' => '5 (normal urgency)', - ), - 6 => array( - 'Id' => 6, - 'Label' => 6, - ), - 7 => array( - 'Id' => 7, - 'Label' => 7, - ), - 8 => array( - 'Id' => 8, - 'Label' => '8 (least urgent)', - ), - 9 => array( - 'Id' => 9, - 'Label' => '9 (user-defined priority)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Author.php b/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Author.php deleted file mode 100644 index 7493d453d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Author.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPixelLive; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'AUTHOR'; - - protected $Name = 'Author'; - - protected $FullName = 'XMP::PixelLive'; - - protected $GroupName = 'XMP-PixelLive'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-PixelLive'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Comments.php b/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Comments.php deleted file mode 100644 index 95d36edae..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Comments.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPixelLive; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comments extends AbstractTag -{ - - protected $Id = 'COMMENTS'; - - protected $Name = 'Comments'; - - protected $FullName = 'XMP::PixelLive'; - - protected $GroupName = 'XMP-PixelLive'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-PixelLive'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Comments'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Copyright.php b/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Copyright.php deleted file mode 100644 index bb8df0382..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPixelLive; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'COPYRIGHT'; - - protected $Name = 'Copyright'; - - protected $FullName = 'XMP::PixelLive'; - - protected $GroupName = 'XMP-PixelLive'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-PixelLive'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Date.php b/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Date.php deleted file mode 100644 index 29cb5eb6b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Date.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPixelLive; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Date extends AbstractTag -{ - - protected $Id = 'DATE'; - - protected $Name = 'Date'; - - protected $FullName = 'XMP::PixelLive'; - - protected $GroupName = 'XMP-PixelLive'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-PixelLive'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Genre.php b/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Genre.php deleted file mode 100644 index 93c525f5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Genre.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPixelLive; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'GENRE'; - - protected $Name = 'Genre'; - - protected $FullName = 'XMP::PixelLive'; - - protected $GroupName = 'XMP-PixelLive'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-PixelLive'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Genre'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Title.php b/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Title.php deleted file mode 100644 index b81cef505..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPixelLive/Title.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPixelLive; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'TITLE'; - - protected $Name = 'Title'; - - protected $FullName = 'XMP::PixelLive'; - - protected $GroupName = 'XMP-PixelLive'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-PixelLive'; - - protected $g2 = 'Image'; - - protected $Type = '?'; - - protected $Writable = false; - - protected $Description = 'Title'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/AdultContentWarning.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/AdultContentWarning.php deleted file mode 100644 index 9ed45aadb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/AdultContentWarning.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdultContentWarning extends AbstractTag -{ - - protected $Id = 'AdultContentWarning'; - - protected $Name = 'AdultContentWarning'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Adult Content Warning'; - - protected $Values = array( - 'CW-AWR' => array( - 'Id' => 'CW-AWR', - 'Label' => 'Adult Content Warning Required', - ), - 'CW-NRQ' => array( - 'Id' => 'CW-NRQ', - 'Label' => 'Not Required', - ), - 'CW-UNK' => array( - 'Id' => 'CW-UNK', - 'Label' => 'Unknown', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwner.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwner.php deleted file mode 100644 index 0204f6a33..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwner.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightOwner extends AbstractTag -{ - - protected $Id = 'CopyrightOwner'; - - protected $Name = 'CopyrightOwner'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Copyright Owner'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerID.php deleted file mode 100644 index aafda3a9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightOwnerID extends AbstractTag -{ - - protected $Id = 'CopyrightOwnerCopyrightOwnerID'; - - protected $Name = 'CopyrightOwnerID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright Owner ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerImageID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerImageID.php deleted file mode 100644 index 5a5033032..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightOwnerImageID extends AbstractTag -{ - - protected $Id = 'CopyrightOwnerImageID'; - - protected $Name = 'CopyrightOwnerImageID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright Owner Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerName.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerName.php deleted file mode 100644 index 810428818..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightOwnerName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightOwnerName extends AbstractTag -{ - - protected $Id = 'CopyrightOwnerCopyrightOwnerName'; - - protected $Name = 'CopyrightOwnerName'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright Owner Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightRegistrationNumber.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightRegistrationNumber.php deleted file mode 100644 index f5de8eb34..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightRegistrationNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightRegistrationNumber extends AbstractTag -{ - - protected $Id = 'CopyrightRegistrationNumber'; - - protected $Name = 'CopyrightRegistrationNumber'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright Registration Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightStatus.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightStatus.php deleted file mode 100644 index f74396255..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/CopyrightStatus.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CopyrightStatus extends AbstractTag -{ - - protected $Id = 'CopyrightStatus'; - - protected $Name = 'CopyrightStatus'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright Status'; - - protected $Values = array( - 'CS-PRO' => array( - 'Id' => 'CS-PRO', - 'Label' => 'Protected', - ), - 'CS-PUB' => array( - 'Id' => 'CS-PUB', - 'Label' => 'Public Domain', - ), - 'CS-UNK' => array( - 'Id' => 'CS-UNK', - 'Label' => 'Unknown', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/CreditLineRequired.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/CreditLineRequired.php deleted file mode 100644 index e84c54a47..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/CreditLineRequired.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreditLineRequired extends AbstractTag -{ - - protected $Id = 'CreditLineRequired'; - - protected $Name = 'CreditLineRequired'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Credit Line Required'; - - protected $Values = array( - 'CR-CAI' => array( - 'Id' => 'CR-CAI', - 'Label' => 'Credit Adjacent To Image', - ), - 'CR-CCA' => array( - 'Id' => 'CR-CCA', - 'Label' => 'Credit in Credits Area', - ), - 'CR-COI' => array( - 'Id' => 'CR-COI', - 'Label' => 'Credit on Image', - ), - 'CR-NRQ' => array( - 'Id' => 'CR-NRQ', - 'Label' => 'Not Required', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom1.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom1.php deleted file mode 100644 index 73f7a0344..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom1.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom1 extends AbstractTag -{ - - protected $Id = 'Custom1'; - - protected $Name = 'Custom1'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 1'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom10.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom10.php deleted file mode 100644 index f71200c5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom10.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom10 extends AbstractTag -{ - - protected $Id = 'Custom10'; - - protected $Name = 'Custom10'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 10'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom2.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom2.php deleted file mode 100644 index 6798ac0e1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom2.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom2 extends AbstractTag -{ - - protected $Id = 'Custom2'; - - protected $Name = 'Custom2'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 2'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom3.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom3.php deleted file mode 100644 index ba9a9eb8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom3.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom3 extends AbstractTag -{ - - protected $Id = 'Custom3'; - - protected $Name = 'Custom3'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 3'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom4.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom4.php deleted file mode 100644 index 2b7438ead..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom4.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom4 extends AbstractTag -{ - - protected $Id = 'Custom4'; - - protected $Name = 'Custom4'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 4'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom5.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom5.php deleted file mode 100644 index ef2b6b555..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom5.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom5 extends AbstractTag -{ - - protected $Id = 'Custom5'; - - protected $Name = 'Custom5'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 5'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom6.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom6.php deleted file mode 100644 index 60181a6b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom6.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom6 extends AbstractTag -{ - - protected $Id = 'Custom6'; - - protected $Name = 'Custom6'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 6'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom7.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom7.php deleted file mode 100644 index a179258d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom7.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom7 extends AbstractTag -{ - - protected $Id = 'Custom7'; - - protected $Name = 'Custom7'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 7'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom8.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom8.php deleted file mode 100644 index c4d8e6915..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom8.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom8 extends AbstractTag -{ - - protected $Id = 'Custom8'; - - protected $Name = 'Custom8'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 8'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom9.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom9.php deleted file mode 100644 index 5d3c738a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Custom9.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Custom9 extends AbstractTag -{ - - protected $Id = 'Custom9'; - - protected $Name = 'Custom9'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Custom 9'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUser.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUser.php deleted file mode 100644 index 037e5182d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUser.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndUser extends AbstractTag -{ - - protected $Id = 'EndUser'; - - protected $Name = 'EndUser'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'End User'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUserID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUserID.php deleted file mode 100644 index 13727983a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUserID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndUserID extends AbstractTag -{ - - protected $Id = 'EndUserEndUserID'; - - protected $Name = 'EndUserID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'End User ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUserName.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUserName.php deleted file mode 100644 index baf80f7e3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/EndUserName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndUserName extends AbstractTag -{ - - protected $Id = 'EndUserEndUserName'; - - protected $Name = 'EndUserName'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'End User Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/FileNameAsDelivered.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/FileNameAsDelivered.php deleted file mode 100644 index cb672a914..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/FileNameAsDelivered.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNameAsDelivered extends AbstractTag -{ - - protected $Id = 'FileNameAsDelivered'; - - protected $Name = 'FileNameAsDelivered'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'File Name As Delivered'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/FirstPublicationDate.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/FirstPublicationDate.php deleted file mode 100644 index 481200616..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/FirstPublicationDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FirstPublicationDate extends AbstractTag -{ - - protected $Id = 'FirstPublicationDate'; - - protected $Name = 'FirstPublicationDate'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'First Publication Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageAlterationConstraints.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageAlterationConstraints.php deleted file mode 100644 index a93989b66..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageAlterationConstraints.php +++ /dev/null @@ -1,74 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageAlterationConstraints extends AbstractTag -{ - - protected $Id = 'ImageAlterationConstraints'; - - protected $Name = 'ImageAlterationConstraints'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Alteration Constraints'; - - protected $flag_List = true; - - protected $flag_Bag = true; - - protected $Values = array( - 'AL-CLR' => array( - 'Id' => 'AL-CLR', - 'Label' => 'No Colorization', - ), - 'AL-CRP' => array( - 'Id' => 'AL-CRP', - 'Label' => 'No Cropping', - ), - 'AL-DCL' => array( - 'Id' => 'AL-DCL', - 'Label' => 'No De-Colorization', - ), - 'AL-FLP' => array( - 'Id' => 'AL-FLP', - 'Label' => 'No Flipping', - ), - 'AL-MRG' => array( - 'Id' => 'AL-MRG', - 'Label' => 'No Merging', - ), - 'AL-RET' => array( - 'Id' => 'AL-RET', - 'Label' => 'No Retouching', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreator.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreator.php deleted file mode 100644 index 689b98fa2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreator.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCreator extends AbstractTag -{ - - protected $Id = 'ImageCreator'; - - protected $Name = 'ImageCreator'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Image Creator'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorID.php deleted file mode 100644 index 907a1aa85..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCreatorID extends AbstractTag -{ - - protected $Id = 'ImageCreatorImageCreatorID'; - - protected $Name = 'ImageCreatorID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Creator ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorImageID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorImageID.php deleted file mode 100644 index 5d5a95cde..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCreatorImageID extends AbstractTag -{ - - protected $Id = 'ImageCreatorImageID'; - - protected $Name = 'ImageCreatorImageID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Creator Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorName.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorName.php deleted file mode 100644 index c519e13c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageCreatorName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageCreatorName extends AbstractTag -{ - - protected $Id = 'ImageCreatorImageCreatorName'; - - protected $Name = 'ImageCreatorName'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Creator Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageDuplicationConstraints.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageDuplicationConstraints.php deleted file mode 100644 index fee61ca86..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageDuplicationConstraints.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDuplicationConstraints extends AbstractTag -{ - - protected $Id = 'ImageDuplicationConstraints'; - - protected $Name = 'ImageDuplicationConstraints'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Duplication Constraints'; - - protected $Values = array( - 'DP-LIC' => array( - 'Id' => 'DP-LIC', - 'Label' => 'Duplication Only as Necessary Under License', - ), - 'DP-NDC' => array( - 'Id' => 'DP-NDC', - 'Label' => 'No Duplication Constraints', - ), - 'DP-NOD' => array( - 'Id' => 'DP-NOD', - 'Label' => 'No Duplication', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileConstraints.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileConstraints.php deleted file mode 100644 index 7945d2431..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileConstraints.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFileConstraints extends AbstractTag -{ - - protected $Id = 'ImageFileConstraints'; - - protected $Name = 'ImageFileConstraints'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image File Constraints'; - - protected $flag_List = true; - - protected $flag_Bag = true; - - protected $Values = array( - 'IF-MFN' => array( - 'Id' => 'IF-MFN', - 'Label' => 'Maintain File Name', - ), - 'IF-MFT' => array( - 'Id' => 'IF-MFT', - 'Label' => 'Maintain File Type', - ), - 'IF-MID' => array( - 'Id' => 'IF-MID', - 'Label' => 'Maintain ID in File Name', - ), - 'IF-MMD' => array( - 'Id' => 'IF-MMD', - 'Label' => 'Maintain Metadata', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileFormatAsDelivered.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileFormatAsDelivered.php deleted file mode 100644 index 896ba79e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileFormatAsDelivered.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFileFormatAsDelivered extends AbstractTag -{ - - protected $Id = 'ImageFileFormatAsDelivered'; - - protected $Name = 'ImageFileFormatAsDelivered'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image File Format As Delivered'; - - protected $Values = array( - 'FF-BMP' => array( - 'Id' => 'FF-BMP', - 'Label' => 'Windows Bitmap (BMP)', - ), - 'FF-DNG' => array( - 'Id' => 'FF-DNG', - 'Label' => 'Digital Negative (DNG)', - ), - 'FF-EPS' => array( - 'Id' => 'FF-EPS', - 'Label' => 'Encapsulated PostScript (EPS)', - ), - 'FF-GIF' => array( - 'Id' => 'FF-GIF', - 'Label' => 'Graphics Interchange Format (GIF)', - ), - 'FF-JPG' => array( - 'Id' => 'FF-JPG', - 'Label' => 'JPEG Interchange Formats (JPG, JIF, JFIF)', - ), - 'FF-OTR' => array( - 'Id' => 'FF-OTR', - 'Label' => 'Other', - ), - 'FF-PIC' => array( - 'Id' => 'FF-PIC', - 'Label' => 'Macintosh Picture (PICT)', - ), - 'FF-PNG' => array( - 'Id' => 'FF-PNG', - 'Label' => 'Portable Network Graphics (PNG)', - ), - 'FF-PSD' => array( - 'Id' => 'FF-PSD', - 'Label' => 'Photoshop Document (PSD)', - ), - 'FF-RAW' => array( - 'Id' => 'FF-RAW', - 'Label' => 'Proprietary RAW Image Format', - ), - 'FF-TIF' => array( - 'Id' => 'FF-TIF', - 'Label' => 'Tagged Image File Format (TIFF)', - ), - 'FF-WMP' => array( - 'Id' => 'FF-WMP', - 'Label' => 'Windows Media Photo (HD Photo)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileSizeAsDelivered.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileSizeAsDelivered.php deleted file mode 100644 index ca4fda779..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageFileSizeAsDelivered.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageFileSizeAsDelivered extends AbstractTag -{ - - protected $Id = 'ImageFileSizeAsDelivered'; - - protected $Name = 'ImageFileSizeAsDelivered'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image File Size As Delivered'; - - protected $Values = array( - 'SZ-G50' => array( - 'Id' => 'SZ-G50', - 'Label' => 'Greater than 50 MB', - ), - 'SZ-U01' => array( - 'Id' => 'SZ-U01', - 'Label' => 'Up to 1 MB', - ), - 'SZ-U10' => array( - 'Id' => 'SZ-U10', - 'Label' => 'Up to 10 MB', - ), - 'SZ-U30' => array( - 'Id' => 'SZ-U30', - 'Label' => 'Up to 30 MB', - ), - 'SZ-U50' => array( - 'Id' => 'SZ-U50', - 'Label' => 'Up to 50 MB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplier.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplier.php deleted file mode 100644 index e2ad5f96f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplier.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSupplier extends AbstractTag -{ - - protected $Id = 'ImageSupplier'; - - protected $Name = 'ImageSupplier'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Image Supplier'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierID.php deleted file mode 100644 index 444c85aef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSupplierID extends AbstractTag -{ - - protected $Id = 'ImageSupplierImageSupplierID'; - - protected $Name = 'ImageSupplierID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Supplier ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierImageID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierImageID.php deleted file mode 100644 index 0822d341d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSupplierImageID extends AbstractTag -{ - - protected $Id = 'ImageSupplierImageID'; - - protected $Name = 'ImageSupplierImageID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Supplier Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierName.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierName.php deleted file mode 100644 index 9fcd3de73..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageSupplierName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSupplierName extends AbstractTag -{ - - protected $Id = 'ImageSupplierImageSupplierName'; - - protected $Name = 'ImageSupplierName'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Supplier Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageType.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageType.php deleted file mode 100644 index 3fe73e595..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ImageType.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageType extends AbstractTag -{ - - protected $Id = 'ImageType'; - - protected $Name = 'ImageType'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Type'; - - protected $Values = array( - 'TY-ILL' => array( - 'Id' => 'TY-ILL', - 'Label' => 'Illustrated Image', - ), - 'TY-MCI' => array( - 'Id' => 'TY-MCI', - 'Label' => 'Multimedia or Composited Image', - ), - 'TY-OTR' => array( - 'Id' => 'TY-OTR', - 'Label' => 'Other', - ), - 'TY-PHO' => array( - 'Id' => 'TY-PHO', - 'Label' => 'Photographic Image', - ), - 'TY-VID' => array( - 'Id' => 'TY-VID', - 'Label' => 'Video', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseEndDate.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseEndDate.php deleted file mode 100644 index 072d52791..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseEndDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseEndDate extends AbstractTag -{ - - protected $Id = 'LicenseEndDate'; - - protected $Name = 'LicenseEndDate'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'License End Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseID.php deleted file mode 100644 index de271e08b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseID extends AbstractTag -{ - - protected $Id = 'LicenseID'; - - protected $Name = 'LicenseID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'License ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseStartDate.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseStartDate.php deleted file mode 100644 index 45a596807..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseStartDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseStartDate extends AbstractTag -{ - - protected $Id = 'LicenseStartDate'; - - protected $Name = 'LicenseStartDate'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'License Start Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseTransactionDate.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseTransactionDate.php deleted file mode 100644 index 711e2d5f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseTransactionDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseTransactionDate extends AbstractTag -{ - - protected $Id = 'LicenseTransactionDate'; - - protected $Name = 'LicenseTransactionDate'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'License Transaction Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Licensee.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Licensee.php deleted file mode 100644 index 0c662f718..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Licensee.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Licensee extends AbstractTag -{ - - protected $Id = 'Licensee'; - - protected $Name = 'Licensee'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Licensee'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeID.php deleted file mode 100644 index 1fb2093a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseeID extends AbstractTag -{ - - protected $Id = 'LicenseeLicenseeID'; - - protected $Name = 'LicenseeID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensee ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeImageID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeImageID.php deleted file mode 100644 index 56c72aadb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseeImageID extends AbstractTag -{ - - protected $Id = 'LicenseeImageID'; - - protected $Name = 'LicenseeImageID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensee Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeImageNotes.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeImageNotes.php deleted file mode 100644 index 0c5595b7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeImageNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseeImageNotes extends AbstractTag -{ - - protected $Id = 'LicenseeImageNotes'; - - protected $Name = 'LicenseeImageNotes'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Licensee Image Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeName.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeName.php deleted file mode 100644 index 201db023c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseeName extends AbstractTag -{ - - protected $Id = 'LicenseeLicenseeName'; - - protected $Name = 'LicenseeName'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensee Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeProjectReference.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeProjectReference.php deleted file mode 100644 index 8423884a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeProjectReference.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseeProjectReference extends AbstractTag -{ - - protected $Id = 'LicenseeProjectReference'; - - protected $Name = 'LicenseeProjectReference'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensee Project Reference'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeTransactionID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeTransactionID.php deleted file mode 100644 index 3a3721549..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicenseeTransactionID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicenseeTransactionID extends AbstractTag -{ - - protected $Id = 'LicenseeTransactionID'; - - protected $Name = 'LicenseeTransactionID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensee Transaction ID'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Licensor.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Licensor.php deleted file mode 100644 index a0e1da921..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Licensor.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Licensor extends AbstractTag -{ - - protected $Id = 'Licensor'; - - protected $Name = 'Licensor'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Licensor'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorCity.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorCity.php deleted file mode 100644 index 7e7cdeab7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorCity.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorCity extends AbstractTag -{ - - protected $Id = 'LicensorLicensorCity'; - - protected $Name = 'LicensorCity'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor City'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorCountry.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorCountry.php deleted file mode 100644 index 3486caa67..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorCountry.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorCountry extends AbstractTag -{ - - protected $Id = 'LicensorLicensorCountry'; - - protected $Name = 'LicensorCountry'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Country'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorEmail.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorEmail.php deleted file mode 100644 index d134e963c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorEmail.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorEmail extends AbstractTag -{ - - protected $Id = 'LicensorLicensorEmail'; - - protected $Name = 'LicensorEmail'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Email'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorExtendedAddress.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorExtendedAddress.php deleted file mode 100644 index e579f4fe0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorExtendedAddress.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorExtendedAddress extends AbstractTag -{ - - protected $Id = 'LicensorLicensorExtendedAddress'; - - protected $Name = 'LicensorExtendedAddress'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Extended Address'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorID.php deleted file mode 100644 index 81914cded..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorID extends AbstractTag -{ - - protected $Id = 'LicensorLicensorID'; - - protected $Name = 'LicensorID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorImageID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorImageID.php deleted file mode 100644 index d04d9b0f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorImageID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorImageID extends AbstractTag -{ - - protected $Id = 'LicensorImageID'; - - protected $Name = 'LicensorImageID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Image ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorName.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorName.php deleted file mode 100644 index 5cda4635d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorName extends AbstractTag -{ - - protected $Id = 'LicensorLicensorName'; - - protected $Name = 'LicensorName'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorNotes.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorNotes.php deleted file mode 100644 index a3f57b78d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorNotes.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorNotes extends AbstractTag -{ - - protected $Id = 'LicensorNotes'; - - protected $Name = 'LicensorNotes'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Licensor Notes'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorPostalCode.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorPostalCode.php deleted file mode 100644 index 72f0cdf9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorPostalCode.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorPostalCode extends AbstractTag -{ - - protected $Id = 'LicensorLicensorPostalCode'; - - protected $Name = 'LicensorPostalCode'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Postal Code'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorRegion.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorRegion.php deleted file mode 100644 index 5fd8ed0f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorRegion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorRegion extends AbstractTag -{ - - protected $Id = 'LicensorLicensorRegion'; - - protected $Name = 'LicensorRegion'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Region'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorStreetAddress.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorStreetAddress.php deleted file mode 100644 index 8c240b685..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorStreetAddress.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorStreetAddress extends AbstractTag -{ - - protected $Id = 'LicensorLicensorStreetAddress'; - - protected $Name = 'LicensorStreetAddress'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Street Address'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephone1.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephone1.php deleted file mode 100644 index b9d797d85..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephone1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorTelephone1 extends AbstractTag -{ - - protected $Id = 'LicensorLicensorTelephone1'; - - protected $Name = 'LicensorTelephone1'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Telephone 1'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephone2.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephone2.php deleted file mode 100644 index ac4e65336..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephone2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorTelephone2 extends AbstractTag -{ - - protected $Id = 'LicensorLicensorTelephone2'; - - protected $Name = 'LicensorTelephone2'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Telephone 2'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephoneType1.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephoneType1.php deleted file mode 100644 index 13baf6ab6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephoneType1.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorTelephoneType1 extends AbstractTag -{ - - protected $Id = 'LicensorLicensorTelephoneType1'; - - protected $Name = 'LicensorTelephoneType1'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Telephone Type 1'; - - protected $flag_List = true; - - protected $Values = array( - 'cell' => array( - 'Id' => 'cell', - 'Label' => 'Cell', - ), - 'fax' => array( - 'Id' => 'fax', - 'Label' => 'FAX', - ), - 'home' => array( - 'Id' => 'home', - 'Label' => 'Home', - ), - 'pager' => array( - 'Id' => 'pager', - 'Label' => 'Pager', - ), - 'work' => array( - 'Id' => 'work', - 'Label' => 'Work', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephoneType2.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephoneType2.php deleted file mode 100644 index 831c9517d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTelephoneType2.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorTelephoneType2 extends AbstractTag -{ - - protected $Id = 'LicensorLicensorTelephoneType2'; - - protected $Name = 'LicensorTelephoneType2'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Telephone Type 2'; - - protected $flag_List = true; - - protected $Values = array( - 'cell' => array( - 'Id' => 'cell', - 'Label' => 'Cell', - ), - 'fax' => array( - 'Id' => 'fax', - 'Label' => 'FAX', - ), - 'home' => array( - 'Id' => 'home', - 'Label' => 'Home', - ), - 'pager' => array( - 'Id' => 'pager', - 'Label' => 'Pager', - ), - 'work' => array( - 'Id' => 'work', - 'Label' => 'Work', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTransactionID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTransactionID.php deleted file mode 100644 index 558faba36..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorTransactionID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorTransactionID extends AbstractTag -{ - - protected $Id = 'LicensorTransactionID'; - - protected $Name = 'LicensorTransactionID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor Transaction ID'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorURL.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorURL.php deleted file mode 100644 index 274b193f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/LicensorURL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LicensorURL extends AbstractTag -{ - - protected $Id = 'LicensorLicensorURL'; - - protected $Name = 'LicensorURL'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Licensor URL'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/MediaConstraints.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/MediaConstraints.php deleted file mode 100644 index ea3f27fd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/MediaConstraints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaConstraints extends AbstractTag -{ - - protected $Id = 'MediaConstraints'; - - protected $Name = 'MediaConstraints'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Media Constraints'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/MediaSummaryCode.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/MediaSummaryCode.php deleted file mode 100644 index dc8e0a83d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/MediaSummaryCode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MediaSummaryCode extends AbstractTag -{ - - protected $Id = 'MediaSummaryCode'; - - protected $Name = 'MediaSummaryCode'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Media Summary Code'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/MinorModelAgeDisclosure.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/MinorModelAgeDisclosure.php deleted file mode 100644 index 6233521f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/MinorModelAgeDisclosure.php +++ /dev/null @@ -1,98 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MinorModelAgeDisclosure extends AbstractTag -{ - - protected $Id = 'MinorModelAgeDisclosure'; - - protected $Name = 'MinorModelAgeDisclosure'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Minor Model Age Disclosure'; - - protected $Values = array( - 'AG-A15' => array( - 'Id' => 'AG-A15', - 'Label' => 'Age 15', - ), - 'AG-A16' => array( - 'Id' => 'AG-A16', - 'Label' => 'Age 16', - ), - 'AG-A17' => array( - 'Id' => 'AG-A17', - 'Label' => 'Age 17', - ), - 'AG-A18' => array( - 'Id' => 'AG-A18', - 'Label' => 'Age 18', - ), - 'AG-A19' => array( - 'Id' => 'AG-A19', - 'Label' => 'Age 19', - ), - 'AG-A20' => array( - 'Id' => 'AG-A20', - 'Label' => 'Age 20', - ), - 'AG-A21' => array( - 'Id' => 'AG-A21', - 'Label' => 'Age 21', - ), - 'AG-A22' => array( - 'Id' => 'AG-A22', - 'Label' => 'Age 22', - ), - 'AG-A23' => array( - 'Id' => 'AG-A23', - 'Label' => 'Age 23', - ), - 'AG-A24' => array( - 'Id' => 'AG-A24', - 'Label' => 'Age 24', - ), - 'AG-A25' => array( - 'Id' => 'AG-A25', - 'Label' => 'Age 25 or Over', - ), - 'AG-U14' => array( - 'Id' => 'AG-U14', - 'Label' => 'Age 14 or Under', - ), - 'AG-UNK' => array( - 'Id' => 'AG-UNK', - 'Label' => 'Age Unknown', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ModelReleaseID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ModelReleaseID.php deleted file mode 100644 index d2f23ebe1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ModelReleaseID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelReleaseID extends AbstractTag -{ - - protected $Id = 'ModelReleaseID'; - - protected $Name = 'ModelReleaseID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Model Release ID'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ModelReleaseStatus.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ModelReleaseStatus.php deleted file mode 100644 index 7595f1242..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ModelReleaseStatus.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModelReleaseStatus extends AbstractTag -{ - - protected $Id = 'ModelReleaseStatus'; - - protected $Name = 'ModelReleaseStatus'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Model Release Status'; - - protected $Values = array( - 'MR-LMR' => array( - 'Id' => 'MR-LMR', - 'Label' => 'Limited or Incomplete Model Releases', - ), - 'MR-NAP' => array( - 'Id' => 'MR-NAP', - 'Label' => 'Not Applicable', - ), - 'MR-NON' => array( - 'Id' => 'MR-NON', - 'Label' => 'None', - ), - 'MR-UMR' => array( - 'Id' => 'MR-UMR', - 'Label' => 'Unlimited Model Releases', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherConditions.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherConditions.php deleted file mode 100644 index fb88e2f3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherConditions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherConditions extends AbstractTag -{ - - protected $Id = 'OtherConditions'; - - protected $Name = 'OtherConditions'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Other Conditions'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherConstraints.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherConstraints.php deleted file mode 100644 index 4d77801b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherConstraints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherConstraints extends AbstractTag -{ - - protected $Id = 'OtherConstraints'; - - protected $Name = 'OtherConstraints'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Other Constraints'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherImageInfo.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherImageInfo.php deleted file mode 100644 index ffc4fb16c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherImageInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherImageInfo extends AbstractTag -{ - - protected $Id = 'OtherImageInfo'; - - protected $Name = 'OtherImageInfo'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Other Image Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseDocuments.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseDocuments.php deleted file mode 100644 index 50b4e9f37..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseDocuments.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherLicenseDocuments extends AbstractTag -{ - - protected $Id = 'OtherLicenseDocuments'; - - protected $Name = 'OtherLicenseDocuments'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Other License Documents'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseInfo.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseInfo.php deleted file mode 100644 index 6ab56cf0f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseInfo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherLicenseInfo extends AbstractTag -{ - - protected $Id = 'OtherLicenseInfo'; - - protected $Name = 'OtherLicenseInfo'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Other License Info'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseRequirements.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseRequirements.php deleted file mode 100644 index d1bfb371e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/OtherLicenseRequirements.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OtherLicenseRequirements extends AbstractTag -{ - - protected $Id = 'OtherLicenseRequirements'; - - protected $Name = 'OtherLicenseRequirements'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Other License Requirements'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/PLUSVersion.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/PLUSVersion.php deleted file mode 100644 index f84d32856..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/PLUSVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PLUSVersion extends AbstractTag -{ - - protected $Id = 'Version'; - - protected $Name = 'PLUSVersion'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'PLUS Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/ProductOrServiceConstraints.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/ProductOrServiceConstraints.php deleted file mode 100644 index 8e64b9bd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/ProductOrServiceConstraints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProductOrServiceConstraints extends AbstractTag -{ - - protected $Id = 'ProductOrServiceConstraints'; - - protected $Name = 'ProductOrServiceConstraints'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Product Or Service Constraints'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/PropertyReleaseID.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/PropertyReleaseID.php deleted file mode 100644 index f5f1dbe1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/PropertyReleaseID.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PropertyReleaseID extends AbstractTag -{ - - protected $Id = 'PropertyReleaseID'; - - protected $Name = 'PropertyReleaseID'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Property Release ID'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/PropertyReleaseStatus.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/PropertyReleaseStatus.php deleted file mode 100644 index 78030938b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/PropertyReleaseStatus.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PropertyReleaseStatus extends AbstractTag -{ - - protected $Id = 'PropertyReleaseStatus'; - - protected $Name = 'PropertyReleaseStatus'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Property Release Status'; - - protected $Values = array( - 'PR-LPR' => array( - 'Id' => 'PR-LPR', - 'Label' => 'Limited or Incomplete Property Releases', - ), - 'PR-NAP' => array( - 'Id' => 'PR-NAP', - 'Label' => 'Not Applicable', - ), - 'PR-NON' => array( - 'Id' => 'PR-NON', - 'Label' => 'None', - ), - 'PR-UPR' => array( - 'Id' => 'PR-UPR', - 'Label' => 'Unlimited Property Releases', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/RegionConstraints.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/RegionConstraints.php deleted file mode 100644 index c90acf31e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/RegionConstraints.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RegionConstraints extends AbstractTag -{ - - protected $Id = 'RegionConstraints'; - - protected $Name = 'RegionConstraints'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Region Constraints'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/Reuse.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/Reuse.php deleted file mode 100644 index b8d560fed..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/Reuse.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Reuse extends AbstractTag -{ - - protected $Id = 'Reuse'; - - protected $Name = 'Reuse'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Reuse'; - - protected $Values = array( - 'RE-NAP' => array( - 'Id' => 'RE-NAP', - 'Label' => 'Not Applicable', - ), - 'RE-REU' => array( - 'Id' => 'RE-REU', - 'Label' => 'Repeat Use', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/TermsAndConditionsText.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/TermsAndConditionsText.php deleted file mode 100644 index 9e0e61aa3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/TermsAndConditionsText.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TermsAndConditionsText extends AbstractTag -{ - - protected $Id = 'TermsAndConditionsText'; - - protected $Name = 'TermsAndConditionsText'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Terms And Conditions Text'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPlus/TermsAndConditionsURL.php b/lib/PHPExiftool/Driver/Tag/XMPPlus/TermsAndConditionsURL.php deleted file mode 100644 index 88dfe8f47..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPlus/TermsAndConditionsURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPlus; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TermsAndConditionsURL extends AbstractTag -{ - - protected $Id = 'TermsAndConditionsURL'; - - protected $Name = 'TermsAndConditionsURL'; - - protected $FullName = 'XMP::plus'; - - protected $GroupName = 'XMP-plus'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-plus'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Terms And Conditions URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/AggregationType.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/AggregationType.php deleted file mode 100644 index aaaffc858..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/AggregationType.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AggregationType extends AbstractTag -{ - - protected $Id = 'aggregationType'; - - protected $Name = 'AggregationType'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Aggregation Type'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/AlternateTitle.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/AlternateTitle.php deleted file mode 100644 index aff171434..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/AlternateTitle.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AlternateTitle extends AbstractTag -{ - - protected $Id = 'alternateTitle'; - - protected $Name = 'AlternateTitle'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Alternate Title'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/ByteCount.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/ByteCount.php deleted file mode 100644 index f02d70b72..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/ByteCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ByteCount extends AbstractTag -{ - - protected $Id = 'byteCount'; - - protected $Name = 'ByteCount'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Byte Count'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Channel.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Channel.php deleted file mode 100644 index 8b9152350..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Channel.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Channel extends AbstractTag -{ - - protected $Id = 'channel'; - - protected $Name = 'Channel'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Channel'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/ComplianceProfile.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/ComplianceProfile.php deleted file mode 100644 index 4576e5370..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/ComplianceProfile.php +++ /dev/null @@ -1,52 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ComplianceProfile extends AbstractTag -{ - - protected $Id = 'complianceProfile'; - - protected $Name = 'ComplianceProfile'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Compliance Profile'; - - protected $flag_Avoid = true; - - protected $Values = array( - 'three' => array( - 'Id' => 'three', - 'Label' => 'Three', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Copyright.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Copyright.php deleted file mode 100644 index d22470b11..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/CorporateEntity.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/CorporateEntity.php deleted file mode 100644 index 07a485d80..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/CorporateEntity.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CorporateEntity extends AbstractTag -{ - - protected $Id = 'corporateEntity'; - - protected $Name = 'CorporateEntity'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Corporate Entity'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/CoverDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/CoverDate.php deleted file mode 100644 index 757148c17..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/CoverDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoverDate extends AbstractTag -{ - - protected $Id = 'coverDate'; - - protected $Name = 'CoverDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Cover Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/CoverDisplayDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/CoverDisplayDate.php deleted file mode 100644 index ed4caf67e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/CoverDisplayDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CoverDisplayDate extends AbstractTag -{ - - protected $Id = 'coverDisplayDate'; - - protected $Name = 'CoverDisplayDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Cover Display Date'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/CreationDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/CreationDate.php deleted file mode 100644 index a44c1c4e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/CreationDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreationDate extends AbstractTag -{ - - protected $Id = 'creationDate'; - - protected $Name = 'CreationDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Creation Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/DOI.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/DOI.php deleted file mode 100644 index 6ccc13e60..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/DOI.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DOI extends AbstractTag -{ - - protected $Id = 'doi'; - - protected $Name = 'DOI'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Digital Object Identifier'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/DateRecieved.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/DateRecieved.php deleted file mode 100644 index 97afc09df..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/DateRecieved.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateRecieved extends AbstractTag -{ - - protected $Id = 'dateRecieved'; - - protected $Name = 'DateRecieved'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date Recieved'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Distributor.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Distributor.php deleted file mode 100644 index 0b4c6348e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Distributor.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Distributor extends AbstractTag -{ - - protected $Id = 'distributor'; - - protected $Name = 'Distributor'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Distributor'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/EIssn.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/EIssn.php deleted file mode 100644 index aa4fc7f7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/EIssn.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EIssn extends AbstractTag -{ - - protected $Id = 'eIssn'; - - protected $Name = 'EIssn'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'E Issn'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Edition.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Edition.php deleted file mode 100644 index 7573cea71..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Edition.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Edition extends AbstractTag -{ - - protected $Id = 'edition'; - - protected $Name = 'Edition'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Edition'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/EmbargoDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/EmbargoDate.php deleted file mode 100644 index 093dc11c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/EmbargoDate.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbargoDate extends AbstractTag -{ - - protected $Id = 'embargoDate'; - - protected $Name = 'EmbargoDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Embargo Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/EndingPage.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/EndingPage.php deleted file mode 100644 index fabbfc234..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/EndingPage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EndingPage extends AbstractTag -{ - - protected $Id = 'endingPage'; - - protected $Name = 'EndingPage'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ending Page'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Event.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Event.php deleted file mode 100644 index 5037d2918..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Event.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Event extends AbstractTag -{ - - protected $Id = 'event'; - - protected $Name = 'Event'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Event'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/ExpirationDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/ExpirationDate.php deleted file mode 100644 index ae6ac1b2e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/ExpirationDate.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpirationDate extends AbstractTag -{ - - protected $Id = 'expirationDate'; - - protected $Name = 'ExpirationDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Expiration Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Genre.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Genre.php deleted file mode 100644 index 088925794..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Genre.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'genre'; - - protected $Name = 'Genre'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Genre'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasAlternative.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/HasAlternative.php deleted file mode 100644 index 9b81a2297..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasAlternative.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasAlternative extends AbstractTag -{ - - protected $Id = 'hasAlternative'; - - protected $Name = 'HasAlternative'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Has Alternative'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasCorrection.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/HasCorrection.php deleted file mode 100644 index 1d9ac125b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasCorrection.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasCorrection extends AbstractTag -{ - - protected $Id = 'hasCorrection'; - - protected $Name = 'HasCorrection'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Has Correction'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasPreviousVersion.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/HasPreviousVersion.php deleted file mode 100644 index 4cdee302a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasPreviousVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasPreviousVersion extends AbstractTag -{ - - protected $Id = 'hasPreviousVersion'; - - protected $Name = 'HasPreviousVersion'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Has Previous Version'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasTranslation.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/HasTranslation.php deleted file mode 100644 index 4c83471b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/HasTranslation.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasTranslation extends AbstractTag -{ - - protected $Id = 'hasTranslation'; - - protected $Name = 'HasTranslation'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Has Translation'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/ISBN.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/ISBN.php deleted file mode 100644 index 698d1736c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/ISBN.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISBN extends AbstractTag -{ - - protected $Id = 'isbn'; - - protected $Name = 'ISBN'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'ISBN'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/ISSN.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/ISSN.php deleted file mode 100644 index 2987d663b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/ISSN.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ISSN extends AbstractTag -{ - - protected $Id = 'issn'; - - protected $Name = 'ISSN'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'ISSN'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Industry.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Industry.php deleted file mode 100644 index 03fd7cafa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Industry.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Industry extends AbstractTag -{ - - protected $Id = 'industry'; - - protected $Name = 'Industry'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Industry'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/IsCorrectionOf.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/IsCorrectionOf.php deleted file mode 100644 index 5630bbce1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/IsCorrectionOf.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsCorrectionOf extends AbstractTag -{ - - protected $Id = 'isCorrectionOf'; - - protected $Name = 'IsCorrectionOf'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Is Correction Of'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/IsTranslationOf.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/IsTranslationOf.php deleted file mode 100644 index e2a42a414..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/IsTranslationOf.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IsTranslationOf extends AbstractTag -{ - - protected $Id = 'isTranslationOf'; - - protected $Name = 'IsTranslationOf'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Is Translation Of'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/IssueIdentifier.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/IssueIdentifier.php deleted file mode 100644 index a131de393..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/IssueIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IssueIdentifier extends AbstractTag -{ - - protected $Id = 'issueIdentifier'; - - protected $Name = 'IssueIdentifier'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Issue Identifier'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/IssueName.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/IssueName.php deleted file mode 100644 index 58d7d0e56..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/IssueName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IssueName extends AbstractTag -{ - - protected $Id = 'issueName'; - - protected $Name = 'IssueName'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Issue Name'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Keyword.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Keyword.php deleted file mode 100644 index ff6cde285..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Keyword.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keyword extends AbstractTag -{ - - protected $Id = 'keyword'; - - protected $Name = 'Keyword'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keyword'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/KillDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/KillDate.php deleted file mode 100644 index 19e6f7b67..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/KillDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class KillDate extends AbstractTag -{ - - protected $Id = 'killDate'; - - protected $Name = 'KillDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Kill Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Location.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Location.php deleted file mode 100644 index d5a78b82b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Location.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Location extends AbstractTag -{ - - protected $Id = 'location'; - - protected $Name = 'Location'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Location'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/ModificationDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/ModificationDate.php deleted file mode 100644 index adbf005c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/ModificationDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModificationDate extends AbstractTag -{ - - protected $Id = 'modificationDate'; - - protected $Name = 'ModificationDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Modification Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Number.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Number.php deleted file mode 100644 index 8c96deb09..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Number.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Number extends AbstractTag -{ - - protected $Id = 'number'; - - protected $Name = 'Number'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Number'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Object.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Object.php deleted file mode 100644 index 794d85241..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Object.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Object extends AbstractTag -{ - - protected $Id = 'object'; - - protected $Name = 'Object'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Object'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Organization.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Organization.php deleted file mode 100644 index 9c883c582..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Organization.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Organization extends AbstractTag -{ - - protected $Id = 'organization'; - - protected $Name = 'Organization'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Organization'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/OriginPlatform.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/OriginPlatform.php deleted file mode 100644 index d493449ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/OriginPlatform.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginPlatform extends AbstractTag -{ - - protected $Id = 'originPlatform'; - - protected $Name = 'OriginPlatform'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Origin Platform'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - - protected $Values = array( - 'broadcast' => array( - 'Id' => 'broadcast', - 'Label' => 'Broadcast', - ), - 'email' => array( - 'Id' => 'email', - 'Label' => 'E-Mail', - ), - 'mobile' => array( - 'Id' => 'mobile', - 'Label' => 'Mobile', - ), - 'other' => array( - 'Id' => 'other', - 'Label' => 'Other', - ), - 'print' => array( - 'Id' => 'print', - 'Label' => 'Print', - ), - 'recordableMedia' => array( - 'Id' => 'recordableMedia', - 'Label' => 'Recordable Media', - ), - 'web' => array( - 'Id' => 'web', - 'Label' => 'Web', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/PageRange.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/PageRange.php deleted file mode 100644 index 6536e2c4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/PageRange.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageRange extends AbstractTag -{ - - protected $Id = 'pageRange'; - - protected $Name = 'PageRange'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Page Range'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Person.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Person.php deleted file mode 100644 index 5a56e9838..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Person.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Person extends AbstractTag -{ - - protected $Id = 'person'; - - protected $Name = 'Person'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Person'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/PublicationDate.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/PublicationDate.php deleted file mode 100644 index 52ae63c8e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/PublicationDate.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublicationDate extends AbstractTag -{ - - protected $Id = 'publicationDate'; - - protected $Name = 'PublicationDate'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Publication Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/PublicationName.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/PublicationName.php deleted file mode 100644 index 719ae860a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/PublicationName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PublicationName extends AbstractTag -{ - - protected $Id = 'publicationName'; - - protected $Name = 'PublicationName'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Publication Name'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/RightsAgent.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/RightsAgent.php deleted file mode 100644 index a69bd9854..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/RightsAgent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsAgent extends AbstractTag -{ - - protected $Id = 'rightsAgent'; - - protected $Name = 'RightsAgent'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rights Agent'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Section.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Section.php deleted file mode 100644 index c96ae3fe1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Section.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Section extends AbstractTag -{ - - protected $Id = 'section'; - - protected $Name = 'Section'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Section'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/StartingPage.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/StartingPage.php deleted file mode 100644 index f3266af3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/StartingPage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartingPage extends AbstractTag -{ - - protected $Id = 'startingPage'; - - protected $Name = 'StartingPage'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Starting Page'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection1.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection1.php deleted file mode 100644 index 1d17577cb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection1.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subsection1 extends AbstractTag -{ - - protected $Id = 'subsection1'; - - protected $Name = 'Subsection1'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subsection 1'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection2.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection2.php deleted file mode 100644 index cde73ae8c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection2.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subsection2 extends AbstractTag -{ - - protected $Id = 'subsection2'; - - protected $Name = 'Subsection2'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subsection 2'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection3.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection3.php deleted file mode 100644 index c8d96f590..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection3.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subsection3 extends AbstractTag -{ - - protected $Id = 'subsection3'; - - protected $Name = 'Subsection3'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subsection 3'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection4.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection4.php deleted file mode 100644 index 9421744d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Subsection4.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subsection4 extends AbstractTag -{ - - protected $Id = 'subsection4'; - - protected $Name = 'Subsection4'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subsection 4'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Teaser.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Teaser.php deleted file mode 100644 index 290b1bdb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Teaser.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Teaser extends AbstractTag -{ - - protected $Id = 'teaser'; - - protected $Name = 'Teaser'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Teaser'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Ticker.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Ticker.php deleted file mode 100644 index 98431477b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Ticker.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ticker extends AbstractTag -{ - - protected $Id = 'ticker'; - - protected $Name = 'Ticker'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ticker'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/TimePeriod.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/TimePeriod.php deleted file mode 100644 index 323641ad0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/TimePeriod.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimePeriod extends AbstractTag -{ - - protected $Id = 'timePeriod'; - - protected $Name = 'TimePeriod'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time Period'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/URL.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/URL.php deleted file mode 100644 index 07eee7ed8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/URL.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class URL extends AbstractTag -{ - - protected $Id = 'url'; - - protected $Name = 'URL'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'URL'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/VersionIdentifier.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/VersionIdentifier.php deleted file mode 100644 index 36d565dac..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/VersionIdentifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionIdentifier extends AbstractTag -{ - - protected $Id = 'versionIdentifier'; - - protected $Name = 'VersionIdentifier'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Version Identifier'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/Volume.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/Volume.php deleted file mode 100644 index 7cc3693ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/Volume.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Volume extends AbstractTag -{ - - protected $Id = 'volume'; - - protected $Name = 'Volume'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Volume'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrism/WordCount.php b/lib/PHPExiftool/Driver/Tag/XMPPrism/WordCount.php deleted file mode 100644 index 92f32c8a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrism/WordCount.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrism; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WordCount extends AbstractTag -{ - - protected $Id = 'wordCount'; - - protected $Name = 'WordCount'; - - protected $FullName = 'XMP::prism'; - - protected $GroupName = 'XMP-prism'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prism'; - - protected $g2 = 'Document'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Word Count'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrl/Geography.php b/lib/PHPExiftool/Driver/Tag/XMPPrl/Geography.php deleted file mode 100644 index 603078916..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrl/Geography.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrl; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Geography extends AbstractTag -{ - - protected $Id = 'geography'; - - protected $Name = 'Geography'; - - protected $FullName = 'XMP::prl'; - - protected $GroupName = 'XMP-prl'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prl'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Geography'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrl/Industry.php b/lib/PHPExiftool/Driver/Tag/XMPPrl/Industry.php deleted file mode 100644 index 7623b2bef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrl/Industry.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrl; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Industry extends AbstractTag -{ - - protected $Id = 'industry'; - - protected $Name = 'Industry'; - - protected $FullName = 'XMP::prl'; - - protected $GroupName = 'XMP-prl'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prl'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Industry'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPrl/Usage.php b/lib/PHPExiftool/Driver/Tag/XMPPrl/Usage.php deleted file mode 100644 index 87e77997b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPrl/Usage.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPrl; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Usage extends AbstractTag -{ - - protected $Id = 'usage'; - - protected $Name = 'Usage'; - - protected $FullName = 'XMP::prl'; - - protected $GroupName = 'XMP-prl'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-prl'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Usage'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/AdultContentWarning.php b/lib/PHPExiftool/Driver/Tag/XMPPur/AdultContentWarning.php deleted file mode 100644 index 737847f22..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/AdultContentWarning.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AdultContentWarning extends AbstractTag -{ - - protected $Id = 'adultContentWarning'; - - protected $Name = 'AdultContentWarning'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Adult Content Warning'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/Agreement.php b/lib/PHPExiftool/Driver/Tag/XMPPur/Agreement.php deleted file mode 100644 index d0526578c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/Agreement.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Agreement extends AbstractTag -{ - - protected $Id = 'agreement'; - - protected $Name = 'Agreement'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Agreement'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/Copyright.php b/lib/PHPExiftool/Driver/Tag/XMPPur/Copyright.php deleted file mode 100644 index 0bf0168d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/CreditLine.php b/lib/PHPExiftool/Driver/Tag/XMPPur/CreditLine.php deleted file mode 100644 index 14b5a5fd8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/CreditLine.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreditLine extends AbstractTag -{ - - protected $Id = 'creditLine'; - - protected $Name = 'CreditLine'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Credit Line'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/EmbargoDate.php b/lib/PHPExiftool/Driver/Tag/XMPPur/EmbargoDate.php deleted file mode 100644 index 7f63e80d7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/EmbargoDate.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class EmbargoDate extends AbstractTag -{ - - protected $Id = 'embargoDate'; - - protected $Name = 'EmbargoDate'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Embargo Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/ExclusivityEndDate.php b/lib/PHPExiftool/Driver/Tag/XMPPur/ExclusivityEndDate.php deleted file mode 100644 index 7547c84f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/ExclusivityEndDate.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExclusivityEndDate extends AbstractTag -{ - - protected $Id = 'exclusivityEndDate'; - - protected $Name = 'ExclusivityEndDate'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Exclusivity End Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/ExpirationDate.php b/lib/PHPExiftool/Driver/Tag/XMPPur/ExpirationDate.php deleted file mode 100644 index b671ba89f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/ExpirationDate.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExpirationDate extends AbstractTag -{ - - protected $Id = 'expirationDate'; - - protected $Name = 'ExpirationDate'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Expiration Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/ImageSizeRestriction.php b/lib/PHPExiftool/Driver/Tag/XMPPur/ImageSizeRestriction.php deleted file mode 100644 index 653466baf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/ImageSizeRestriction.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageSizeRestriction extends AbstractTag -{ - - protected $Id = 'imageSizeRestriction'; - - protected $Name = 'ImageSizeRestriction'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Image Size Restriction'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/OptionEndDate.php b/lib/PHPExiftool/Driver/Tag/XMPPur/OptionEndDate.php deleted file mode 100644 index c8f374b20..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/OptionEndDate.php +++ /dev/null @@ -1,51 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OptionEndDate extends AbstractTag -{ - - protected $Id = 'optionEndDate'; - - protected $Name = 'OptionEndDate'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Option End Date'; - - protected $local_g2 = 'Time'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/Permissions.php b/lib/PHPExiftool/Driver/Tag/XMPPur/Permissions.php deleted file mode 100644 index db345f77c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/Permissions.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Permissions extends AbstractTag -{ - - protected $Id = 'permissions'; - - protected $Name = 'Permissions'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Permissions'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/Restrictions.php b/lib/PHPExiftool/Driver/Tag/XMPPur/Restrictions.php deleted file mode 100644 index 74ad41dbb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/Restrictions.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Restrictions extends AbstractTag -{ - - protected $Id = 'restrictions'; - - protected $Name = 'Restrictions'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Restrictions'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/ReuseProhibited.php b/lib/PHPExiftool/Driver/Tag/XMPPur/ReuseProhibited.php deleted file mode 100644 index 2279cea22..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/ReuseProhibited.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReuseProhibited extends AbstractTag -{ - - protected $Id = 'reuseProhibited'; - - protected $Name = 'ReuseProhibited'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Reuse Prohibited'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/RightsAgent.php b/lib/PHPExiftool/Driver/Tag/XMPPur/RightsAgent.php deleted file mode 100644 index 198053c5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/RightsAgent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsAgent extends AbstractTag -{ - - protected $Id = 'rightsAgent'; - - protected $Name = 'RightsAgent'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rights Agent'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/RightsOwner.php b/lib/PHPExiftool/Driver/Tag/XMPPur/RightsOwner.php deleted file mode 100644 index 7d503d803..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/RightsOwner.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RightsOwner extends AbstractTag -{ - - protected $Id = 'rightsOwner'; - - protected $Name = 'RightsOwner'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rights Owner'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPPur/UsageFee.php b/lib/PHPExiftool/Driver/Tag/XMPPur/UsageFee.php deleted file mode 100644 index 45519371c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPPur/UsageFee.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPPur; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsageFee extends AbstractTag -{ - - protected $Id = 'usageFee'; - - protected $Name = 'UsageFee'; - - protected $FullName = 'XMP::pur'; - - protected $GroupName = 'XMP-pur'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-pur'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Usage Fee'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPRdf/About.php b/lib/PHPExiftool/Driver/Tag/XMPRdf/About.php deleted file mode 100644 index 9765008df..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPRdf/About.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPRdf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class About extends AbstractTag -{ - - protected $Id = 'about'; - - protected $Name = 'About'; - - protected $FullName = 'XMP::rdf'; - - protected $GroupName = 'XMP-rdf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-rdf'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'About'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPSwf/BackgroundAlpha.php b/lib/PHPExiftool/Driver/Tag/XMPSwf/BackgroundAlpha.php deleted file mode 100644 index 6b076afb1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPSwf/BackgroundAlpha.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPSwf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BackgroundAlpha extends AbstractTag -{ - - protected $Id = 'bgalpha'; - - protected $Name = 'BackgroundAlpha'; - - protected $FullName = 'XMP::swf'; - - protected $GroupName = 'XMP-swf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-swf'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Background Alpha'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPSwf/ForwardLock.php b/lib/PHPExiftool/Driver/Tag/XMPSwf/ForwardLock.php deleted file mode 100644 index 9de89e695..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPSwf/ForwardLock.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPSwf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ForwardLock extends AbstractTag -{ - - protected $Id = 'forwardlock'; - - protected $Name = 'ForwardLock'; - - protected $FullName = 'XMP::swf'; - - protected $GroupName = 'XMP-swf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-swf'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Forward Lock'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPSwf/MaxStorage.php b/lib/PHPExiftool/Driver/Tag/XMPSwf/MaxStorage.php deleted file mode 100644 index 5f9523908..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPSwf/MaxStorage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPSwf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxStorage extends AbstractTag -{ - - protected $Id = 'maxstorage'; - - protected $Name = 'MaxStorage'; - - protected $FullName = 'XMP::swf'; - - protected $GroupName = 'XMP-swf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-swf'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Max Storage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPSwf/Type.php b/lib/PHPExiftool/Driver/Tag/XMPSwf/Type.php deleted file mode 100644 index f44752f7c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPSwf/Type.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPSwf; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Type extends AbstractTag -{ - - protected $Id = 'type'; - - protected $Name = 'Type'; - - protected $FullName = 'XMP::swf'; - - protected $GroupName = 'XMP-swf'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-swf'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Type'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/Artist.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/Artist.php deleted file mode 100644 index 0f9e65ccc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/Artist.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'Artist'; - - protected $Name = 'Artist'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/BitsPerSample.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/BitsPerSample.php deleted file mode 100644 index bca66f0e7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/BitsPerSample.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BitsPerSample extends AbstractTag -{ - - protected $Id = 'BitsPerSample'; - - protected $Name = 'BitsPerSample'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Bits Per Sample'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/Compression.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/Compression.php deleted file mode 100644 index 555d293f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/Compression.php +++ /dev/null @@ -1,206 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 'Compression'; - - protected $Name = 'Compression'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Compression'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Uncompressed', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'CCITT 1D', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'T4/Group 3 Fax', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'T6/Group 4 Fax', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'LZW', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'JPEG (old-style)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'JPEG', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Adobe Deflate', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'JBIG B&W', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'JBIG Color', - ), - 99 => array( - 'Id' => 99, - 'Label' => 'JPEG', - ), - 262 => array( - 'Id' => 262, - 'Label' => 'Kodak 262', - ), - 32766 => array( - 'Id' => 32766, - 'Label' => 'Next', - ), - 32767 => array( - 'Id' => 32767, - 'Label' => 'Sony ARW Compressed', - ), - 32769 => array( - 'Id' => 32769, - 'Label' => 'Packed RAW', - ), - 32770 => array( - 'Id' => 32770, - 'Label' => 'Samsung SRW Compressed', - ), - 32771 => array( - 'Id' => 32771, - 'Label' => 'CCIRLEW', - ), - 32773 => array( - 'Id' => 32773, - 'Label' => 'PackBits', - ), - 32809 => array( - 'Id' => 32809, - 'Label' => 'Thunderscan', - ), - 32867 => array( - 'Id' => 32867, - 'Label' => 'Kodak KDC Compressed', - ), - 32895 => array( - 'Id' => 32895, - 'Label' => 'IT8CTPAD', - ), - 32896 => array( - 'Id' => 32896, - 'Label' => 'IT8LW', - ), - 32897 => array( - 'Id' => 32897, - 'Label' => 'IT8MP', - ), - 32898 => array( - 'Id' => 32898, - 'Label' => 'IT8BL', - ), - 32908 => array( - 'Id' => 32908, - 'Label' => 'PixarFilm', - ), - 32909 => array( - 'Id' => 32909, - 'Label' => 'PixarLog', - ), - 32946 => array( - 'Id' => 32946, - 'Label' => 'Deflate', - ), - 32947 => array( - 'Id' => 32947, - 'Label' => 'DCS', - ), - 34661 => array( - 'Id' => 34661, - 'Label' => 'JBIG', - ), - 34676 => array( - 'Id' => 34676, - 'Label' => 'SGILog', - ), - 34677 => array( - 'Id' => 34677, - 'Label' => 'SGILog24', - ), - 34712 => array( - 'Id' => 34712, - 'Label' => 'JPEG 2000', - ), - 34713 => array( - 'Id' => 34713, - 'Label' => 'Nikon NEF Compressed', - ), - 34715 => array( - 'Id' => 34715, - 'Label' => 'JBIG2 TIFF FX', - ), - 34718 => array( - 'Id' => 34718, - 'Label' => 'Microsoft Document Imaging (MDI) Binary Level Codec', - ), - 34719 => array( - 'Id' => 34719, - 'Label' => 'Microsoft Document Imaging (MDI) Progressive Transform Codec', - ), - 34720 => array( - 'Id' => 34720, - 'Label' => 'Microsoft Document Imaging (MDI) Vector', - ), - 34892 => array( - 'Id' => 34892, - 'Label' => 'Lossy JPEG', - ), - 65000 => array( - 'Id' => 65000, - 'Label' => 'Kodak DCR Compressed', - ), - 65535 => array( - 'Id' => 65535, - 'Label' => 'Pentax PEF Compressed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/Copyright.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/Copyright.php deleted file mode 100644 index 7a2b59ae9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/Copyright.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'Copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/DateTime.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/DateTime.php deleted file mode 100644 index b43750d0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/DateTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DateTime extends AbstractTag -{ - - protected $Id = 'DateTime'; - - protected $Name = 'DateTime'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Date/Time Modified'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageDescription.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageDescription.php deleted file mode 100644 index 5aa20d1bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageDescription.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageDescription extends AbstractTag -{ - - protected $Id = 'ImageDescription'; - - protected $Name = 'ImageDescription'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Image Description'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageHeight.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageHeight.php deleted file mode 100644 index b167f25a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageHeight.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageHeight extends AbstractTag -{ - - protected $Id = 'ImageLength'; - - protected $Name = 'ImageHeight'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Image Height'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageWidth.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageWidth.php deleted file mode 100644 index c89f3fcde..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/ImageWidth.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ImageWidth extends AbstractTag -{ - - protected $Id = 'ImageWidth'; - - protected $Name = 'ImageWidth'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Image Width'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/Make.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/Make.php deleted file mode 100644 index db746a2ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/Make.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Make extends AbstractTag -{ - - protected $Id = 'Make'; - - protected $Name = 'Make'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Make'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/Model.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/Model.php deleted file mode 100644 index 705625dd0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/Model.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Model extends AbstractTag -{ - - protected $Id = 'Model'; - - protected $Name = 'Model'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Model Name'; - - protected $local_g2 = 'Camera'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/NativeDigest.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/NativeDigest.php deleted file mode 100644 index bc3f19f00..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/NativeDigest.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NativeDigest extends AbstractTag -{ - - protected $Id = 'NativeDigest'; - - protected $Name = 'NativeDigest'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Native Digest'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/Orientation.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/Orientation.php deleted file mode 100644 index d9d537530..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/Orientation.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Orientation extends AbstractTag -{ - - protected $Id = 'Orientation'; - - protected $Name = 'Orientation'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Orientation'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Horizontal (normal)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Mirror horizontal', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Rotate 180', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Mirror vertical', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Mirror horizontal and rotate 270 CW', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Rotate 90 CW', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Mirror horizontal and rotate 90 CW', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Rotate 270 CW', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/PhotometricInterpretation.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/PhotometricInterpretation.php deleted file mode 100644 index 380313b17..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/PhotometricInterpretation.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PhotometricInterpretation extends AbstractTag -{ - - protected $Id = 'PhotometricInterpretation'; - - protected $Name = 'PhotometricInterpretation'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Photometric Interpretation'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'WhiteIsZero', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'BlackIsZero', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'RGB', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'RGB Palette', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Transparency Mask', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'CMYK', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'YCbCr', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'CIELab', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'ICCLab', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'ITULab', - ), - 32803 => array( - 'Id' => 32803, - 'Label' => 'Color Filter Array', - ), - 32844 => array( - 'Id' => 32844, - 'Label' => 'Pixar LogL', - ), - 32845 => array( - 'Id' => 32845, - 'Label' => 'Pixar LogLuv', - ), - 34892 => array( - 'Id' => 34892, - 'Label' => 'Linear Raw', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/PlanarConfiguration.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/PlanarConfiguration.php deleted file mode 100644 index db86ec15c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/PlanarConfiguration.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlanarConfiguration extends AbstractTag -{ - - protected $Id = 'PlanarConfiguration'; - - protected $Name = 'PlanarConfiguration'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Planar Configuration'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Chunky', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Planar', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/PrimaryChromaticities.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/PrimaryChromaticities.php deleted file mode 100644 index b2f953ab1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/PrimaryChromaticities.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PrimaryChromaticities extends AbstractTag -{ - - protected $Id = 'PrimaryChromaticities'; - - protected $Name = 'PrimaryChromaticities'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Primary Chromaticities'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/ReferenceBlackWhite.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/ReferenceBlackWhite.php deleted file mode 100644 index 8ac4dc599..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/ReferenceBlackWhite.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReferenceBlackWhite extends AbstractTag -{ - - protected $Id = 'ReferenceBlackWhite'; - - protected $Name = 'ReferenceBlackWhite'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Reference Black White'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/ResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/ResolutionUnit.php deleted file mode 100644 index 9a32c492e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/ResolutionUnit.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResolutionUnit extends AbstractTag -{ - - protected $Id = 'ResolutionUnit'; - - protected $Name = 'ResolutionUnit'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Resolution Unit'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'None', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'inches', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'cm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/SamplesPerPixel.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/SamplesPerPixel.php deleted file mode 100644 index 4641f0ffc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/SamplesPerPixel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SamplesPerPixel extends AbstractTag -{ - - protected $Id = 'SamplesPerPixel'; - - protected $Name = 'SamplesPerPixel'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Samples Per Pixel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/Software.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/Software.php deleted file mode 100644 index b073ac369..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/Software.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Software extends AbstractTag -{ - - protected $Id = 'Software'; - - protected $Name = 'Software'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Software'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/TransferFunction.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/TransferFunction.php deleted file mode 100644 index d708643e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/TransferFunction.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TransferFunction extends AbstractTag -{ - - protected $Id = 'TransferFunction'; - - protected $Name = 'TransferFunction'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Transfer Function'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/WhitePoint.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/WhitePoint.php deleted file mode 100644 index ba10ca950..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/WhitePoint.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WhitePoint extends AbstractTag -{ - - protected $Id = 'WhitePoint'; - - protected $Name = 'WhitePoint'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'White Point'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/XResolution.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/XResolution.php deleted file mode 100644 index 25ce95d37..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/XResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XResolution extends AbstractTag -{ - - protected $Id = 'XResolution'; - - protected $Name = 'XResolution'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'X Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrCoefficients.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrCoefficients.php deleted file mode 100644 index 3ca59fbb9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrCoefficients.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YCbCrCoefficients extends AbstractTag -{ - - protected $Id = 'YCbCrCoefficients'; - - protected $Name = 'YCbCrCoefficients'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Y Cb Cr Coefficients'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrPositioning.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrPositioning.php deleted file mode 100644 index 5ff5d6474..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrPositioning.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YCbCrPositioning extends AbstractTag -{ - - protected $Id = 'YCbCrPositioning'; - - protected $Name = 'YCbCrPositioning'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Y Cb Cr Positioning'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Centered', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Co-sited', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrSubSampling.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrSubSampling.php deleted file mode 100644 index fc8293de5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/YCbCrSubSampling.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YCbCrSubSampling extends AbstractTag -{ - - protected $Id = 'YCbCrSubSampling'; - - protected $Name = 'YCbCrSubSampling'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Y Cb Cr Sub Sampling'; - - protected $flag_List = true; - - protected $flag_Seq = true; - - protected $Values = array( - '1 1' => array( - 'Id' => '1 1', - 'Label' => 'YCbCr4:4:4 (1 1)', - ), - '1 2' => array( - 'Id' => '1 2', - 'Label' => 'YCbCr4:4:0 (1 2)', - ), - '1 4' => array( - 'Id' => '1 4', - 'Label' => 'YCbCr4:4:1 (1 4)', - ), - '2 1' => array( - 'Id' => '2 1', - 'Label' => 'YCbCr4:2:2 (2 1)', - ), - '2 2' => array( - 'Id' => '2 2', - 'Label' => 'YCbCr4:2:0 (2 2)', - ), - '2 4' => array( - 'Id' => '2 4', - 'Label' => 'YCbCr4:2:1 (2 4)', - ), - '4 1' => array( - 'Id' => '4 1', - 'Label' => 'YCbCr4:1:1 (4 1)', - ), - '4 2' => array( - 'Id' => '4 2', - 'Label' => 'YCbCr4:1:0 (4 2)', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPTiff/YResolution.php b/lib/PHPExiftool/Driver/Tag/XMPTiff/YResolution.php deleted file mode 100644 index 968cfbc23..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPTiff/YResolution.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPTiff; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class YResolution extends AbstractTag -{ - - protected $Id = 'YResolution'; - - protected $Name = 'YResolution'; - - protected $FullName = 'XMP::tiff'; - - protected $GroupName = 'XMP-tiff'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-tiff'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Y Resolution'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPX/XMPToolkit.php b/lib/PHPExiftool/Driver/Tag/XMPX/XMPToolkit.php deleted file mode 100644 index ac8fa1d60..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPX/XMPToolkit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPX; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class XMPToolkit extends AbstractTag -{ - - protected $Id = 'xmptk'; - - protected $Name = 'XMPToolkit'; - - protected $FullName = 'XMP::x'; - - protected $GroupName = 'XMP-x'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-x'; - - protected $g2 = 'Document'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'XMP Toolkit'; - - protected $flag_Unsafe = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Advisory.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Advisory.php deleted file mode 100644 index 748a62e1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Advisory.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Advisory extends AbstractTag -{ - - protected $Id = 'Advisory'; - - protected $Name = 'Advisory'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Advisory'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Author.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Author.php deleted file mode 100644 index f890dc186..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Author.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Author extends AbstractTag -{ - - protected $Id = 'Author'; - - protected $Name = 'Author'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Author'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/BaseURL.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/BaseURL.php deleted file mode 100644 index cee9fbe20..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/BaseURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BaseURL extends AbstractTag -{ - - protected $Id = 'BaseURL'; - - protected $Name = 'BaseURL'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Base URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/CreateDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/CreateDate.php deleted file mode 100644 index 946d74e3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/CreateDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreateDate extends AbstractTag -{ - - protected $Id = 'CreateDate'; - - protected $Name = 'CreateDate'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Create Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/CreatorTool.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/CreatorTool.php deleted file mode 100644 index 20ed0ee57..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/CreatorTool.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreatorTool extends AbstractTag -{ - - protected $Id = 'CreatorTool'; - - protected $Name = 'CreatorTool'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Creator Tool'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Description.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Description.php deleted file mode 100644 index a6f0daa1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Description.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Description extends AbstractTag -{ - - protected $Id = 'Description'; - - protected $Name = 'Description'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Description'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Format.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Format.php deleted file mode 100644 index 24d6810cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Format.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Format extends AbstractTag -{ - - protected $Id = 'Format'; - - protected $Name = 'Format'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Format'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Identifier.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Identifier.php deleted file mode 100644 index 01bec3f4b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Identifier.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Identifier extends AbstractTag -{ - - protected $Id = 'Identifier'; - - protected $Name = 'Identifier'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Identifier'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Keywords.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Keywords.php deleted file mode 100644 index 222fbce97..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Keywords.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Keywords extends AbstractTag -{ - - protected $Id = 'Keywords'; - - protected $Name = 'Keywords'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Keywords'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Label.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Label.php deleted file mode 100644 index 3dc03f15c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Label.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Label extends AbstractTag -{ - - protected $Id = 'Label'; - - protected $Name = 'Label'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/MetadataDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/MetadataDate.php deleted file mode 100644 index 79e92c05f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/MetadataDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataDate extends AbstractTag -{ - - protected $Id = 'MetadataDate'; - - protected $Name = 'MetadataDate'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Metadata Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/ModifyDate.php deleted file mode 100644 index 84a411ddb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'ModifyDate'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Nickname.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Nickname.php deleted file mode 100644 index 42f671d5f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Nickname.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Nickname extends AbstractTag -{ - - protected $Id = 'Nickname'; - - protected $Name = 'Nickname'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Nickname'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImage.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImage.php deleted file mode 100644 index 627103ac2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImage.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageImage extends AbstractTag -{ - - protected $Id = 'PageInfoImage'; - - protected $Name = 'PageImage'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Page Image'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageFormat.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageFormat.php deleted file mode 100644 index e98bc9cc4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageImageFormat extends AbstractTag -{ - - protected $Id = 'PageInfoFormat'; - - protected $Name = 'PageImageFormat'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Page Image Format'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageHeight.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageHeight.php deleted file mode 100644 index 0c6641a0a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageImageHeight extends AbstractTag -{ - - protected $Id = 'PageInfoHeight'; - - protected $Name = 'PageImageHeight'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Page Image Height'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImagePageNumber.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImagePageNumber.php deleted file mode 100644 index 70e9e434d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImagePageNumber.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageImagePageNumber extends AbstractTag -{ - - protected $Id = 'PageInfoPageNumber'; - - protected $Name = 'PageImagePageNumber'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Page Image Page Number'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageWidth.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageWidth.php deleted file mode 100644 index 1a0f5d1e5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageImageWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageImageWidth extends AbstractTag -{ - - protected $Id = 'PageInfoWidth'; - - protected $Name = 'PageImageWidth'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Page Image Width'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageInfo.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/PageInfo.php deleted file mode 100644 index 8cfbd7ae1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/PageInfo.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PageInfo extends AbstractTag -{ - - protected $Id = 'PageInfo'; - - protected $Name = 'PageInfo'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Page Info'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Rating.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Rating.php deleted file mode 100644 index 259d97373..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Rating.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Rating extends AbstractTag -{ - - protected $Id = 'Rating'; - - protected $Name = 'Rating'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Rating'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailFormat.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailFormat.php deleted file mode 100644 index 2662c6a3f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailFormat.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailFormat extends AbstractTag -{ - - protected $Id = 'ThumbnailsFormat'; - - protected $Name = 'ThumbnailFormat'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Format'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailHeight.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailHeight.php deleted file mode 100644 index 2013895cc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailHeight.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailHeight extends AbstractTag -{ - - protected $Id = 'ThumbnailsHeight'; - - protected $Name = 'ThumbnailHeight'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Height'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailImage.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailImage.php deleted file mode 100644 index 3806e0ca3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailImage.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailImage extends AbstractTag -{ - - protected $Id = 'ThumbnailsImage'; - - protected $Name = 'ThumbnailImage'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Image'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailWidth.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailWidth.php deleted file mode 100644 index 1c14143ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/ThumbnailWidth.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ThumbnailWidth extends AbstractTag -{ - - protected $Id = 'ThumbnailsWidth'; - - protected $Name = 'ThumbnailWidth'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Thumbnail Width'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Thumbnails.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Thumbnails.php deleted file mode 100644 index 0531ffc02..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Thumbnails.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Thumbnails extends AbstractTag -{ - - protected $Id = 'Thumbnails'; - - protected $Name = 'Thumbnails'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Thumbnails'; - - protected $flag_List = true; - - protected $flag_Alt = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmp/Title.php b/lib/PHPExiftool/Driver/Tag/XMPXmp/Title.php deleted file mode 100644 index 9a7aab196..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmp/Title.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmp; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Title extends AbstractTag -{ - - protected $Id = 'Title'; - - protected $Name = 'Title'; - - protected $FullName = 'XMP::xmp'; - - protected $GroupName = 'XMP-xmp'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmp'; - - protected $g2 = 'Image'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Title'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRef.php b/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRef.php deleted file mode 100644 index 85b8f22b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRef.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpBJ; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobRef extends AbstractTag -{ - - protected $Id = 'JobRef'; - - protected $Name = 'JobRef'; - - protected $FullName = 'XMP::xmpBJ'; - - protected $GroupName = 'XMP-xmpBJ'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpBJ'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Job Ref'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefId.php b/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefId.php deleted file mode 100644 index 0fb211dca..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefId.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpBJ; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobRefId extends AbstractTag -{ - - protected $Id = 'JobRefId'; - - protected $Name = 'JobRefId'; - - protected $FullName = 'XMP::xmpBJ'; - - protected $GroupName = 'XMP-xmpBJ'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpBJ'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Job Ref Id'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefName.php deleted file mode 100644 index d9bff08cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpBJ; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobRefName extends AbstractTag -{ - - protected $Id = 'JobRefName'; - - protected $Name = 'JobRefName'; - - protected $FullName = 'XMP::xmpBJ'; - - protected $GroupName = 'XMP-xmpBJ'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpBJ'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Job Ref Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefUrl.php b/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefUrl.php deleted file mode 100644 index 6258691c9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpBJ/JobRefUrl.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpBJ; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class JobRefUrl extends AbstractTag -{ - - protected $Id = 'JobRefUrl'; - - protected $Name = 'JobRefUrl'; - - protected $FullName = 'XMP::xmpBJ'; - - protected $GroupName = 'XMP-xmpBJ'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpBJ'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Job Ref Url'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AbsPeakAudioFilePath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AbsPeakAudioFilePath.php deleted file mode 100644 index 247e4cca0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AbsPeakAudioFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AbsPeakAudioFilePath extends AbstractTag -{ - - protected $Id = 'absPeakAudioFilePath'; - - protected $Name = 'AbsPeakAudioFilePath'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Abs Peak Audio File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Album.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Album.php deleted file mode 100644 index eca9ab648..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Album.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Album extends AbstractTag -{ - - protected $Id = 'album'; - - protected $Name = 'Album'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Album'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTapeName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTapeName.php deleted file mode 100644 index 532014a95..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTapeName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AltTapeName extends AbstractTag -{ - - protected $Id = 'altTapeName'; - - protected $Name = 'AltTapeName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Alt Tape Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecode.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecode.php deleted file mode 100644 index 106d39c03..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AltTimecode extends AbstractTag -{ - - protected $Id = 'altTimecode'; - - protected $Name = 'AltTimecode'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Alt Timecode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeTimeFormat.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeTimeFormat.php deleted file mode 100644 index 65b564925..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeTimeFormat.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AltTimecodeTimeFormat extends AbstractTag -{ - - protected $Id = 'altTimecodeTimeFormat'; - - protected $Name = 'AltTimecodeTimeFormat'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Alt Timecode Time Format'; - - protected $Values = array( - '23976Timecode' => array( - 'Id' => '23976Timecode', - 'Label' => '23.976 fps', - ), - '24Timecode' => array( - 'Id' => '24Timecode', - 'Label' => '24 fps', - ), - '25Timecode' => array( - 'Id' => '25Timecode', - 'Label' => '25 fps', - ), - '2997DropTimecode' => array( - 'Id' => '2997DropTimecode', - 'Label' => '29.97 fps (drop)', - ), - '2997NonDropTimecode' => array( - 'Id' => '2997NonDropTimecode', - 'Label' => '29.97 fps (non-drop)', - ), - '30Timecode' => array( - 'Id' => '30Timecode', - 'Label' => '30 fps', - ), - '50Timecode' => array( - 'Id' => '50Timecode', - 'Label' => '50 fps', - ), - '5994DropTimecode' => array( - 'Id' => '5994DropTimecode', - 'Label' => '59.94 fps (drop)', - ), - '5994NonDropTimecode' => array( - 'Id' => '5994NonDropTimecode', - 'Label' => '59.94 fps (non-drop)', - ), - '60Timecode' => array( - 'Id' => '60Timecode', - 'Label' => '60 fps', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeTimeValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeTimeValue.php deleted file mode 100644 index c131f2aa8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeTimeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AltTimecodeTimeValue extends AbstractTag -{ - - protected $Id = 'altTimecodeTimeValue'; - - protected $Name = 'AltTimecodeTimeValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Alt Timecode Time Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeValue.php deleted file mode 100644 index e464c6aab..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AltTimecodeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AltTimecodeValue extends AbstractTag -{ - - protected $Id = 'altTimecodeValue'; - - protected $Name = 'AltTimecodeValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Alt Timecode Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Artist.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Artist.php deleted file mode 100644 index 57a4177b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Artist.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Artist extends AbstractTag -{ - - protected $Id = 'artist'; - - protected $Name = 'Artist'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Artist'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioChannelType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioChannelType.php deleted file mode 100644 index 0507e5395..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioChannelType.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioChannelType extends AbstractTag -{ - - protected $Id = 'audioChannelType'; - - protected $Name = 'AudioChannelType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Audio Channel Type'; - - protected $Values = array( - '5.1' => array( - 'Id' => '5.1', - 'Label' => '5.1', - ), - '7.1' => array( - 'Id' => '7.1', - 'Label' => '7.1', - ), - '16 Channel' => array( - 'Id' => '16 Channel', - 'Label' => '16 Channel', - ), - 'Mono' => array( - 'Id' => 'Mono', - 'Label' => 'Mono', - ), - 'Other' => array( - 'Id' => 'Other', - 'Label' => 'Other', - ), - 'Stereo' => array( - 'Id' => 'Stereo', - 'Label' => 'Stereo', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioCompressor.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioCompressor.php deleted file mode 100644 index d4ea945f5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioCompressor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioCompressor extends AbstractTag -{ - - protected $Id = 'audioCompressor'; - - protected $Name = 'AudioCompressor'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Audio Compressor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioModDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioModDate.php deleted file mode 100644 index 5d3c9d717..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioModDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioModDate extends AbstractTag -{ - - protected $Id = 'audioModDate'; - - protected $Name = 'AudioModDate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Audio Mod Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioSampleRate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioSampleRate.php deleted file mode 100644 index 27c149c95..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioSampleRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleRate extends AbstractTag -{ - - protected $Id = 'audioSampleRate'; - - protected $Name = 'AudioSampleRate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Audio Sample Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioSampleType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioSampleType.php deleted file mode 100644 index be554d784..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/AudioSampleType.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class AudioSampleType extends AbstractTag -{ - - protected $Id = 'audioSampleType'; - - protected $Name = 'AudioSampleType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Audio Sample Type'; - - protected $Values = array( - '16Int' => array( - 'Id' => '16Int', - 'Label' => '16-bit integer', - ), - '24Int' => array( - 'Id' => '24Int', - 'Label' => '24-bit integer', - ), - '32Float' => array( - 'Id' => '32Float', - 'Label' => '32-bit float', - ), - '32Int' => array( - 'Id' => '32Int', - 'Label' => '32-bit integer', - ), - '8Int' => array( - 'Id' => '8Int', - 'Label' => '8-bit integer', - ), - 'Compressed' => array( - 'Id' => 'Compressed', - 'Label' => 'Compressed', - ), - 'Other' => array( - 'Id' => 'Other', - 'Label' => 'Other', - ), - 'Packed' => array( - 'Id' => 'Packed', - 'Label' => 'Packed', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParams.php deleted file mode 100644 index f6af58ad0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatSpliceParams extends AbstractTag -{ - - protected $Id = 'beatSpliceParams'; - - protected $Name = 'BeatSpliceParams'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Beat Splice Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInDecibel.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInDecibel.php deleted file mode 100644 index c83c907c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInDecibel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatSpliceParamsRiseInDecibel extends AbstractTag -{ - - protected $Id = 'beatSpliceParamsRiseInDecibel'; - - protected $Name = 'BeatSpliceParamsRiseInDecibel'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Beat Splice Params Rise In Decibel'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDuration.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDuration.php deleted file mode 100644 index e214b4a8b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDuration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatSpliceParamsRiseInTimeDuration extends AbstractTag -{ - - protected $Id = 'beatSpliceParamsRiseInTimeDuration'; - - protected $Name = 'BeatSpliceParamsRiseInTimeDuration'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Beat Splice Params Rise In Time Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDurationScale.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDurationScale.php deleted file mode 100644 index ff234482b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDurationScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatSpliceParamsRiseInTimeDurationScale extends AbstractTag -{ - - protected $Id = 'beatSpliceParamsRiseInTimeDurationScale'; - - protected $Name = 'BeatSpliceParamsRiseInTimeDurationScale'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Beat Splice Params Rise In Time Duration Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDurationValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDurationValue.php deleted file mode 100644 index 2b4f0aa37..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsRiseInTimeDurationValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatSpliceParamsRiseInTimeDurationValue extends AbstractTag -{ - - protected $Id = 'beatSpliceParamsRiseInTimeDurationValue'; - - protected $Name = 'BeatSpliceParamsRiseInTimeDurationValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Beat Splice Params Rise In Time Duration Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsUseFileBeatsMarker.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsUseFileBeatsMarker.php deleted file mode 100644 index 366edf4b8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/BeatSpliceParamsUseFileBeatsMarker.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class BeatSpliceParamsUseFileBeatsMarker extends AbstractTag -{ - - protected $Id = 'beatSpliceParamsUseFileBeatsMarker'; - - protected $Name = 'BeatSpliceParamsUseFileBeatsMarker'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Beat Splice Params Use File Beats Marker'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraAngle.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraAngle.php deleted file mode 100644 index 60cdf6919..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraAngle.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraAngle extends AbstractTag -{ - - protected $Id = 'cameraAngle'; - - protected $Name = 'CameraAngle'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Angle'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraLabel.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraLabel.php deleted file mode 100644 index 895975713..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraLabel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraLabel extends AbstractTag -{ - - protected $Id = 'cameraLabel'; - - protected $Name = 'CameraLabel'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Label'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraModel.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraModel.php deleted file mode 100644 index 3a952e6b2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraModel.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraModel extends AbstractTag -{ - - protected $Id = 'cameraModel'; - - protected $Name = 'CameraModel'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Model'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraMove.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraMove.php deleted file mode 100644 index c1d0291fb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/CameraMove.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CameraMove extends AbstractTag -{ - - protected $Id = 'cameraMove'; - - protected $Name = 'CameraMove'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Camera Move'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Client.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Client.php deleted file mode 100644 index 918227ac8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Client.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Client extends AbstractTag -{ - - protected $Id = 'client'; - - protected $Name = 'Client'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Client'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Composer.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Composer.php deleted file mode 100644 index 1bc53f30d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Composer.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Composer extends AbstractTag -{ - - protected $Id = 'composer'; - - protected $Name = 'Composer'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Composer'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMedia.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMedia.php deleted file mode 100644 index abf8cd290..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMedia.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMedia extends AbstractTag -{ - - protected $Id = 'contributedMedia'; - - protected $Name = 'ContributedMedia'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Contributed Media'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDuration.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDuration.php deleted file mode 100644 index c86f4d9cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaDuration extends AbstractTag -{ - - protected $Id = 'contributedMediaDuration'; - - protected $Name = 'ContributedMediaDuration'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Duration'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDurationScale.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDurationScale.php deleted file mode 100644 index e8d664bb7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDurationScale.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaDurationScale extends AbstractTag -{ - - protected $Id = 'contributedMediaDurationScale'; - - protected $Name = 'ContributedMediaDurationScale'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Duration Scale'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDurationValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDurationValue.php deleted file mode 100644 index 3174375c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaDurationValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaDurationValue extends AbstractTag -{ - - protected $Id = 'contributedMediaDurationValue'; - - protected $Name = 'ContributedMediaDurationValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Duration Value'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaManaged.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaManaged.php deleted file mode 100644 index 89a8e01bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaManaged.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaManaged extends AbstractTag -{ - - protected $Id = 'contributedMediaManaged'; - - protected $Name = 'ContributedMediaManaged'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Managed'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaPath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaPath.php deleted file mode 100644 index 9e1170c1a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaPath.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaPath extends AbstractTag -{ - - protected $Id = 'contributedMediaPath'; - - protected $Name = 'ContributedMediaPath'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Path'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTime.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTime.php deleted file mode 100644 index 5848365d6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaStartTime extends AbstractTag -{ - - protected $Id = 'contributedMediaStartTime'; - - protected $Name = 'ContributedMediaStartTime'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Start Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTimeScale.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTimeScale.php deleted file mode 100644 index d2ae52d14..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTimeScale.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaStartTimeScale extends AbstractTag -{ - - protected $Id = 'contributedMediaStartTimeScale'; - - protected $Name = 'ContributedMediaStartTimeScale'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Start Time Scale'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTimeValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTimeValue.php deleted file mode 100644 index 185776f60..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaStartTimeValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaStartTimeValue extends AbstractTag -{ - - protected $Id = 'contributedMediaStartTimeValue'; - - protected $Name = 'ContributedMediaStartTimeValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Start Time Value'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaTrack.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaTrack.php deleted file mode 100644 index 442573bd2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaTrack.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaTrack extends AbstractTag -{ - - protected $Id = 'contributedMediaTrack'; - - protected $Name = 'ContributedMediaTrack'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Track'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaWebStatement.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaWebStatement.php deleted file mode 100644 index 84da44a44..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ContributedMediaWebStatement.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ContributedMediaWebStatement extends AbstractTag -{ - - protected $Id = 'contributedMediaWebStatement'; - - protected $Name = 'ContributedMediaWebStatement'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Contributed Media Web Statement'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Copyright.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Copyright.php deleted file mode 100644 index 807cced0c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Copyright.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Copyright extends AbstractTag -{ - - protected $Id = 'copyright'; - - protected $Name = 'Copyright'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Copyright'; - - protected $local_g2 = 'Author'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DMComment.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DMComment.php deleted file mode 100644 index e429ccea9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DMComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DMComment extends AbstractTag -{ - - protected $Id = 'comment'; - - protected $Name = 'DMComment'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'DM Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Director.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Director.php deleted file mode 100644 index 28b721688..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Director.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Director extends AbstractTag -{ - - protected $Id = 'director'; - - protected $Name = 'Director'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Director'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DirectorPhotography.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DirectorPhotography.php deleted file mode 100644 index b9b4d2293..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DirectorPhotography.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DirectorPhotography extends AbstractTag -{ - - protected $Id = 'directorPhotography'; - - protected $Name = 'DirectorPhotography'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Director Photography'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DiscNumber.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DiscNumber.php deleted file mode 100644 index 2ff0f0bde..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DiscNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DiscNumber extends AbstractTag -{ - - protected $Id = 'discNumber'; - - protected $Name = 'DiscNumber'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Disc Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Duration.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Duration.php deleted file mode 100644 index 0a2568ac6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Duration.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Duration extends AbstractTag -{ - - protected $Id = 'duration'; - - protected $Name = 'Duration'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Duration'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DurationScale.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DurationScale.php deleted file mode 100644 index 0a8e32aa5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DurationScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DurationScale extends AbstractTag -{ - - protected $Id = 'durationScale'; - - protected $Name = 'DurationScale'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Duration Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DurationValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DurationValue.php deleted file mode 100644 index 5e384e16a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/DurationValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DurationValue extends AbstractTag -{ - - protected $Id = 'durationValue'; - - protected $Name = 'DurationValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Duration Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Engineer.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Engineer.php deleted file mode 100644 index 5e31a8201..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Engineer.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Engineer extends AbstractTag -{ - - protected $Id = 'engineer'; - - protected $Name = 'Engineer'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Engineer'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/FileDataRate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/FileDataRate.php deleted file mode 100644 index af9eefe1f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/FileDataRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileDataRate extends AbstractTag -{ - - protected $Id = 'fileDataRate'; - - protected $Name = 'FileDataRate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'File Data Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Genre.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Genre.php deleted file mode 100644 index 560b089ca..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Genre.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Genre extends AbstractTag -{ - - protected $Id = 'genre'; - - protected $Name = 'Genre'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Genre'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Good.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Good.php deleted file mode 100644 index 0c8641556..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Good.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Good extends AbstractTag -{ - - protected $Id = 'good'; - - protected $Name = 'Good'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Good'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Instrument.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Instrument.php deleted file mode 100644 index 7af5e18f4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Instrument.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Instrument extends AbstractTag -{ - - protected $Id = 'instrument'; - - protected $Name = 'Instrument'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Instrument'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTime.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTime.php deleted file mode 100644 index 7f374051a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTime.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntroTime extends AbstractTag -{ - - protected $Id = 'introTime'; - - protected $Name = 'IntroTime'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Intro Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTimeScale.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTimeScale.php deleted file mode 100644 index c6d317b8a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTimeScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntroTimeScale extends AbstractTag -{ - - protected $Id = 'introTimeScale'; - - protected $Name = 'IntroTimeScale'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Intro Time Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTimeValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTimeValue.php deleted file mode 100644 index 83de39d02..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/IntroTimeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IntroTimeValue extends AbstractTag -{ - - protected $Id = 'introTimeValue'; - - protected $Name = 'IntroTimeValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Intro Time Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Key.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Key.php deleted file mode 100644 index 1ffb01015..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Key.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Key extends AbstractTag -{ - - protected $Id = 'key'; - - protected $Name = 'Key'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Key'; - - protected $Values = array( - 'A' => array( - 'Id' => 'A', - 'Label' => 'A', - ), - 'A#' => array( - 'Id' => 'A#', - 'Label' => 'A#', - ), - 'B' => array( - 'Id' => 'B', - 'Label' => 'B', - ), - 'C' => array( - 'Id' => 'C', - 'Label' => 'C', - ), - 'C#' => array( - 'Id' => 'C#', - 'Label' => 'C#', - ), - 'D' => array( - 'Id' => 'D', - 'Label' => 'D', - ), - 'D#' => array( - 'Id' => 'D#', - 'Label' => 'D#', - ), - 'E' => array( - 'Id' => 'E', - 'Label' => 'E', - ), - 'F' => array( - 'Id' => 'F', - 'Label' => 'F', - ), - 'F#' => array( - 'Id' => 'F#', - 'Label' => 'F#', - ), - 'G' => array( - 'Id' => 'G', - 'Label' => 'G', - ), - 'G#' => array( - 'Id' => 'G#', - 'Label' => 'G#', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/LogComment.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/LogComment.php deleted file mode 100644 index ada3e5321..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/LogComment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LogComment extends AbstractTag -{ - - protected $Id = 'logComment'; - - protected $Name = 'LogComment'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Log Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Loop.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Loop.php deleted file mode 100644 index d04860dda..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Loop.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Loop extends AbstractTag -{ - - protected $Id = 'loop'; - - protected $Name = 'Loop'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Loop'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Lyrics.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Lyrics.php deleted file mode 100644 index deb641558..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Lyrics.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Lyrics extends AbstractTag -{ - - protected $Id = 'lyrics'; - - protected $Name = 'Lyrics'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Lyrics'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Markers.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Markers.php deleted file mode 100644 index c779fa7fc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Markers.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Markers extends AbstractTag -{ - - protected $Id = 'markers'; - - protected $Name = 'Markers'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Markers'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersComment.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersComment.php deleted file mode 100644 index 4d2bd0b95..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersComment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersComment extends AbstractTag -{ - - protected $Id = 'markersComment'; - - protected $Name = 'MarkersComment'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Comment'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParams.php deleted file mode 100644 index c6bb94bce..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParams.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersCuePointParams extends AbstractTag -{ - - protected $Id = 'markersCuePointParams'; - - protected $Name = 'MarkersCuePointParams'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Markers Cue Point Params'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParamsKey.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParamsKey.php deleted file mode 100644 index a8e811e11..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParamsKey.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersCuePointParamsKey extends AbstractTag -{ - - protected $Id = 'markersCuePointParamsKey'; - - protected $Name = 'MarkersCuePointParamsKey'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Cue Point Params Key'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParamsValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParamsValue.php deleted file mode 100644 index 2d5922f67..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointParamsValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersCuePointParamsValue extends AbstractTag -{ - - protected $Id = 'markersCuePointParamsValue'; - - protected $Name = 'MarkersCuePointParamsValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Cue Point Params Value'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointType.php deleted file mode 100644 index a07a14926..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersCuePointType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersCuePointType extends AbstractTag -{ - - protected $Id = 'markersCuePointType'; - - protected $Name = 'MarkersCuePointType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Cue Point Type'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersDuration.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersDuration.php deleted file mode 100644 index 9799f1522..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersDuration extends AbstractTag -{ - - protected $Id = 'markersDuration'; - - protected $Name = 'MarkersDuration'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Duration'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersLocation.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersLocation.php deleted file mode 100644 index 61d06173a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersLocation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersLocation extends AbstractTag -{ - - protected $Id = 'markersLocation'; - - protected $Name = 'MarkersLocation'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersName.php deleted file mode 100644 index ae9f0e205..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersName extends AbstractTag -{ - - protected $Id = 'markersName'; - - protected $Name = 'MarkersName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersProbability.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersProbability.php deleted file mode 100644 index d2275ca5c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersProbability.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersProbability extends AbstractTag -{ - - protected $Id = 'markersProbability'; - - protected $Name = 'MarkersProbability'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Markers Probability'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersSpeaker.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersSpeaker.php deleted file mode 100644 index 5136f1105..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersSpeaker.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersSpeaker extends AbstractTag -{ - - protected $Id = 'markersSpeaker'; - - protected $Name = 'MarkersSpeaker'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Speaker'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersStartTime.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersStartTime.php deleted file mode 100644 index c86d44894..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersStartTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersStartTime extends AbstractTag -{ - - protected $Id = 'markersStartTime'; - - protected $Name = 'MarkersStartTime'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Start Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersTarget.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersTarget.php deleted file mode 100644 index 88a624c3c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersTarget.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersTarget extends AbstractTag -{ - - protected $Id = 'markersTarget'; - - protected $Name = 'MarkersTarget'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Target'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersType.php deleted file mode 100644 index a50f33ee2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MarkersType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MarkersType extends AbstractTag -{ - - protected $Id = 'markersType'; - - protected $Name = 'MarkersType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Markers Type'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MetadataModDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MetadataModDate.php deleted file mode 100644 index bff3b13a0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/MetadataModDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MetadataModDate extends AbstractTag -{ - - protected $Id = 'metadataModDate'; - - protected $Name = 'MetadataModDate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Metadata Mod Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/NumberOfBeats.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/NumberOfBeats.php deleted file mode 100644 index 425d0b09c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/NumberOfBeats.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NumberOfBeats extends AbstractTag -{ - - protected $Id = 'numberOfBeats'; - - protected $Name = 'NumberOfBeats'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Number Of Beats'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCue.php deleted file mode 100644 index c2611cfba..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutCue extends AbstractTag -{ - - protected $Id = 'outCue'; - - protected $Name = 'OutCue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Out Cue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCueScale.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCueScale.php deleted file mode 100644 index 214331f19..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCueScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutCueScale extends AbstractTag -{ - - protected $Id = 'outCueScale'; - - protected $Name = 'OutCueScale'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Out Cue Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCueValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCueValue.php deleted file mode 100644 index bbd8c77f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/OutCueValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OutCueValue extends AbstractTag -{ - - protected $Id = 'outCueValue'; - - protected $Name = 'OutCueValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Out Cue Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/PartOfCompilation.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/PartOfCompilation.php deleted file mode 100644 index 92e6ca405..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/PartOfCompilation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PartOfCompilation extends AbstractTag -{ - - protected $Id = 'partOfCompilation'; - - protected $Name = 'PartOfCompilation'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Part Of Compilation'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectName.php deleted file mode 100644 index 7c4ef587c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectName extends AbstractTag -{ - - protected $Id = 'projectName'; - - protected $Name = 'ProjectName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Project Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRef.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRef.php deleted file mode 100644 index 61f248e3b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRef.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectRef extends AbstractTag -{ - - protected $Id = 'projectRef'; - - protected $Name = 'ProjectRef'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Project Ref'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRefPath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRefPath.php deleted file mode 100644 index 563762196..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRefPath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectRefPath extends AbstractTag -{ - - protected $Id = 'projectRefPath'; - - protected $Name = 'ProjectRefPath'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Project Ref Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRefType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRefType.php deleted file mode 100644 index e5ef68ac1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ProjectRefType.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ProjectRefType extends AbstractTag -{ - - protected $Id = 'projectRefType'; - - protected $Name = 'ProjectRefType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Project Ref Type'; - - protected $Values = array( - 'audio' => array( - 'Id' => 'audio', - 'Label' => 'Audio', - ), - 'custom' => array( - 'Id' => 'custom', - 'Label' => 'Custom', - ), - 'movie' => array( - 'Id' => 'movie', - 'Label' => 'Movie', - ), - 'still' => array( - 'Id' => 'still', - 'Label' => 'Still Image', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/PullDown.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/PullDown.php deleted file mode 100644 index 4ca52a720..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/PullDown.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PullDown extends AbstractTag -{ - - protected $Id = 'pullDown'; - - protected $Name = 'PullDown'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Pull Down'; - - protected $Values = array( - 'SSWWW' => array( - 'Id' => 'SSWWW', - 'Label' => 'SSWWW', - ), - 'SWWWS' => array( - 'Id' => 'SWWWS', - 'Label' => 'SWWWS', - ), - 'SWWWW' => array( - 'Id' => 'SWWWW', - 'Label' => 'SWWWW', - ), - 'WSSWW' => array( - 'Id' => 'WSSWW', - 'Label' => 'WSSWW', - ), - 'WSWWW' => array( - 'Id' => 'WSWWW', - 'Label' => 'WSWWW', - ), - 'WWSSW' => array( - 'Id' => 'WWSSW', - 'Label' => 'WWSSW', - ), - 'WWSWW' => array( - 'Id' => 'WWSWW', - 'Label' => 'WWSWW', - ), - 'WWWSS' => array( - 'Id' => 'WWWSS', - 'Label' => 'WWWSS', - ), - 'WWWSW' => array( - 'Id' => 'WWWSW', - 'Label' => 'WWWSW', - ), - 'WWWWS' => array( - 'Id' => 'WWWWS', - 'Label' => 'WWWWS', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativePeakAudioFilePath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativePeakAudioFilePath.php deleted file mode 100644 index 4cada9e22..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativePeakAudioFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativePeakAudioFilePath extends AbstractTag -{ - - protected $Id = 'relativePeakAudioFilePath'; - - protected $Name = 'RelativePeakAudioFilePath'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Relative Peak Audio File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestamp.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestamp.php deleted file mode 100644 index 6d4da4fb5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestamp.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeTimestamp extends AbstractTag -{ - - protected $Id = 'relativeTimestamp'; - - protected $Name = 'RelativeTimestamp'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Relative Timestamp'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestampScale.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestampScale.php deleted file mode 100644 index b6a49d6fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestampScale.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeTimestampScale extends AbstractTag -{ - - protected $Id = 'relativeTimestampScale'; - - protected $Name = 'RelativeTimestampScale'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Relative Timestamp Scale'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestampValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestampValue.php deleted file mode 100644 index 95d3edba5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/RelativeTimestampValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RelativeTimestampValue extends AbstractTag -{ - - protected $Id = 'relativeTimestampValue'; - - protected $Name = 'RelativeTimestampValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Relative Timestamp Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ReleaseDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ReleaseDate.php deleted file mode 100644 index a452f53f0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ReleaseDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReleaseDate extends AbstractTag -{ - - protected $Id = 'releaseDate'; - - protected $Name = 'ReleaseDate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Release Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ResampleParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ResampleParams.php deleted file mode 100644 index 296761046..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ResampleParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResampleParams extends AbstractTag -{ - - protected $Id = 'resampleParams'; - - protected $Name = 'ResampleParams'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Resample Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ResampleParamsQuality.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ResampleParamsQuality.php deleted file mode 100644 index 0c637a76a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ResampleParamsQuality.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ResampleParamsQuality extends AbstractTag -{ - - protected $Id = 'resampleParamsQuality'; - - protected $Name = 'ResampleParamsQuality'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Resample Params Quality'; - - protected $Values = array( - 'High' => array( - 'Id' => 'High', - 'Label' => 'High', - ), - 'Low' => array( - 'Id' => 'Low', - 'Label' => 'Low', - ), - 'Medium' => array( - 'Id' => 'Medium', - 'Label' => 'Medium', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ScaleType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ScaleType.php deleted file mode 100644 index 26e566d96..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ScaleType.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ScaleType extends AbstractTag -{ - - protected $Id = 'scaleType'; - - protected $Name = 'ScaleType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Scale Type'; - - protected $Values = array( - 'Both' => array( - 'Id' => 'Both', - 'Label' => 'Both', - ), - 'Major' => array( - 'Id' => 'Major', - 'Label' => 'Major', - ), - 'Minor' => array( - 'Id' => 'Minor', - 'Label' => 'Minor', - ), - 'Neither' => array( - 'Id' => 'Neither', - 'Label' => 'Neither', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Scene.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Scene.php deleted file mode 100644 index d20bf6f5e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Scene.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Scene extends AbstractTag -{ - - protected $Id = 'scene'; - - protected $Name = 'Scene'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Scene'; - - protected $flag_Avoid = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotDate.php deleted file mode 100644 index b7f8d4d67..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotDate extends AbstractTag -{ - - protected $Id = 'shotDate'; - - protected $Name = 'ShotDate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Shot Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotDay.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotDay.php deleted file mode 100644 index a491546cd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotDay.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotDay extends AbstractTag -{ - - protected $Id = 'shotDay'; - - protected $Name = 'ShotDay'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shot Day'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotLocation.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotLocation.php deleted file mode 100644 index 788e359d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotLocation.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotLocation extends AbstractTag -{ - - protected $Id = 'shotLocation'; - - protected $Name = 'ShotLocation'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shot Location'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotName.php deleted file mode 100644 index 316a3a021..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotName extends AbstractTag -{ - - protected $Id = 'shotName'; - - protected $Name = 'ShotName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shot Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotNumber.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotNumber.php deleted file mode 100644 index bbf438adb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotNumber extends AbstractTag -{ - - protected $Id = 'shotNumber'; - - protected $Name = 'ShotNumber'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shot Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotSize.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotSize.php deleted file mode 100644 index 9b7c7197a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/ShotSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ShotSize extends AbstractTag -{ - - protected $Id = 'shotSize'; - - protected $Name = 'ShotSize'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Shot Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/SpeakerPlacement.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/SpeakerPlacement.php deleted file mode 100644 index 9c1b3fd40..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/SpeakerPlacement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SpeakerPlacement extends AbstractTag -{ - - protected $Id = 'speakerPlacement'; - - protected $Name = 'SpeakerPlacement'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Speaker Placement'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecode.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecode.php deleted file mode 100644 index 2d98f8fd5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecode.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimecode extends AbstractTag -{ - - protected $Id = 'startTimecode'; - - protected $Name = 'StartTimecode'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Start Timecode'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeTimeFormat.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeTimeFormat.php deleted file mode 100644 index 446d17ff9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeTimeFormat.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimecodeTimeFormat extends AbstractTag -{ - - protected $Id = 'startTimecodeTimeFormat'; - - protected $Name = 'StartTimecodeTimeFormat'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Start Timecode Time Format'; - - protected $Values = array( - '23976Timecode' => array( - 'Id' => '23976Timecode', - 'Label' => '23.976 fps', - ), - '24Timecode' => array( - 'Id' => '24Timecode', - 'Label' => '24 fps', - ), - '25Timecode' => array( - 'Id' => '25Timecode', - 'Label' => '25 fps', - ), - '2997DropTimecode' => array( - 'Id' => '2997DropTimecode', - 'Label' => '29.97 fps (drop)', - ), - '2997NonDropTimecode' => array( - 'Id' => '2997NonDropTimecode', - 'Label' => '29.97 fps (non-drop)', - ), - '30Timecode' => array( - 'Id' => '30Timecode', - 'Label' => '30 fps', - ), - '50Timecode' => array( - 'Id' => '50Timecode', - 'Label' => '50 fps', - ), - '5994DropTimecode' => array( - 'Id' => '5994DropTimecode', - 'Label' => '59.94 fps (drop)', - ), - '5994NonDropTimecode' => array( - 'Id' => '5994NonDropTimecode', - 'Label' => '59.94 fps (non-drop)', - ), - '60Timecode' => array( - 'Id' => '60Timecode', - 'Label' => '60 fps', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeTimeValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeTimeValue.php deleted file mode 100644 index 3cfc844e8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeTimeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimecodeTimeValue extends AbstractTag -{ - - protected $Id = 'startTimecodeTimeValue'; - - protected $Name = 'StartTimecodeTimeValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Start Timecode Time Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeValue.php deleted file mode 100644 index 0ad80cf0e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StartTimecodeValue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StartTimecodeValue extends AbstractTag -{ - - protected $Id = 'startTimecodeValue'; - - protected $Name = 'StartTimecodeValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Start Timecode Value'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StretchMode.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StretchMode.php deleted file mode 100644 index f03049f51..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/StretchMode.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class StretchMode extends AbstractTag -{ - - protected $Id = 'stretchMode'; - - protected $Name = 'StretchMode'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Stretch Mode'; - - protected $Values = array( - 'Beat Splice' => array( - 'Id' => 'Beat Splice', - 'Label' => 'Beat Splice', - ), - 'Fixed length' => array( - 'Id' => 'Fixed length', - 'Label' => 'Fixed length', - ), - 'Hybrid' => array( - 'Id' => 'Hybrid', - 'Label' => 'Hybrid', - ), - 'Resample' => array( - 'Id' => 'Resample', - 'Label' => 'Resample', - ), - 'Time-Scale' => array( - 'Id' => 'Time-Scale', - 'Label' => 'Time-Scale', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TakeNumber.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TakeNumber.php deleted file mode 100644 index 9bf14591e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TakeNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TakeNumber extends AbstractTag -{ - - protected $Id = 'takeNumber'; - - protected $Name = 'TakeNumber'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Take Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TapeName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TapeName.php deleted file mode 100644 index e745da8e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TapeName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TapeName extends AbstractTag -{ - - protected $Id = 'tapeName'; - - protected $Name = 'TapeName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tape Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Tempo.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Tempo.php deleted file mode 100644 index 2e440c4de..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Tempo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tempo extends AbstractTag -{ - - protected $Id = 'tempo'; - - protected $Name = 'Tempo'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Tempo'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParams.php deleted file mode 100644 index d39a4d788..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeScaleParams extends AbstractTag -{ - - protected $Id = 'timeScaleParams'; - - protected $Name = 'TimeScaleParams'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Time Scale Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsFrameOverlappingPercentage.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsFrameOverlappingPercentage.php deleted file mode 100644 index af045c8a9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsFrameOverlappingPercentage.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeScaleParamsFrameOverlappingPercentage extends AbstractTag -{ - - protected $Id = 'timeScaleParamsFrameOverlappingPercentage'; - - protected $Name = 'TimeScaleParamsFrameOverlappingPercentage'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Time Scale Params Frame Overlapping Percentage'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsFrameSize.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsFrameSize.php deleted file mode 100644 index 353dca249..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsFrameSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeScaleParamsFrameSize extends AbstractTag -{ - - protected $Id = 'timeScaleParamsFrameSize'; - - protected $Name = 'TimeScaleParamsFrameSize'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Time Scale Params Frame Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsQuality.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsQuality.php deleted file mode 100644 index 6d34db625..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeScaleParamsQuality.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeScaleParamsQuality extends AbstractTag -{ - - protected $Id = 'timeScaleParamsQuality'; - - protected $Name = 'TimeScaleParamsQuality'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time Scale Params Quality'; - - protected $Values = array( - 'High' => array( - 'Id' => 'High', - 'Label' => 'High', - ), - 'Low' => array( - 'Id' => 'Low', - 'Label' => 'Low', - ), - 'Medium' => array( - 'Id' => 'Medium', - 'Label' => 'Medium', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeSignature.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeSignature.php deleted file mode 100644 index d52e32cc6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TimeSignature.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TimeSignature extends AbstractTag -{ - - protected $Id = 'timeSignature'; - - protected $Name = 'TimeSignature'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Time Signature'; - - protected $Values = array( - '12/8' => array( - 'Id' => '12/8', - 'Label' => '12/8', - ), - '2/4' => array( - 'Id' => '2/4', - 'Label' => '2/4', - ), - '3/4' => array( - 'Id' => '3/4', - 'Label' => '3/4', - ), - '4/4' => array( - 'Id' => '4/4', - 'Label' => '4/4', - ), - '5/4' => array( - 'Id' => '5/4', - 'Label' => '5/4', - ), - '6/8' => array( - 'Id' => '6/8', - 'Label' => '6/8', - ), - '7/4' => array( - 'Id' => '7/4', - 'Label' => '7/4', - ), - '9/8' => array( - 'Id' => '9/8', - 'Label' => '9/8', - ), - 'other' => array( - 'Id' => 'other', - 'Label' => 'other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TrackNumber.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TrackNumber.php deleted file mode 100644 index 0e98c3b5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TrackNumber.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TrackNumber extends AbstractTag -{ - - protected $Id = 'trackNumber'; - - protected $Name = 'TrackNumber'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Track Number'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Tracks.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Tracks.php deleted file mode 100644 index 29956bd8f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Tracks.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Tracks extends AbstractTag -{ - - protected $Id = 'Tracks'; - - protected $Name = 'Tracks'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Tracks'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksFrameRate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksFrameRate.php deleted file mode 100644 index 402fd822b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksFrameRate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksFrameRate extends AbstractTag -{ - - protected $Id = 'TracksFrameRate'; - - protected $Name = 'TracksFrameRate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Frame Rate'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkers.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkers.php deleted file mode 100644 index ae81982a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkers.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkers extends AbstractTag -{ - - protected $Id = 'TracksMarkers'; - - protected $Name = 'TracksMarkers'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersComment.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersComment.php deleted file mode 100644 index 7439a1c4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersComment.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersComment extends AbstractTag -{ - - protected $Id = 'TracksMarkersComment'; - - protected $Name = 'TracksMarkersComment'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Comment'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParams.php deleted file mode 100644 index 2884eada5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParams.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersCuePointParams extends AbstractTag -{ - - protected $Id = 'TracksMarkersCuePointParams'; - - protected $Name = 'TracksMarkersCuePointParams'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Cue Point Params'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParamsKey.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParamsKey.php deleted file mode 100644 index 2a8aff212..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParamsKey.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersCuePointParamsKey extends AbstractTag -{ - - protected $Id = 'TracksMarkersCuePointParamsKey'; - - protected $Name = 'TracksMarkersCuePointParamsKey'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Cue Point Params Key'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParamsValue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParamsValue.php deleted file mode 100644 index fb210a9c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointParamsValue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersCuePointParamsValue extends AbstractTag -{ - - protected $Id = 'TracksMarkersCuePointParamsValue'; - - protected $Name = 'TracksMarkersCuePointParamsValue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Cue Point Params Value'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointType.php deleted file mode 100644 index 38c2f0025..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersCuePointType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersCuePointType extends AbstractTag -{ - - protected $Id = 'TracksMarkersCuePointType'; - - protected $Name = 'TracksMarkersCuePointType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Cue Point Type'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersDuration.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersDuration.php deleted file mode 100644 index 7fd64a554..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersDuration.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersDuration extends AbstractTag -{ - - protected $Id = 'TracksMarkersDuration'; - - protected $Name = 'TracksMarkersDuration'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Duration'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersLocation.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersLocation.php deleted file mode 100644 index a39b3096b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersLocation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersLocation extends AbstractTag -{ - - protected $Id = 'TracksMarkersLocation'; - - protected $Name = 'TracksMarkersLocation'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Location'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersName.php deleted file mode 100644 index 902952b91..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersName extends AbstractTag -{ - - protected $Id = 'TracksMarkersName'; - - protected $Name = 'TracksMarkersName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersProbability.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersProbability.php deleted file mode 100644 index fe2106bbe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersProbability.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersProbability extends AbstractTag -{ - - protected $Id = 'TracksMarkersProbability'; - - protected $Name = 'TracksMarkersProbability'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Probability'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersSpeaker.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersSpeaker.php deleted file mode 100644 index 39b900cf3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersSpeaker.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersSpeaker extends AbstractTag -{ - - protected $Id = 'TracksMarkersSpeaker'; - - protected $Name = 'TracksMarkersSpeaker'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Speaker'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersStartTime.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersStartTime.php deleted file mode 100644 index afaafe7b6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersStartTime.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersStartTime extends AbstractTag -{ - - protected $Id = 'TracksMarkersStartTime'; - - protected $Name = 'TracksMarkersStartTime'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Start Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersTarget.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersTarget.php deleted file mode 100644 index ece188818..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersTarget.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersTarget extends AbstractTag -{ - - protected $Id = 'TracksMarkersTarget'; - - protected $Name = 'TracksMarkersTarget'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Target'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersType.php deleted file mode 100644 index c30677a1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksMarkersType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksMarkersType extends AbstractTag -{ - - protected $Id = 'TracksMarkersType'; - - protected $Name = 'TracksMarkersType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Markers Type'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksTrackName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksTrackName.php deleted file mode 100644 index 0f6ad3ae2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksTrackName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksTrackName extends AbstractTag -{ - - protected $Id = 'TracksTrackName'; - - protected $Name = 'TracksTrackName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Track Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksTrackType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksTrackType.php deleted file mode 100644 index 6b65668c7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/TracksTrackType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class TracksTrackType extends AbstractTag -{ - - protected $Id = 'TracksTrackType'; - - protected $Name = 'TracksTrackType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Tracks Track Type'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaMode.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaMode.php deleted file mode 100644 index 4f9e551ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaMode.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaMode extends AbstractTag -{ - - protected $Id = 'videoAlphaMode'; - - protected $Name = 'VideoAlphaMode'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Mode'; - - protected $Values = array( - 'none' => array( - 'Id' => 'none', - 'Label' => 'None', - ), - 'pre-multiplied' => array( - 'Id' => 'pre-multiplied', - 'Label' => 'Pre-multiplied', - ), - 'straight' => array( - 'Id' => 'straight', - 'Label' => 'Straight', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColor.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColor.php deleted file mode 100644 index 56a1da741..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColor extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColor'; - - protected $Name = 'VideoAlphaPremultipleColor'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorA.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorA.php deleted file mode 100644 index 5de3d95a3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorA.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorA extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorA'; - - protected $Name = 'VideoAlphaPremultipleColorA'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color A'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorB.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorB.php deleted file mode 100644 index 2880cb046..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorB.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorB extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorB'; - - protected $Name = 'VideoAlphaPremultipleColorB'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color B'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorBlack.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorBlack.php deleted file mode 100644 index 9803bbbf8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorBlack.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorBlack extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorBlack'; - - protected $Name = 'VideoAlphaPremultipleColorBlack'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Black'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorBlue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorBlue.php deleted file mode 100644 index 74efd47fa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorBlue.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorBlue extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorBlue'; - - protected $Name = 'VideoAlphaPremultipleColorBlue'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Blue'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorCyan.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorCyan.php deleted file mode 100644 index c0fcee732..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorCyan.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorCyan extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorCyan'; - - protected $Name = 'VideoAlphaPremultipleColorCyan'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Cyan'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorGreen.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorGreen.php deleted file mode 100644 index b6b8074f1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorGreen.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorGreen extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorGreen'; - - protected $Name = 'VideoAlphaPremultipleColorGreen'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Green'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorL.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorL.php deleted file mode 100644 index f5bcb42b7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorL extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorL'; - - protected $Name = 'VideoAlphaPremultipleColorL'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color L'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorMagenta.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorMagenta.php deleted file mode 100644 index 47b146f5d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorMagenta.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorMagenta extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorMagenta'; - - protected $Name = 'VideoAlphaPremultipleColorMagenta'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Magenta'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorMode.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorMode.php deleted file mode 100644 index a0083e5e4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorMode.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorMode extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorMode'; - - protected $Name = 'VideoAlphaPremultipleColorMode'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Mode'; - - protected $Values = array( - 'CMYK' => array( - 'Id' => 'CMYK', - 'Label' => 'CMYK', - ), - 'LAB' => array( - 'Id' => 'LAB', - 'Label' => 'Lab', - ), - 'RGB' => array( - 'Id' => 'RGB', - 'Label' => 'RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorRed.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorRed.php deleted file mode 100644 index bff342cff..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorRed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorRed extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorRed'; - - protected $Name = 'VideoAlphaPremultipleColorRed'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Red'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorSwatchName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorSwatchName.php deleted file mode 100644 index 83eb8bb6a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorSwatchName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorSwatchName extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorSwatchName'; - - protected $Name = 'VideoAlphaPremultipleColorSwatchName'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Swatch Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorTint.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorTint.php deleted file mode 100644 index 407d96876..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorTint.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorTint extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorTint'; - - protected $Name = 'VideoAlphaPremultipleColorTint'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Tint'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorType.php deleted file mode 100644 index cebfa9e07..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorType.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorType extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorType'; - - protected $Name = 'VideoAlphaPremultipleColorType'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Type'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorYellow.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorYellow.php deleted file mode 100644 index 799dc0b5b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaPremultipleColorYellow.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaPremultipleColorYellow extends AbstractTag -{ - - protected $Id = 'videoAlphaPremultipleColorYellow'; - - protected $Name = 'VideoAlphaPremultipleColorYellow'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Premultiple Color Yellow'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaUnityIsTransparent.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaUnityIsTransparent.php deleted file mode 100644 index a1793b7c3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoAlphaUnityIsTransparent.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoAlphaUnityIsTransparent extends AbstractTag -{ - - protected $Id = 'videoAlphaUnityIsTransparent'; - - protected $Name = 'VideoAlphaUnityIsTransparent'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Video Alpha Unity Is Transparent'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoColorSpace.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoColorSpace.php deleted file mode 100644 index 623f106ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoColorSpace.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoColorSpace extends AbstractTag -{ - - protected $Id = 'videoColorSpace'; - - protected $Name = 'VideoColorSpace'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Color Space'; - - protected $Values = array( - 'CCIR-601' => array( - 'Id' => 'CCIR-601', - 'Label' => 'CCIR-601', - ), - 'CCIR-709' => array( - 'Id' => 'CCIR-709', - 'Label' => 'CCIR-709', - ), - 'sRGB' => array( - 'Id' => 'sRGB', - 'Label' => 'sRGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoCompressor.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoCompressor.php deleted file mode 100644 index 9ea437bcf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoCompressor.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoCompressor extends AbstractTag -{ - - protected $Id = 'videoCompressor'; - - protected $Name = 'VideoCompressor'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Compressor'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFieldOrder.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFieldOrder.php deleted file mode 100644 index e905d8608..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFieldOrder.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFieldOrder extends AbstractTag -{ - - protected $Id = 'videoFieldOrder'; - - protected $Name = 'VideoFieldOrder'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Field Order'; - - protected $Values = array( - 'Lower' => array( - 'Id' => 'Lower', - 'Label' => 'Lower', - ), - 'Progressive' => array( - 'Id' => 'Progressive', - 'Label' => 'Progressive', - ), - 'Upper' => array( - 'Id' => 'Upper', - 'Label' => 'Upper', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameRate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameRate.php deleted file mode 100644 index 59850e821..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameRate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameRate extends AbstractTag -{ - - protected $Id = 'videoFrameRate'; - - protected $Name = 'VideoFrameRate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Frame Rate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSize.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSize.php deleted file mode 100644 index 0822738a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameSize extends AbstractTag -{ - - protected $Id = 'videoFrameSize'; - - protected $Name = 'VideoFrameSize'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Video Frame Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeH.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeH.php deleted file mode 100644 index 51d8ec242..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeH.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameSizeH extends AbstractTag -{ - - protected $Id = 'videoFrameSizeH'; - - protected $Name = 'VideoFrameSizeH'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Video Frame Size H'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeUnit.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeUnit.php deleted file mode 100644 index a4a36d298..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeUnit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameSizeUnit extends AbstractTag -{ - - protected $Id = 'videoFrameSizeUnit'; - - protected $Name = 'VideoFrameSizeUnit'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Frame Size Unit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeW.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeW.php deleted file mode 100644 index 9bfbc2c21..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoFrameSizeW.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoFrameSizeW extends AbstractTag -{ - - protected $Id = 'videoFrameSizeW'; - - protected $Name = 'VideoFrameSizeW'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Video Frame Size W'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoModDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoModDate.php deleted file mode 100644 index f2c894c46..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoModDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoModDate extends AbstractTag -{ - - protected $Id = 'videoModDate'; - - protected $Name = 'VideoModDate'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Video Mod Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoPixelAspectRatio.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoPixelAspectRatio.php deleted file mode 100644 index 30b0f94d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoPixelAspectRatio.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoPixelAspectRatio extends AbstractTag -{ - - protected $Id = 'videoPixelAspectRatio'; - - protected $Name = 'VideoPixelAspectRatio'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'rational'; - - protected $Writable = true; - - protected $Description = 'Video Pixel Aspect Ratio'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoPixelDepth.php b/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoPixelDepth.php deleted file mode 100644 index a8a7e1c9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpDM/VideoPixelDepth.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpDM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VideoPixelDepth extends AbstractTag -{ - - protected $Id = 'videoPixelDepth'; - - protected $Name = 'VideoPixelDepth'; - - protected $FullName = 'XMP::xmpDM'; - - protected $GroupName = 'XMP-xmpDM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpDM'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Video Pixel Depth'; - - protected $Values = array( - '16Int' => array( - 'Id' => '16Int', - 'Label' => '16-bit integer', - ), - '24Int' => array( - 'Id' => '24Int', - 'Label' => '24-bit integer', - ), - '32Float' => array( - 'Id' => '32Float', - 'Label' => '32-bit float', - ), - '32Int' => array( - 'Id' => '32Int', - 'Label' => '32-bit integer', - ), - '8Int' => array( - 'Id' => '8Int', - 'Label' => '8-bit integer', - ), - 'Other' => array( - 'Id' => 'Other', - 'Label' => 'Other', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFrom.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFrom.php deleted file mode 100644 index eceafb409..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFrom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFrom extends AbstractTag -{ - - protected $Id = 'DerivedFrom'; - - protected $Name = 'DerivedFrom'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Derived From'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromAlternatePaths.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromAlternatePaths.php deleted file mode 100644 index 7d29ee93b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromAlternatePaths.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromAlternatePaths extends AbstractTag -{ - - protected $Id = 'DerivedFromAlternatePaths'; - - protected $Name = 'DerivedFromAlternatePaths'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Alternate Paths'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromDocumentID.php deleted file mode 100644 index d16640b43..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromDocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromDocumentID extends AbstractTag -{ - - protected $Id = 'DerivedFromDocumentID'; - - protected $Name = 'DerivedFromDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromFilePath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromFilePath.php deleted file mode 100644 index 890704218..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromFilePath extends AbstractTag -{ - - protected $Id = 'DerivedFromFilePath'; - - protected $Name = 'DerivedFromFilePath'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromFromPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromFromPart.php deleted file mode 100644 index 74c2d08af..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromFromPart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromFromPart extends AbstractTag -{ - - protected $Id = 'DerivedFromFromPart'; - - protected $Name = 'DerivedFromFromPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From From Part'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromInstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromInstanceID.php deleted file mode 100644 index 66af05878..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromInstanceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromInstanceID extends AbstractTag -{ - - protected $Id = 'DerivedFromInstanceID'; - - protected $Name = 'DerivedFromInstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Instance ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromLastModifyDate.php deleted file mode 100644 index 233d833a5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromLastModifyDate extends AbstractTag -{ - - protected $Id = 'DerivedFromLastModifyDate'; - - protected $Name = 'DerivedFromLastModifyDate'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Derived From Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManageTo.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManageTo.php deleted file mode 100644 index 91d9ede71..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManageTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromManageTo extends AbstractTag -{ - - protected $Id = 'DerivedFromManageTo'; - - protected $Name = 'DerivedFromManageTo'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Manage To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManageUI.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManageUI.php deleted file mode 100644 index 86bf2ef9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManageUI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromManageUI extends AbstractTag -{ - - protected $Id = 'DerivedFromManageUI'; - - protected $Name = 'DerivedFromManageUI'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Manage UI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManager.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManager.php deleted file mode 100644 index 6219aa85e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromManager extends AbstractTag -{ - - protected $Id = 'DerivedFromManager'; - - protected $Name = 'DerivedFromManager'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Manager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManagerVariant.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManagerVariant.php deleted file mode 100644 index 3af2c25c0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromManagerVariant.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromManagerVariant extends AbstractTag -{ - - protected $Id = 'DerivedFromManagerVariant'; - - protected $Name = 'DerivedFromManagerVariant'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Manager Variant'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromMaskMarkers.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromMaskMarkers.php deleted file mode 100644 index cf2454985..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromMaskMarkers.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromMaskMarkers extends AbstractTag -{ - - protected $Id = 'DerivedFromMaskMarkers'; - - protected $Name = 'DerivedFromMaskMarkers'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Mask Markers'; - - protected $Values = array( - 'All' => array( - 'Id' => 'All', - 'Label' => 'All', - ), - 'None' => array( - 'Id' => 'None', - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromOriginalDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromOriginalDocumentID.php deleted file mode 100644 index cb68ddcdb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromOriginalDocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromOriginalDocumentID extends AbstractTag -{ - - protected $Id = 'DerivedFromOriginalDocumentID'; - - protected $Name = 'DerivedFromOriginalDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Original Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromPartMapping.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromPartMapping.php deleted file mode 100644 index a98a2ed57..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromPartMapping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromPartMapping extends AbstractTag -{ - - protected $Id = 'DerivedFromPartMapping'; - - protected $Name = 'DerivedFromPartMapping'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Part Mapping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromRenditionClass.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromRenditionClass.php deleted file mode 100644 index 0c679f72a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromRenditionClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromRenditionClass extends AbstractTag -{ - - protected $Id = 'DerivedFromRenditionClass'; - - protected $Name = 'DerivedFromRenditionClass'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Rendition Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromRenditionParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromRenditionParams.php deleted file mode 100644 index 53f78675e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromRenditionParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromRenditionParams extends AbstractTag -{ - - protected $Id = 'DerivedFromRenditionParams'; - - protected $Name = 'DerivedFromRenditionParams'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Rendition Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromToPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromToPart.php deleted file mode 100644 index 0f664d627..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromToPart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromToPart extends AbstractTag -{ - - protected $Id = 'DerivedFromToPart'; - - protected $Name = 'DerivedFromToPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From To Part'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromVersionID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromVersionID.php deleted file mode 100644 index f625357ae..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DerivedFromVersionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DerivedFromVersionID extends AbstractTag -{ - - protected $Id = 'DerivedFromVersionID'; - - protected $Name = 'DerivedFromVersionID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Derived From Version ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DocumentID.php deleted file mode 100644 index 64e44fe23..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/DocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class DocumentID extends AbstractTag -{ - - protected $Id = 'DocumentID'; - - protected $Name = 'DocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/History.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/History.php deleted file mode 100644 index 13a1f77f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/History.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class History extends AbstractTag -{ - - protected $Id = 'History'; - - protected $Name = 'History'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'History'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryAction.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryAction.php deleted file mode 100644 index 23d707c26..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryAction.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistoryAction extends AbstractTag -{ - - protected $Id = 'HistoryAction'; - - protected $Name = 'HistoryAction'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'History Action'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryChanged.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryChanged.php deleted file mode 100644 index b24da2cd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryChanged.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistoryChanged extends AbstractTag -{ - - protected $Id = 'HistoryChanged'; - - protected $Name = 'HistoryChanged'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'History Changed'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryInstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryInstanceID.php deleted file mode 100644 index 6fb0761a6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryInstanceID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistoryInstanceID extends AbstractTag -{ - - protected $Id = 'HistoryInstanceID'; - - protected $Name = 'HistoryInstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'History Instance ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryParameters.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryParameters.php deleted file mode 100644 index 911b4defa..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryParameters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistoryParameters extends AbstractTag -{ - - protected $Id = 'HistoryParameters'; - - protected $Name = 'HistoryParameters'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'History Parameters'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistorySoftwareAgent.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistorySoftwareAgent.php deleted file mode 100644 index be674fbf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistorySoftwareAgent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistorySoftwareAgent extends AbstractTag -{ - - protected $Id = 'HistorySoftwareAgent'; - - protected $Name = 'HistorySoftwareAgent'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'History Software Agent'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryWhen.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryWhen.php deleted file mode 100644 index c1b3f1d9e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/HistoryWhen.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HistoryWhen extends AbstractTag -{ - - protected $Id = 'HistoryWhen'; - - protected $Name = 'HistoryWhen'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'History When'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Ingredients.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Ingredients.php deleted file mode 100644 index 4d3c82c03..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Ingredients.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Ingredients extends AbstractTag -{ - - protected $Id = 'Ingredients'; - - protected $Name = 'Ingredients'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Ingredients'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsAlternatePaths.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsAlternatePaths.php deleted file mode 100644 index 49a97b354..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsAlternatePaths.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsAlternatePaths extends AbstractTag -{ - - protected $Id = 'IngredientsAlternatePaths'; - - protected $Name = 'IngredientsAlternatePaths'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Alternate Paths'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsDocumentID.php deleted file mode 100644 index 0e65979cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsDocumentID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsDocumentID extends AbstractTag -{ - - protected $Id = 'IngredientsDocumentID'; - - protected $Name = 'IngredientsDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Document ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsFilePath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsFilePath.php deleted file mode 100644 index 816db0161..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsFilePath.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsFilePath extends AbstractTag -{ - - protected $Id = 'IngredientsFilePath'; - - protected $Name = 'IngredientsFilePath'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients File Path'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsFromPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsFromPart.php deleted file mode 100644 index c016fab70..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsFromPart.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsFromPart extends AbstractTag -{ - - protected $Id = 'IngredientsFromPart'; - - protected $Name = 'IngredientsFromPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients From Part'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsInstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsInstanceID.php deleted file mode 100644 index b7e56c75c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsInstanceID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsInstanceID extends AbstractTag -{ - - protected $Id = 'IngredientsInstanceID'; - - protected $Name = 'IngredientsInstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Instance ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsLastModifyDate.php deleted file mode 100644 index 793a28637..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsLastModifyDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsLastModifyDate extends AbstractTag -{ - - protected $Id = 'IngredientsLastModifyDate'; - - protected $Name = 'IngredientsLastModifyDate'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Ingredients Last Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManageTo.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManageTo.php deleted file mode 100644 index 5b5dc1c1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManageTo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsManageTo extends AbstractTag -{ - - protected $Id = 'IngredientsManageTo'; - - protected $Name = 'IngredientsManageTo'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Manage To'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManageUI.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManageUI.php deleted file mode 100644 index 04de8f7e6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManageUI.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsManageUI extends AbstractTag -{ - - protected $Id = 'IngredientsManageUI'; - - protected $Name = 'IngredientsManageUI'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Manage UI'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManager.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManager.php deleted file mode 100644 index e75edf9e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManager.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsManager extends AbstractTag -{ - - protected $Id = 'IngredientsManager'; - - protected $Name = 'IngredientsManager'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Manager'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManagerVariant.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManagerVariant.php deleted file mode 100644 index f8580edb4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsManagerVariant.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsManagerVariant extends AbstractTag -{ - - protected $Id = 'IngredientsManagerVariant'; - - protected $Name = 'IngredientsManagerVariant'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Manager Variant'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsMaskMarkers.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsMaskMarkers.php deleted file mode 100644 index 24b63649e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsMaskMarkers.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsMaskMarkers extends AbstractTag -{ - - protected $Id = 'IngredientsMaskMarkers'; - - protected $Name = 'IngredientsMaskMarkers'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Mask Markers'; - - protected $flag_List = true; - - protected $Values = array( - 'All' => array( - 'Id' => 'All', - 'Label' => 'All', - ), - 'None' => array( - 'Id' => 'None', - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsOriginalDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsOriginalDocumentID.php deleted file mode 100644 index 873f0fdd7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsOriginalDocumentID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsOriginalDocumentID extends AbstractTag -{ - - protected $Id = 'IngredientsOriginalDocumentID'; - - protected $Name = 'IngredientsOriginalDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Original Document ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsPartMapping.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsPartMapping.php deleted file mode 100644 index 1bedf9000..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsPartMapping.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsPartMapping extends AbstractTag -{ - - protected $Id = 'IngredientsPartMapping'; - - protected $Name = 'IngredientsPartMapping'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Part Mapping'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsRenditionClass.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsRenditionClass.php deleted file mode 100644 index c958ce303..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsRenditionClass.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsRenditionClass extends AbstractTag -{ - - protected $Id = 'IngredientsRenditionClass'; - - protected $Name = 'IngredientsRenditionClass'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Rendition Class'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsRenditionParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsRenditionParams.php deleted file mode 100644 index fcf73cbbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsRenditionParams.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsRenditionParams extends AbstractTag -{ - - protected $Id = 'IngredientsRenditionParams'; - - protected $Name = 'IngredientsRenditionParams'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Rendition Params'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsToPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsToPart.php deleted file mode 100644 index a924e2dc1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsToPart.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsToPart extends AbstractTag -{ - - protected $Id = 'IngredientsToPart'; - - protected $Name = 'IngredientsToPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients To Part'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsVersionID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsVersionID.php deleted file mode 100644 index ab3ee5de7..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/IngredientsVersionID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class IngredientsVersionID extends AbstractTag -{ - - protected $Id = 'IngredientsVersionID'; - - protected $Name = 'IngredientsVersionID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Ingredients Version ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/InstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/InstanceID.php deleted file mode 100644 index a1e5d973b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/InstanceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class InstanceID extends AbstractTag -{ - - protected $Id = 'InstanceID'; - - protected $Name = 'InstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Instance ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/LastURL.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/LastURL.php deleted file mode 100644 index bb10bd7d1..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/LastURL.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class LastURL extends AbstractTag -{ - - protected $Id = 'LastURL'; - - protected $Name = 'LastURL'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Last URL'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManageTo.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManageTo.php deleted file mode 100644 index 92953076f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManageTo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManageTo extends AbstractTag -{ - - protected $Id = 'ManageTo'; - - protected $Name = 'ManageTo'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manage To'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManageUI.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManageUI.php deleted file mode 100644 index d532b71e9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManageUI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManageUI extends AbstractTag -{ - - protected $Id = 'ManageUI'; - - protected $Name = 'ManageUI'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manage UI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFrom.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFrom.php deleted file mode 100644 index c0f9d8e48..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFrom.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFrom extends AbstractTag -{ - - protected $Id = 'ManagedFrom'; - - protected $Name = 'ManagedFrom'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Managed From'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromAlternatePaths.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromAlternatePaths.php deleted file mode 100644 index 791ae7fde..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromAlternatePaths.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromAlternatePaths extends AbstractTag -{ - - protected $Id = 'ManagedFromAlternatePaths'; - - protected $Name = 'ManagedFromAlternatePaths'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Alternate Paths'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromDocumentID.php deleted file mode 100644 index 8bba2cd26..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromDocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromDocumentID extends AbstractTag -{ - - protected $Id = 'ManagedFromDocumentID'; - - protected $Name = 'ManagedFromDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromFilePath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromFilePath.php deleted file mode 100644 index 843ef8618..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromFilePath extends AbstractTag -{ - - protected $Id = 'ManagedFromFilePath'; - - protected $Name = 'ManagedFromFilePath'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromFromPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromFromPart.php deleted file mode 100644 index 4afe5ab27..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromFromPart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromFromPart extends AbstractTag -{ - - protected $Id = 'ManagedFromFromPart'; - - protected $Name = 'ManagedFromFromPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From From Part'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromInstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromInstanceID.php deleted file mode 100644 index 7264e6b1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromInstanceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromInstanceID extends AbstractTag -{ - - protected $Id = 'ManagedFromInstanceID'; - - protected $Name = 'ManagedFromInstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Instance ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromLastModifyDate.php deleted file mode 100644 index be1854a9d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromLastModifyDate extends AbstractTag -{ - - protected $Id = 'ManagedFromLastModifyDate'; - - protected $Name = 'ManagedFromLastModifyDate'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Managed From Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManageTo.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManageTo.php deleted file mode 100644 index bedd76299..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManageTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromManageTo extends AbstractTag -{ - - protected $Id = 'ManagedFromManageTo'; - - protected $Name = 'ManagedFromManageTo'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Manage To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManageUI.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManageUI.php deleted file mode 100644 index 256f84cfe..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManageUI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromManageUI extends AbstractTag -{ - - protected $Id = 'ManagedFromManageUI'; - - protected $Name = 'ManagedFromManageUI'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Manage UI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManager.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManager.php deleted file mode 100644 index 3391826e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromManager extends AbstractTag -{ - - protected $Id = 'ManagedFromManager'; - - protected $Name = 'ManagedFromManager'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Manager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManagerVariant.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManagerVariant.php deleted file mode 100644 index 3bd5ef19f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromManagerVariant.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromManagerVariant extends AbstractTag -{ - - protected $Id = 'ManagedFromManagerVariant'; - - protected $Name = 'ManagedFromManagerVariant'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Manager Variant'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromMaskMarkers.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromMaskMarkers.php deleted file mode 100644 index 9f7efcaf6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromMaskMarkers.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromMaskMarkers extends AbstractTag -{ - - protected $Id = 'ManagedFromMaskMarkers'; - - protected $Name = 'ManagedFromMaskMarkers'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Mask Markers'; - - protected $Values = array( - 'All' => array( - 'Id' => 'All', - 'Label' => 'All', - ), - 'None' => array( - 'Id' => 'None', - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromOriginalDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromOriginalDocumentID.php deleted file mode 100644 index e7c75eb79..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromOriginalDocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromOriginalDocumentID extends AbstractTag -{ - - protected $Id = 'ManagedFromOriginalDocumentID'; - - protected $Name = 'ManagedFromOriginalDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Original Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromPartMapping.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromPartMapping.php deleted file mode 100644 index bea2d93ef..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromPartMapping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromPartMapping extends AbstractTag -{ - - protected $Id = 'ManagedFromPartMapping'; - - protected $Name = 'ManagedFromPartMapping'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Part Mapping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromRenditionClass.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromRenditionClass.php deleted file mode 100644 index 76f681fa6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromRenditionClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromRenditionClass extends AbstractTag -{ - - protected $Id = 'ManagedFromRenditionClass'; - - protected $Name = 'ManagedFromRenditionClass'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Rendition Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromRenditionParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromRenditionParams.php deleted file mode 100644 index 7354e66a2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromRenditionParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromRenditionParams extends AbstractTag -{ - - protected $Id = 'ManagedFromRenditionParams'; - - protected $Name = 'ManagedFromRenditionParams'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Rendition Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromToPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromToPart.php deleted file mode 100644 index 2d3f076d0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromToPart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromToPart extends AbstractTag -{ - - protected $Id = 'ManagedFromToPart'; - - protected $Name = 'ManagedFromToPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From To Part'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromVersionID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromVersionID.php deleted file mode 100644 index eaf18c4bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagedFromVersionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagedFromVersionID extends AbstractTag -{ - - protected $Id = 'ManagedFromVersionID'; - - protected $Name = 'ManagedFromVersionID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Managed From Version ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Manager.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Manager.php deleted file mode 100644 index 8717bd772..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Manager.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manager extends AbstractTag -{ - - protected $Id = 'Manager'; - - protected $Name = 'Manager'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manager'; - - protected $local_g2 = 'Author'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagerVariant.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagerVariant.php deleted file mode 100644 index 3bc4eabbc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManagerVariant.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManagerVariant extends AbstractTag -{ - - protected $Id = 'ManagerVariant'; - - protected $Name = 'ManagerVariant'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manager Variant'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Manifest.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Manifest.php deleted file mode 100644 index c30ab606d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Manifest.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Manifest extends AbstractTag -{ - - protected $Id = 'Manifest'; - - protected $Name = 'Manifest'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Manifest'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestLinkForm.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestLinkForm.php deleted file mode 100644 index 91e84b4f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestLinkForm.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestLinkForm extends AbstractTag -{ - - protected $Id = 'ManifestLinkForm'; - - protected $Name = 'ManifestLinkForm'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Link Form'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedResolutionUnit.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedResolutionUnit.php deleted file mode 100644 index c0c6336ea..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedResolutionUnit.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestPlacedResolutionUnit extends AbstractTag -{ - - protected $Id = 'ManifestPlacedResolutionUnit'; - - protected $Name = 'ManifestPlacedResolutionUnit'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Placed Resolution Unit'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedXResolution.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedXResolution.php deleted file mode 100644 index a60dc3e59..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedXResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestPlacedXResolution extends AbstractTag -{ - - protected $Id = 'ManifestPlacedXResolution'; - - protected $Name = 'ManifestPlacedXResolution'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Manifest Placed X Resolution'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedYResolution.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedYResolution.php deleted file mode 100644 index b9783547d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestPlacedYResolution.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestPlacedYResolution extends AbstractTag -{ - - protected $Id = 'ManifestPlacedYResolution'; - - protected $Name = 'ManifestPlacedYResolution'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Manifest Placed Y Resolution'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReference.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReference.php deleted file mode 100644 index 75247ab27..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReference.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReference extends AbstractTag -{ - - protected $Id = 'ManifestReference'; - - protected $Name = 'ManifestReference'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceAlternatePaths.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceAlternatePaths.php deleted file mode 100644 index d65c4b23c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceAlternatePaths.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceAlternatePaths extends AbstractTag -{ - - protected $Id = 'ManifestReferenceAlternatePaths'; - - protected $Name = 'ManifestReferenceAlternatePaths'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Alternate Paths'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceDocumentID.php deleted file mode 100644 index f68d9fd64..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceDocumentID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceDocumentID extends AbstractTag -{ - - protected $Id = 'ManifestReferenceDocumentID'; - - protected $Name = 'ManifestReferenceDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Document ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceFilePath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceFilePath.php deleted file mode 100644 index 12b1e9d76..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceFilePath.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceFilePath extends AbstractTag -{ - - protected $Id = 'ManifestReferenceFilePath'; - - protected $Name = 'ManifestReferenceFilePath'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference File Path'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceFromPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceFromPart.php deleted file mode 100644 index 01c74a813..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceFromPart.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceFromPart extends AbstractTag -{ - - protected $Id = 'ManifestReferenceFromPart'; - - protected $Name = 'ManifestReferenceFromPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference From Part'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceInstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceInstanceID.php deleted file mode 100644 index 3759855ad..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceInstanceID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceInstanceID extends AbstractTag -{ - - protected $Id = 'ManifestReferenceInstanceID'; - - protected $Name = 'ManifestReferenceInstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Instance ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceLastModifyDate.php deleted file mode 100644 index cc6c8bf76..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceLastModifyDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceLastModifyDate extends AbstractTag -{ - - protected $Id = 'ManifestReferenceLastModifyDate'; - - protected $Name = 'ManifestReferenceLastModifyDate'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Last Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManageTo.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManageTo.php deleted file mode 100644 index 88a6df711..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManageTo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceManageTo extends AbstractTag -{ - - protected $Id = 'ManifestReferenceManageTo'; - - protected $Name = 'ManifestReferenceManageTo'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Manage To'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManageUI.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManageUI.php deleted file mode 100644 index d89cc1256..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManageUI.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceManageUI extends AbstractTag -{ - - protected $Id = 'ManifestReferenceManageUI'; - - protected $Name = 'ManifestReferenceManageUI'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Manage UI'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManager.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManager.php deleted file mode 100644 index 62343a25f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManager.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceManager extends AbstractTag -{ - - protected $Id = 'ManifestReferenceManager'; - - protected $Name = 'ManifestReferenceManager'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Manager'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManagerVariant.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManagerVariant.php deleted file mode 100644 index f8d8e91c8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceManagerVariant.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceManagerVariant extends AbstractTag -{ - - protected $Id = 'ManifestReferenceManagerVariant'; - - protected $Name = 'ManifestReferenceManagerVariant'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Manager Variant'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceMaskMarkers.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceMaskMarkers.php deleted file mode 100644 index 57feb5a5a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceMaskMarkers.php +++ /dev/null @@ -1,56 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceMaskMarkers extends AbstractTag -{ - - protected $Id = 'ManifestReferenceMaskMarkers'; - - protected $Name = 'ManifestReferenceMaskMarkers'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Mask Markers'; - - protected $flag_List = true; - - protected $Values = array( - 'All' => array( - 'Id' => 'All', - 'Label' => 'All', - ), - 'None' => array( - 'Id' => 'None', - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceOriginalDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceOriginalDocumentID.php deleted file mode 100644 index eb2087aad..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceOriginalDocumentID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceOriginalDocumentID extends AbstractTag -{ - - protected $Id = 'ManifestReferenceOriginalDocumentID'; - - protected $Name = 'ManifestReferenceOriginalDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Original Document ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferencePartMapping.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferencePartMapping.php deleted file mode 100644 index 369c6f7f9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferencePartMapping.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferencePartMapping extends AbstractTag -{ - - protected $Id = 'ManifestReferencePartMapping'; - - protected $Name = 'ManifestReferencePartMapping'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Part Mapping'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceRenditionClass.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceRenditionClass.php deleted file mode 100644 index 87f8b3e63..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceRenditionClass.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceRenditionClass extends AbstractTag -{ - - protected $Id = 'ManifestReferenceRenditionClass'; - - protected $Name = 'ManifestReferenceRenditionClass'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Rendition Class'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceRenditionParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceRenditionParams.php deleted file mode 100644 index 51f6eb152..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceRenditionParams.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceRenditionParams extends AbstractTag -{ - - protected $Id = 'ManifestReferenceRenditionParams'; - - protected $Name = 'ManifestReferenceRenditionParams'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Rendition Params'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceToPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceToPart.php deleted file mode 100644 index cf01ba0b3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceToPart.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceToPart extends AbstractTag -{ - - protected $Id = 'ManifestReferenceToPart'; - - protected $Name = 'ManifestReferenceToPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference To Part'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceVersionID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceVersionID.php deleted file mode 100644 index 8c2ad3d83..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/ManifestReferenceVersionID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ManifestReferenceVersionID extends AbstractTag -{ - - protected $Id = 'ManifestReferenceVersionID'; - - protected $Name = 'ManifestReferenceVersionID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Manifest Reference Version ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/OriginalDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/OriginalDocumentID.php deleted file mode 100644 index 4712b1e47..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/OriginalDocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OriginalDocumentID extends AbstractTag -{ - - protected $Id = 'OriginalDocumentID'; - - protected $Name = 'OriginalDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Original Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Pantry.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Pantry.php deleted file mode 100644 index 5ac65e09b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Pantry.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Pantry extends AbstractTag -{ - - protected $Id = 'Pantry'; - - protected $Name = 'Pantry'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Pantry'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/PreservedFileName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/PreservedFileName.php deleted file mode 100644 index 19a3b1a45..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/PreservedFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PreservedFileName extends AbstractTag -{ - - protected $Id = 'PreservedFileName'; - - protected $Name = 'PreservedFileName'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Preserved File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionClass.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionClass.php deleted file mode 100644 index c7d0be3de..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionClass extends AbstractTag -{ - - protected $Id = 'RenditionClass'; - - protected $Name = 'RenditionClass'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOf.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOf.php deleted file mode 100644 index 441e69c4a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOf.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOf extends AbstractTag -{ - - protected $Id = 'RenditionOf'; - - protected $Name = 'RenditionOf'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Rendition Of'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfAlternatePaths.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfAlternatePaths.php deleted file mode 100644 index d0d19e6dc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfAlternatePaths.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfAlternatePaths extends AbstractTag -{ - - protected $Id = 'RenditionOfAlternatePaths'; - - protected $Name = 'RenditionOfAlternatePaths'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Alternate Paths'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfDocumentID.php deleted file mode 100644 index 6530d409c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfDocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfDocumentID extends AbstractTag -{ - - protected $Id = 'RenditionOfDocumentID'; - - protected $Name = 'RenditionOfDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfFilePath.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfFilePath.php deleted file mode 100644 index 770928cdd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfFilePath.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfFilePath extends AbstractTag -{ - - protected $Id = 'RenditionOfFilePath'; - - protected $Name = 'RenditionOfFilePath'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of File Path'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfFromPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfFromPart.php deleted file mode 100644 index 21b53774e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfFromPart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfFromPart extends AbstractTag -{ - - protected $Id = 'RenditionOfFromPart'; - - protected $Name = 'RenditionOfFromPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of From Part'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfInstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfInstanceID.php deleted file mode 100644 index 8a62500e0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfInstanceID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfInstanceID extends AbstractTag -{ - - protected $Id = 'RenditionOfInstanceID'; - - protected $Name = 'RenditionOfInstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Instance ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfLastModifyDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfLastModifyDate.php deleted file mode 100644 index 3e2708e3e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfLastModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfLastModifyDate extends AbstractTag -{ - - protected $Id = 'RenditionOfLastModifyDate'; - - protected $Name = 'RenditionOfLastModifyDate'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Last Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManageTo.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManageTo.php deleted file mode 100644 index bc7fad0b5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManageTo.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfManageTo extends AbstractTag -{ - - protected $Id = 'RenditionOfManageTo'; - - protected $Name = 'RenditionOfManageTo'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Manage To'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManageUI.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManageUI.php deleted file mode 100644 index 80fb190cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManageUI.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfManageUI extends AbstractTag -{ - - protected $Id = 'RenditionOfManageUI'; - - protected $Name = 'RenditionOfManageUI'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Manage UI'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManager.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManager.php deleted file mode 100644 index 0b937db57..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManager.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfManager extends AbstractTag -{ - - protected $Id = 'RenditionOfManager'; - - protected $Name = 'RenditionOfManager'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Manager'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManagerVariant.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManagerVariant.php deleted file mode 100644 index 3aa83e43a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfManagerVariant.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfManagerVariant extends AbstractTag -{ - - protected $Id = 'RenditionOfManagerVariant'; - - protected $Name = 'RenditionOfManagerVariant'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Manager Variant'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfMaskMarkers.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfMaskMarkers.php deleted file mode 100644 index 08e9c5b73..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfMaskMarkers.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfMaskMarkers extends AbstractTag -{ - - protected $Id = 'RenditionOfMaskMarkers'; - - protected $Name = 'RenditionOfMaskMarkers'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Mask Markers'; - - protected $Values = array( - 'All' => array( - 'Id' => 'All', - 'Label' => 'All', - ), - 'None' => array( - 'Id' => 'None', - 'Label' => 'None', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfOriginalDocumentID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfOriginalDocumentID.php deleted file mode 100644 index 545bdf028..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfOriginalDocumentID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfOriginalDocumentID extends AbstractTag -{ - - protected $Id = 'RenditionOfOriginalDocumentID'; - - protected $Name = 'RenditionOfOriginalDocumentID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Original Document ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfPartMapping.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfPartMapping.php deleted file mode 100644 index 6496b3270..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfPartMapping.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfPartMapping extends AbstractTag -{ - - protected $Id = 'RenditionOfPartMapping'; - - protected $Name = 'RenditionOfPartMapping'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Part Mapping'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfRenditionClass.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfRenditionClass.php deleted file mode 100644 index aa5554dd9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfRenditionClass.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfRenditionClass extends AbstractTag -{ - - protected $Id = 'RenditionOfRenditionClass'; - - protected $Name = 'RenditionOfRenditionClass'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Rendition Class'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfRenditionParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfRenditionParams.php deleted file mode 100644 index 7abb1e87d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfRenditionParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfRenditionParams extends AbstractTag -{ - - protected $Id = 'RenditionOfRenditionParams'; - - protected $Name = 'RenditionOfRenditionParams'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Rendition Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfToPart.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfToPart.php deleted file mode 100644 index fc1e3ce24..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfToPart.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfToPart extends AbstractTag -{ - - protected $Id = 'RenditionOfToPart'; - - protected $Name = 'RenditionOfToPart'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of To Part'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfVersionID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfVersionID.php deleted file mode 100644 index 02ba84cba..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionOfVersionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionOfVersionID extends AbstractTag -{ - - protected $Id = 'RenditionOfVersionID'; - - protected $Name = 'RenditionOfVersionID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Of Version ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionParams.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionParams.php deleted file mode 100644 index 4a5062e7f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/RenditionParams.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class RenditionParams extends AbstractTag -{ - - protected $Id = 'RenditionParams'; - - protected $Name = 'RenditionParams'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Rendition Params'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/SaveID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/SaveID.php deleted file mode 100644 index bfc305dad..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/SaveID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class SaveID extends AbstractTag -{ - - protected $Id = 'SaveID'; - - protected $Name = 'SaveID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Save ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Subject.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Subject.php deleted file mode 100644 index 79aa49406..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Subject.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Subject extends AbstractTag -{ - - protected $Id = 'subject'; - - protected $Name = 'Subject'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Subject'; - - protected $flag_Avoid = true; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionID.php deleted file mode 100644 index fcadea2b0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionID.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionID extends AbstractTag -{ - - protected $Id = 'VersionID'; - - protected $Name = 'VersionID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Version ID'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Versions.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Versions.php deleted file mode 100644 index 1831a95f3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/Versions.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Versions extends AbstractTag -{ - - protected $Id = 'Versions'; - - protected $Name = 'Versions'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Versions'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsComments.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsComments.php deleted file mode 100644 index fb3056ff6..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsComments.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsComments extends AbstractTag -{ - - protected $Id = 'VersionsComments'; - - protected $Name = 'VersionsComments'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Comments'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEvent.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEvent.php deleted file mode 100644 index 792e2aaea..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEvent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsEvent extends AbstractTag -{ - - protected $Id = 'VersionsEvent'; - - protected $Name = 'VersionsEvent'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Versions Event'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventAction.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventAction.php deleted file mode 100644 index 47afc2705..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventAction.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsEventAction extends AbstractTag -{ - - protected $Id = 'VersionsEventAction'; - - protected $Name = 'VersionsEventAction'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Event Action'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventChanged.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventChanged.php deleted file mode 100644 index d572abdb0..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventChanged.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsEventChanged extends AbstractTag -{ - - protected $Id = 'VersionsEventChanged'; - - protected $Name = 'VersionsEventChanged'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Event Changed'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventInstanceID.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventInstanceID.php deleted file mode 100644 index b36c22ae4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventInstanceID.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsEventInstanceID extends AbstractTag -{ - - protected $Id = 'VersionsEventInstanceID'; - - protected $Name = 'VersionsEventInstanceID'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Event Instance ID'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventParameters.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventParameters.php deleted file mode 100644 index c899d37df..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventParameters.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsEventParameters extends AbstractTag -{ - - protected $Id = 'VersionsEventParameters'; - - protected $Name = 'VersionsEventParameters'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Event Parameters'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventSoftwareAgent.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventSoftwareAgent.php deleted file mode 100644 index 62da7045c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventSoftwareAgent.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsEventSoftwareAgent extends AbstractTag -{ - - protected $Id = 'VersionsEventSoftwareAgent'; - - protected $Name = 'VersionsEventSoftwareAgent'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Event Software Agent'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventWhen.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventWhen.php deleted file mode 100644 index c290ded9f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsEventWhen.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsEventWhen extends AbstractTag -{ - - protected $Id = 'VersionsEventWhen'; - - protected $Name = 'VersionsEventWhen'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Versions Event When'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsModifier.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsModifier.php deleted file mode 100644 index 85b32070b..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsModifier.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsModifier extends AbstractTag -{ - - protected $Id = 'VersionsModifier'; - - protected $Name = 'VersionsModifier'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Modifier'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsModifyDate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsModifyDate.php deleted file mode 100644 index aca09f179..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsModifyDate.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsModifyDate extends AbstractTag -{ - - protected $Id = 'VersionsModifyDate'; - - protected $Name = 'VersionsModifyDate'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'date'; - - protected $Writable = true; - - protected $Description = 'Versions Modify Date'; - - protected $local_g2 = 'Time'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsVersion.php b/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsVersion.php deleted file mode 100644 index 592bf49ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpMM/VersionsVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpMM; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class VersionsVersion extends AbstractTag -{ - - protected $Id = 'VersionsVersion'; - - protected $Name = 'VersionsVersion'; - - protected $FullName = 'XMP::xmpMM'; - - protected $GroupName = 'XMP-xmpMM'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpMM'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Versions Version'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpNote/HasExtendedXMP.php b/lib/PHPExiftool/Driver/Tag/XMPXmpNote/HasExtendedXMP.php deleted file mode 100644 index 309efa494..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpNote/HasExtendedXMP.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpNote; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class HasExtendedXMP extends AbstractTag -{ - - protected $Id = 'HasExtendedXMP'; - - protected $Name = 'HasExtendedXMP'; - - protected $FullName = 'XMP::xmpNote'; - - protected $GroupName = 'XMP-xmpNote'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpNote'; - - protected $g2 = 'Other'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Has Extended XMP'; - - protected $flag_Protected = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpPLUS/CreditLineReq.php b/lib/PHPExiftool/Driver/Tag/XMPXmpPLUS/CreditLineReq.php deleted file mode 100644 index b041091ba..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpPLUS/CreditLineReq.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpPLUS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CreditLineReq extends AbstractTag -{ - - protected $Id = 'CreditLineReq'; - - protected $Name = 'CreditLineReq'; - - protected $FullName = 'XMP::xmpPLUS'; - - protected $GroupName = 'XMP-xmpPLUS'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpPLUS'; - - protected $g2 = 'Author'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Credit Line Req'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpPLUS/ReuseAllowed.php b/lib/PHPExiftool/Driver/Tag/XMPXmpPLUS/ReuseAllowed.php deleted file mode 100644 index 67cf0d1c2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpPLUS/ReuseAllowed.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpPLUS; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ReuseAllowed extends AbstractTag -{ - - protected $Id = 'ReuseAllowed'; - - protected $Name = 'ReuseAllowed'; - - protected $FullName = 'XMP::xmpPLUS'; - - protected $GroupName = 'XMP-xmpPLUS'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpPLUS'; - - protected $g2 = 'Author'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Reuse Allowed'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Certificate.php b/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Certificate.php deleted file mode 100644 index 41291db53..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Certificate.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpRights; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Certificate extends AbstractTag -{ - - protected $Id = 'Certificate'; - - protected $Name = 'Certificate'; - - protected $FullName = 'XMP::xmpRights'; - - protected $GroupName = 'XMP-xmpRights'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpRights'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Certificate'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Marked.php b/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Marked.php deleted file mode 100644 index e99c3a7d8..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Marked.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpRights; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Marked extends AbstractTag -{ - - protected $Id = 'Marked'; - - protected $Name = 'Marked'; - - protected $FullName = 'XMP::xmpRights'; - - protected $GroupName = 'XMP-xmpRights'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpRights'; - - protected $g2 = 'Author'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Marked'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Owner.php b/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Owner.php deleted file mode 100644 index a271ae4f2..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/Owner.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpRights; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Owner extends AbstractTag -{ - - protected $Id = 'Owner'; - - protected $Name = 'Owner'; - - protected $FullName = 'XMP::xmpRights'; - - protected $GroupName = 'XMP-xmpRights'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpRights'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Owner'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/UsageTerms.php b/lib/PHPExiftool/Driver/Tag/XMPXmpRights/UsageTerms.php deleted file mode 100644 index 2b2ad79bb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/UsageTerms.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpRights; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UsageTerms extends AbstractTag -{ - - protected $Id = 'UsageTerms'; - - protected $Name = 'UsageTerms'; - - protected $FullName = 'XMP::xmpRights'; - - protected $GroupName = 'XMP-xmpRights'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpRights'; - - protected $g2 = 'Author'; - - protected $Type = 'lang-alt'; - - protected $Writable = true; - - protected $Description = 'Usage Terms'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/WebStatement.php b/lib/PHPExiftool/Driver/Tag/XMPXmpRights/WebStatement.php deleted file mode 100644 index fc693cb2d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpRights/WebStatement.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpRights; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class WebStatement extends AbstractTag -{ - - protected $Id = 'WebStatement'; - - protected $Name = 'WebStatement'; - - protected $FullName = 'XMP::xmpRights'; - - protected $GroupName = 'XMP-xmpRights'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpRights'; - - protected $g2 = 'Author'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Web Statement'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ChildFontFiles.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ChildFontFiles.php deleted file mode 100644 index 01f88744d..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ChildFontFiles.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ChildFontFiles extends AbstractTag -{ - - protected $Id = 'FontsChildFontFiles'; - - protected $Name = 'ChildFontFiles'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Child Font Files'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantA.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantA.php deleted file mode 100644 index 9034257cf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantA.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantA extends AbstractTag -{ - - protected $Id = 'ColorantsA'; - - protected $Name = 'ColorantA'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Colorant A'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantB.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantB.php deleted file mode 100644 index daf112a49..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantB.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantB extends AbstractTag -{ - - protected $Id = 'ColorantsB'; - - protected $Name = 'ColorantB'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Colorant B'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantBlack.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantBlack.php deleted file mode 100644 index c889f46c5..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantBlack.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantBlack extends AbstractTag -{ - - protected $Id = 'ColorantsBlack'; - - protected $Name = 'ColorantBlack'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Colorant Black'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantBlue.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantBlue.php deleted file mode 100644 index e6cff142a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantBlue.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantBlue extends AbstractTag -{ - - protected $Id = 'ColorantsBlue'; - - protected $Name = 'ColorantBlue'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Colorant Blue'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantCyan.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantCyan.php deleted file mode 100644 index 3d59f8d47..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantCyan.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantCyan extends AbstractTag -{ - - protected $Id = 'ColorantsCyan'; - - protected $Name = 'ColorantCyan'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Colorant Cyan'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantGreen.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantGreen.php deleted file mode 100644 index bd9990144..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantGreen.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantGreen extends AbstractTag -{ - - protected $Id = 'ColorantsGreen'; - - protected $Name = 'ColorantGreen'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Colorant Green'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantL.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantL.php deleted file mode 100644 index ee8746a4f..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantL.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantL extends AbstractTag -{ - - protected $Id = 'ColorantsL'; - - protected $Name = 'ColorantL'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Colorant L'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantMagenta.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantMagenta.php deleted file mode 100644 index afab5324a..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantMagenta.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantMagenta extends AbstractTag -{ - - protected $Id = 'ColorantsMagenta'; - - protected $Name = 'ColorantMagenta'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Colorant Magenta'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantMode.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantMode.php deleted file mode 100644 index d275bb291..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantMode.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantMode extends AbstractTag -{ - - protected $Id = 'ColorantsMode'; - - protected $Name = 'ColorantMode'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Colorant Mode'; - - protected $flag_List = true; - - protected $Values = array( - 'CMYK' => array( - 'Id' => 'CMYK', - 'Label' => 'CMYK', - ), - 'LAB' => array( - 'Id' => 'LAB', - 'Label' => 'Lab', - ), - 'RGB' => array( - 'Id' => 'RGB', - 'Label' => 'RGB', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantRed.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantRed.php deleted file mode 100644 index 69868346e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantRed.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantRed extends AbstractTag -{ - - protected $Id = 'ColorantsRed'; - - protected $Name = 'ColorantRed'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Colorant Red'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantSwatchName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantSwatchName.php deleted file mode 100644 index dbce5f448..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantSwatchName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantSwatchName extends AbstractTag -{ - - protected $Id = 'ColorantsSwatchName'; - - protected $Name = 'ColorantSwatchName'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Colorant Swatch Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantTint.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantTint.php deleted file mode 100644 index 596cde6bf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantTint.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantTint extends AbstractTag -{ - - protected $Id = 'ColorantsTint'; - - protected $Name = 'ColorantTint'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'Colorant Tint'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantType.php deleted file mode 100644 index 0f4720e9c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantType extends AbstractTag -{ - - protected $Id = 'ColorantsType'; - - protected $Name = 'ColorantType'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Colorant Type'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantYellow.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantYellow.php deleted file mode 100644 index 50032c271..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/ColorantYellow.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ColorantYellow extends AbstractTag -{ - - protected $Id = 'ColorantsYellow'; - - protected $Name = 'ColorantYellow'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Colorant Yellow'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/Colorants.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/Colorants.php deleted file mode 100644 index a747d8deb..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/Colorants.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Colorants extends AbstractTag -{ - - protected $Id = 'Colorants'; - - protected $Name = 'Colorants'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Colorants'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontComposite.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontComposite.php deleted file mode 100644 index e83a01bcc..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontComposite.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontComposite extends AbstractTag -{ - - protected $Id = 'FontsComposite'; - - protected $Name = 'FontComposite'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'boolean'; - - protected $Writable = true; - - protected $Description = 'Font Composite'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFace.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFace.php deleted file mode 100644 index 1f53e68d3..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFace.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontFace extends AbstractTag -{ - - protected $Id = 'FontsFontFace'; - - protected $Name = 'FontFace'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Font Face'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFamily.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFamily.php deleted file mode 100644 index 9d8cd58c4..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFamily.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontFamily extends AbstractTag -{ - - protected $Id = 'FontsFontFamily'; - - protected $Name = 'FontFamily'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Font Family'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFileName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFileName.php deleted file mode 100644 index 6e146fe57..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontFileName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontFileName extends AbstractTag -{ - - protected $Id = 'FontsFontFileName'; - - protected $Name = 'FontFileName'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Font File Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontName.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontName.php deleted file mode 100644 index 81d6c8630..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontName.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontName extends AbstractTag -{ - - protected $Id = 'FontsFontName'; - - protected $Name = 'FontName'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Font Name'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontType.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontType.php deleted file mode 100644 index 294af32bd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontType.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontType extends AbstractTag -{ - - protected $Id = 'FontsFontType'; - - protected $Name = 'FontType'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Font Type'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontVersion.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontVersion.php deleted file mode 100644 index 1bff13355..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/FontVersion.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FontVersion extends AbstractTag -{ - - protected $Id = 'FontsVersionString'; - - protected $Name = 'FontVersion'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Font Version'; - - protected $flag_List = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/Fonts.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/Fonts.php deleted file mode 100644 index 5532e0494..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/Fonts.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Fonts extends AbstractTag -{ - - protected $Id = 'Fonts'; - - protected $Name = 'Fonts'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Fonts'; - - protected $flag_List = true; - - protected $flag_Bag = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSize.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSize.php deleted file mode 100644 index 79442b97e..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPageSize extends AbstractTag -{ - - protected $Id = 'MaxPageSize'; - - protected $Name = 'MaxPageSize'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'struct'; - - protected $Writable = true; - - protected $Description = 'Max Page Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeH.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeH.php deleted file mode 100644 index ed2b0b6d9..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeH.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPageSizeH extends AbstractTag -{ - - protected $Id = 'MaxPageSizeH'; - - protected $Name = 'MaxPageSizeH'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Max Page Size H'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeUnit.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeUnit.php deleted file mode 100644 index ba746facd..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeUnit.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPageSizeUnit extends AbstractTag -{ - - protected $Id = 'MaxPageSizeUnit'; - - protected $Name = 'MaxPageSizeUnit'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Max Page Size Unit'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeW.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeW.php deleted file mode 100644 index 455265eec..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/MaxPageSizeW.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class MaxPageSizeW extends AbstractTag -{ - - protected $Id = 'MaxPageSizeW'; - - protected $Name = 'MaxPageSizeW'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'real'; - - protected $Writable = true; - - protected $Description = 'Max Page Size W'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/NPages.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/NPages.php deleted file mode 100644 index 9132aaddf..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/NPages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class NPages extends AbstractTag -{ - - protected $Id = 'NPages'; - - protected $Name = 'NPages'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'integer'; - - protected $Writable = true; - - protected $Description = 'N Pages'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/PlateNames.php b/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/PlateNames.php deleted file mode 100644 index 111d2520c..000000000 --- a/lib/PHPExiftool/Driver/Tag/XMPXmpTPg/PlateNames.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\XMPXmpTPg; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PlateNames extends AbstractTag -{ - - protected $Id = 'PlateNames'; - - protected $Name = 'PlateNames'; - - protected $FullName = 'XMP::xmpTPg'; - - protected $GroupName = 'XMP-xmpTPg'; - - protected $g0 = 'XMP'; - - protected $g1 = 'XMP-xmpTPg'; - - protected $g2 = 'Image'; - - protected $Type = 'string'; - - protected $Writable = true; - - protected $Description = 'Plate Names'; - - protected $flag_List = true; - - protected $flag_Seq = true; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ArchivedFileName.php b/lib/PHPExiftool/Driver/Tag/ZIP/ArchivedFileName.php deleted file mode 100644 index ab1f520a1..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ArchivedFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ArchivedFileName extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ArchivedFileName'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'mixed'; - - protected $Writable = false; - - protected $Description = 'Archived File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/Comment.php b/lib/PHPExiftool/Driver/Tag/ZIP/Comment.php deleted file mode 100644 index b3aa85197..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/Comment.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Comment extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'Comment'; - - protected $FullName = 'ZIP::GZIP'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Comment'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/CompressedSize.php b/lib/PHPExiftool/Driver/Tag/ZIP/CompressedSize.php deleted file mode 100644 index d4558f8ee..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/CompressedSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class CompressedSize extends AbstractTag -{ - - protected $Id = 0; - - protected $Name = 'CompressedSize'; - - protected $FullName = 'ZIP::RAR'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Compressed Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/Compression.php b/lib/PHPExiftool/Driver/Tag/ZIP/Compression.php deleted file mode 100644 index e6e4c0c1b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/Compression.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Compression extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'Compression'; - - protected $FullName = 'ZIP::GZIP'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Compression'; - - protected $Values = array( - 8 => array( - 'Id' => 8, - 'Label' => 'Deflated', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ExtraFlags.php b/lib/PHPExiftool/Driver/Tag/ZIP/ExtraFlags.php deleted file mode 100644 index a94b2d02e..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ExtraFlags.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ExtraFlags extends AbstractTag -{ - - protected $Id = 8; - - protected $Name = 'ExtraFlags'; - - protected $FullName = 'ZIP::GZIP'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Extra Flags'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => '(none)', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Maximum Compression', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Fastest Algorithm', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/FileNameLength.php b/lib/PHPExiftool/Driver/Tag/ZIP/FileNameLength.php deleted file mode 100644 index 60cdc1999..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/FileNameLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class FileNameLength extends AbstractTag -{ - - protected $Id = 19; - - protected $Name = 'FileNameLength'; - - protected $FullName = 'ZIP::RAR'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'File Name Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/Flags.php b/lib/PHPExiftool/Driver/Tag/ZIP/Flags.php deleted file mode 100644 index 1767bbfb6..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/Flags.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class Flags extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'Flags'; - - protected $FullName = 'ZIP::GZIP'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Flags'; - - protected $Values = array( - 1 => array( - 'Id' => 1, - 'Label' => 'Text', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'CRC16', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'ExtraFields', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'FileName', - ), - 16 => array( - 'Id' => 16, - 'Label' => 'Comment', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ModifyDate.php b/lib/PHPExiftool/Driver/Tag/ZIP/ModifyDate.php deleted file mode 100644 index bb5e44d74..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ModifyDate extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'ModifyDate'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/OperatingSystem.php b/lib/PHPExiftool/Driver/Tag/ZIP/OperatingSystem.php deleted file mode 100644 index c09f98483..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/OperatingSystem.php +++ /dev/null @@ -1,122 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class OperatingSystem extends AbstractTag -{ - - protected $Id = 'mixed'; - - protected $Name = 'OperatingSystem'; - - protected $FullName = 'mixed'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Operating System'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'FAT filesystem (MS-DOS, OS/2, NT/Win32)', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Amiga', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'VMS (or OpenVMS)', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Unix', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'VM/CMS', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Atari TOS', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'HPFS filesystem (OS/2, NT)', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Macintosh', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Z-System', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'CP/M', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'TOPS-20', - ), - 11 => array( - 'Id' => 11, - 'Label' => 'NTFS filesystem (NT)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'QDOS', - ), - 13 => array( - 'Id' => 13, - 'Label' => 'Acorn RISCOS', - ), - 14 => array( - 'Id' => 255, - 'Label' => 'unknown', - ), - 15 => array( - 'Id' => 0, - 'Label' => 'MS-DOS', - ), - 16 => array( - 'Id' => 1, - 'Label' => 'OS/2', - ), - 17 => array( - 'Id' => 2, - 'Label' => 'Win32', - ), - 18 => array( - 'Id' => 3, - 'Label' => 'Unix', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/PackingMethod.php b/lib/PHPExiftool/Driver/Tag/ZIP/PackingMethod.php deleted file mode 100644 index d2324b85c..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/PackingMethod.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class PackingMethod extends AbstractTag -{ - - protected $Id = 18; - - protected $Name = 'PackingMethod'; - - protected $FullName = 'ZIP::RAR'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int8u'; - - protected $Writable = false; - - protected $Description = 'Packing Method'; - - protected $Values = array( - 48 => array( - 'Id' => 48, - 'Label' => 'Stored', - ), - 49 => array( - 'Id' => 49, - 'Label' => 'Fastest', - ), - 50 => array( - 'Id' => 50, - 'Label' => 'Fast', - ), - 51 => array( - 'Id' => 51, - 'Label' => 'Normal', - ), - 52 => array( - 'Id' => 52, - 'Label' => 'Good Compression', - ), - 53 => array( - 'Id' => 53, - 'Label' => 'Best Compression', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/UncompressedSize.php b/lib/PHPExiftool/Driver/Tag/ZIP/UncompressedSize.php deleted file mode 100644 index cfd7ecc92..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/UncompressedSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class UncompressedSize extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'UncompressedSize'; - - protected $FullName = 'ZIP::RAR'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Uncompressed Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipBitFlag.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipBitFlag.php deleted file mode 100644 index 6b30d613b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipBitFlag.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipBitFlag extends AbstractTag -{ - - protected $Id = 3; - - protected $Name = 'ZipBitFlag'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Zip Bit Flag'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipCRC.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipCRC.php deleted file mode 100644 index 99ee36bed..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipCRC.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipCRC extends AbstractTag -{ - - protected $Id = 7; - - protected $Name = 'ZipCRC'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Zip CRC'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipCompressedSize.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipCompressedSize.php deleted file mode 100644 index 83d48b99a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipCompressedSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipCompressedSize extends AbstractTag -{ - - protected $Id = 9; - - protected $Name = 'ZipCompressedSize'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Zip Compressed Size'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipCompression.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipCompression.php deleted file mode 100644 index 31dc58f1d..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipCompression.php +++ /dev/null @@ -1,118 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipCompression extends AbstractTag -{ - - protected $Id = 4; - - protected $Name = 'ZipCompression'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Zip Compression'; - - protected $Values = array( - 0 => array( - 'Id' => 0, - 'Label' => 'None', - ), - 1 => array( - 'Id' => 1, - 'Label' => 'Shrunk', - ), - 2 => array( - 'Id' => 2, - 'Label' => 'Reduced with compression factor 1', - ), - 3 => array( - 'Id' => 3, - 'Label' => 'Reduced with compression factor 2', - ), - 4 => array( - 'Id' => 4, - 'Label' => 'Reduced with compression factor 3', - ), - 5 => array( - 'Id' => 5, - 'Label' => 'Reduced with compression factor 4', - ), - 6 => array( - 'Id' => 6, - 'Label' => 'Imploded', - ), - 7 => array( - 'Id' => 7, - 'Label' => 'Tokenized', - ), - 8 => array( - 'Id' => 8, - 'Label' => 'Deflated', - ), - 9 => array( - 'Id' => 9, - 'Label' => 'Enhanced Deflate using Deflate64(tm)', - ), - 10 => array( - 'Id' => 10, - 'Label' => 'Imploded (old IBM TERSE)', - ), - 12 => array( - 'Id' => 12, - 'Label' => 'BZIP2', - ), - 14 => array( - 'Id' => 14, - 'Label' => 'LZMA (EFS)', - ), - 18 => array( - 'Id' => 18, - 'Label' => 'IBM TERSE (new)', - ), - 19 => array( - 'Id' => 19, - 'Label' => 'IBM LZ77 z Architecture (PFS)', - ), - 96 => array( - 'Id' => 96, - 'Label' => 'JPEG recompressed', - ), - 97 => array( - 'Id' => 97, - 'Label' => 'WavPack compressed', - ), - 98 => array( - 'Id' => 98, - 'Label' => 'PPMd version I, Rev 1', - ), - ); - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipFileName.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipFileName.php deleted file mode 100644 index 6d6e6a79b..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipFileName.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipFileName extends AbstractTag -{ - - protected $Id = 15; - - protected $Name = 'ZipFileName'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'string'; - - protected $Writable = false; - - protected $Description = 'Zip File Name'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipFileNameLength.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipFileNameLength.php deleted file mode 100644 index 949375396..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipFileNameLength.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipFileNameLength extends AbstractTag -{ - - protected $Id = 13; - - protected $Name = 'ZipFileNameLength'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Zip File Name Length'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipModifyDate.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipModifyDate.php deleted file mode 100644 index b9d5ecfca..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipModifyDate.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipModifyDate extends AbstractTag -{ - - protected $Id = 5; - - protected $Name = 'ZipModifyDate'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Zip Modify Date'; - - protected $local_g2 = 'Time'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipRequiredVersion.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipRequiredVersion.php deleted file mode 100644 index c11712c9a..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipRequiredVersion.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipRequiredVersion extends AbstractTag -{ - - protected $Id = 2; - - protected $Name = 'ZipRequiredVersion'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int16u'; - - protected $Writable = false; - - protected $Description = 'Zip Required Version'; - -} diff --git a/lib/PHPExiftool/Driver/Tag/ZIP/ZipUncompressedSize.php b/lib/PHPExiftool/Driver/Tag/ZIP/ZipUncompressedSize.php deleted file mode 100644 index f287ce292..000000000 --- a/lib/PHPExiftool/Driver/Tag/ZIP/ZipUncompressedSize.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPExiftool\Driver\Tag\ZIP; - -use JMS\Serializer\Annotation\ExclusionPolicy; -use PHPExiftool\Driver\AbstractTag; - -/** - * @ExclusionPolicy("all") - */ -class ZipUncompressedSize extends AbstractTag -{ - - protected $Id = 11; - - protected $Name = 'ZipUncompressedSize'; - - protected $FullName = 'ZIP::Main'; - - protected $GroupName = 'ZIP'; - - protected $g0 = 'ZIP'; - - protected $g1 = 'ZIP'; - - protected $g2 = 'Other'; - - protected $Type = 'int32u'; - - protected $Writable = false; - - protected $Description = 'Zip Uncompressed Size'; - -} diff --git a/lib/PHPExiftool/Exiftool.php b/lib/PHPExiftool/Exiftool.php index 4a948ca5e..ccc1baebe 100644 --- a/lib/PHPExiftool/Exiftool.php +++ b/lib/PHPExiftool/Exiftool.php @@ -19,10 +19,12 @@ class Exiftool implements LoggerAwareInterface { private $logger; + private $binaryPath; - public function __construct(LoggerInterface $logger) + public function __construct(LoggerInterface $logger, $binaryPath = null) { $this->logger = $logger; + $this->binaryPath = $binaryPath; } /** @@ -44,7 +46,7 @@ public function setLogger(LoggerInterface $logger) */ public function executeCommand($command) { - $command = self::getBinary() . ' ' . $command; + $command = ($this->binaryPath == null? self::getBinary(): $this->binaryPath) . ' ' . $command; $process = new Process($command); $this->logger->addInfo(sprintf('Exiftool executes command %s', $process->getCommandLine()));